diff --git a/grammar.js b/grammar.js index f1c7114..cbfc634 100644 --- a/grammar.js +++ b/grammar.js @@ -1020,6 +1020,7 @@ module.exports = grammar({ $.type_argument, $.constrained_type, $.flexible_type, + $.anon_record_type ), ), @@ -1038,7 +1039,7 @@ module.exports = grammar({ static_type: ($) => prec(10, seq($._type, $.type_arguments)), constrained_type: ($) => prec.right(seq($.type_argument, ":>", $._type)), flexible_type: ($) => prec.right(seq("#", $._type)), - + anon_record_type: ($) => seq("{|", scoped($.record_fields, $._indent, $._dedent), "|}"), types: ($) => seq($._type, repeat(prec.left(PREC.COMMA - 1, seq(",", $._type)))), diff --git a/src/grammar.json b/src/grammar.json index 97e35a6..ceb35fe 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3419,6 +3419,10 @@ { "type": "SYMBOL", "name": "flexible_type" + }, + { + "type": "SYMBOL", + "name": "anon_record_type" } ] } @@ -3625,6 +3629,40 @@ ] } }, + "anon_record_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{|" + }, + { + "type": "FIELD", + "name": "block", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_indent" + }, + { + "type": "SYMBOL", + "name": "record_fields" + }, + { + "type": "SYMBOL", + "name": "_dedent" + } + ] + } + }, + { + "type": "STRING", + "value": "|}" + } + ] + }, "types": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index b4a739e..3f9c1e9 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -267,6 +267,10 @@ "type": "_type", "named": true, "subtypes": [ + { + "type": "anon_record_type", + "named": true + }, { "type": "compound_type", "named": true @@ -414,6 +418,22 @@ } } }, + { + "type": "anon_record_type", + "named": true, + "fields": { + "block": { + "multiple": true, + "required": true, + "types": [ + { + "type": "record_fields", + "named": true + } + ] + } + } + }, { "type": "anon_type_defn", "named": true, diff --git a/src/parser.c b/src/parser.c index 8a39c09..2423124 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8261 -#define LARGE_STATE_COUNT 3188 -#define SYMBOL_COUNT 447 +#define STATE_COUNT 8426 +#define LARGE_STATE_COUNT 3204 +#define SYMBOL_COUNT 448 #define ALIAS_COUNT 3 #define TOKEN_COUNT 201 #define EXTERNAL_TOKEN_COUNT 18 @@ -326,153 +326,154 @@ enum ts_symbol_identifiers { sym_static_type = 300, sym_constrained_type = 301, sym_flexible_type = 302, - sym_types = 303, - sym__static_type_identifier = 304, - sym__static_parameter = 305, - sym_named_static_parameter = 306, - sym_type_attribute = 307, - sym_type_attributes = 308, - sym_atomic_type = 309, - sym_constraint = 310, - sym_type_argument_constraints = 311, - sym_type_argument = 312, - sym_type_argument_defn = 313, - sym_type_arguments = 314, - sym_trait_member_constraint = 315, - sym_member_signature = 316, - sym_curried_spec = 317, - sym_argument_spec = 318, - sym_arguments_spec = 319, - sym_argument_name_spec = 320, - sym_static_parameter_value = 321, - sym_exception_definition = 322, - sym_type_definition = 323, - sym__type_defn_body = 324, - sym_type_name = 325, - sym_type_extension = 326, - sym_delegate_type_defn = 327, - sym_delegate_signature = 328, - sym_type_abbrev_defn = 329, - sym__class_type_body_inner = 330, - sym__class_type_body = 331, - sym_record_type_defn = 332, - sym_record_fields = 333, - sym_record_field = 334, - sym_enum_type_defn = 335, - sym_enum_type_cases = 336, - sym_enum_type_case = 337, - sym_union_type_defn = 338, - sym_union_type_cases = 339, - sym_union_type_case = 340, - sym_union_type_fields = 341, - sym_union_type_field = 342, - sym_interface_type_defn = 343, - sym_anon_type_defn = 344, - sym__class_function_or_value_defn = 345, - sym_type_extension_elements = 346, - sym__type_defn_elements = 347, - sym_interface_implementation = 348, - sym__member_defns = 349, - sym__object_members = 350, - sym_member_defn = 351, - sym_property_or_ident = 352, - sym__method_defn = 353, - sym__property_defn = 354, - sym_method_or_prop_defn = 355, - sym_additional_constr_defn = 356, - sym_class_inherits_decl = 357, - sym_field_initializer = 358, - sym_field_initializers = 359, - sym__simple_string_char = 360, - sym__string_char = 361, - sym_char = 362, - sym_format_string_eval = 363, - sym_format_string = 364, - sym__string_literal = 365, - sym_string = 366, - sym__verbatim_string_char = 367, - sym_verbatim_string = 368, - sym_bytearray = 369, - sym_verbatim_bytearray = 370, - sym_format_triple_quoted_string = 371, - sym_triple_quoted_string = 372, - sym_const = 373, - sym_long_identifier = 374, - sym_active_pattern = 375, - sym__identifier_or_op = 376, - sym__infix_or_prefix_op = 377, - sym_prefix_op = 378, - sym_infix_op = 379, - sym_sbyte = 380, - sym_byte = 381, - sym_int16 = 382, - sym_uint16 = 383, - sym_int32 = 384, - sym_uint32 = 385, - sym_nativeint = 386, - sym_unativeint = 387, - sym_int64 = 388, - sym_uint64 = 389, - sym_ieee32 = 390, - sym_ieee64 = 391, - sym_bignum = 392, - sym_decimal = 393, - sym_float = 394, - sym_block_comment = 395, - sym_compiler_directive_decl = 396, - sym_fsi_directive_decl = 397, - sym_preproc_line = 398, - sym_preproc_if = 399, - sym_preproc_else = 400, - sym_preproc_if_in_expression = 401, - sym_preproc_else_in_expression = 402, - sym_preproc_if_in_class_definition = 403, - sym_preproc_else_in_class_definition = 404, - aux_sym_file_repeat1 = 405, - aux_sym_file_repeat2 = 406, - aux_sym__module_body_repeat1 = 407, - aux_sym_attributes_repeat1 = 408, - aux_sym__attribute_set_repeat1 = 409, - aux_sym__function_or_value_defns_repeat1 = 410, - aux_sym_repeat_pattern_repeat1 = 411, - aux_sym_argument_patterns_repeat1 = 412, - aux_sym__list_pattern_content_repeat1 = 413, - aux_sym_record_pattern_repeat1 = 414, - aux_sym__object_expression_inner_repeat1 = 415, - aux_sym_if_expression_repeat1 = 416, - aux_sym__list_elements_repeat1 = 417, - aux_sym_rules_repeat1 = 418, - aux_sym_sequential_expression_repeat1 = 419, - aux_sym_slice_ranges_repeat1 = 420, - aux_sym_compound_type_repeat1 = 421, - aux_sym_types_repeat1 = 422, - aux_sym_type_attributes_repeat1 = 423, - aux_sym_type_argument_constraints_repeat1 = 424, - aux_sym_type_argument_repeat1 = 425, - aux_sym_type_arguments_repeat1 = 426, - aux_sym_curried_spec_repeat1 = 427, - aux_sym_arguments_spec_repeat1 = 428, - aux_sym_type_definition_repeat1 = 429, - aux_sym__class_type_body_repeat1 = 430, - aux_sym_record_fields_repeat1 = 431, - aux_sym_enum_type_cases_repeat1 = 432, - aux_sym_union_type_cases_repeat1 = 433, - aux_sym_union_type_fields_repeat1 = 434, - aux_sym_interface_type_defn_repeat1 = 435, - aux_sym__member_defns_repeat1 = 436, - aux_sym__method_defn_repeat1 = 437, - aux_sym_field_initializers_repeat1 = 438, - aux_sym_format_string_repeat1 = 439, - aux_sym__string_literal_repeat1 = 440, - aux_sym_verbatim_string_repeat1 = 441, - aux_sym_long_identifier_repeat1 = 442, - aux_sym_active_pattern_repeat1 = 443, - aux_sym_prefix_op_repeat1 = 444, - aux_sym_preproc_if_in_expression_repeat1 = 445, - aux_sym_preproc_if_in_class_definition_repeat1 = 446, - alias_sym_active_pattern_op_name = 447, - alias_sym_wildcard_active_pattern_op = 448, - alias_sym_wildcard_pattern = 449, + sym_anon_record_type = 303, + sym_types = 304, + sym__static_type_identifier = 305, + sym__static_parameter = 306, + sym_named_static_parameter = 307, + sym_type_attribute = 308, + sym_type_attributes = 309, + sym_atomic_type = 310, + sym_constraint = 311, + sym_type_argument_constraints = 312, + sym_type_argument = 313, + sym_type_argument_defn = 314, + sym_type_arguments = 315, + sym_trait_member_constraint = 316, + sym_member_signature = 317, + sym_curried_spec = 318, + sym_argument_spec = 319, + sym_arguments_spec = 320, + sym_argument_name_spec = 321, + sym_static_parameter_value = 322, + sym_exception_definition = 323, + sym_type_definition = 324, + sym__type_defn_body = 325, + sym_type_name = 326, + sym_type_extension = 327, + sym_delegate_type_defn = 328, + sym_delegate_signature = 329, + sym_type_abbrev_defn = 330, + sym__class_type_body_inner = 331, + sym__class_type_body = 332, + sym_record_type_defn = 333, + sym_record_fields = 334, + sym_record_field = 335, + sym_enum_type_defn = 336, + sym_enum_type_cases = 337, + sym_enum_type_case = 338, + sym_union_type_defn = 339, + sym_union_type_cases = 340, + sym_union_type_case = 341, + sym_union_type_fields = 342, + sym_union_type_field = 343, + sym_interface_type_defn = 344, + sym_anon_type_defn = 345, + sym__class_function_or_value_defn = 346, + sym_type_extension_elements = 347, + sym__type_defn_elements = 348, + sym_interface_implementation = 349, + sym__member_defns = 350, + sym__object_members = 351, + sym_member_defn = 352, + sym_property_or_ident = 353, + sym__method_defn = 354, + sym__property_defn = 355, + sym_method_or_prop_defn = 356, + sym_additional_constr_defn = 357, + sym_class_inherits_decl = 358, + sym_field_initializer = 359, + sym_field_initializers = 360, + sym__simple_string_char = 361, + sym__string_char = 362, + sym_char = 363, + sym_format_string_eval = 364, + sym_format_string = 365, + sym__string_literal = 366, + sym_string = 367, + sym__verbatim_string_char = 368, + sym_verbatim_string = 369, + sym_bytearray = 370, + sym_verbatim_bytearray = 371, + sym_format_triple_quoted_string = 372, + sym_triple_quoted_string = 373, + sym_const = 374, + sym_long_identifier = 375, + sym_active_pattern = 376, + sym__identifier_or_op = 377, + sym__infix_or_prefix_op = 378, + sym_prefix_op = 379, + sym_infix_op = 380, + sym_sbyte = 381, + sym_byte = 382, + sym_int16 = 383, + sym_uint16 = 384, + sym_int32 = 385, + sym_uint32 = 386, + sym_nativeint = 387, + sym_unativeint = 388, + sym_int64 = 389, + sym_uint64 = 390, + sym_ieee32 = 391, + sym_ieee64 = 392, + sym_bignum = 393, + sym_decimal = 394, + sym_float = 395, + sym_block_comment = 396, + sym_compiler_directive_decl = 397, + sym_fsi_directive_decl = 398, + sym_preproc_line = 399, + sym_preproc_if = 400, + sym_preproc_else = 401, + sym_preproc_if_in_expression = 402, + sym_preproc_else_in_expression = 403, + sym_preproc_if_in_class_definition = 404, + sym_preproc_else_in_class_definition = 405, + aux_sym_file_repeat1 = 406, + aux_sym_file_repeat2 = 407, + aux_sym__module_body_repeat1 = 408, + aux_sym_attributes_repeat1 = 409, + aux_sym__attribute_set_repeat1 = 410, + aux_sym__function_or_value_defns_repeat1 = 411, + aux_sym_repeat_pattern_repeat1 = 412, + aux_sym_argument_patterns_repeat1 = 413, + aux_sym__list_pattern_content_repeat1 = 414, + aux_sym_record_pattern_repeat1 = 415, + aux_sym__object_expression_inner_repeat1 = 416, + aux_sym_if_expression_repeat1 = 417, + aux_sym__list_elements_repeat1 = 418, + aux_sym_rules_repeat1 = 419, + aux_sym_sequential_expression_repeat1 = 420, + aux_sym_slice_ranges_repeat1 = 421, + aux_sym_compound_type_repeat1 = 422, + aux_sym_types_repeat1 = 423, + aux_sym_type_attributes_repeat1 = 424, + aux_sym_type_argument_constraints_repeat1 = 425, + aux_sym_type_argument_repeat1 = 426, + aux_sym_type_arguments_repeat1 = 427, + aux_sym_curried_spec_repeat1 = 428, + aux_sym_arguments_spec_repeat1 = 429, + aux_sym_type_definition_repeat1 = 430, + aux_sym__class_type_body_repeat1 = 431, + aux_sym_record_fields_repeat1 = 432, + aux_sym_enum_type_cases_repeat1 = 433, + aux_sym_union_type_cases_repeat1 = 434, + aux_sym_union_type_fields_repeat1 = 435, + aux_sym_interface_type_defn_repeat1 = 436, + aux_sym__member_defns_repeat1 = 437, + aux_sym__method_defn_repeat1 = 438, + aux_sym_field_initializers_repeat1 = 439, + aux_sym_format_string_repeat1 = 440, + aux_sym__string_literal_repeat1 = 441, + aux_sym_verbatim_string_repeat1 = 442, + aux_sym_long_identifier_repeat1 = 443, + aux_sym_active_pattern_repeat1 = 444, + aux_sym_prefix_op_repeat1 = 445, + aux_sym_preproc_if_in_expression_repeat1 = 446, + aux_sym_preproc_if_in_class_definition_repeat1 = 447, + alias_sym_active_pattern_op_name = 448, + alias_sym_wildcard_active_pattern_op = 449, + alias_sym_wildcard_pattern = 450, }; static const char * const ts_symbol_names[] = { @@ -779,6 +780,7 @@ static const char * const ts_symbol_names[] = { [sym_static_type] = "static_type", [sym_constrained_type] = "constrained_type", [sym_flexible_type] = "flexible_type", + [sym_anon_record_type] = "anon_record_type", [sym_types] = "types", [sym__static_type_identifier] = "_static_type_identifier", [sym__static_parameter] = "_static_parameter", @@ -1232,6 +1234,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_static_type] = sym_static_type, [sym_constrained_type] = sym_constrained_type, [sym_flexible_type] = sym_flexible_type, + [sym_anon_record_type] = sym_anon_record_type, [sym_types] = sym_types, [sym__static_type_identifier] = sym__static_type_identifier, [sym__static_parameter] = sym__static_parameter, @@ -2597,6 +2600,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_anon_record_type] = { + .visible = true, + .named = true, + }, [sym_types] = { .visible = true, .named = true, @@ -3570,359 +3577,359 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 5, - [13] = 9, + [13] = 5, [14] = 8, - [15] = 2, - [16] = 10, - [17] = 4, - [18] = 11, - [19] = 3, - [20] = 6, - [21] = 7, - [22] = 7, - [23] = 10, + [15] = 7, + [16] = 3, + [17] = 6, + [18] = 4, + [19] = 10, + [20] = 3, + [21] = 2, + [22] = 8, + [23] = 11, [24] = 9, - [25] = 4, - [26] = 3, - [27] = 11, - [28] = 6, - [29] = 2, - [30] = 8, - [31] = 31, + [25] = 6, + [26] = 4, + [27] = 2, + [28] = 9, + [29] = 11, + [30] = 10, + [31] = 3, [32] = 32, - [33] = 31, - [34] = 31, - [35] = 9, - [36] = 4, + [33] = 6, + [34] = 5, + [35] = 32, + [36] = 32, [37] = 2, - [38] = 38, - [39] = 11, - [40] = 8, - [41] = 3, - [42] = 31, - [43] = 7, - [44] = 6, - [45] = 10, - [46] = 6, - [47] = 47, - [48] = 7, - [49] = 11, - [50] = 10, - [51] = 51, + [38] = 9, + [39] = 32, + [40] = 10, + [41] = 4, + [42] = 8, + [43] = 11, + [44] = 44, + [45] = 45, + [46] = 10, + [47] = 3, + [48] = 6, + [49] = 9, + [50] = 11, + [51] = 8, [52] = 6, - [53] = 8, - [54] = 4, - [55] = 51, - [56] = 9, - [57] = 3, - [58] = 10, - [59] = 2, - [60] = 51, - [61] = 7, - [62] = 3, - [63] = 4, - [64] = 51, - [65] = 51, - [66] = 11, - [67] = 67, + [53] = 2, + [54] = 10, + [55] = 10, + [56] = 5, + [57] = 2, + [58] = 58, + [59] = 3, + [60] = 60, + [61] = 60, + [62] = 60, + [63] = 58, + [64] = 64, + [65] = 3, + [66] = 6, + [67] = 5, [68] = 68, - [69] = 7, - [70] = 8, - [71] = 47, - [72] = 51, - [73] = 9, - [74] = 51, - [75] = 75, - [76] = 10, - [77] = 51, - [78] = 51, - [79] = 79, - [80] = 3, - [81] = 81, - [82] = 4, - [83] = 2, - [84] = 3, - [85] = 51, - [86] = 4, - [87] = 6, - [88] = 10, - [89] = 47, - [90] = 67, - [91] = 9, - [92] = 92, - [93] = 11, - [94] = 6, - [95] = 7, - [96] = 8, - [97] = 2, - [98] = 47, - [99] = 11, - [100] = 10, - [101] = 9, - [102] = 2, - [103] = 2, - [104] = 51, - [105] = 47, - [106] = 2, - [107] = 47, - [108] = 32, - [109] = 9, - [110] = 8, - [111] = 7, - [112] = 11, - [113] = 4, - [114] = 6, - [115] = 47, - [116] = 4, - [117] = 3, - [118] = 118, - [119] = 47, - [120] = 10, - [121] = 47, - [122] = 51, - [123] = 47, - [124] = 8, - [125] = 7, - [126] = 47, - [127] = 6, - [128] = 128, - [129] = 9, - [130] = 128, - [131] = 47, - [132] = 11, - [133] = 8, + [69] = 60, + [70] = 10, + [71] = 8, + [72] = 2, + [73] = 6, + [74] = 6, + [75] = 3, + [76] = 5, + [77] = 11, + [78] = 8, + [79] = 10, + [80] = 9, + [81] = 60, + [82] = 60, + [83] = 3, + [84] = 11, + [85] = 9, + [86] = 60, + [87] = 2, + [88] = 4, + [89] = 89, + [90] = 60, + [91] = 4, + [92] = 5, + [93] = 4, + [94] = 8, + [95] = 60, + [96] = 6, + [97] = 68, + [98] = 11, + [99] = 5, + [100] = 100, + [101] = 68, + [102] = 102, + [103] = 60, + [104] = 9, + [105] = 4, + [106] = 68, + [107] = 107, + [108] = 108, + [109] = 60, + [110] = 44, + [111] = 4, + [112] = 9, + [113] = 108, + [114] = 68, + [115] = 68, + [116] = 68, + [117] = 9, + [118] = 11, + [119] = 119, + [120] = 8, + [121] = 68, + [122] = 2, + [123] = 68, + [124] = 60, + [125] = 5, + [126] = 11, + [127] = 68, + [128] = 10, + [129] = 68, + [130] = 3, + [131] = 8, + [132] = 68, + [133] = 4, [134] = 134, - [135] = 3, + [135] = 2, [136] = 136, - [137] = 136, - [138] = 10, - [139] = 11, - [140] = 8, - [141] = 141, - [142] = 2, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 6, + [141] = 9, + [142] = 139, [143] = 143, - [144] = 4, - [145] = 145, - [146] = 141, - [147] = 3, - [148] = 143, - [149] = 143, - [150] = 141, - [151] = 145, - [152] = 9, + [144] = 11, + [145] = 8, + [146] = 137, + [147] = 147, + [148] = 2, + [149] = 137, + [150] = 3, + [151] = 138, + [152] = 138, [153] = 153, [154] = 143, - [155] = 143, - [156] = 156, + [155] = 155, + [156] = 137, [157] = 157, - [158] = 136, - [159] = 145, - [160] = 143, - [161] = 141, - [162] = 81, - [163] = 163, - [164] = 164, - [165] = 136, - [166] = 166, - [167] = 136, - [168] = 157, - [169] = 156, - [170] = 136, - [171] = 166, - [172] = 156, - [173] = 173, - [174] = 2, - [175] = 8, - [176] = 136, - [177] = 9, - [178] = 157, - [179] = 145, - [180] = 145, - [181] = 6, - [182] = 136, - [183] = 7, - [184] = 134, - [185] = 6, - [186] = 136, - [187] = 145, + [158] = 147, + [159] = 137, + [160] = 5, + [161] = 161, + [162] = 10, + [163] = 137, + [164] = 137, + [165] = 10, + [166] = 137, + [167] = 5, + [168] = 4, + [169] = 138, + [170] = 137, + [171] = 137, + [172] = 161, + [173] = 139, + [174] = 174, + [175] = 107, + [176] = 137, + [177] = 137, + [178] = 138, + [179] = 3, + [180] = 137, + [181] = 137, + [182] = 137, + [183] = 137, + [184] = 6, + [185] = 137, + [186] = 137, + [187] = 137, [188] = 157, - [189] = 6, - [190] = 156, - [191] = 136, - [192] = 156, - [193] = 136, - [194] = 157, - [195] = 10, - [196] = 7, - [197] = 4, - [198] = 136, - [199] = 8, - [200] = 157, - [201] = 136, - [202] = 3, - [203] = 145, - [204] = 11, - [205] = 9, - [206] = 145, - [207] = 207, - [208] = 156, - [209] = 2, - [210] = 143, - [211] = 157, - [212] = 164, - [213] = 145, - [214] = 136, - [215] = 141, - [216] = 11, - [217] = 217, - [218] = 145, - [219] = 10, - [220] = 141, - [221] = 164, - [222] = 143, - [223] = 9, - [224] = 3, - [225] = 164, - [226] = 143, - [227] = 4, - [228] = 10, - [229] = 2, - [230] = 230, - [231] = 8, - [232] = 10, - [233] = 173, - [234] = 143, - [235] = 136, - [236] = 141, - [237] = 7, - [238] = 6, - [239] = 11, - [240] = 240, - [241] = 4, - [242] = 136, - [243] = 136, - [244] = 145, - [245] = 136, - [246] = 4, - [247] = 173, - [248] = 164, - [249] = 249, - [250] = 156, - [251] = 251, - [252] = 3, - [253] = 136, - [254] = 157, - [255] = 164, - [256] = 136, - [257] = 7, - [258] = 164, - [259] = 11, - [260] = 6, - [261] = 7, - [262] = 8, - [263] = 118, - [264] = 2, - [265] = 156, - [266] = 156, - [267] = 157, - [268] = 136, - [269] = 136, - [270] = 136, - [271] = 145, - [272] = 143, - [273] = 143, - [274] = 2, - [275] = 136, - [276] = 141, - [277] = 136, - [278] = 136, - [279] = 164, - [280] = 164, - [281] = 153, - [282] = 3, - [283] = 143, - [284] = 156, - [285] = 157, - [286] = 3, - [287] = 136, - [288] = 136, - [289] = 136, - [290] = 145, - [291] = 4, - [292] = 292, - [293] = 136, - [294] = 294, - [295] = 10, - [296] = 143, - [297] = 136, - [298] = 298, - [299] = 9, - [300] = 136, - [301] = 156, - [302] = 136, - [303] = 141, - [304] = 157, - [305] = 136, - [306] = 157, - [307] = 136, - [308] = 136, - [309] = 156, - [310] = 136, - [311] = 92, - [312] = 136, - [313] = 141, - [314] = 136, - [315] = 136, - [316] = 164, - [317] = 136, - [318] = 136, - [319] = 143, - [320] = 9, - [321] = 136, - [322] = 136, - [323] = 136, - [324] = 136, - [325] = 141, - [326] = 8, - [327] = 7, - [328] = 136, - [329] = 6, - [330] = 136, - [331] = 136, - [332] = 136, - [333] = 141, - [334] = 136, - [335] = 136, - [336] = 136, - [337] = 164, - [338] = 11, - [339] = 164, - [340] = 340, + [189] = 161, + [190] = 137, + [191] = 137, + [192] = 10, + [193] = 157, + [194] = 153, + [195] = 157, + [196] = 161, + [197] = 197, + [198] = 2, + [199] = 138, + [200] = 137, + [201] = 143, + [202] = 137, + [203] = 137, + [204] = 137, + [205] = 3, + [206] = 137, + [207] = 139, + [208] = 4, + [209] = 143, + [210] = 139, + [211] = 64, + [212] = 157, + [213] = 143, + [214] = 153, + [215] = 137, + [216] = 137, + [217] = 139, + [218] = 153, + [219] = 139, + [220] = 220, + [221] = 6, + [222] = 161, + [223] = 157, + [224] = 138, + [225] = 197, + [226] = 137, + [227] = 137, + [228] = 5, + [229] = 143, + [230] = 138, + [231] = 10, + [232] = 137, + [233] = 174, + [234] = 161, + [235] = 143, + [236] = 161, + [237] = 237, + [238] = 161, + [239] = 4, + [240] = 157, + [241] = 157, + [242] = 137, + [243] = 8, + [244] = 157, + [245] = 161, + [246] = 246, + [247] = 137, + [248] = 138, + [249] = 139, + [250] = 137, + [251] = 143, + [252] = 153, + [253] = 253, + [254] = 137, + [255] = 3, + [256] = 153, + [257] = 157, + [258] = 8, + [259] = 137, + [260] = 5, + [261] = 161, + [262] = 153, + [263] = 138, + [264] = 6, + [265] = 139, + [266] = 143, + [267] = 139, + [268] = 9, + [269] = 137, + [270] = 143, + [271] = 11, + [272] = 89, + [273] = 157, + [274] = 137, + [275] = 6, + [276] = 161, + [277] = 11, + [278] = 153, + [279] = 4, + [280] = 157, + [281] = 3, + [282] = 138, + [283] = 3, + [284] = 161, + [285] = 137, + [286] = 5, + [287] = 5, + [288] = 9, + [289] = 2, + [290] = 137, + [291] = 137, + [292] = 137, + [293] = 137, + [294] = 138, + [295] = 9, + [296] = 174, + [297] = 143, + [298] = 10, + [299] = 11, + [300] = 10, + [301] = 2, + [302] = 2, + [303] = 137, + [304] = 304, + [305] = 161, + [306] = 306, + [307] = 8, + [308] = 153, + [309] = 9, + [310] = 138, + [311] = 4, + [312] = 137, + [313] = 4, + [314] = 153, + [315] = 315, + [316] = 137, + [317] = 139, + [318] = 161, + [319] = 100, + [320] = 320, + [321] = 161, + [322] = 137, + [323] = 139, + [324] = 324, + [325] = 143, + [326] = 137, + [327] = 137, + [328] = 153, + [329] = 137, + [330] = 137, + [331] = 137, + [332] = 2, + [333] = 8, + [334] = 11, + [335] = 9, + [336] = 6, + [337] = 11, + [338] = 8, + [339] = 153, + [340] = 137, [341] = 341, - [342] = 341, - [343] = 343, - [344] = 217, - [345] = 341, - [346] = 343, - [347] = 343, - [348] = 343, - [349] = 341, - [350] = 343, - [351] = 343, - [352] = 343, - [353] = 341, - [354] = 343, + [342] = 342, + [343] = 342, + [344] = 341, + [345] = 342, + [346] = 341, + [347] = 342, + [348] = 342, + [349] = 342, + [350] = 342, + [351] = 341, + [352] = 341, + [353] = 342, + [354] = 342, [355] = 341, - [356] = 343, - [357] = 343, - [358] = 343, - [359] = 341, + [356] = 341, + [357] = 341, + [358] = 246, + [359] = 342, [360] = 341, [361] = 341, - [362] = 343, + [362] = 342, [363] = 341, [364] = 341, - [365] = 341, + [365] = 342, [366] = 366, [367] = 366, [368] = 366, @@ -3937,433 +3944,433 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [377] = 377, [378] = 378, [379] = 379, - [380] = 370, + [380] = 373, [381] = 381, [382] = 382, [383] = 383, [384] = 384, [385] = 385, - [386] = 385, - [387] = 387, - [388] = 385, - [389] = 389, - [390] = 387, - [391] = 389, - [392] = 392, - [393] = 392, - [394] = 389, - [395] = 392, - [396] = 389, - [397] = 387, - [398] = 385, - [399] = 387, - [400] = 392, + [386] = 386, + [387] = 385, + [388] = 388, + [389] = 385, + [390] = 390, + [391] = 386, + [392] = 388, + [393] = 388, + [394] = 385, + [395] = 386, + [396] = 386, + [397] = 390, + [398] = 390, + [399] = 388, + [400] = 390, [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 405, - [406] = 405, - [407] = 407, + [406] = 406, + [407] = 406, [408] = 408, - [409] = 409, - [410] = 409, - [411] = 409, + [409] = 408, + [410] = 408, + [411] = 411, [412] = 412, - [413] = 412, - [414] = 414, - [415] = 408, - [416] = 414, + [413] = 413, + [414] = 412, + [415] = 412, + [416] = 412, [417] = 412, - [418] = 414, + [418] = 413, [419] = 412, - [420] = 414, + [420] = 413, [421] = 412, [422] = 412, [423] = 412, [424] = 412, - [425] = 414, + [425] = 413, [426] = 412, - [427] = 412, - [428] = 414, - [429] = 414, - [430] = 414, - [431] = 412, - [432] = 414, + [427] = 411, + [428] = 412, + [429] = 413, + [430] = 413, + [431] = 413, + [432] = 413, [433] = 412, - [434] = 412, - [435] = 414, - [436] = 412, - [437] = 414, - [438] = 412, + [434] = 413, + [435] = 413, + [436] = 413, + [437] = 412, + [438] = 413, [439] = 412, - [440] = 414, + [440] = 412, [441] = 441, - [442] = 441, + [442] = 442, [443] = 441, - [444] = 441, - [445] = 445, + [444] = 442, + [445] = 441, [446] = 446, - [447] = 445, - [448] = 441, - [449] = 441, - [450] = 441, - [451] = 445, - [452] = 446, - [453] = 441, - [454] = 445, - [455] = 445, - [456] = 446, - [457] = 441, - [458] = 441, + [447] = 442, + [448] = 446, + [449] = 442, + [450] = 446, + [451] = 446, + [452] = 442, + [453] = 446, + [454] = 446, + [455] = 442, + [456] = 442, + [457] = 446, + [458] = 446, [459] = 446, [460] = 441, - [461] = 446, - [462] = 445, - [463] = 446, - [464] = 445, - [465] = 445, - [466] = 441, - [467] = 445, - [468] = 446, - [469] = 446, + [461] = 442, + [462] = 442, + [463] = 441, + [464] = 441, + [465] = 441, + [466] = 446, + [467] = 446, + [468] = 442, + [469] = 441, [470] = 446, - [471] = 446, - [472] = 446, - [473] = 445, - [474] = 445, - [475] = 446, - [476] = 445, + [471] = 442, + [472] = 442, + [473] = 441, + [474] = 441, + [475] = 441, + [476] = 441, [477] = 477, - [478] = 478, - [479] = 478, - [480] = 478, - [481] = 478, - [482] = 478, - [483] = 483, - [484] = 483, - [485] = 478, - [486] = 478, - [487] = 478, - [488] = 478, - [489] = 478, - [490] = 478, - [491] = 478, - [492] = 492, - [493] = 477, + [478] = 477, + [479] = 477, + [480] = 477, + [481] = 481, + [482] = 477, + [483] = 477, + [484] = 484, + [485] = 477, + [486] = 477, + [487] = 477, + [488] = 477, + [489] = 477, + [490] = 477, + [491] = 484, + [492] = 481, + [493] = 493, [494] = 494, [495] = 495, [496] = 496, - [497] = 495, - [498] = 408, - [499] = 408, + [497] = 496, + [498] = 411, + [499] = 411, [500] = 500, [501] = 501, [502] = 501, - [503] = 503, + [503] = 501, [504] = 500, [505] = 500, [506] = 500, [507] = 501, - [508] = 500, - [509] = 501, - [510] = 501, - [511] = 408, - [512] = 501, - [513] = 500, - [514] = 500, - [515] = 500, - [516] = 500, - [517] = 500, + [508] = 501, + [509] = 500, + [510] = 500, + [511] = 500, + [512] = 500, + [513] = 501, + [514] = 501, + [515] = 515, + [516] = 501, + [517] = 501, [518] = 501, - [519] = 501, + [519] = 500, [520] = 500, - [521] = 501, - [522] = 501, - [523] = 500, + [521] = 515, + [522] = 500, + [523] = 501, [524] = 500, [525] = 500, - [526] = 503, - [527] = 501, - [528] = 501, - [529] = 500, + [526] = 500, + [527] = 411, + [528] = 500, + [529] = 501, [530] = 530, [531] = 531, [532] = 532, [533] = 533, [534] = 534, - [535] = 535, - [536] = 533, - [537] = 537, + [535] = 530, + [536] = 536, + [537] = 531, [538] = 538, - [539] = 537, + [539] = 539, [540] = 540, [541] = 541, [542] = 542, - [543] = 541, - [544] = 532, + [543] = 533, + [544] = 544, [545] = 545, - [546] = 546, - [547] = 546, - [548] = 541, - [549] = 537, + [546] = 539, + [547] = 541, + [548] = 548, + [549] = 549, [550] = 550, - [551] = 551, - [552] = 552, - [553] = 533, - [554] = 550, - [555] = 545, - [556] = 556, - [557] = 541, - [558] = 545, - [559] = 537, - [560] = 531, - [561] = 552, - [562] = 552, - [563] = 535, - [564] = 564, - [565] = 565, - [566] = 552, - [567] = 541, - [568] = 552, - [569] = 569, - [570] = 552, - [571] = 556, - [572] = 572, - [573] = 545, - [574] = 538, - [575] = 532, - [576] = 552, - [577] = 572, - [578] = 556, - [579] = 569, - [580] = 552, - [581] = 550, - [582] = 565, - [583] = 552, - [584] = 552, - [585] = 545, - [586] = 569, - [587] = 587, - [588] = 552, - [589] = 552, - [590] = 552, - [591] = 552, - [592] = 552, - [593] = 533, - [594] = 531, - [595] = 531, - [596] = 552, - [597] = 545, - [598] = 541, - [599] = 552, - [600] = 552, - [601] = 552, - [602] = 532, - [603] = 565, + [551] = 548, + [552] = 550, + [553] = 542, + [554] = 541, + [555] = 555, + [556] = 540, + [557] = 550, + [558] = 539, + [559] = 559, + [560] = 559, + [561] = 550, + [562] = 540, + [563] = 559, + [564] = 531, + [565] = 532, + [566] = 536, + [567] = 530, + [568] = 534, + [569] = 555, + [570] = 559, + [571] = 571, + [572] = 559, + [573] = 539, + [574] = 559, + [575] = 548, + [576] = 544, + [577] = 532, + [578] = 534, + [579] = 530, + [580] = 536, + [581] = 541, + [582] = 532, + [583] = 531, + [584] = 542, + [585] = 559, + [586] = 532, + [587] = 559, + [588] = 559, + [589] = 559, + [590] = 532, + [591] = 548, + [592] = 550, + [593] = 534, + [594] = 539, + [595] = 541, + [596] = 542, + [597] = 555, + [598] = 530, + [599] = 534, + [600] = 536, + [601] = 530, + [602] = 544, + [603] = 536, [604] = 540, - [605] = 537, - [606] = 541, - [607] = 532, - [608] = 569, - [609] = 556, - [610] = 572, - [611] = 552, - [612] = 537, - [613] = 552, - [614] = 565, - [615] = 552, - [616] = 552, - [617] = 569, - [618] = 540, + [605] = 531, + [606] = 542, + [607] = 531, + [608] = 550, + [609] = 533, + [610] = 533, + [611] = 559, + [612] = 541, + [613] = 531, + [614] = 550, + [615] = 544, + [616] = 540, + [617] = 536, + [618] = 530, [619] = 542, - [620] = 533, - [621] = 552, - [622] = 552, - [623] = 542, - [624] = 565, - [625] = 552, - [626] = 572, - [627] = 531, - [628] = 556, - [629] = 569, - [630] = 552, - [631] = 550, - [632] = 556, - [633] = 572, - [634] = 565, - [635] = 531, - [636] = 552, - [637] = 545, - [638] = 550, - [639] = 552, - [640] = 537, + [620] = 534, + [621] = 539, + [622] = 549, + [623] = 539, + [624] = 555, + [625] = 548, + [626] = 549, + [627] = 548, + [628] = 541, + [629] = 542, + [630] = 532, + [631] = 555, + [632] = 549, + [633] = 544, + [634] = 634, + [635] = 534, + [636] = 530, + [637] = 536, + [638] = 544, + [639] = 540, + [640] = 533, [641] = 550, - [642] = 531, - [643] = 537, - [644] = 541, - [645] = 532, - [646] = 537, - [647] = 565, - [648] = 540, - [649] = 552, - [650] = 542, - [651] = 565, - [652] = 552, - [653] = 533, - [654] = 569, - [655] = 541, - [656] = 552, - [657] = 532, - [658] = 572, - [659] = 550, - [660] = 556, - [661] = 572, - [662] = 552, - [663] = 541, - [664] = 545, - [665] = 556, - [666] = 533, - [667] = 552, - [668] = 569, - [669] = 552, - [670] = 542, - [671] = 540, + [642] = 532, + [643] = 532, + [644] = 534, + [645] = 530, + [646] = 531, + [647] = 531, + [648] = 536, + [649] = 530, + [650] = 534, + [651] = 544, + [652] = 536, + [653] = 540, + [654] = 555, + [655] = 536, + [656] = 548, + [657] = 549, + [658] = 530, + [659] = 548, + [660] = 549, + [661] = 549, + [662] = 539, + [663] = 532, + [664] = 531, + [665] = 550, + [666] = 541, + [667] = 555, + [668] = 542, + [669] = 550, + [670] = 549, + [671] = 549, [672] = 533, - [673] = 537, - [674] = 552, - [675] = 545, - [676] = 545, - [677] = 565, - [678] = 533, - [679] = 540, - [680] = 542, - [681] = 552, - [682] = 545, - [683] = 532, - [684] = 545, - [685] = 552, - [686] = 552, - [687] = 531, - [688] = 530, - [689] = 530, - [690] = 533, - [691] = 541, + [673] = 533, + [674] = 532, + [675] = 540, + [676] = 533, + [677] = 544, + [678] = 539, + [679] = 541, + [680] = 533, + [681] = 542, + [682] = 534, + [683] = 530, + [684] = 536, + [685] = 549, + [686] = 531, + [687] = 549, + [688] = 539, + [689] = 544, + [690] = 541, + [691] = 542, [692] = 692, - [693] = 552, - [694] = 531, - [695] = 695, + [693] = 549, + [694] = 532, + [695] = 534, [696] = 530, - [697] = 552, - [698] = 698, - [699] = 572, - [700] = 550, - [701] = 540, - [702] = 552, - [703] = 556, - [704] = 569, - [705] = 542, - [706] = 532, - [707] = 552, - [708] = 551, - [709] = 552, - [710] = 530, - [711] = 533, - [712] = 565, - [713] = 695, - [714] = 540, - [715] = 533, - [716] = 530, - [717] = 545, + [697] = 548, + [698] = 540, + [699] = 542, + [700] = 542, + [701] = 542, + [702] = 555, + [703] = 542, + [704] = 548, + [705] = 536, + [706] = 544, + [707] = 707, + [708] = 542, + [709] = 531, + [710] = 542, + [711] = 542, + [712] = 542, + [713] = 542, + [714] = 539, + [715] = 542, + [716] = 541, + [717] = 542, [718] = 542, - [719] = 531, - [720] = 552, - [721] = 532, - [722] = 530, + [719] = 719, + [720] = 538, + [721] = 555, + [722] = 542, [723] = 723, - [724] = 564, - [725] = 550, - [726] = 552, - [727] = 572, - [728] = 556, - [729] = 537, - [730] = 565, - [731] = 569, - [732] = 552, - [733] = 530, - [734] = 569, - [735] = 695, - [736] = 565, - [737] = 531, - [738] = 695, - [739] = 550, - [740] = 533, - [741] = 550, - [742] = 569, - [743] = 556, - [744] = 572, - [745] = 552, - [746] = 569, - [747] = 695, - [748] = 530, - [749] = 565, - [750] = 572, - [751] = 533, - [752] = 695, - [753] = 531, - [754] = 556, - [755] = 530, - [756] = 569, - [757] = 565, - [758] = 545, - [759] = 533, - [760] = 550, - [761] = 530, - [762] = 531, - [763] = 541, - [764] = 552, - [765] = 552, - [766] = 540, - [767] = 530, + [724] = 542, + [725] = 542, + [726] = 726, + [727] = 532, + [728] = 550, + [729] = 534, + [730] = 542, + [731] = 542, + [732] = 542, + [733] = 533, + [734] = 571, + [735] = 542, + [736] = 539, + [737] = 540, + [738] = 541, + [739] = 542, + [740] = 542, + [741] = 723, + [742] = 533, + [743] = 555, + [744] = 534, + [745] = 536, + [746] = 533, + [747] = 542, + [748] = 531, + [749] = 719, + [750] = 542, + [751] = 548, + [752] = 533, + [753] = 542, + [754] = 533, + [755] = 542, + [756] = 550, + [757] = 542, + [758] = 532, + [759] = 540, + [760] = 542, + [761] = 542, + [762] = 534, + [763] = 530, + [764] = 542, + [765] = 536, + [766] = 766, + [767] = 531, [768] = 542, [769] = 542, - [770] = 556, - [771] = 545, - [772] = 540, - [773] = 531, - [774] = 545, - [775] = 533, - [776] = 552, - [777] = 556, - [778] = 541, - [779] = 565, - [780] = 695, - [781] = 569, - [782] = 695, - [783] = 572, - [784] = 572, - [785] = 537, - [786] = 556, - [787] = 572, - [788] = 532, - [789] = 572, - [790] = 695, - [791] = 552, - [792] = 532, - [793] = 542, - [794] = 531, - [795] = 540, - [796] = 565, - [797] = 695, - [798] = 695, - [799] = 569, - [800] = 556, - [801] = 540, - [802] = 572, - [803] = 542, - [804] = 695, - [805] = 531, - [806] = 552, + [770] = 692, + [771] = 542, + [772] = 555, + [773] = 540, + [774] = 550, + [775] = 542, + [776] = 542, + [777] = 544, + [778] = 532, + [779] = 542, + [780] = 544, + [781] = 559, + [782] = 542, + [783] = 542, + [784] = 548, + [785] = 555, + [786] = 542, + [787] = 533, + [788] = 550, + [789] = 533, + [790] = 542, + [791] = 542, + [792] = 534, + [793] = 530, + [794] = 536, + [795] = 531, + [796] = 540, + [797] = 542, + [798] = 550, + [799] = 532, + [800] = 550, + [801] = 542, + [802] = 531, + [803] = 536, + [804] = 530, + [805] = 534, + [806] = 542, [807] = 807, [808] = 807, [809] = 807, @@ -4378,26 +4385,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [818] = 807, [819] = 807, [820] = 807, - [821] = 810, - [822] = 810, + [821] = 807, + [822] = 807, [823] = 807, [824] = 807, - [825] = 807, + [825] = 810, [826] = 807, - [827] = 807, + [827] = 810, [828] = 828, - [829] = 828, + [829] = 810, [830] = 830, [831] = 831, [832] = 832, - [833] = 810, - [834] = 810, - [835] = 832, - [836] = 830, - [837] = 837, + [833] = 832, + [834] = 828, + [835] = 835, + [836] = 810, + [837] = 835, [838] = 810, - [839] = 831, - [840] = 837, + [839] = 830, + [840] = 831, [841] = 810, [842] = 810, [843] = 810, @@ -4408,26 +4415,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [848] = 848, [849] = 849, [850] = 850, - [851] = 849, + [851] = 851, [852] = 852, [853] = 853, - [854] = 850, - [855] = 853, + [854] = 854, + [855] = 851, [856] = 856, - [857] = 856, - [858] = 847, - [859] = 859, - [860] = 860, - [861] = 859, - [862] = 846, - [863] = 863, - [864] = 863, - [865] = 860, - [866] = 852, - [867] = 848, + [857] = 853, + [858] = 848, + [859] = 846, + [860] = 854, + [861] = 849, + [862] = 850, + [863] = 852, + [864] = 864, + [865] = 847, + [866] = 856, + [867] = 864, [868] = 868, [869] = 869, - [870] = 868, + [870] = 870, [871] = 871, [872] = 872, [873] = 873, @@ -4436,7388 +4443,7553 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [876] = 876, [877] = 877, [878] = 878, - [879] = 872, + [879] = 879, [880] = 880, - [881] = 874, - [882] = 882, - [883] = 875, - [884] = 884, - [885] = 882, + [881] = 881, + [882] = 876, + [883] = 883, + [884] = 880, + [885] = 870, [886] = 886, [887] = 887, - [888] = 869, - [889] = 889, - [890] = 887, - [891] = 876, - [892] = 886, - [893] = 893, - [894] = 884, - [895] = 893, - [896] = 878, - [897] = 897, - [898] = 877, - [899] = 873, - [900] = 897, + [888] = 878, + [889] = 881, + [890] = 890, + [891] = 891, + [892] = 869, + [893] = 868, + [894] = 886, + [895] = 877, + [896] = 875, + [897] = 891, + [898] = 890, + [899] = 879, + [900] = 887, [901] = 871, - [902] = 880, - [903] = 889, - [904] = 830, - [905] = 828, - [906] = 837, - [907] = 830, - [908] = 828, - [909] = 832, + [902] = 883, + [903] = 872, + [904] = 874, + [905] = 873, + [906] = 831, + [907] = 835, + [908] = 908, + [909] = 835, [910] = 831, - [911] = 911, - [912] = 911, - [913] = 831, - [914] = 832, - [915] = 837, - [916] = 916, - [917] = 917, + [911] = 832, + [912] = 832, + [913] = 828, + [914] = 828, + [915] = 830, + [916] = 908, + [917] = 830, [918] = 918, [919] = 919, - [920] = 920, + [920] = 831, [921] = 921, - [922] = 837, + [922] = 922, [923] = 923, - [924] = 924, + [924] = 923, [925] = 925, - [926] = 837, - [927] = 921, - [928] = 830, - [929] = 920, - [930] = 923, + [926] = 926, + [927] = 835, + [928] = 919, + [929] = 830, + [930] = 918, [931] = 931, - [932] = 920, - [933] = 933, - [934] = 918, - [935] = 917, - [936] = 931, - [937] = 933, - [938] = 938, - [939] = 920, - [940] = 938, - [941] = 828, - [942] = 832, - [943] = 831, - [944] = 944, - [945] = 828, - [946] = 944, - [947] = 925, - [948] = 919, - [949] = 832, - [950] = 830, - [951] = 924, - [952] = 831, - [953] = 830, - [954] = 852, - [955] = 831, - [956] = 849, - [957] = 832, - [958] = 856, - [959] = 828, - [960] = 837, - [961] = 853, - [962] = 830, + [932] = 828, + [933] = 931, + [934] = 925, + [935] = 935, + [936] = 926, + [937] = 937, + [938] = 832, + [939] = 939, + [940] = 935, + [941] = 922, + [942] = 921, + [943] = 939, + [944] = 939, + [945] = 832, + [946] = 835, + [947] = 828, + [948] = 830, + [949] = 949, + [950] = 950, + [951] = 937, + [952] = 939, + [953] = 831, + [954] = 949, + [955] = 955, + [956] = 846, + [957] = 856, + [958] = 854, + [959] = 830, + [960] = 955, + [961] = 961, + [962] = 831, [963] = 828, - [964] = 832, - [965] = 831, - [966] = 966, - [967] = 837, - [968] = 837, - [969] = 969, - [970] = 856, - [971] = 856, - [972] = 830, - [973] = 856, - [974] = 863, - [975] = 849, + [964] = 848, + [965] = 850, + [966] = 961, + [967] = 830, + [968] = 828, + [969] = 864, + [970] = 832, + [971] = 971, + [972] = 831, + [973] = 849, + [974] = 974, + [975] = 975, [976] = 976, - [977] = 977, - [978] = 978, - [979] = 848, - [980] = 852, - [981] = 853, - [982] = 828, - [983] = 832, - [984] = 846, - [985] = 831, - [986] = 860, - [987] = 920, - [988] = 831, - [989] = 832, - [990] = 830, - [991] = 837, - [992] = 828, - [993] = 830, - [994] = 859, - [995] = 830, - [996] = 850, - [997] = 847, - [998] = 998, - [999] = 849, - [1000] = 853, - [1001] = 853, - [1002] = 1002, - [1003] = 920, - [1004] = 837, - [1005] = 847, - [1006] = 1006, - [1007] = 920, - [1008] = 831, - [1009] = 966, - [1010] = 832, - [1011] = 969, - [1012] = 978, + [977] = 971, + [978] = 846, + [979] = 853, + [980] = 831, + [981] = 939, + [982] = 854, + [983] = 830, + [984] = 975, + [985] = 828, + [986] = 835, + [987] = 832, + [988] = 835, + [989] = 831, + [990] = 853, + [991] = 847, + [992] = 851, + [993] = 852, + [994] = 852, + [995] = 832, + [996] = 847, + [997] = 851, + [998] = 853, + [999] = 846, + [1000] = 846, + [1001] = 1001, + [1002] = 848, + [1003] = 848, + [1004] = 1004, + [1005] = 848, + [1006] = 835, + [1007] = 830, + [1008] = 853, + [1009] = 835, + [1010] = 828, + [1011] = 939, + [1012] = 939, [1013] = 976, - [1014] = 977, - [1015] = 828, - [1016] = 1002, - [1017] = 846, - [1018] = 1006, - [1019] = 859, - [1020] = 916, - [1021] = 860, - [1022] = 863, - [1023] = 1023, - [1024] = 848, - [1025] = 849, - [1026] = 850, - [1027] = 1027, - [1028] = 871, - [1029] = 1029, + [1014] = 950, + [1015] = 832, + [1016] = 828, + [1017] = 832, + [1018] = 835, + [1019] = 831, + [1020] = 849, + [1021] = 1001, + [1022] = 856, + [1023] = 830, + [1024] = 864, + [1025] = 1004, + [1026] = 1026, + [1027] = 835, + [1028] = 850, + [1029] = 869, [1030] = 1030, [1031] = 1031, - [1032] = 1032, + [1032] = 873, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 880, - [1037] = 1037, - [1038] = 1038, + [1035] = 1033, + [1036] = 1036, + [1037] = 872, + [1038] = 883, [1039] = 1039, [1040] = 1040, - [1041] = 877, + [1041] = 1041, [1042] = 1042, [1043] = 1043, - [1044] = 846, - [1045] = 873, + [1044] = 1026, + [1045] = 1045, [1046] = 1046, [1047] = 1047, [1048] = 1048, - [1049] = 860, - [1050] = 871, - [1051] = 1051, - [1052] = 868, - [1053] = 1053, + [1049] = 1049, + [1050] = 875, + [1051] = 877, + [1052] = 1052, + [1053] = 853, [1054] = 1054, - [1055] = 887, - [1056] = 893, - [1057] = 1057, - [1058] = 852, + [1055] = 875, + [1056] = 854, + [1057] = 877, + [1058] = 1058, [1059] = 1059, - [1060] = 869, + [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 874, - [1064] = 886, - [1065] = 863, + [1063] = 1063, + [1064] = 1064, + [1065] = 1062, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1069, + [1069] = 883, [1070] = 1070, [1071] = 1071, - [1072] = 882, - [1073] = 872, + [1072] = 1072, + [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, - [1077] = 874, - [1078] = 875, - [1079] = 876, - [1080] = 1080, - [1081] = 1081, + [1076] = 872, + [1077] = 869, + [1078] = 1078, + [1079] = 1079, + [1080] = 878, + [1081] = 878, [1082] = 1082, - [1083] = 863, - [1084] = 1084, - [1085] = 1085, - [1086] = 998, - [1087] = 852, - [1088] = 847, - [1089] = 897, - [1090] = 889, + [1083] = 1048, + [1084] = 854, + [1085] = 879, + [1086] = 1030, + [1087] = 847, + [1088] = 1088, + [1089] = 1089, + [1090] = 864, [1091] = 1091, - [1092] = 884, + [1092] = 1061, [1093] = 1093, - [1094] = 1094, + [1094] = 849, [1095] = 1095, [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 878, - [1100] = 1032, - [1101] = 1101, - [1102] = 1102, + [1097] = 1060, + [1098] = 1059, + [1099] = 1099, + [1100] = 1041, + [1101] = 880, + [1102] = 880, [1103] = 1103, - [1104] = 848, - [1105] = 1105, - [1106] = 1106, - [1107] = 1031, - [1108] = 1108, - [1109] = 1039, + [1104] = 873, + [1105] = 879, + [1106] = 886, + [1107] = 1107, + [1108] = 974, + [1109] = 886, [1110] = 1110, - [1111] = 1040, - [1112] = 1112, - [1113] = 846, - [1114] = 1114, + [1111] = 868, + [1112] = 890, + [1113] = 887, + [1114] = 1046, [1115] = 1115, - [1116] = 1027, - [1117] = 1117, + [1116] = 1116, + [1117] = 874, [1118] = 1118, - [1119] = 1042, - [1120] = 1069, - [1121] = 1043, - [1122] = 1091, + [1119] = 1119, + [1120] = 1120, + [1121] = 849, + [1122] = 1099, [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1117, + [1126] = 1126, [1127] = 1127, - [1128] = 830, - [1129] = 878, - [1130] = 1082, - [1131] = 1093, - [1132] = 1023, - [1133] = 1133, - [1134] = 1081, - [1135] = 1094, - [1136] = 856, - [1137] = 1095, + [1128] = 1045, + [1129] = 1034, + [1130] = 1130, + [1131] = 1126, + [1132] = 1132, + [1133] = 856, + [1134] = 1134, + [1135] = 1039, + [1136] = 1043, + [1137] = 1137, [1138] = 1138, - [1139] = 1096, + [1139] = 868, [1140] = 1140, - [1141] = 1141, - [1142] = 1097, + [1141] = 890, + [1142] = 1138, [1143] = 1143, - [1144] = 1133, - [1145] = 1101, - [1146] = 1146, - [1147] = 1147, - [1148] = 1125, - [1149] = 1102, - [1150] = 1124, - [1151] = 1118, - [1152] = 850, - [1153] = 876, - [1154] = 875, - [1155] = 1115, - [1156] = 1110, - [1157] = 1157, - [1158] = 878, - [1159] = 897, - [1160] = 859, - [1161] = 860, - [1162] = 1103, + [1144] = 881, + [1145] = 1145, + [1146] = 1120, + [1147] = 1078, + [1148] = 869, + [1149] = 852, + [1150] = 1031, + [1151] = 1127, + [1152] = 1152, + [1153] = 1054, + [1154] = 1070, + [1155] = 1155, + [1156] = 848, + [1157] = 891, + [1158] = 1158, + [1159] = 846, + [1160] = 1160, + [1161] = 871, + [1162] = 1162, [1163] = 1163, - [1164] = 1164, - [1165] = 1051, - [1166] = 1123, - [1167] = 1114, - [1168] = 1112, - [1169] = 1098, - [1170] = 897, - [1171] = 1066, - [1172] = 1105, - [1173] = 848, - [1174] = 872, - [1175] = 1157, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 897, - [1180] = 1141, - [1181] = 1181, - [1182] = 848, + [1164] = 1143, + [1165] = 1049, + [1166] = 1064, + [1167] = 1067, + [1168] = 871, + [1169] = 869, + [1170] = 1089, + [1171] = 1107, + [1172] = 1047, + [1173] = 853, + [1174] = 870, + [1175] = 1158, + [1176] = 1160, + [1177] = 1096, + [1178] = 887, + [1179] = 1163, + [1180] = 1052, + [1181] = 874, + [1182] = 850, [1183] = 1183, - [1184] = 882, - [1185] = 1140, - [1186] = 1080, - [1187] = 1181, - [1188] = 1076, - [1189] = 1023, - [1190] = 1183, - [1191] = 1146, - [1192] = 1048, - [1193] = 998, - [1194] = 1047, - [1195] = 849, - [1196] = 1053, - [1197] = 1075, - [1198] = 886, - [1199] = 860, - [1200] = 889, - [1201] = 1046, - [1202] = 1038, - [1203] = 1074, - [1204] = 1204, - [1205] = 1037, - [1206] = 1035, - [1207] = 869, + [1184] = 1095, + [1185] = 854, + [1186] = 1026, + [1187] = 1058, + [1188] = 835, + [1189] = 1189, + [1190] = 1091, + [1191] = 847, + [1192] = 1192, + [1193] = 871, + [1194] = 1036, + [1195] = 876, + [1196] = 1088, + [1197] = 1192, + [1198] = 1183, + [1199] = 1155, + [1200] = 852, + [1201] = 1152, + [1202] = 1066, + [1203] = 1145, + [1204] = 1140, + [1205] = 1137, + [1206] = 1134, + [1207] = 1063, [1208] = 1068, - [1209] = 893, - [1210] = 1163, - [1211] = 1147, - [1212] = 887, - [1213] = 1034, - [1214] = 868, - [1215] = 1177, - [1216] = 1071, - [1217] = 1084, - [1218] = 1176, - [1219] = 1178, - [1220] = 856, - [1221] = 880, - [1222] = 1164, - [1223] = 1108, - [1224] = 1059, - [1225] = 1143, - [1226] = 853, - [1227] = 877, - [1228] = 1106, - [1229] = 1085, - [1230] = 1138, - [1231] = 1054, - [1232] = 873, - [1233] = 847, - [1234] = 853, - [1235] = 884, - [1236] = 1057, - [1237] = 1029, - [1238] = 1030, - [1239] = 849, - [1240] = 1061, - [1241] = 1062, - [1242] = 1204, - [1243] = 1067, - [1244] = 1033, - [1245] = 850, - [1246] = 1070, - [1247] = 859, - [1248] = 863, - [1249] = 850, - [1250] = 869, - [1251] = 852, - [1252] = 884, + [1209] = 1132, + [1210] = 1130, + [1211] = 876, + [1212] = 846, + [1213] = 1213, + [1214] = 1072, + [1215] = 1125, + [1216] = 1124, + [1217] = 1123, + [1218] = 1115, + [1219] = 1119, + [1220] = 1118, + [1221] = 1116, + [1222] = 1162, + [1223] = 1213, + [1224] = 1071, + [1225] = 1189, + [1226] = 1110, + [1227] = 1079, + [1228] = 1093, + [1229] = 849, + [1230] = 1230, + [1231] = 1075, + [1232] = 1042, + [1233] = 1230, + [1234] = 1073, + [1235] = 891, + [1236] = 1236, + [1237] = 870, + [1238] = 1238, + [1239] = 1238, + [1240] = 1040, + [1241] = 851, + [1242] = 848, + [1243] = 1236, + [1244] = 850, + [1245] = 881, + [1246] = 851, + [1247] = 864, + [1248] = 1103, + [1249] = 1082, + [1250] = 856, + [1251] = 974, + [1252] = 852, [1253] = 886, - [1254] = 860, - [1255] = 911, - [1256] = 848, - [1257] = 887, - [1258] = 876, - [1259] = 911, - [1260] = 875, - [1261] = 871, - [1262] = 853, - [1263] = 847, + [1254] = 891, + [1255] = 854, + [1256] = 883, + [1257] = 852, + [1258] = 878, + [1259] = 872, + [1260] = 850, + [1261] = 849, + [1262] = 873, + [1263] = 853, [1264] = 847, - [1265] = 847, - [1266] = 882, - [1267] = 874, - [1268] = 846, - [1269] = 863, - [1270] = 872, - [1271] = 863, - [1272] = 848, - [1273] = 874, - [1274] = 872, - [1275] = 882, - [1276] = 850, - [1277] = 875, - [1278] = 852, - [1279] = 853, - [1280] = 876, - [1281] = 860, - [1282] = 897, - [1283] = 859, - [1284] = 849, - [1285] = 886, - [1286] = 848, - [1287] = 856, - [1288] = 859, - [1289] = 889, - [1290] = 856, - [1291] = 889, - [1292] = 846, - [1293] = 856, - [1294] = 848, - [1295] = 869, - [1296] = 846, + [1265] = 869, + [1266] = 880, + [1267] = 879, + [1268] = 854, + [1269] = 847, + [1270] = 853, + [1271] = 856, + [1272] = 871, + [1273] = 864, + [1274] = 868, + [1275] = 853, + [1276] = 890, + [1277] = 887, + [1278] = 853, + [1279] = 864, + [1280] = 856, + [1281] = 891, + [1282] = 874, + [1283] = 848, + [1284] = 851, + [1285] = 876, + [1286] = 875, + [1287] = 873, + [1288] = 908, + [1289] = 856, + [1290] = 849, + [1291] = 870, + [1292] = 881, + [1293] = 850, + [1294] = 852, + [1295] = 872, + [1296] = 883, [1297] = 856, - [1298] = 856, - [1299] = 878, - [1300] = 863, - [1301] = 880, - [1302] = 853, - [1303] = 860, - [1304] = 877, - [1305] = 873, - [1306] = 849, - [1307] = 893, - [1308] = 859, - [1309] = 852, - [1310] = 852, - [1311] = 893, - [1312] = 850, - [1313] = 860, - [1314] = 856, - [1315] = 849, - [1316] = 884, - [1317] = 868, - [1318] = 878, - [1319] = 887, - [1320] = 860, - [1321] = 847, - [1322] = 868, - [1323] = 847, - [1324] = 871, - [1325] = 846, - [1326] = 850, - [1327] = 850, - [1328] = 849, - [1329] = 859, - [1330] = 897, - [1331] = 863, - [1332] = 878, - [1333] = 852, - [1334] = 859, - [1335] = 884, - [1336] = 849, - [1337] = 853, - [1338] = 880, - [1339] = 853, - [1340] = 848, - [1341] = 877, - [1342] = 846, - [1343] = 873, - [1344] = 873, - [1345] = 911, - [1346] = 869, - [1347] = 918, - [1348] = 868, - [1349] = 878, - [1350] = 889, - [1351] = 897, - [1352] = 911, - [1353] = 916, - [1354] = 889, + [1298] = 847, + [1299] = 847, + [1300] = 851, + [1301] = 877, + [1302] = 864, + [1303] = 869, + [1304] = 846, + [1305] = 850, + [1306] = 852, + [1307] = 853, + [1308] = 876, + [1309] = 846, + [1310] = 856, + [1311] = 875, + [1312] = 877, + [1313] = 864, + [1314] = 852, + [1315] = 848, + [1316] = 878, + [1317] = 879, + [1318] = 854, + [1319] = 848, + [1320] = 849, + [1321] = 846, + [1322] = 908, + [1323] = 848, + [1324] = 854, + [1325] = 849, + [1326] = 851, + [1327] = 880, + [1328] = 871, + [1329] = 886, + [1330] = 868, + [1331] = 870, + [1332] = 851, + [1333] = 890, + [1334] = 849, + [1335] = 887, + [1336] = 846, + [1337] = 846, + [1338] = 848, + [1339] = 874, + [1340] = 871, + [1341] = 850, + [1342] = 847, + [1343] = 864, + [1344] = 891, + [1345] = 851, + [1346] = 850, + [1347] = 853, + [1348] = 854, + [1349] = 881, + [1350] = 887, + [1351] = 925, + [1352] = 891, + [1353] = 873, + [1354] = 919, [1355] = 871, - [1356] = 897, - [1357] = 884, - [1358] = 886, - [1359] = 871, - [1360] = 911, - [1361] = 868, - [1362] = 887, - [1363] = 878, - [1364] = 920, - [1365] = 933, - [1366] = 876, - [1367] = 931, - [1368] = 877, - [1369] = 878, - [1370] = 873, - [1371] = 875, - [1372] = 877, - [1373] = 880, - [1374] = 874, - [1375] = 882, - [1376] = 893, - [1377] = 880, - [1378] = 873, - [1379] = 869, - [1380] = 872, - [1381] = 874, - [1382] = 921, - [1383] = 872, - [1384] = 897, - [1385] = 876, - [1386] = 920, - [1387] = 924, - [1388] = 871, - [1389] = 944, - [1390] = 872, - [1391] = 886, - [1392] = 882, - [1393] = 868, - [1394] = 884, - [1395] = 920, - [1396] = 916, - [1397] = 880, + [1356] = 926, + [1357] = 868, + [1358] = 937, + [1359] = 869, + [1360] = 880, + [1361] = 931, + [1362] = 891, + [1363] = 886, + [1364] = 881, + [1365] = 886, + [1366] = 926, + [1367] = 871, + [1368] = 923, + [1369] = 868, + [1370] = 949, + [1371] = 931, + [1372] = 872, + [1373] = 891, + [1374] = 875, + [1375] = 876, + [1376] = 874, + [1377] = 887, + [1378] = 890, + [1379] = 874, + [1380] = 868, + [1381] = 886, + [1382] = 887, + [1383] = 890, + [1384] = 880, + [1385] = 868, + [1386] = 923, + [1387] = 869, + [1388] = 890, + [1389] = 886, + [1390] = 880, + [1391] = 879, + [1392] = 891, + [1393] = 878, + [1394] = 880, + [1395] = 877, + [1396] = 876, + [1397] = 875, [1398] = 878, - [1399] = 919, - [1400] = 882, - [1401] = 887, - [1402] = 887, - [1403] = 893, - [1404] = 918, - [1405] = 872, - [1406] = 893, - [1407] = 874, - [1408] = 875, - [1409] = 875, - [1410] = 884, - [1411] = 920, - [1412] = 869, - [1413] = 886, - [1414] = 920, - [1415] = 880, - [1416] = 873, - [1417] = 917, - [1418] = 938, - [1419] = 886, - [1420] = 876, - [1421] = 944, - [1422] = 889, - [1423] = 889, - [1424] = 893, - [1425] = 925, - [1426] = 877, - [1427] = 917, - [1428] = 868, - [1429] = 884, - [1430] = 886, - [1431] = 897, - [1432] = 925, - [1433] = 889, - [1434] = 871, - [1435] = 916, - [1436] = 884, - [1437] = 880, - [1438] = 878, - [1439] = 882, - [1440] = 872, - [1441] = 877, - [1442] = 933, - [1443] = 931, - [1444] = 876, - [1445] = 878, - [1446] = 878, - [1447] = 875, - [1448] = 874, - [1449] = 875, - [1450] = 869, - [1451] = 876, - [1452] = 873, - [1453] = 938, - [1454] = 874, - [1455] = 887, - [1456] = 869, - [1457] = 877, - [1458] = 856, - [1459] = 897, - [1460] = 923, - [1461] = 921, - [1462] = 920, - [1463] = 871, - [1464] = 893, - [1465] = 887, - [1466] = 923, - [1467] = 878, - [1468] = 868, - [1469] = 882, - [1470] = 919, - [1471] = 924, - [1472] = 918, - [1473] = 911, - [1474] = 921, - [1475] = 853, - [1476] = 925, - [1477] = 920, - [1478] = 923, - [1479] = 923, - [1480] = 917, - [1481] = 921, - [1482] = 878, - [1483] = 917, - [1484] = 978, - [1485] = 944, - [1486] = 856, - [1487] = 925, - [1488] = 911, - [1489] = 911, - [1490] = 924, - [1491] = 916, - [1492] = 1006, - [1493] = 920, - [1494] = 916, - [1495] = 925, - [1496] = 1002, - [1497] = 853, - [1498] = 849, - [1499] = 919, - [1500] = 920, - [1501] = 920, - [1502] = 1023, + [1399] = 887, + [1400] = 877, + [1401] = 875, + [1402] = 874, + [1403] = 939, + [1404] = 877, + [1405] = 883, + [1406] = 872, + [1407] = 950, + [1408] = 873, + [1409] = 883, + [1410] = 883, + [1411] = 872, + [1412] = 873, + [1413] = 878, + [1414] = 871, + [1415] = 870, + [1416] = 925, + [1417] = 879, + [1418] = 918, + [1419] = 878, + [1420] = 869, + [1421] = 937, + [1422] = 919, + [1423] = 879, + [1424] = 922, + [1425] = 921, + [1426] = 869, + [1427] = 939, + [1428] = 874, + [1429] = 871, + [1430] = 908, + [1431] = 939, + [1432] = 853, + [1433] = 891, + [1434] = 869, + [1435] = 949, + [1436] = 881, + [1437] = 871, + [1438] = 870, + [1439] = 939, + [1440] = 939, + [1441] = 876, + [1442] = 870, + [1443] = 935, + [1444] = 950, + [1445] = 881, + [1446] = 874, + [1447] = 881, + [1448] = 886, + [1449] = 871, + [1450] = 871, + [1451] = 879, + [1452] = 870, + [1453] = 876, + [1454] = 873, + [1455] = 876, + [1456] = 935, + [1457] = 872, + [1458] = 879, + [1459] = 908, + [1460] = 939, + [1461] = 873, + [1462] = 890, + [1463] = 881, + [1464] = 872, + [1465] = 883, + [1466] = 868, + [1467] = 880, + [1468] = 878, + [1469] = 871, + [1470] = 883, + [1471] = 908, + [1472] = 877, + [1473] = 877, + [1474] = 887, + [1475] = 922, + [1476] = 950, + [1477] = 921, + [1478] = 870, + [1479] = 875, + [1480] = 875, + [1481] = 890, + [1482] = 918, + [1483] = 908, + [1484] = 939, + [1485] = 1004, + [1486] = 921, + [1487] = 921, + [1488] = 950, + [1489] = 922, + [1490] = 923, + [1491] = 922, + [1492] = 971, + [1493] = 921, + [1494] = 961, + [1495] = 935, + [1496] = 950, + [1497] = 931, + [1498] = 955, + [1499] = 949, + [1500] = 918, + [1501] = 919, + [1502] = 918, [1503] = 853, - [1504] = 923, - [1505] = 911, - [1506] = 849, - [1507] = 917, - [1508] = 919, - [1509] = 938, - [1510] = 921, - [1511] = 931, - [1512] = 933, - [1513] = 977, - [1514] = 976, - [1515] = 966, - [1516] = 969, - [1517] = 969, - [1518] = 966, - [1519] = 920, - [1520] = 938, - [1521] = 849, - [1522] = 976, - [1523] = 977, - [1524] = 856, - [1525] = 918, - [1526] = 918, - [1527] = 1002, - [1528] = 933, - [1529] = 931, - [1530] = 920, - [1531] = 1006, - [1532] = 924, - [1533] = 944, - [1534] = 916, - [1535] = 920, - [1536] = 978, - [1537] = 933, - [1538] = 919, - [1539] = 931, - [1540] = 911, - [1541] = 924, - [1542] = 916, - [1543] = 938, - [1544] = 944, - [1545] = 916, - [1546] = 920, - [1547] = 998, - [1548] = 856, - [1549] = 1141, - [1550] = 1054, - [1551] = 1163, - [1552] = 977, - [1553] = 1147, - [1554] = 998, - [1555] = 976, - [1556] = 1053, - [1557] = 1069, - [1558] = 1071, - [1559] = 849, - [1560] = 921, - [1561] = 1084, - [1562] = 969, - [1563] = 966, - [1564] = 1023, - [1565] = 938, - [1566] = 1068, - [1567] = 1098, - [1568] = 916, - [1569] = 1178, - [1570] = 1084, - [1571] = 1112, - [1572] = 1114, - [1573] = 1123, - [1574] = 916, - [1575] = 1071, - [1576] = 1147, - [1577] = 1163, - [1578] = 1068, - [1579] = 1053, - [1580] = 1141, - [1581] = 998, - [1582] = 1140, - [1583] = 1183, - [1584] = 1002, - [1585] = 998, - [1586] = 918, - [1587] = 920, - [1588] = 976, - [1589] = 1157, - [1590] = 920, - [1591] = 1117, - [1592] = 1091, - [1593] = 1105, - [1594] = 923, - [1595] = 1103, - [1596] = 1006, - [1597] = 1098, - [1598] = 1112, - [1599] = 1114, - [1600] = 925, - [1601] = 1123, - [1602] = 977, - [1603] = 918, - [1604] = 1102, - [1605] = 923, - [1606] = 1146, - [1607] = 1101, - [1608] = 1097, - [1609] = 1096, - [1610] = 1095, - [1611] = 944, - [1612] = 1094, - [1613] = 1093, - [1614] = 924, - [1615] = 916, - [1616] = 1204, - [1617] = 897, - [1618] = 920, - [1619] = 1080, - [1620] = 1023, - [1621] = 1023, - [1622] = 919, - [1623] = 1076, - [1624] = 1027, - [1625] = 917, - [1626] = 1075, - [1627] = 921, - [1628] = 1074, - [1629] = 925, - [1630] = 1178, - [1631] = 921, - [1632] = 856, - [1633] = 1070, - [1634] = 931, - [1635] = 933, - [1636] = 944, - [1637] = 924, - [1638] = 978, - [1639] = 1006, - [1640] = 917, - [1641] = 856, - [1642] = 1023, - [1643] = 1140, - [1644] = 933, - [1645] = 931, - [1646] = 916, - [1647] = 925, - [1648] = 1124, - [1649] = 1067, - [1650] = 920, - [1651] = 998, - [1652] = 1062, - [1653] = 1105, - [1654] = 1124, - [1655] = 918, - [1656] = 1103, - [1657] = 919, - [1658] = 933, - [1659] = 1061, - [1660] = 1057, - [1661] = 931, - [1662] = 1143, - [1663] = 853, - [1664] = 1102, - [1665] = 998, - [1666] = 1101, - [1667] = 1097, - [1668] = 923, - [1669] = 1096, - [1670] = 1095, - [1671] = 923, - [1672] = 919, - [1673] = 1094, - [1674] = 1164, - [1675] = 849, - [1676] = 1093, - [1677] = 917, - [1678] = 920, - [1679] = 1080, - [1680] = 924, - [1681] = 931, - [1682] = 933, - [1683] = 944, - [1684] = 921, - [1685] = 1076, - [1686] = 1029, + [1504] = 925, + [1505] = 853, + [1506] = 908, + [1507] = 908, + [1508] = 1001, + [1509] = 1001, + [1510] = 937, + [1511] = 871, + [1512] = 923, + [1513] = 926, + [1514] = 919, + [1515] = 950, + [1516] = 935, + [1517] = 931, + [1518] = 975, + [1519] = 950, + [1520] = 971, + [1521] = 925, + [1522] = 949, + [1523] = 1026, + [1524] = 931, + [1525] = 974, + [1526] = 939, + [1527] = 935, + [1528] = 955, + [1529] = 961, + [1530] = 950, + [1531] = 848, + [1532] = 976, + [1533] = 939, + [1534] = 926, + [1535] = 1004, + [1536] = 939, + [1537] = 937, + [1538] = 939, + [1539] = 848, + [1540] = 937, + [1541] = 975, + [1542] = 919, + [1543] = 925, + [1544] = 846, + [1545] = 976, + [1546] = 848, + [1547] = 926, + [1548] = 922, + [1549] = 949, + [1550] = 846, + [1551] = 908, + [1552] = 939, + [1553] = 939, + [1554] = 908, + [1555] = 846, + [1556] = 923, + [1557] = 939, + [1558] = 918, + [1559] = 853, + [1560] = 848, + [1561] = 853, + [1562] = 853, + [1563] = 1138, + [1564] = 1075, + [1565] = 1066, + [1566] = 1001, + [1567] = 1063, + [1568] = 1152, + [1569] = 869, + [1570] = 1078, + [1571] = 923, + [1572] = 955, + [1573] = 1213, + [1574] = 1127, + [1575] = 1088, + [1576] = 1126, + [1577] = 939, + [1578] = 846, + [1579] = 931, + [1580] = 919, + [1581] = 939, + [1582] = 1026, + [1583] = 919, + [1584] = 1079, + [1585] = 1041, + [1586] = 1163, + [1587] = 1093, + [1588] = 1026, + [1589] = 1026, + [1590] = 949, + [1591] = 961, + [1592] = 921, + [1593] = 949, + [1594] = 1110, + [1595] = 1099, + [1596] = 1073, + [1597] = 1054, + [1598] = 937, + [1599] = 1096, + [1600] = 974, + [1601] = 950, + [1602] = 937, + [1603] = 974, + [1604] = 1095, + [1605] = 937, + [1606] = 939, + [1607] = 939, + [1608] = 939, + [1609] = 1138, + [1610] = 926, + [1611] = 1072, + [1612] = 1001, + [1613] = 922, + [1614] = 869, + [1615] = 975, + [1616] = 1096, + [1617] = 848, + [1618] = 1107, + [1619] = 1155, + [1620] = 949, + [1621] = 935, + [1622] = 939, + [1623] = 1082, + [1624] = 869, + [1625] = 1140, + [1626] = 939, + [1627] = 923, + [1628] = 1089, + [1629] = 1071, + [1630] = 1116, + [1631] = 1127, + [1632] = 974, + [1633] = 919, + [1634] = 1120, + [1635] = 974, + [1636] = 1118, + [1637] = 1068, + [1638] = 1230, + [1639] = 931, + [1640] = 1143, + [1641] = 1066, + [1642] = 923, + [1643] = 919, + [1644] = 1063, + [1645] = 925, + [1646] = 918, + [1647] = 1125, + [1648] = 1078, + [1649] = 935, + [1650] = 921, + [1651] = 922, + [1652] = 975, + [1653] = 935, + [1654] = 1213, + [1655] = 925, + [1656] = 1123, + [1657] = 950, + [1658] = 1089, + [1659] = 1088, + [1660] = 1115, + [1661] = 1143, + [1662] = 1048, + [1663] = 926, + [1664] = 1047, + [1665] = 1119, + [1666] = 935, + [1667] = 1075, + [1668] = 1058, + [1669] = 846, + [1670] = 975, + [1671] = 976, + [1672] = 1145, + [1673] = 971, + [1674] = 1238, + [1675] = 1124, + [1676] = 1115, + [1677] = 931, + [1678] = 971, + [1679] = 939, + [1680] = 853, + [1681] = 1073, + [1682] = 922, + [1683] = 921, + [1684] = 1039, + [1685] = 971, + [1686] = 918, [1687] = 925, - [1688] = 1075, - [1689] = 856, - [1690] = 1074, - [1691] = 1070, - [1692] = 1043, - [1693] = 1042, - [1694] = 924, - [1695] = 1164, - [1696] = 1040, - [1697] = 938, - [1698] = 966, - [1699] = 1027, - [1700] = 969, - [1701] = 1039, - [1702] = 1032, - [1703] = 1031, - [1704] = 1143, - [1705] = 944, - [1706] = 920, - [1707] = 944, - [1708] = 1059, - [1709] = 1067, - [1710] = 1062, - [1711] = 1204, - [1712] = 1061, - [1713] = 938, - [1714] = 976, - [1715] = 977, - [1716] = 916, - [1717] = 1117, - [1718] = 897, - [1719] = 1057, - [1720] = 924, - [1721] = 919, - [1722] = 1054, - [1723] = 1146, - [1724] = 1023, - [1725] = 1043, - [1726] = 853, - [1727] = 920, - [1728] = 931, - [1729] = 1042, - [1730] = 1183, - [1731] = 933, - [1732] = 1040, - [1733] = 1039, - [1734] = 925, - [1735] = 1032, - [1736] = 1031, - [1737] = 920, - [1738] = 920, - [1739] = 849, - [1740] = 1059, - [1741] = 897, - [1742] = 923, - [1743] = 998, - [1744] = 938, - [1745] = 1110, - [1746] = 938, - [1747] = 1157, - [1748] = 1110, - [1749] = 1115, - [1750] = 1118, - [1751] = 918, - [1752] = 1115, - [1753] = 1125, - [1754] = 1118, - [1755] = 1125, - [1756] = 1133, - [1757] = 918, - [1758] = 1133, - [1759] = 966, - [1760] = 969, - [1761] = 1177, - [1762] = 853, - [1763] = 1051, - [1764] = 1048, - [1765] = 1047, - [1766] = 1066, - [1767] = 1046, - [1768] = 856, - [1769] = 1051, - [1770] = 1048, - [1771] = 1038, - [1772] = 1047, - [1773] = 1046, - [1774] = 1038, - [1775] = 1037, - [1776] = 1035, - [1777] = 1034, - [1778] = 1033, - [1779] = 1030, - [1780] = 1029, - [1781] = 1138, - [1782] = 1085, - [1783] = 1106, - [1784] = 1108, - [1785] = 1176, - [1786] = 1081, - [1787] = 920, - [1788] = 1181, - [1789] = 1023, - [1790] = 920, - [1791] = 1035, - [1792] = 1034, - [1793] = 920, - [1794] = 1794, - [1795] = 1091, - [1796] = 1082, - [1797] = 919, - [1798] = 978, - [1799] = 920, - [1800] = 1081, - [1801] = 1082, - [1802] = 1181, - [1803] = 1176, - [1804] = 917, - [1805] = 1033, - [1806] = 1069, - [1807] = 1066, - [1808] = 921, - [1809] = 1177, - [1810] = 853, - [1811] = 1002, - [1812] = 1108, - [1813] = 849, - [1814] = 1030, - [1815] = 1106, - [1816] = 1037, - [1817] = 916, - [1818] = 1085, - [1819] = 1138, - [1820] = 917, - [1821] = 978, - [1822] = 1006, - [1823] = 1002, - [1824] = 969, - [1825] = 1176, - [1826] = 1040, - [1827] = 1042, - [1828] = 1043, - [1829] = 849, - [1830] = 1085, - [1831] = 1002, - [1832] = 1177, - [1833] = 1039, - [1834] = 1066, - [1835] = 1081, - [1836] = 1054, - [1837] = 1057, - [1838] = 1061, - [1839] = 1096, - [1840] = 1046, - [1841] = 1054, - [1842] = 1091, - [1843] = 1117, - [1844] = 1032, - [1845] = 1105, - [1846] = 1103, - [1847] = 1070, - [1848] = 1074, - [1849] = 1075, - [1850] = 1076, - [1851] = 1031, - [1852] = 1080, - [1853] = 1091, - [1854] = 1102, - [1855] = 1093, - [1856] = 1094, - [1857] = 1006, - [1858] = 1117, - [1859] = 1204, - [1860] = 897, - [1861] = 998, - [1862] = 1059, - [1863] = 1002, - [1864] = 853, - [1865] = 1095, - [1866] = 1062, - [1867] = 1097, - [1868] = 1181, - [1869] = 1101, - [1870] = 1023, - [1871] = 1091, - [1872] = 1108, - [1873] = 1106, - [1874] = 856, - [1875] = 1069, - [1876] = 1102, - [1877] = 1138, - [1878] = 1029, - [1879] = 1059, - [1880] = 1103, - [1881] = 1105, - [1882] = 849, - [1883] = 1146, - [1884] = 850, - [1885] = 1033, - [1886] = 1034, - [1887] = 978, - [1888] = 1023, - [1889] = 1035, - [1890] = 1140, - [1891] = 998, - [1892] = 1141, - [1893] = 849, - [1894] = 1002, - [1895] = 1037, + [1688] = 939, + [1689] = 925, + [1690] = 918, + [1691] = 1162, + [1692] = 1126, + [1693] = 923, + [1694] = 1072, + [1695] = 918, + [1696] = 1071, + [1697] = 1026, + [1698] = 1061, + [1699] = 1052, + [1700] = 1064, + [1701] = 1068, + [1702] = 1091, + [1703] = 950, + [1704] = 923, + [1705] = 1070, + [1706] = 1004, + [1707] = 955, + [1708] = 1189, + [1709] = 918, + [1710] = 1183, + [1711] = 939, + [1712] = 939, + [1713] = 926, + [1714] = 1137, + [1715] = 1120, + [1716] = 1031, + [1717] = 961, + [1718] = 1030, + [1719] = 931, + [1720] = 848, + [1721] = 937, + [1722] = 925, + [1723] = 950, + [1724] = 1033, + [1725] = 1163, + [1726] = 1047, + [1727] = 1031, + [1728] = 1049, + [1729] = 1026, + [1730] = 1033, + [1731] = 950, + [1732] = 1004, + [1733] = 1034, + [1734] = 1067, + [1735] = 1236, + [1736] = 937, + [1737] = 976, + [1738] = 1079, + [1739] = 921, + [1740] = 926, + [1741] = 949, + [1742] = 1036, + [1743] = 922, + [1744] = 1034, + [1745] = 939, + [1746] = 1036, + [1747] = 1030, + [1748] = 1095, + [1749] = 1158, + [1750] = 1134, + [1751] = 935, + [1752] = 1049, + [1753] = 1040, + [1754] = 1155, + [1755] = 1042, + [1756] = 1067, + [1757] = 1043, + [1758] = 1107, + [1759] = 853, + [1760] = 1158, + [1761] = 1045, + [1762] = 955, + [1763] = 1160, + [1764] = 961, + [1765] = 1058, + [1766] = 1040, + [1767] = 1192, + [1768] = 1046, + [1769] = 1103, + [1770] = 1041, + [1771] = 1062, + [1772] = 974, + [1773] = 1064, + [1774] = 1042, + [1775] = 1183, + [1776] = 939, + [1777] = 1152, + [1778] = 1160, + [1779] = 1162, + [1780] = 1236, + [1781] = 1043, + [1782] = 1132, + [1783] = 1048, + [1784] = 1145, + [1785] = 1140, + [1786] = 1130, + [1787] = 1045, + [1788] = 1059, + [1789] = 1001, + [1790] = 1091, + [1791] = 1230, + [1792] = 1238, + [1793] = 1103, + [1794] = 976, + [1795] = 1125, + [1796] = 846, + [1797] = 1082, + [1798] = 1004, + [1799] = 1054, + [1800] = 1052, + [1801] = 926, + [1802] = 1189, + [1803] = 846, + [1804] = 1099, + [1805] = 974, + [1806] = 950, + [1807] = 1059, + [1808] = 1137, + [1809] = 1060, + [1810] = 1039, + [1811] = 1134, + [1812] = 1132, + [1813] = 919, + [1814] = 1046, + [1815] = 931, + [1816] = 1093, + [1817] = 1110, + [1818] = 1130, + [1819] = 1060, + [1820] = 1026, + [1821] = 921, + [1822] = 848, + [1823] = 1070, + [1824] = 949, + [1825] = 1061, + [1826] = 1116, + [1827] = 1118, + [1828] = 1119, + [1829] = 1829, + [1830] = 1123, + [1831] = 1124, + [1832] = 922, + [1833] = 1062, + [1834] = 1192, + [1835] = 961, + [1836] = 869, + [1837] = 955, + [1838] = 961, + [1839] = 1026, + [1840] = 846, + [1841] = 848, + [1842] = 1155, + [1843] = 974, + [1844] = 1163, + [1845] = 975, + [1846] = 971, + [1847] = 1001, + [1848] = 1236, + [1849] = 869, + [1850] = 1070, + [1851] = 1120, + [1852] = 955, + [1853] = 961, + [1854] = 1079, + [1855] = 1162, + [1856] = 1127, + [1857] = 1126, + [1858] = 1058, + [1859] = 1041, + [1860] = 1099, + [1861] = 1096, + [1862] = 1095, + [1863] = 976, + [1864] = 1107, + [1865] = 974, + [1866] = 853, + [1867] = 1138, + [1868] = 1120, + [1869] = 1075, + [1870] = 1073, + [1871] = 1072, + [1872] = 1071, + [1873] = 971, + [1874] = 1068, + [1875] = 1091, + [1876] = 1230, + [1877] = 1004, + [1878] = 975, + [1879] = 1062, + [1880] = 1004, + [1881] = 1061, + [1882] = 1060, + [1883] = 1059, + [1884] = 1079, + [1885] = 1054, + [1886] = 848, + [1887] = 1238, + [1888] = 1103, + [1889] = 1004, + [1890] = 1082, + [1891] = 1088, + [1892] = 846, + [1893] = 939, + [1894] = 1046, + [1895] = 1045, [1896] = 853, - [1897] = 897, - [1898] = 1038, - [1899] = 1082, - [1900] = 1123, - [1901] = 1114, - [1902] = 1047, - [1903] = 998, - [1904] = 1048, - [1905] = 1051, - [1906] = 1157, - [1907] = 853, - [1908] = 1112, - [1909] = 1098, - [1910] = 859, - [1911] = 1023, - [1912] = 1069, - [1913] = 1133, - [1914] = 1125, - [1915] = 1053, - [1916] = 1097, - [1917] = 966, - [1918] = 1118, - [1919] = 1115, - [1920] = 1110, - [1921] = 1031, - [1922] = 1143, - [1923] = 853, - [1924] = 1096, - [1925] = 1178, - [1926] = 920, - [1927] = 1095, - [1928] = 1183, - [1929] = 1127, - [1930] = 1101, - [1931] = 966, - [1932] = 920, - [1933] = 1023, - [1934] = 849, - [1935] = 1124, - [1936] = 1032, - [1937] = 1094, - [1938] = 1068, - [1939] = 978, - [1940] = 1093, - [1941] = 969, - [1942] = 1163, - [1943] = 920, - [1944] = 1794, - [1945] = 1183, - [1946] = 1006, - [1947] = 977, - [1948] = 1071, - [1949] = 1039, - [1950] = 976, - [1951] = 1084, - [1952] = 978, - [1953] = 1040, - [1954] = 1006, - [1955] = 978, - [1956] = 976, - [1957] = 998, - [1958] = 1080, - [1959] = 1053, - [1960] = 977, - [1961] = 856, - [1962] = 966, - [1963] = 1002, - [1964] = 1076, - [1965] = 1084, - [1966] = 1071, - [1967] = 1117, - [1968] = 856, - [1969] = 976, - [1970] = 977, - [1971] = 1164, - [1972] = 1147, - [1973] = 1075, - [1974] = 1074, - [1975] = 1163, - [1976] = 1068, - [1977] = 1147, - [1978] = 1030, - [1979] = 1027, - [1980] = 969, - [1981] = 897, - [1982] = 920, - [1983] = 849, - [1984] = 1098, - [1985] = 853, - [1986] = 1112, - [1987] = 1114, - [1988] = 1123, - [1989] = 1141, - [1990] = 916, - [1991] = 1141, - [1992] = 1183, - [1993] = 1124, - [1994] = 1143, - [1995] = 1023, - [1996] = 1140, - [1997] = 1164, - [1998] = 978, - [1999] = 1070, - [2000] = 1178, - [2001] = 998, - [2002] = 1034, - [2003] = 1105, - [2004] = 977, - [2005] = 976, - [2006] = 1103, - [2007] = 1178, - [2008] = 1143, - [2009] = 1102, - [2010] = 1101, - [2011] = 1097, - [2012] = 1157, - [2013] = 1096, - [2014] = 1095, - [2015] = 1094, - [2016] = 1146, - [2017] = 1204, - [2018] = 1093, - [2019] = 1080, - [2020] = 1076, - [2021] = 1075, - [2022] = 1074, - [2023] = 1070, - [2024] = 1027, - [2025] = 977, - [2026] = 976, - [2027] = 1140, - [2028] = 1067, - [2029] = 1062, - [2030] = 1061, - [2031] = 1057, - [2032] = 1023, - [2033] = 1069, - [2034] = 1067, - [2035] = 1043, - [2036] = 1042, - [2037] = 969, - [2038] = 1040, - [2039] = 1039, - [2040] = 1032, - [2041] = 969, - [2042] = 1031, - [2043] = 966, - [2044] = 1110, - [2045] = 1115, - [2046] = 831, - [2047] = 1157, - [2048] = 1059, - [2049] = 1118, - [2050] = 832, - [2051] = 828, - [2052] = 1146, - [2053] = 1204, - [2054] = 1124, - [2055] = 1084, - [2056] = 1125, - [2057] = 1071, - [2058] = 1133, - [2059] = 1147, - [2060] = 966, - [2061] = 1027, - [2062] = 1177, - [2063] = 1051, - [2064] = 1048, - [2065] = 1043, - [2066] = 1067, - [2067] = 1066, - [2068] = 1047, - [2069] = 1046, - [2070] = 856, - [2071] = 1038, - [2072] = 1081, - [2073] = 1082, - [2074] = 1062, - [2075] = 1181, - [2076] = 1163, - [2077] = 920, - [2078] = 1068, - [2079] = 1006, - [2080] = 1002, - [2081] = 1037, - [2082] = 1176, - [2083] = 1108, - [2084] = 1106, - [2085] = 1085, - [2086] = 1138, - [2087] = 1029, - [2088] = 1030, - [2089] = 1033, - [2090] = 1034, - [2091] = 1035, - [2092] = 1037, - [2093] = 1038, - [2094] = 1046, - [2095] = 1047, - [2096] = 1042, - [2097] = 1048, - [2098] = 1051, - [2099] = 1133, - [2100] = 1125, + [1897] = 1043, + [1898] = 1042, + [1899] = 1040, + [1900] = 1036, + [1901] = 976, + [1902] = 1093, + [1903] = 1034, + [1904] = 1078, + [1905] = 1110, + [1906] = 1033, + [1907] = 1031, + [1908] = 1116, + [1909] = 939, + [1910] = 975, + [1911] = 1030, + [1912] = 1118, + [1913] = 1119, + [1914] = 1064, + [1915] = 1066, + [1916] = 1063, + [1917] = 1213, + [1918] = 1039, + [1919] = 852, + [1920] = 1123, + [1921] = 939, + [1922] = 1124, + [1923] = 1079, + [1924] = 1125, + [1925] = 1130, + [1926] = 1132, + [1927] = 1134, + [1928] = 1115, + [1929] = 1137, + [1930] = 1143, + [1931] = 1140, + [1932] = 971, + [1933] = 1145, + [1934] = 1152, + [1935] = 976, + [1936] = 1183, + [1937] = 848, + [1938] = 1192, + [1939] = 1074, + [1940] = 1048, + [1941] = 1163, + [1942] = 1089, + [1943] = 1047, + [1944] = 1001, + [1945] = 1052, + [1946] = 1189, + [1947] = 1162, + [1948] = 1120, + [1949] = 1189, + [1950] = 1052, + [1951] = 1047, + [1952] = 869, + [1953] = 847, + [1954] = 1089, + [1955] = 1160, + [1956] = 1026, + [1957] = 1026, + [1958] = 1158, + [1959] = 1067, + [1960] = 1048, + [1961] = 1143, + [1962] = 1107, + [1963] = 848, + [1964] = 846, + [1965] = 1115, + [1966] = 1138, + [1967] = 846, + [1968] = 1049, + [1969] = 1030, + [1970] = 1064, + [1971] = 1004, + [1972] = 1026, + [1973] = 1039, + [1974] = 955, + [1975] = 1049, + [1976] = 1067, + [1977] = 1031, + [1978] = 853, + [1979] = 1158, + [1980] = 1160, + [1981] = 1033, + [1982] = 1034, + [1983] = 1192, + [1984] = 1213, + [1985] = 1036, + [1986] = 1063, + [1987] = 1066, + [1988] = 1183, + [1989] = 1040, + [1990] = 1042, + [1991] = 1152, + [1992] = 1145, + [1993] = 1163, + [1994] = 1140, + [1995] = 1058, + [1996] = 1137, + [1997] = 1134, + [1998] = 1132, + [1999] = 1162, + [2000] = 869, + [2001] = 1130, + [2002] = 1125, + [2003] = 1078, + [2004] = 1124, + [2005] = 1043, + [2006] = 1045, + [2007] = 1046, + [2008] = 1123, + [2009] = 1119, + [2010] = 1001, + [2011] = 961, + [2012] = 955, + [2013] = 1088, + [2014] = 1118, + [2015] = 1116, + [2016] = 1110, + [2017] = 1093, + [2018] = 1054, + [2019] = 1082, + [2020] = 1103, + [2021] = 1059, + [2022] = 1238, + [2023] = 1230, + [2024] = 1060, + [2025] = 1091, + [2026] = 1061, + [2027] = 1062, + [2028] = 974, + [2029] = 1070, + [2030] = 1127, + [2031] = 961, + [2032] = 1126, + [2033] = 1041, + [2034] = 1099, + [2035] = 955, + [2036] = 1138, + [2037] = 1068, + [2038] = 1071, + [2039] = 1049, + [2040] = 1096, + [2041] = 1067, + [2042] = 1095, + [2043] = 950, + [2044] = 1075, + [2045] = 1072, + [2046] = 1073, + [2047] = 1075, + [2048] = 1073, + [2049] = 971, + [2050] = 1095, + [2051] = 1096, + [2052] = 971, + [2053] = 974, + [2054] = 1072, + [2055] = 853, + [2056] = 1071, + [2057] = 1001, + [2058] = 1068, + [2059] = 1829, + [2060] = 1158, + [2061] = 1160, + [2062] = 1062, + [2063] = 1192, + [2064] = 1099, + [2065] = 1183, + [2066] = 1155, + [2067] = 1061, + [2068] = 975, + [2069] = 1152, + [2070] = 1145, + [2071] = 1140, + [2072] = 1041, + [2073] = 939, + [2074] = 1126, + [2075] = 1127, + [2076] = 975, + [2077] = 1137, + [2078] = 1236, + [2079] = 1134, + [2080] = 1107, + [2081] = 1132, + [2082] = 1060, + [2083] = 1130, + [2084] = 1059, + [2085] = 1054, + [2086] = 1125, + [2087] = 1124, + [2088] = 1123, + [2089] = 1046, + [2090] = 1045, + [2091] = 1039, + [2092] = 1070, + [2093] = 1088, + [2094] = 939, + [2095] = 1119, + [2096] = 1043, + [2097] = 976, + [2098] = 1042, + [2099] = 1040, + [2100] = 1078, [2101] = 1118, - [2102] = 1053, - [2103] = 1061, - [2104] = 998, - [2105] = 1115, - [2106] = 1110, - [2107] = 1057, - [2108] = 1006, - [2109] = 1054, - [2110] = 1177, - [2111] = 1066, - [2112] = 837, - [2113] = 897, - [2114] = 1098, - [2115] = 1081, - [2116] = 1082, - [2117] = 856, - [2118] = 1181, - [2119] = 1176, - [2120] = 1164, - [2121] = 1108, - [2122] = 1106, - [2123] = 863, - [2124] = 1085, - [2125] = 1112, - [2126] = 1138, - [2127] = 1029, - [2128] = 1030, - [2129] = 1033, - [2130] = 1114, - [2131] = 1123, - [2132] = 1035, - [2133] = 1067, - [2134] = 1183, - [2135] = 1096, - [2136] = 1140, - [2137] = 1095, - [2138] = 1183, - [2139] = 1080, - [2140] = 1076, - [2141] = 1114, - [2142] = 1094, - [2143] = 1074, - [2144] = 1070, - [2145] = 1093, - [2146] = 1071, - [2147] = 1062, - [2148] = 1061, - [2149] = 2149, - [2150] = 1105, - [2151] = 1103, - [2152] = 1102, - [2153] = 1112, - [2154] = 1057, - [2155] = 2155, - [2156] = 1098, - [2157] = 1054, - [2158] = 1084, - [2159] = 1037, - [2160] = 1101, - [2161] = 1147, - [2162] = 1053, - [2163] = 1163, - [2164] = 1068, - [2165] = 1053, - [2166] = 1038, - [2167] = 1098, - [2168] = 1178, - [2169] = 1112, - [2170] = 1034, - [2171] = 1114, - [2172] = 1123, - [2173] = 1141, - [2174] = 1141, - [2175] = 1140, - [2176] = 1105, - [2177] = 1046, - [2178] = 1103, - [2179] = 1102, - [2180] = 1101, - [2181] = 1133, - [2182] = 1097, - [2183] = 1096, - [2184] = 1068, - [2185] = 2185, - [2186] = 1095, - [2187] = 1094, - [2188] = 1093, - [2189] = 1123, - [2190] = 1114, - [2191] = 1080, - [2192] = 1076, - [2193] = 1075, - [2194] = 2155, - [2195] = 1074, - [2196] = 1125, - [2197] = 1070, - [2198] = 1143, - [2199] = 1112, - [2200] = 1117, - [2201] = 1091, - [2202] = 1098, - [2203] = 1067, - [2204] = 1043, - [2205] = 1059, - [2206] = 1042, - [2207] = 1062, - [2208] = 1061, - [2209] = 1031, - [2210] = 1032, - [2211] = 1040, - [2212] = 1039, - [2213] = 1040, - [2214] = 1057, - [2215] = 1039, - [2216] = 1163, - [2217] = 2149, - [2218] = 1042, - [2219] = 1147, - [2220] = 1043, - [2221] = 1054, - [2222] = 1043, - [2223] = 1042, - [2224] = 1054, - [2225] = 1118, - [2226] = 1057, - [2227] = 1061, - [2228] = 1062, - [2229] = 1067, - [2230] = 1040, - [2231] = 1039, - [2232] = 1032, - [2233] = 1031, - [2234] = 1070, - [2235] = 1074, - [2236] = 1164, - [2237] = 1115, - [2238] = 1075, - [2239] = 1076, - [2240] = 1080, - [2241] = 1059, - [2242] = 1069, - [2243] = 1075, - [2244] = 1093, - [2245] = 1027, - [2246] = 1094, - [2247] = 1095, - [2248] = 1096, - [2249] = 1097, - [2250] = 1101, - [2251] = 1102, - [2252] = 1031, - [2253] = 1124, - [2254] = 1103, - [2255] = 1105, - [2256] = 1032, - [2257] = 1110, - [2258] = 1053, - [2259] = 1157, - [2260] = 1140, - [2261] = 1141, - [2262] = 1068, - [2263] = 1163, - [2264] = 1147, - [2265] = 1047, - [2266] = 1048, - [2267] = 1146, - [2268] = 1051, - [2269] = 1123, - [2270] = 1114, - [2271] = 1112, - [2272] = 1098, - [2273] = 1204, - [2274] = 1042, - [2275] = 1204, - [2276] = 1117, - [2277] = 1066, - [2278] = 1027, - [2279] = 1177, - [2280] = 1066, - [2281] = 1053, - [2282] = 1059, - [2283] = 897, - [2284] = 1071, - [2285] = 1081, - [2286] = 1068, - [2287] = 1163, - [2288] = 1147, - [2289] = 1082, - [2290] = 1091, - [2291] = 1181, - [2292] = 2185, - [2293] = 1176, - [2294] = 1108, - [2295] = 1106, - [2296] = 1085, - [2297] = 1138, - [2298] = 1071, - [2299] = 1146, - [2300] = 1029, - [2301] = 1030, - [2302] = 1084, - [2303] = 1033, - [2304] = 1034, - [2305] = 1035, - [2306] = 1037, - [2307] = 1084, - [2308] = 1177, - [2309] = 1066, - [2310] = 1069, - [2311] = 1038, - [2312] = 1046, - [2313] = 1183, - [2314] = 1047, - [2315] = 1069, - [2316] = 1071, - [2317] = 1081, - [2318] = 1082, - [2319] = 1048, - [2320] = 1091, - [2321] = 1117, - [2322] = 1051, - [2323] = 1084, - [2324] = 1133, - [2325] = 1178, - [2326] = 1177, - [2327] = 1125, - [2328] = 1118, - [2329] = 1115, - [2330] = 1110, - [2331] = 2155, - [2332] = 1127, - [2333] = 2185, - [2334] = 1147, - [2335] = 1163, - [2336] = 1068, - [2337] = 1181, - [2338] = 1176, - [2339] = 1164, - [2340] = 1117, - [2341] = 1108, - [2342] = 1106, - [2343] = 1085, - [2344] = 1138, - [2345] = 1029, - [2346] = 1030, - [2347] = 1071, - [2348] = 1059, - [2349] = 1033, - [2350] = 1034, - [2351] = 1081, - [2352] = 1035, - [2353] = 1037, - [2354] = 1038, - [2355] = 2149, - [2356] = 1082, - [2357] = 1046, - [2358] = 1047, - [2359] = 1048, - [2360] = 1051, - [2361] = 1164, - [2362] = 1053, - [2363] = 1124, - [2364] = 1091, - [2365] = 1143, - [2366] = 1035, - [2367] = 1123, - [2368] = 1178, - [2369] = 1143, - [2370] = 1178, - [2371] = 1069, - [2372] = 1091, - [2373] = 1033, - [2374] = 1084, - [2375] = 1117, - [2376] = 1030, - [2377] = 897, - [2378] = 1029, - [2379] = 1138, - [2380] = 1157, - [2381] = 2149, - [2382] = 1183, - [2383] = 1146, - [2384] = 1204, - [2385] = 1027, - [2386] = 1098, - [2387] = 1112, - [2388] = 1114, - [2389] = 1123, - [2390] = 1133, - [2391] = 1031, - [2392] = 1125, - [2393] = 1124, - [2394] = 1118, - [2395] = 1115, - [2396] = 1110, - [2397] = 1157, - [2398] = 1110, - [2399] = 1115, - [2400] = 1157, - [2401] = 1141, - [2402] = 877, - [2403] = 1140, - [2404] = 1032, - [2405] = 1118, - [2406] = 1183, - [2407] = 1124, - [2408] = 1085, - [2409] = 2409, - [2410] = 1141, - [2411] = 849, - [2412] = 1106, - [2413] = 1140, - [2414] = 853, - [2415] = 1177, - [2416] = 1125, - [2417] = 1066, - [2418] = 1133, - [2419] = 1108, - [2420] = 1176, - [2421] = 1069, - [2422] = 1081, - [2423] = 1143, - [2424] = 1082, - [2425] = 1181, - [2426] = 1181, - [2427] = 1176, - [2428] = 1108, - [2429] = 1082, - [2430] = 1106, - [2431] = 1085, - [2432] = 897, - [2433] = 1138, - [2434] = 1029, - [2435] = 1105, - [2436] = 1103, - [2437] = 1102, - [2438] = 1030, - [2439] = 1081, - [2440] = 1146, - [2441] = 897, - [2442] = 1101, - [2443] = 1097, - [2444] = 1096, + [2102] = 976, + [2103] = 1116, + [2104] = 1110, + [2105] = 1036, + [2106] = 1093, + [2107] = 1082, + [2108] = 1103, + [2109] = 1236, + [2110] = 1155, + [2111] = 1034, + [2112] = 1033, + [2113] = 1031, + [2114] = 832, + [2115] = 828, + [2116] = 830, + [2117] = 1238, + [2118] = 974, + [2119] = 1058, + [2120] = 1230, + [2121] = 1115, + [2122] = 1143, + [2123] = 848, + [2124] = 1047, + [2125] = 974, + [2126] = 1063, + [2127] = 1064, + [2128] = 1052, + [2129] = 1001, + [2130] = 1189, + [2131] = 850, + [2132] = 1091, + [2133] = 1030, + [2134] = 1026, + [2135] = 1213, + [2136] = 1004, + [2137] = 1066, + [2138] = 1026, + [2139] = 853, + [2140] = 1048, + [2141] = 1089, + [2142] = 846, + [2143] = 831, + [2144] = 1075, + [2145] = 1060, + [2146] = 1155, + [2147] = 1236, + [2148] = 2148, + [2149] = 1089, + [2150] = 1047, + [2151] = 1052, + [2152] = 1189, + [2153] = 1031, + [2154] = 1033, + [2155] = 1152, + [2156] = 1145, + [2157] = 1093, + [2158] = 1110, + [2159] = 1116, + [2160] = 1118, + [2161] = 1140, + [2162] = 1119, + [2163] = 1058, + [2164] = 1123, + [2165] = 1124, + [2166] = 1125, + [2167] = 1130, + [2168] = 1132, + [2169] = 1134, + [2170] = 1137, + [2171] = 1140, + [2172] = 1145, + [2173] = 1152, + [2174] = 1155, + [2175] = 1183, + [2176] = 1192, + [2177] = 1213, + [2178] = 1063, + [2179] = 1066, + [2180] = 2180, + [2181] = 1160, + [2182] = 1158, + [2183] = 1034, + [2184] = 1074, + [2185] = 1058, + [2186] = 1036, + [2187] = 1107, + [2188] = 1079, + [2189] = 1067, + [2190] = 1137, + [2191] = 1134, + [2192] = 1132, + [2193] = 1130, + [2194] = 1125, + [2195] = 1049, + [2196] = 1163, + [2197] = 1162, + [2198] = 1160, + [2199] = 1158, + [2200] = 1078, + [2201] = 848, + [2202] = 1124, + [2203] = 1040, + [2204] = 1042, + [2205] = 1123, + [2206] = 1079, + [2207] = 1067, + [2208] = 1049, + [2209] = 1088, + [2210] = 1043, + [2211] = 1045, + [2212] = 1046, + [2213] = 1070, + [2214] = 1107, + [2215] = 1054, + [2216] = 1059, + [2217] = 1060, + [2218] = 1061, + [2219] = 1062, + [2220] = 1119, + [2221] = 1068, + [2222] = 869, + [2223] = 1127, + [2224] = 1126, + [2225] = 1071, + [2226] = 1072, + [2227] = 1118, + [2228] = 2180, + [2229] = 1048, + [2230] = 1192, + [2231] = 1115, + [2232] = 1124, + [2233] = 2148, + [2234] = 1073, + [2235] = 869, + [2236] = 1183, + [2237] = 1116, + [2238] = 1143, + [2239] = 1152, + [2240] = 1145, + [2241] = 846, + [2242] = 1140, + [2243] = 1192, + [2244] = 1041, + [2245] = 1099, + [2246] = 2148, + [2247] = 1107, + [2248] = 1137, + [2249] = 1134, + [2250] = 1132, + [2251] = 1130, + [2252] = 1183, + [2253] = 1096, + [2254] = 1095, + [2255] = 1125, + [2256] = 1095, + [2257] = 2257, + [2258] = 1096, + [2259] = 1048, + [2260] = 1042, + [2261] = 1123, + [2262] = 1119, + [2263] = 1118, + [2264] = 1075, + [2265] = 1073, + [2266] = 1072, + [2267] = 1071, + [2268] = 1068, + [2269] = 1143, + [2270] = 1116, + [2271] = 1110, + [2272] = 1093, + [2273] = 1074, + [2274] = 2274, + [2275] = 1082, + [2276] = 1103, + [2277] = 1099, + [2278] = 1062, + [2279] = 1061, + [2280] = 1060, + [2281] = 1059, + [2282] = 1054, + [2283] = 1238, + [2284] = 1230, + [2285] = 1189, + [2286] = 1091, + [2287] = 1052, + [2288] = 1046, + [2289] = 1138, + [2290] = 1045, + [2291] = 1043, + [2292] = 1042, + [2293] = 1040, + [2294] = 1036, + [2295] = 1034, + [2296] = 1115, + [2297] = 1033, + [2298] = 1047, + [2299] = 1089, + [2300] = 1082, + [2301] = 1103, + [2302] = 1236, + [2303] = 1238, + [2304] = 1031, + [2305] = 1230, + [2306] = 1091, + [2307] = 1138, + [2308] = 1041, + [2309] = 1143, + [2310] = 1115, + [2311] = 1120, + [2312] = 1091, + [2313] = 1126, + [2314] = 1052, + [2315] = 2315, + [2316] = 1039, + [2317] = 1230, + [2318] = 1238, + [2319] = 1103, + [2320] = 1082, + [2321] = 1039, + [2322] = 1155, + [2323] = 1127, + [2324] = 1030, + [2325] = 1110, + [2326] = 1064, + [2327] = 1093, + [2328] = 1064, + [2329] = 1030, + [2330] = 1115, + [2331] = 1120, + [2332] = 1110, + [2333] = 1143, + [2334] = 1088, + [2335] = 1138, + [2336] = 1116, + [2337] = 1118, + [2338] = 1119, + [2339] = 1183, + [2340] = 1123, + [2341] = 1039, + [2342] = 1089, + [2343] = 1124, + [2344] = 1125, + [2345] = 1130, + [2346] = 1132, + [2347] = 1047, + [2348] = 1064, + [2349] = 1134, + [2350] = 1137, + [2351] = 1140, + [2352] = 1031, + [2353] = 1033, + [2354] = 1034, + [2355] = 1145, + [2356] = 1189, + [2357] = 1030, + [2358] = 1036, + [2359] = 1040, + [2360] = 1189, + [2361] = 1192, + [2362] = 1043, + [2363] = 1078, + [2364] = 1045, + [2365] = 1213, + [2366] = 1046, + [2367] = 1152, + [2368] = 1155, + [2369] = 1152, + [2370] = 1063, + [2371] = 1192, + [2372] = 1066, + [2373] = 1066, + [2374] = 1063, + [2375] = 1213, + [2376] = 1089, + [2377] = 1047, + [2378] = 1093, + [2379] = 1058, + [2380] = 1160, + [2381] = 1158, + [2382] = 1163, + [2383] = 1162, + [2384] = 1030, + [2385] = 1048, + [2386] = 1054, + [2387] = 1059, + [2388] = 1079, + [2389] = 1162, + [2390] = 1061, + [2391] = 1062, + [2392] = 1068, + [2393] = 1064, + [2394] = 1052, + [2395] = 1070, + [2396] = 1160, + [2397] = 1183, + [2398] = 1071, + [2399] = 1158, + [2400] = 1072, + [2401] = 1073, + [2402] = 869, + [2403] = 1189, + [2404] = 1075, + [2405] = 1236, + [2406] = 1052, + [2407] = 1079, + [2408] = 1047, + [2409] = 1107, + [2410] = 1089, + [2411] = 870, + [2412] = 1048, + [2413] = 1067, + [2414] = 2414, + [2415] = 1082, + [2416] = 1067, + [2417] = 1049, + [2418] = 1143, + [2419] = 1115, + [2420] = 1049, + [2421] = 1145, + [2422] = 2414, + [2423] = 1058, + [2424] = 1103, + [2425] = 1048, + [2426] = 1039, + [2427] = 1140, + [2428] = 1031, + [2429] = 1033, + [2430] = 1213, + [2431] = 1063, + [2432] = 1107, + [2433] = 1066, + [2434] = 1137, + [2435] = 1078, + [2436] = 2414, + [2437] = 1134, + [2438] = 1034, + [2439] = 1036, + [2440] = 1040, + [2441] = 869, + [2442] = 1120, + [2443] = 1042, + [2444] = 1043, [2445] = 1095, - [2446] = 1033, - [2447] = 1034, - [2448] = 1035, - [2449] = 1037, - [2450] = 880, - [2451] = 1094, - [2452] = 1038, - [2453] = 1046, - [2454] = 1047, - [2455] = 1093, - [2456] = 1048, - [2457] = 1051, - [2458] = 1133, - [2459] = 1125, - [2460] = 1118, - [2461] = 1115, - [2462] = 1110, - [2463] = 1157, - [2464] = 2155, - [2465] = 1146, - [2466] = 1204, - [2467] = 1027, - [2468] = 1164, - [2469] = 1080, - [2470] = 2470, - [2471] = 1124, - [2472] = 1076, - [2473] = 1075, - [2474] = 1074, - [2475] = 1070, - [2476] = 1067, - [2477] = 1204, - [2478] = 847, - [2479] = 2479, - [2480] = 1062, - [2481] = 1061, - [2482] = 1057, - [2483] = 1066, - [2484] = 1054, - [2485] = 897, - [2486] = 1059, - [2487] = 1178, - [2488] = 1143, - [2489] = 1031, - [2490] = 1051, - [2491] = 1048, - [2492] = 1047, - [2493] = 1046, - [2494] = 1038, - [2495] = 1037, - [2496] = 1035, - [2497] = 1034, - [2498] = 1033, - [2499] = 1030, - [2500] = 1029, - [2501] = 1138, - [2502] = 1032, - [2503] = 1085, - [2504] = 1106, - [2505] = 1108, - [2506] = 1164, - [2507] = 1176, - [2508] = 1177, - [2509] = 1097, - [2510] = 1039, - [2511] = 1040, - [2512] = 1042, - [2513] = 1043, - [2514] = 1054, - [2515] = 1057, - [2516] = 1061, - [2517] = 1062, - [2518] = 1181, - [2519] = 1105, - [2520] = 2185, - [2521] = 1067, - [2522] = 1043, - [2523] = 1070, - [2524] = 1074, - [2525] = 1103, - [2526] = 1075, - [2527] = 1076, - [2528] = 1080, - [2529] = 1027, - [2530] = 1040, - [2531] = 1093, - [2532] = 1127, - [2533] = 1094, - [2534] = 1095, - [2535] = 1096, - [2536] = 1097, - [2537] = 1101, - [2538] = 1039, - [2539] = 1102, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, - [2547] = 2544, - [2548] = 2548, - [2549] = 897, - [2550] = 2543, + [2446] = 1096, + [2447] = 1039, + [2448] = 1099, + [2449] = 1041, + [2450] = 1045, + [2451] = 1046, + [2452] = 1054, + [2453] = 1163, + [2454] = 1059, + [2455] = 1060, + [2456] = 1061, + [2457] = 1138, + [2458] = 1091, + [2459] = 876, + [2460] = 1230, + [2461] = 1238, + [2462] = 1078, + [2463] = 1236, + [2464] = 1103, + [2465] = 1062, + [2466] = 1082, + [2467] = 1031, + [2468] = 2148, + [2469] = 851, + [2470] = 1068, + [2471] = 1126, + [2472] = 1088, + [2473] = 1127, + [2474] = 1213, + [2475] = 1071, + [2476] = 1033, + [2477] = 1072, + [2478] = 1073, + [2479] = 1075, + [2480] = 1034, + [2481] = 2180, + [2482] = 1063, + [2483] = 1095, + [2484] = 1096, + [2485] = 1066, + [2486] = 1099, + [2487] = 1041, + [2488] = 1036, + [2489] = 1040, + [2490] = 1088, + [2491] = 1126, + [2492] = 1127, + [2493] = 1070, + [2494] = 1238, + [2495] = 1070, + [2496] = 1120, + [2497] = 869, + [2498] = 1078, + [2499] = 1162, + [2500] = 1163, + [2501] = 1088, + [2502] = 1058, + [2503] = 1230, + [2504] = 1091, + [2505] = 1042, + [2506] = 1043, + [2507] = 1138, + [2508] = 1127, + [2509] = 1132, + [2510] = 1126, + [2511] = 1045, + [2512] = 1070, + [2513] = 2180, + [2514] = 1130, + [2515] = 1125, + [2516] = 1046, + [2517] = 1049, + [2518] = 1067, + [2519] = 1236, + [2520] = 1079, + [2521] = 1064, + [2522] = 1124, + [2523] = 1041, + [2524] = 1099, + [2525] = 1123, + [2526] = 1096, + [2527] = 1095, + [2528] = 1120, + [2529] = 1158, + [2530] = 1160, + [2531] = 1054, + [2532] = 1030, + [2533] = 1162, + [2534] = 1093, + [2535] = 1119, + [2536] = 1155, + [2537] = 1110, + [2538] = 1075, + [2539] = 1073, + [2540] = 1072, + [2541] = 2414, + [2542] = 1059, + [2543] = 1116, + [2544] = 1071, + [2545] = 1068, + [2546] = 1062, + [2547] = 1163, + [2548] = 1118, + [2549] = 1061, + [2550] = 1060, [2551] = 2551, - [2552] = 2548, - [2553] = 2545, - [2554] = 2543, - [2555] = 2544, - [2556] = 2556, - [2557] = 2542, - [2558] = 2543, - [2559] = 2559, - [2560] = 2548, - [2561] = 2545, - [2562] = 2562, - [2563] = 2543, - [2564] = 2185, - [2565] = 873, - [2566] = 2566, - [2567] = 2548, - [2568] = 2545, - [2569] = 2548, - [2570] = 2545, - [2571] = 2542, - [2572] = 2548, - [2573] = 2545, - [2574] = 2548, - [2575] = 2548, - [2576] = 2545, - [2577] = 2185, - [2578] = 2543, - [2579] = 2543, - [2580] = 2542, - [2581] = 2542, - [2582] = 846, - [2583] = 2548, - [2584] = 2545, - [2585] = 2542, - [2586] = 2548, - [2587] = 2545, - [2588] = 852, - [2589] = 2544, - [2590] = 2185, - [2591] = 875, - [2592] = 2545, - [2593] = 2545, - [2594] = 2548, - [2595] = 2542, - [2596] = 871, - [2597] = 876, - [2598] = 872, - [2599] = 887, - [2600] = 2600, - [2601] = 868, - [2602] = 2600, - [2603] = 2600, - [2604] = 2600, - [2605] = 893, - [2606] = 2600, - [2607] = 2600, - [2608] = 2600, - [2609] = 882, - [2610] = 869, - [2611] = 2600, - [2612] = 2600, - [2613] = 874, - [2614] = 2544, - [2615] = 2600, - [2616] = 2600, - [2617] = 2544, - [2618] = 886, - [2619] = 2544, - [2620] = 889, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2624, - [2625] = 2625, - [2626] = 2624, - [2627] = 2624, - [2628] = 2623, - [2629] = 2629, - [2630] = 2625, - [2631] = 2624, - [2632] = 2622, - [2633] = 2624, - [2634] = 2629, + [2552] = 864, + [2553] = 2553, + [2554] = 2554, + [2555] = 2551, + [2556] = 2551, + [2557] = 2557, + [2558] = 2558, + [2559] = 2551, + [2560] = 2560, + [2561] = 872, + [2562] = 2558, + [2563] = 2563, + [2564] = 2551, + [2565] = 2557, + [2566] = 2551, + [2567] = 2551, + [2568] = 2557, + [2569] = 2558, + [2570] = 2570, + [2571] = 2571, + [2572] = 2557, + [2573] = 2557, + [2574] = 2558, + [2575] = 2575, + [2576] = 2180, + [2577] = 2551, + [2578] = 2557, + [2579] = 2180, + [2580] = 2557, + [2581] = 2551, + [2582] = 2570, + [2583] = 2570, + [2584] = 2558, + [2585] = 2585, + [2586] = 2558, + [2587] = 856, + [2588] = 2588, + [2589] = 869, + [2590] = 2557, + [2591] = 2557, + [2592] = 2180, + [2593] = 2575, + [2594] = 2558, + [2595] = 2557, + [2596] = 881, + [2597] = 2570, + [2598] = 2557, + [2599] = 2551, + [2600] = 2575, + [2601] = 2570, + [2602] = 2570, + [2603] = 2551, + [2604] = 2575, + [2605] = 2570, + [2606] = 2606, + [2607] = 2607, + [2608] = 886, + [2609] = 890, + [2610] = 2607, + [2611] = 2575, + [2612] = 880, + [2613] = 887, + [2614] = 879, + [2615] = 878, + [2616] = 2607, + [2617] = 2607, + [2618] = 2607, + [2619] = 2607, + [2620] = 2607, + [2621] = 868, + [2622] = 2607, + [2623] = 877, + [2624] = 875, + [2625] = 2575, + [2626] = 2607, + [2627] = 2607, + [2628] = 883, + [2629] = 2607, + [2630] = 873, + [2631] = 2575, + [2632] = 874, + [2633] = 2633, + [2634] = 2634, [2635] = 2635, - [2636] = 2635, - [2637] = 2623, + [2636] = 2636, + [2637] = 2636, [2638] = 2638, - [2639] = 2622, - [2640] = 2623, - [2641] = 2629, - [2642] = 2622, - [2643] = 2622, - [2644] = 2638, - [2645] = 2624, - [2646] = 2624, - [2647] = 2638, - [2648] = 2625, - [2649] = 2625, - [2650] = 2638, - [2651] = 2623, - [2652] = 2623, - [2653] = 2635, - [2654] = 2629, - [2655] = 2622, - [2656] = 2625, - [2657] = 2635, - [2658] = 2622, - [2659] = 2623, - [2660] = 2629, - [2661] = 2625, - [2662] = 2624, - [2663] = 2625, - [2664] = 2629, - [2665] = 2629, + [2639] = 2639, + [2640] = 2640, + [2641] = 2634, + [2642] = 2640, + [2643] = 2635, + [2644] = 2644, + [2645] = 2644, + [2646] = 2635, + [2647] = 2640, + [2648] = 2640, + [2649] = 2638, + [2650] = 2635, + [2651] = 2638, + [2652] = 2634, + [2653] = 2634, + [2654] = 2639, + [2655] = 2639, + [2656] = 2636, + [2657] = 2636, + [2658] = 2638, + [2659] = 2634, + [2660] = 2638, + [2661] = 2639, + [2662] = 2634, + [2663] = 2640, + [2664] = 2644, + [2665] = 2635, [2666] = 2635, - [2667] = 2623, - [2668] = 2623, - [2669] = 2629, - [2670] = 2622, - [2671] = 2623, - [2672] = 2638, + [2667] = 2636, + [2668] = 2644, + [2669] = 2644, + [2670] = 2636, + [2671] = 2639, + [2672] = 2640, [2673] = 2638, - [2674] = 2635, - [2675] = 2624, - [2676] = 2629, - [2677] = 2625, - [2678] = 2622, - [2679] = 2622, - [2680] = 2625, - [2681] = 2635, - [2682] = 2635, - [2683] = 2625, - [2684] = 2629, - [2685] = 2624, - [2686] = 2638, - [2687] = 2638, - [2688] = 2623, - [2689] = 2625, - [2690] = 2624, - [2691] = 2635, - [2692] = 2638, - [2693] = 2629, - [2694] = 2635, - [2695] = 2638, - [2696] = 2638, - [2697] = 2622, + [2674] = 2644, + [2675] = 2640, + [2676] = 2635, + [2677] = 2636, + [2678] = 2635, + [2679] = 2639, + [2680] = 2644, + [2681] = 2634, + [2682] = 2644, + [2683] = 2634, + [2684] = 2634, + [2685] = 2636, + [2686] = 2636, + [2687] = 2640, + [2688] = 2636, + [2689] = 2640, + [2690] = 2644, + [2691] = 2638, + [2692] = 2635, + [2693] = 2635, + [2694] = 2644, + [2695] = 2639, + [2696] = 2635, + [2697] = 2638, [2698] = 2638, - [2699] = 2635, - [2700] = 2623, - [2701] = 2624, - [2702] = 2622, - [2703] = 2629, - [2704] = 2635, - [2705] = 2625, - [2706] = 2706, - [2707] = 2707, - [2708] = 2708, - [2709] = 2709, - [2710] = 807, - [2711] = 2711, - [2712] = 2706, - [2713] = 2713, - [2714] = 2711, - [2715] = 2715, - [2716] = 2716, - [2717] = 2706, - [2718] = 2711, + [2699] = 2639, + [2700] = 2639, + [2701] = 2639, + [2702] = 2635, + [2703] = 2639, + [2704] = 2644, + [2705] = 2640, + [2706] = 2636, + [2707] = 2634, + [2708] = 2638, + [2709] = 2638, + [2710] = 2639, + [2711] = 2640, + [2712] = 2640, + [2713] = 2634, + [2714] = 2636, + [2715] = 2634, + [2716] = 2638, + [2717] = 2644, + [2718] = 2718, [2719] = 2719, [2720] = 2720, - [2721] = 2706, - [2722] = 2706, - [2723] = 2711, - [2724] = 2724, - [2725] = 2711, - [2726] = 2726, - [2727] = 2727, + [2721] = 2720, + [2722] = 2720, + [2723] = 2720, + [2724] = 2719, + [2725] = 807, + [2726] = 2719, + [2727] = 2719, [2728] = 2728, - [2729] = 920, - [2730] = 2730, + [2729] = 2729, + [2730] = 2719, [2731] = 2731, [2732] = 2732, - [2733] = 2706, - [2734] = 2734, - [2735] = 2735, - [2736] = 2711, - [2737] = 2711, - [2738] = 2706, - [2739] = 2739, + [2733] = 2733, + [2734] = 2719, + [2735] = 2720, + [2736] = 2736, + [2737] = 2737, + [2738] = 2738, + [2739] = 2720, [2740] = 2740, - [2741] = 2739, + [2741] = 2741, [2742] = 2742, - [2743] = 2742, + [2743] = 2719, [2744] = 2744, [2745] = 2745, [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2739, + [2747] = 939, + [2748] = 2720, + [2749] = 2749, [2750] = 2750, [2751] = 2751, [2752] = 2752, [2753] = 2753, - [2754] = 2739, + [2754] = 2753, [2755] = 2755, - [2756] = 2742, + [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 2742, - [2760] = 2739, - [2761] = 2750, + [2759] = 2759, + [2760] = 2755, + [2761] = 2753, [2762] = 2762, [2763] = 2763, - [2764] = 2764, - [2765] = 2742, + [2764] = 2753, + [2765] = 2753, [2766] = 2766, - [2767] = 2744, - [2768] = 2744, - [2769] = 2739, - [2770] = 2770, - [2771] = 2750, - [2772] = 2744, + [2767] = 2755, + [2768] = 2768, + [2769] = 2755, + [2770] = 2766, + [2771] = 2763, + [2772] = 2772, [2773] = 2773, - [2774] = 2742, + [2774] = 2766, [2775] = 2775, [2776] = 2776, - [2777] = 2744, - [2778] = 2739, - [2779] = 2744, - [2780] = 2744, - [2781] = 2744, - [2782] = 2739, - [2783] = 2742, - [2784] = 2784, - [2785] = 2785, - [2786] = 2786, + [2777] = 2766, + [2778] = 2778, + [2779] = 2753, + [2780] = 2753, + [2781] = 2781, + [2782] = 2782, + [2783] = 2783, + [2784] = 2763, + [2785] = 2766, + [2786] = 2763, [2787] = 2787, [2788] = 2788, - [2789] = 2744, - [2790] = 2742, - [2791] = 2744, + [2789] = 2789, + [2790] = 2790, + [2791] = 2755, [2792] = 2792, - [2793] = 2739, - [2794] = 2742, - [2795] = 2750, - [2796] = 2739, - [2797] = 2739, - [2798] = 2798, - [2799] = 2739, - [2800] = 2742, - [2801] = 2801, - [2802] = 2750, - [2803] = 2803, - [2804] = 2750, - [2805] = 2742, - [2806] = 2742, - [2807] = 2750, - [2808] = 2744, - [2809] = 2744, - [2810] = 2744, + [2793] = 2793, + [2794] = 2794, + [2795] = 2753, + [2796] = 2755, + [2797] = 2797, + [2798] = 2753, + [2799] = 2799, + [2800] = 2800, + [2801] = 2766, + [2802] = 2755, + [2803] = 2766, + [2804] = 2753, + [2805] = 2755, + [2806] = 2755, + [2807] = 2807, + [2808] = 2763, + [2809] = 2755, + [2810] = 2810, [2811] = 2811, - [2812] = 2812, - [2813] = 2742, - [2814] = 2814, - [2815] = 2815, - [2816] = 2739, - [2817] = 2817, + [2812] = 2766, + [2813] = 2766, + [2814] = 2766, + [2815] = 2755, + [2816] = 2816, + [2817] = 2766, [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2822, - [2823] = 2821, - [2824] = 2819, - [2825] = 2825, - [2826] = 2825, - [2827] = 2825, - [2828] = 2828, + [2819] = 2753, + [2820] = 2763, + [2821] = 2766, + [2822] = 2753, + [2823] = 2755, + [2824] = 2766, + [2825] = 2755, + [2826] = 2753, + [2827] = 2827, + [2828] = 2763, [2829] = 2829, - [2830] = 2817, + [2830] = 2830, [2831] = 2831, - [2832] = 2818, + [2832] = 2832, [2833] = 2833, - [2834] = 2833, + [2834] = 2832, [2835] = 2835, - [2836] = 2821, - [2837] = 2825, - [2838] = 2821, - [2839] = 2839, - [2840] = 2822, - [2841] = 2819, - [2842] = 2821, + [2836] = 2836, + [2837] = 2836, + [2838] = 2838, + [2839] = 2829, + [2840] = 2832, + [2841] = 2838, + [2842] = 2835, [2843] = 2843, - [2844] = 2818, - [2845] = 2845, - [2846] = 2821, - [2847] = 2819, - [2848] = 2825, - [2849] = 2833, - [2850] = 2833, - [2851] = 2825, - [2852] = 2825, - [2853] = 2845, - [2854] = 2825, - [2855] = 2818, - [2856] = 2817, - [2857] = 2822, - [2858] = 2858, - [2859] = 2859, - [2860] = 2833, - [2861] = 2845, - [2862] = 2822, - [2863] = 2817, - [2864] = 2833, - [2865] = 2839, - [2866] = 2825, - [2867] = 2819, - [2868] = 2821, - [2869] = 2839, - [2870] = 2820, - [2871] = 2825, - [2872] = 2845, - [2873] = 2839, - [2874] = 2839, - [2875] = 2818, - [2876] = 2876, - [2877] = 2825, - [2878] = 2825, - [2879] = 2817, - [2880] = 2825, - [2881] = 2845, - [2882] = 2822, - [2883] = 2817, - [2884] = 2822, - [2885] = 2822, - [2886] = 2819, - [2887] = 2817, - [2888] = 2818, - [2889] = 2858, - [2890] = 2820, - [2891] = 2820, - [2892] = 2818, - [2893] = 2839, - [2894] = 2825, + [2844] = 2831, + [2845] = 2831, + [2846] = 2830, + [2847] = 810, + [2848] = 2838, + [2849] = 2849, + [2850] = 2836, + [2851] = 2835, + [2852] = 2829, + [2853] = 2832, + [2854] = 2836, + [2855] = 2855, + [2856] = 2856, + [2857] = 2849, + [2858] = 2835, + [2859] = 2829, + [2860] = 2849, + [2861] = 2831, + [2862] = 2832, + [2863] = 2833, + [2864] = 2836, + [2865] = 2830, + [2866] = 2833, + [2867] = 2835, + [2868] = 2868, + [2869] = 2869, + [2870] = 2832, + [2871] = 2871, + [2872] = 2872, + [2873] = 2838, + [2874] = 2849, + [2875] = 2875, + [2876] = 2832, + [2877] = 2833, + [2878] = 2829, + [2879] = 2843, + [2880] = 2871, + [2881] = 2843, + [2882] = 2843, + [2883] = 2830, + [2884] = 2832, + [2885] = 2838, + [2886] = 2838, + [2887] = 2832, + [2888] = 2832, + [2889] = 2843, + [2890] = 2849, + [2891] = 2843, + [2892] = 2849, + [2893] = 2832, + [2894] = 2849, [2895] = 2895, - [2896] = 2839, - [2897] = 2845, - [2898] = 2845, - [2899] = 810, - [2900] = 2825, - [2901] = 2819, - [2902] = 2833, - [2903] = 2903, - [2904] = 2904, - [2905] = 2905, - [2906] = 2906, - [2907] = 2907, - [2908] = 2908, - [2909] = 2909, - [2910] = 2910, - [2911] = 837, - [2912] = 828, - [2913] = 832, - [2914] = 2914, - [2915] = 859, + [2896] = 2843, + [2897] = 2832, + [2898] = 2832, + [2899] = 2829, + [2900] = 2835, + [2901] = 2836, + [2902] = 2831, + [2903] = 2832, + [2904] = 2831, + [2905] = 2830, + [2906] = 2832, + [2907] = 2838, + [2908] = 2831, + [2909] = 2836, + [2910] = 2835, + [2911] = 2830, + [2912] = 2912, + [2913] = 2830, + [2914] = 2829, + [2915] = 2915, [2916] = 2916, - [2917] = 831, - [2918] = 850, - [2919] = 837, - [2920] = 828, - [2921] = 832, - [2922] = 863, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, [2923] = 850, - [2924] = 831, - [2925] = 859, - [2926] = 2926, - [2927] = 863, - [2928] = 849, - [2929] = 2929, - [2930] = 2930, - [2931] = 847, + [2924] = 2924, + [2925] = 2925, + [2926] = 851, + [2927] = 2927, + [2928] = 828, + [2929] = 830, + [2930] = 832, + [2931] = 848, [2932] = 2932, - [2933] = 853, - [2934] = 2934, - [2935] = 2935, - [2936] = 877, - [2937] = 2937, - [2938] = 2938, + [2933] = 2933, + [2934] = 831, + [2935] = 850, + [2936] = 847, + [2937] = 846, + [2938] = 847, [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, - [2944] = 2944, - [2945] = 2945, + [2940] = 832, + [2941] = 852, + [2942] = 831, + [2943] = 830, + [2944] = 852, + [2945] = 828, [2946] = 2946, [2947] = 2947, - [2948] = 853, - [2949] = 2949, - [2950] = 853, - [2951] = 877, + [2948] = 2947, + [2949] = 869, + [2950] = 2947, + [2951] = 2947, [2952] = 2952, - [2953] = 2953, - [2954] = 828, - [2955] = 880, - [2956] = 863, - [2957] = 837, - [2958] = 850, - [2959] = 832, - [2960] = 831, - [2961] = 2961, - [2962] = 2962, - [2963] = 849, - [2964] = 2964, - [2965] = 859, - [2966] = 2966, - [2967] = 2967, + [2953] = 848, + [2954] = 2947, + [2955] = 2955, + [2956] = 846, + [2957] = 2957, + [2958] = 2947, + [2959] = 2947, + [2960] = 2947, + [2961] = 2947, + [2962] = 2947, + [2963] = 2963, + [2964] = 848, + [2965] = 2947, + [2966] = 2947, + [2967] = 831, [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 897, - [2973] = 849, - [2974] = 880, - [2975] = 847, - [2976] = 847, - [2977] = 863, + [2969] = 832, + [2970] = 828, + [2971] = 830, + [2972] = 870, + [2973] = 2947, + [2974] = 2974, + [2975] = 2947, + [2976] = 2947, + [2977] = 2977, [2978] = 2978, - [2979] = 846, - [2980] = 2980, - [2981] = 2981, + [2979] = 2979, + [2980] = 2947, + [2981] = 2947, [2982] = 2982, - [2983] = 877, - [2984] = 849, + [2983] = 2947, + [2984] = 2947, [2985] = 2985, - [2986] = 846, - [2987] = 880, - [2988] = 875, - [2989] = 828, + [2986] = 2947, + [2987] = 2947, + [2988] = 2947, + [2989] = 2947, [2990] = 2990, - [2991] = 852, - [2992] = 875, - [2993] = 873, - [2994] = 832, - [2995] = 897, - [2996] = 2996, - [2997] = 897, - [2998] = 852, - [2999] = 2999, - [3000] = 3000, - [3001] = 850, - [3002] = 847, - [3003] = 831, + [2991] = 876, + [2992] = 2992, + [2993] = 2947, + [2994] = 2994, + [2995] = 850, + [2996] = 876, + [2997] = 2947, + [2998] = 2947, + [2999] = 852, + [3000] = 851, + [3001] = 851, + [3002] = 3002, + [3003] = 2947, [3004] = 3004, - [3005] = 873, - [3006] = 853, - [3007] = 859, - [3008] = 837, - [3009] = 3009, - [3010] = 3009, - [3011] = 887, - [3012] = 3009, - [3013] = 875, - [3014] = 3009, - [3015] = 3009, - [3016] = 889, - [3017] = 893, - [3018] = 3009, - [3019] = 876, - [3020] = 880, - [3021] = 3009, - [3022] = 3009, - [3023] = 3009, - [3024] = 874, - [3025] = 877, - [3026] = 3009, - [3027] = 3009, - [3028] = 882, - [3029] = 872, + [3005] = 3005, + [3006] = 3006, + [3007] = 2947, + [3008] = 2947, + [3009] = 870, + [3010] = 3010, + [3011] = 3011, + [3012] = 3012, + [3013] = 2947, + [3014] = 3014, + [3015] = 847, + [3016] = 2947, + [3017] = 846, + [3018] = 3018, + [3019] = 2947, + [3020] = 3020, + [3021] = 2947, + [3022] = 850, + [3023] = 856, + [3024] = 832, + [3025] = 872, + [3026] = 3026, + [3027] = 828, + [3028] = 881, + [3029] = 3029, [3030] = 869, - [3031] = 897, - [3032] = 3009, - [3033] = 3009, - [3034] = 3009, - [3035] = 853, - [3036] = 871, - [3037] = 847, - [3038] = 893, - [3039] = 3009, - [3040] = 846, - [3041] = 887, - [3042] = 849, - [3043] = 886, - [3044] = 3009, - [3045] = 3009, - [3046] = 872, - [3047] = 3009, - [3048] = 882, - [3049] = 869, - [3050] = 3009, - [3051] = 3009, - [3052] = 3009, - [3053] = 3009, - [3054] = 3009, - [3055] = 3009, - [3056] = 3009, - [3057] = 868, - [3058] = 852, - [3059] = 886, - [3060] = 3009, - [3061] = 3009, + [3031] = 3031, + [3032] = 864, + [3033] = 3033, + [3034] = 851, + [3035] = 870, + [3036] = 3036, + [3037] = 3037, + [3038] = 830, + [3039] = 847, + [3040] = 831, + [3041] = 3041, + [3042] = 856, + [3043] = 3043, + [3044] = 3044, + [3045] = 881, + [3046] = 852, + [3047] = 876, + [3048] = 848, + [3049] = 864, + [3050] = 3037, + [3051] = 3037, + [3052] = 846, + [3053] = 3037, + [3054] = 872, + [3055] = 3055, + [3056] = 869, + [3057] = 3057, + [3058] = 874, + [3059] = 848, + [3060] = 874, + [3061] = 856, [3062] = 873, [3063] = 868, - [3064] = 874, - [3065] = 3009, - [3066] = 889, - [3067] = 876, - [3068] = 3009, - [3069] = 3009, - [3070] = 871, - [3071] = 3009, - [3072] = 3009, - [3073] = 3009, - [3074] = 889, - [3075] = 846, - [3076] = 3076, + [3064] = 887, + [3065] = 875, + [3066] = 877, + [3067] = 3067, + [3068] = 886, + [3069] = 3067, + [3070] = 869, + [3071] = 873, + [3072] = 887, + [3073] = 890, + [3074] = 851, + [3075] = 890, + [3076] = 878, [3077] = 872, - [3078] = 882, - [3079] = 875, - [3080] = 886, - [3081] = 873, - [3082] = 869, - [3083] = 897, - [3084] = 3076, - [3085] = 893, - [3086] = 911, - [3087] = 887, - [3088] = 868, - [3089] = 876, - [3090] = 871, - [3091] = 852, - [3092] = 3076, - [3093] = 874, - [3094] = 3076, - [3095] = 2728, - [3096] = 921, - [3097] = 917, - [3098] = 3098, - [3099] = 3098, - [3100] = 2724, - [3101] = 2735, - [3102] = 876, - [3103] = 925, - [3104] = 871, - [3105] = 882, - [3106] = 889, - [3107] = 872, - [3108] = 2735, - [3109] = 886, - [3110] = 3110, - [3111] = 2724, - [3112] = 887, - [3113] = 893, - [3114] = 2728, - [3115] = 869, - [3116] = 3098, - [3117] = 923, - [3118] = 3098, - [3119] = 868, - [3120] = 874, - [3121] = 2758, - [3122] = 2735, - [3123] = 2811, - [3124] = 2724, - [3125] = 2811, - [3126] = 920, - [3127] = 920, - [3128] = 2814, - [3129] = 2758, - [3130] = 2814, - [3131] = 2728, - [3132] = 2792, - [3133] = 1176, - [3134] = 1108, - [3135] = 1106, - [3136] = 1085, - [3137] = 1138, - [3138] = 1029, - [3139] = 1030, - [3140] = 1033, - [3141] = 1034, - [3142] = 1035, - [3143] = 1037, - [3144] = 1038, - [3145] = 1046, - [3146] = 1047, - [3147] = 1048, - [3148] = 1051, - [3149] = 2758, - [3150] = 2724, - [3151] = 2792, - [3152] = 1177, - [3153] = 1178, - [3154] = 2755, - [3155] = 920, - [3156] = 1124, - [3157] = 2755, - [3158] = 2735, - [3159] = 1181, - [3160] = 1143, - [3161] = 1082, - [3162] = 1066, - [3163] = 1081, - [3164] = 2728, - [3165] = 2814, - [3166] = 1133, - [3167] = 2811, - [3168] = 1125, - [3169] = 1164, - [3170] = 1118, - [3171] = 1115, - [3172] = 1110, - [3173] = 2758, - [3174] = 920, - [3175] = 3175, - [3176] = 2792, - [3177] = 2814, - [3178] = 2755, - [3179] = 2811, - [3180] = 3180, - [3181] = 3181, - [3182] = 3182, - [3183] = 3183, - [3184] = 3184, - [3185] = 3185, - [3186] = 2792, - [3187] = 2755, - [3188] = 3188, - [3189] = 3189, + [3078] = 879, + [3079] = 880, + [3080] = 846, + [3081] = 883, + [3082] = 3067, + [3083] = 878, + [3084] = 870, + [3085] = 877, + [3086] = 886, + [3087] = 864, + [3088] = 3088, + [3089] = 881, + [3090] = 868, + [3091] = 879, + [3092] = 880, + [3093] = 875, + [3094] = 883, + [3095] = 3067, + [3096] = 876, + [3097] = 877, + [3098] = 908, + [3099] = 873, + [3100] = 887, + [3101] = 881, + [3102] = 856, + [3103] = 868, + [3104] = 879, + [3105] = 875, + [3106] = 872, + [3107] = 890, + [3108] = 886, + [3109] = 864, + [3110] = 869, + [3111] = 880, + [3112] = 878, + [3113] = 883, + [3114] = 874, + [3115] = 931, + [3116] = 868, + [3117] = 2744, + [3118] = 937, + [3119] = 2744, + [3120] = 880, + [3121] = 2742, + [3122] = 919, + [3123] = 2746, + [3124] = 873, + [3125] = 890, + [3126] = 887, + [3127] = 874, + [3128] = 878, + [3129] = 2742, + [3130] = 875, + [3131] = 2746, + [3132] = 886, + [3133] = 923, + [3134] = 879, + [3135] = 877, + [3136] = 883, + [3137] = 2811, + [3138] = 939, + [3139] = 2744, + [3140] = 2799, + [3141] = 2762, + [3142] = 2746, + [3143] = 2811, + [3144] = 2762, + [3145] = 2799, + [3146] = 939, + [3147] = 2742, + [3148] = 1155, + [3149] = 1091, + [3150] = 1125, + [3151] = 1124, + [3152] = 1123, + [3153] = 1119, + [3154] = 1118, + [3155] = 1116, + [3156] = 1152, + [3157] = 1110, + [3158] = 1093, + [3159] = 2800, + [3160] = 1145, + [3161] = 1140, + [3162] = 1137, + [3163] = 1134, + [3164] = 1132, + [3165] = 2800, + [3166] = 1183, + [3167] = 2742, + [3168] = 2799, + [3169] = 1192, + [3170] = 939, + [3171] = 2757, + [3172] = 2811, + [3173] = 2746, + [3174] = 1130, + [3175] = 1236, + [3176] = 1160, + [3177] = 2757, + [3178] = 1158, + [3179] = 1082, + [3180] = 1107, + [3181] = 1103, + [3182] = 1058, + [3183] = 1238, + [3184] = 1230, + [3185] = 2762, + [3186] = 2744, + [3187] = 1067, + [3188] = 1049, + [3189] = 939, [3190] = 3190, - [3191] = 3191, - [3192] = 3192, - [3193] = 3192, - [3194] = 3192, - [3195] = 3195, + [3191] = 2762, + [3192] = 2800, + [3193] = 2799, + [3194] = 2811, + [3195] = 2757, [3196] = 3196, - [3197] = 3192, - [3198] = 3192, - [3199] = 3192, - [3200] = 3192, - [3201] = 3192, - [3202] = 3192, - [3203] = 3192, - [3204] = 3192, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 2800, + [3202] = 2757, + [3203] = 3203, + [3204] = 3204, [3205] = 3205, - [3206] = 3192, - [3207] = 807, - [3208] = 807, - [3209] = 807, - [3210] = 807, - [3211] = 807, - [3212] = 810, - [3213] = 810, - [3214] = 810, - [3215] = 810, - [3216] = 810, - [3217] = 3217, - [3218] = 828, - [3219] = 3219, - [3220] = 3220, - [3221] = 832, - [3222] = 831, - [3223] = 859, - [3224] = 850, - [3225] = 863, - [3226] = 850, - [3227] = 837, - [3228] = 832, - [3229] = 837, - [3230] = 863, - [3231] = 828, - [3232] = 831, - [3233] = 859, - [3234] = 880, - [3235] = 880, - [3236] = 877, - [3237] = 849, - [3238] = 849, - [3239] = 853, - [3240] = 877, - [3241] = 847, - [3242] = 847, - [3243] = 3243, - [3244] = 853, - [3245] = 3245, - [3246] = 873, - [3247] = 3247, - [3248] = 3248, - [3249] = 873, - [3250] = 3248, - [3251] = 875, - [3252] = 3247, - [3253] = 852, - [3254] = 3254, - [3255] = 3248, - [3256] = 875, - [3257] = 897, - [3258] = 3247, - [3259] = 846, - [3260] = 846, - [3261] = 897, - [3262] = 852, - [3263] = 871, - [3264] = 893, + [3206] = 3206, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 3208, + [3211] = 3211, + [3212] = 3208, + [3213] = 3208, + [3214] = 3214, + [3215] = 3208, + [3216] = 3208, + [3217] = 3208, + [3218] = 3208, + [3219] = 3208, + [3220] = 3208, + [3221] = 3208, + [3222] = 3208, + [3223] = 807, + [3224] = 807, + [3225] = 807, + [3226] = 807, + [3227] = 807, + [3228] = 810, + [3229] = 810, + [3230] = 810, + [3231] = 810, + [3232] = 810, + [3233] = 3233, + [3234] = 852, + [3235] = 830, + [3236] = 3236, + [3237] = 850, + [3238] = 831, + [3239] = 832, + [3240] = 830, + [3241] = 828, + [3242] = 3242, + [3243] = 828, + [3244] = 852, + [3245] = 832, + [3246] = 831, + [3247] = 847, + [3248] = 850, + [3249] = 847, + [3250] = 851, + [3251] = 846, + [3252] = 3252, + [3253] = 3253, + [3254] = 851, + [3255] = 870, + [3256] = 870, + [3257] = 848, + [3258] = 846, + [3259] = 876, + [3260] = 876, + [3261] = 848, + [3262] = 869, + [3263] = 864, + [3264] = 3264, [3265] = 872, - [3266] = 872, - [3267] = 882, - [3268] = 874, - [3269] = 882, - [3270] = 886, - [3271] = 886, - [3272] = 889, - [3273] = 869, - [3274] = 893, - [3275] = 889, - [3276] = 887, - [3277] = 868, - [3278] = 874, - [3279] = 911, - [3280] = 3280, - [3281] = 869, - [3282] = 807, - [3283] = 887, - [3284] = 876, - [3285] = 868, - [3286] = 871, - [3287] = 876, - [3288] = 923, - [3289] = 856, - [3290] = 853, - [3291] = 921, - [3292] = 911, - [3293] = 911, - [3294] = 3294, - [3295] = 925, - [3296] = 3280, - [3297] = 917, - [3298] = 849, - [3299] = 3299, - [3300] = 917, - [3301] = 3301, - [3302] = 3301, - [3303] = 853, - [3304] = 3304, - [3305] = 3305, - [3306] = 3301, - [3307] = 1091, - [3308] = 925, - [3309] = 911, - [3310] = 921, - [3311] = 3305, - [3312] = 925, - [3313] = 3305, - [3314] = 3301, - [3315] = 849, - [3316] = 3301, - [3317] = 3317, - [3318] = 3317, - [3319] = 923, - [3320] = 921, + [3266] = 856, + [3267] = 872, + [3268] = 3268, + [3269] = 869, + [3270] = 3264, + [3271] = 864, + [3272] = 3268, + [3273] = 881, + [3274] = 881, + [3275] = 3268, + [3276] = 856, + [3277] = 3264, + [3278] = 3278, + [3279] = 877, + [3280] = 890, + [3281] = 908, + [3282] = 890, + [3283] = 3283, + [3284] = 878, + [3285] = 879, + [3286] = 868, + [3287] = 3287, + [3288] = 880, + [3289] = 886, + [3290] = 3287, + [3291] = 886, + [3292] = 880, + [3293] = 887, + [3294] = 878, + [3295] = 868, + [3296] = 875, + [3297] = 874, + [3298] = 3287, + [3299] = 887, + [3300] = 874, + [3301] = 807, + [3302] = 3287, + [3303] = 3287, + [3304] = 883, + [3305] = 877, + [3306] = 3306, + [3307] = 875, + [3308] = 873, + [3309] = 873, + [3310] = 883, + [3311] = 879, + [3312] = 908, + [3313] = 853, + [3314] = 846, + [3315] = 919, + [3316] = 923, + [3317] = 3306, + [3318] = 937, + [3319] = 3319, + [3320] = 908, [3321] = 3321, - [3322] = 3317, - [3323] = 810, - [3324] = 3321, - [3325] = 856, - [3326] = 3301, - [3327] = 853, - [3328] = 3321, - [3329] = 897, - [3330] = 3301, - [3331] = 3301, - [3332] = 3301, - [3333] = 917, - [3334] = 3334, - [3335] = 3317, - [3336] = 3301, - [3337] = 911, - [3338] = 923, - [3339] = 3301, - [3340] = 3301, - [3341] = 849, - [3342] = 3321, - [3343] = 856, - [3344] = 847, - [3345] = 3317, - [3346] = 3305, - [3347] = 3347, - [3348] = 1183, - [3349] = 1164, - [3350] = 917, - [3351] = 849, - [3352] = 897, - [3353] = 921, - [3354] = 1091, - [3355] = 1030, - [3356] = 856, - [3357] = 1110, - [3358] = 1115, - [3359] = 1118, - [3360] = 1125, - [3361] = 1133, - [3362] = 859, - [3363] = 3304, - [3364] = 1204, - [3365] = 897, - [3366] = 850, - [3367] = 1051, - [3368] = 1048, - [3369] = 1047, - [3370] = 1046, - [3371] = 1124, - [3372] = 1038, - [3373] = 1037, - [3374] = 1035, - [3375] = 1034, - [3376] = 923, - [3377] = 853, - [3378] = 1033, - [3379] = 921, - [3380] = 1177, - [3381] = 917, - [3382] = 1029, - [3383] = 1138, - [3384] = 1085, - [3385] = 1106, - [3386] = 1108, - [3387] = 925, - [3388] = 1176, - [3389] = 923, - [3390] = 1146, - [3391] = 1181, - [3392] = 1091, - [3393] = 1082, - [3394] = 1081, - [3395] = 856, - [3396] = 925, - [3397] = 1066, - [3398] = 1069, - [3399] = 3399, - [3400] = 3347, - [3401] = 1178, - [3402] = 3402, - [3403] = 1143, - [3404] = 3404, - [3405] = 3347, - [3406] = 1117, - [3407] = 3407, - [3408] = 849, - [3409] = 853, - [3410] = 1027, - [3411] = 3347, + [3322] = 848, + [3323] = 931, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 851, + [3328] = 846, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 919, + [3333] = 3329, + [3334] = 931, + [3335] = 937, + [3336] = 810, + [3337] = 848, + [3338] = 3326, + [3339] = 846, + [3340] = 923, + [3341] = 3325, + [3342] = 923, + [3343] = 3325, + [3344] = 3326, + [3345] = 848, + [3346] = 3324, + [3347] = 869, + [3348] = 3326, + [3349] = 3329, + [3350] = 1162, + [3351] = 937, + [3352] = 3330, + [3353] = 919, + [3354] = 3330, + [3355] = 3329, + [3356] = 3325, + [3357] = 853, + [3358] = 3330, + [3359] = 3326, + [3360] = 853, + [3361] = 3330, + [3362] = 3324, + [3363] = 3324, + [3364] = 3330, + [3365] = 3324, + [3366] = 931, + [3367] = 3324, + [3368] = 3330, + [3369] = 3326, + [3370] = 3324, + [3371] = 3324, + [3372] = 3324, + [3373] = 3324, + [3374] = 3324, + [3375] = 3324, + [3376] = 908, + [3377] = 908, + [3378] = 3326, + [3379] = 1118, + [3380] = 869, + [3381] = 3381, + [3382] = 3382, + [3383] = 3382, + [3384] = 869, + [3385] = 1163, + [3386] = 3386, + [3387] = 3381, + [3388] = 853, + [3389] = 847, + [3390] = 1079, + [3391] = 3331, + [3392] = 3382, + [3393] = 852, + [3394] = 931, + [3395] = 3395, + [3396] = 919, + [3397] = 1049, + [3398] = 1067, + [3399] = 1160, + [3400] = 1162, + [3401] = 937, + [3402] = 1192, + [3403] = 3382, + [3404] = 1183, + [3405] = 1152, + [3406] = 1145, + [3407] = 1140, + [3408] = 1137, + [3409] = 3381, + [3410] = 1134, + [3411] = 1132, [3412] = 3412, - [3413] = 1157, - [3414] = 3304, - [3415] = 3415, - [3416] = 3416, - [3417] = 1091, - [3418] = 1181, - [3419] = 3419, - [3420] = 1146, - [3421] = 1082, - [3422] = 1081, - [3423] = 1146, - [3424] = 1066, - [3425] = 1177, - [3426] = 3416, - [3427] = 3419, - [3428] = 3419, - [3429] = 1204, - [3430] = 1181, - [3431] = 1143, - [3432] = 1176, - [3433] = 1117, - [3434] = 1108, - [3435] = 1106, - [3436] = 1085, - [3437] = 1138, - [3438] = 1029, - [3439] = 1030, - [3440] = 1033, - [3441] = 1034, - [3442] = 1035, - [3443] = 1037, - [3444] = 1038, - [3445] = 1046, - [3446] = 1047, - [3447] = 1176, - [3448] = 1048, - [3449] = 1051, - [3450] = 3416, - [3451] = 1027, - [3452] = 1204, - [3453] = 3453, - [3454] = 1183, - [3455] = 3416, - [3456] = 1108, - [3457] = 1106, - [3458] = 1085, - [3459] = 1138, - [3460] = 3416, - [3461] = 3419, - [3462] = 1178, - [3463] = 1178, - [3464] = 3464, - [3465] = 1029, - [3466] = 1030, - [3467] = 1133, - [3468] = 1033, - [3469] = 1125, - [3470] = 1034, - [3471] = 1118, - [3472] = 1115, - [3473] = 1110, - [3474] = 1035, - [3475] = 1082, - [3476] = 3476, - [3477] = 1037, - [3478] = 3478, - [3479] = 3479, - [3480] = 1038, - [3481] = 1046, - [3482] = 3412, - [3483] = 1081, - [3484] = 1047, - [3485] = 3485, - [3486] = 1143, - [3487] = 3487, - [3488] = 1048, - [3489] = 3453, - [3490] = 3490, - [3491] = 3416, - [3492] = 3492, - [3493] = 3493, - [3494] = 3494, - [3495] = 1051, - [3496] = 3496, - [3497] = 3497, - [3498] = 3416, - [3499] = 1133, - [3500] = 3412, - [3501] = 3501, - [3502] = 1125, - [3503] = 1118, - [3504] = 1115, - [3505] = 1110, - [3506] = 897, - [3507] = 3304, - [3508] = 1124, - [3509] = 1157, - [3510] = 3419, - [3511] = 897, - [3512] = 3419, - [3513] = 1117, - [3514] = 1124, - [3515] = 1177, - [3516] = 1164, - [3517] = 3419, - [3518] = 880, - [3519] = 1091, - [3520] = 877, - [3521] = 1069, - [3522] = 1157, - [3523] = 1027, - [3524] = 1183, - [3525] = 3525, - [3526] = 1069, - [3527] = 3304, - [3528] = 3528, - [3529] = 3529, - [3530] = 1066, - [3531] = 3531, - [3532] = 1164, - [3533] = 3533, - [3534] = 3534, - [3535] = 1124, - [3536] = 3412, - [3537] = 3412, - [3538] = 1082, - [3539] = 1157, - [3540] = 3540, - [3541] = 1108, + [3413] = 1039, + [3414] = 1130, + [3415] = 3382, + [3416] = 1125, + [3417] = 3417, + [3418] = 1124, + [3419] = 1064, + [3420] = 1123, + [3421] = 1119, + [3422] = 1158, + [3423] = 1110, + [3424] = 1030, + [3425] = 1093, + [3426] = 3381, + [3427] = 1082, + [3428] = 1103, + [3429] = 1238, + [3430] = 1230, + [3431] = 1091, + [3432] = 923, + [3433] = 3331, + [3434] = 1138, + [3435] = 1116, + [3436] = 1162, + [3437] = 3382, + [3438] = 1120, + [3439] = 931, + [3440] = 1155, + [3441] = 3382, + [3442] = 919, + [3443] = 3443, + [3444] = 846, + [3445] = 3445, + [3446] = 1236, + [3447] = 937, + [3448] = 848, + [3449] = 848, + [3450] = 923, + [3451] = 853, + [3452] = 1058, + [3453] = 846, + [3454] = 1107, + [3455] = 1162, + [3456] = 1124, + [3457] = 1123, + [3458] = 1119, + [3459] = 1118, + [3460] = 1116, + [3461] = 1145, + [3462] = 1110, + [3463] = 1093, + [3464] = 1152, + [3465] = 1130, + [3466] = 1132, + [3467] = 1183, + [3468] = 1134, + [3469] = 1192, + [3470] = 1137, + [3471] = 1130, + [3472] = 1125, + [3473] = 1124, + [3474] = 1123, + [3475] = 1119, + [3476] = 1064, + [3477] = 1118, + [3478] = 1132, + [3479] = 1116, + [3480] = 1134, + [3481] = 3481, + [3482] = 1082, + [3483] = 3483, + [3484] = 1103, + [3485] = 1137, + [3486] = 1238, + [3487] = 1230, + [3488] = 1091, + [3489] = 1160, + [3490] = 1039, + [3491] = 869, + [3492] = 1140, + [3493] = 1079, + [3494] = 1145, + [3495] = 3495, + [3496] = 1030, + [3497] = 1158, + [3498] = 1110, + [3499] = 1093, + [3500] = 1120, + [3501] = 1152, + [3502] = 869, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 1067, + [3507] = 1049, + [3508] = 3508, + [3509] = 1082, + [3510] = 3510, + [3511] = 1103, + [3512] = 1238, + [3513] = 1138, + [3514] = 1230, + [3515] = 1091, + [3516] = 1155, + [3517] = 1183, + [3518] = 3518, + [3519] = 1236, + [3520] = 1058, + [3521] = 3521, + [3522] = 1107, + [3523] = 1192, + [3524] = 3524, + [3525] = 1107, + [3526] = 1030, + [3527] = 3527, + [3528] = 3331, + [3529] = 3521, + [3530] = 3530, + [3531] = 1162, + [3532] = 1058, + [3533] = 870, + [3534] = 3395, + [3535] = 3535, + [3536] = 1140, + [3537] = 876, + [3538] = 1064, + [3539] = 1236, + [3540] = 1125, + [3541] = 3541, [3542] = 3542, - [3543] = 1181, - [3544] = 3544, - [3545] = 873, - [3546] = 1176, + [3543] = 3543, + [3544] = 1163, + [3545] = 1138, + [3546] = 3546, [3547] = 3547, - [3548] = 1027, - [3549] = 1106, - [3550] = 1085, - [3551] = 1177, - [3552] = 1108, - [3553] = 1106, - [3554] = 1085, - [3555] = 1066, - [3556] = 1027, - [3557] = 1069, - [3558] = 1138, - [3559] = 1029, - [3560] = 1081, - [3561] = 1030, - [3562] = 3562, - [3563] = 1204, - [3564] = 3564, - [3565] = 1033, - [3566] = 1034, - [3567] = 1146, + [3548] = 1163, + [3549] = 3549, + [3550] = 3550, + [3551] = 1039, + [3552] = 1160, + [3553] = 1158, + [3554] = 1067, + [3555] = 3331, + [3556] = 1049, + [3557] = 1079, + [3558] = 1120, + [3559] = 1155, + [3560] = 3395, + [3561] = 1230, + [3562] = 1238, + [3563] = 1158, + [3564] = 1058, + [3565] = 1067, + [3566] = 1049, + [3567] = 3567, [3568] = 3568, - [3569] = 1133, - [3570] = 3540, - [3571] = 1082, - [3572] = 1035, - [3573] = 3573, - [3574] = 1037, - [3575] = 1038, - [3576] = 1125, - [3577] = 3540, - [3578] = 3540, - [3579] = 1118, - [3580] = 1115, - [3581] = 1046, - [3582] = 1047, - [3583] = 1110, - [3584] = 3540, - [3585] = 1048, - [3586] = 1069, - [3587] = 1051, - [3588] = 3540, - [3589] = 1157, - [3590] = 3590, - [3591] = 1204, - [3592] = 1138, - [3593] = 1183, - [3594] = 3594, - [3595] = 1133, - [3596] = 1125, - [3597] = 1118, - [3598] = 1115, - [3599] = 1110, - [3600] = 1117, - [3601] = 1143, - [3602] = 1178, - [3603] = 1178, - [3604] = 1029, - [3605] = 1030, + [3569] = 1236, + [3570] = 1155, + [3571] = 3571, + [3572] = 1120, + [3573] = 1163, + [3574] = 3395, + [3575] = 1236, + [3576] = 1039, + [3577] = 1091, + [3578] = 1230, + [3579] = 1064, + [3580] = 1238, + [3581] = 1030, + [3582] = 1103, + [3583] = 1082, + [3584] = 1163, + [3585] = 3585, + [3586] = 1107, + [3587] = 1058, + [3588] = 3588, + [3589] = 3589, + [3590] = 1137, + [3591] = 3591, + [3592] = 1093, + [3593] = 3593, + [3594] = 1138, + [3595] = 1155, + [3596] = 1110, + [3597] = 1039, + [3598] = 1107, + [3599] = 1064, + [3600] = 3600, + [3601] = 1192, + [3602] = 1183, + [3603] = 3603, + [3604] = 1091, + [3605] = 1116, [3606] = 3606, - [3607] = 1117, + [3607] = 1152, [3608] = 3608, - [3609] = 1033, - [3610] = 1034, - [3611] = 1177, - [3612] = 1066, - [3613] = 1146, - [3614] = 3540, - [3615] = 1035, - [3616] = 1037, - [3617] = 1176, - [3618] = 1038, - [3619] = 1046, - [3620] = 1164, - [3621] = 1047, - [3622] = 1048, - [3623] = 1124, - [3624] = 3624, - [3625] = 1051, - [3626] = 3626, - [3627] = 3627, - [3628] = 1183, - [3629] = 1164, + [3609] = 3609, + [3610] = 1030, + [3611] = 1103, + [3612] = 3612, + [3613] = 1082, + [3614] = 1118, + [3615] = 1093, + [3616] = 1145, + [3617] = 1110, + [3618] = 1120, + [3619] = 1140, + [3620] = 1160, + [3621] = 1116, + [3622] = 1118, + [3623] = 1119, + [3624] = 1138, + [3625] = 1123, + [3626] = 1124, + [3627] = 1125, + [3628] = 1130, + [3629] = 1132, [3630] = 3630, - [3631] = 1143, - [3632] = 1081, - [3633] = 1181, - [3634] = 3634, - [3635] = 3635, - [3636] = 2621, - [3637] = 2621, - [3638] = 3638, - [3639] = 2470, - [3640] = 863, - [3641] = 837, - [3642] = 2479, - [3643] = 850, - [3644] = 828, - [3645] = 832, - [3646] = 3646, - [3647] = 831, - [3648] = 859, - [3649] = 2409, - [3650] = 1157, - [3651] = 1027, - [3652] = 831, - [3653] = 2551, - [3654] = 1146, - [3655] = 807, - [3656] = 837, - [3657] = 863, - [3658] = 859, - [3659] = 2479, - [3660] = 877, - [3661] = 3661, - [3662] = 828, - [3663] = 832, - [3664] = 853, - [3665] = 1204, - [3666] = 849, - [3667] = 880, - [3668] = 3668, - [3669] = 2566, - [3670] = 1069, - [3671] = 2409, - [3672] = 847, - [3673] = 2562, - [3674] = 850, - [3675] = 2556, - [3676] = 2546, - [3677] = 2470, - [3678] = 2562, - [3679] = 853, - [3680] = 3680, - [3681] = 2546, - [3682] = 3680, - [3683] = 875, - [3684] = 2551, - [3685] = 3680, - [3686] = 2556, - [3687] = 2540, - [3688] = 852, - [3689] = 877, - [3690] = 2541, - [3691] = 846, - [3692] = 3680, - [3693] = 873, - [3694] = 2559, - [3695] = 853, - [3696] = 2566, - [3697] = 880, - [3698] = 849, - [3699] = 847, - [3700] = 897, - [3701] = 849, - [3702] = 886, - [3703] = 889, - [3704] = 868, - [3705] = 875, - [3706] = 887, - [3707] = 893, - [3708] = 852, - [3709] = 882, - [3710] = 897, - [3711] = 810, - [3712] = 897, - [3713] = 871, - [3714] = 869, - [3715] = 2559, - [3716] = 872, - [3717] = 846, - [3718] = 873, - [3719] = 3719, - [3720] = 2540, - [3721] = 2541, - [3722] = 874, - [3723] = 876, + [3631] = 1134, + [3632] = 1137, + [3633] = 3395, + [3634] = 1119, + [3635] = 881, + [3636] = 1140, + [3637] = 1145, + [3638] = 1152, + [3639] = 1123, + [3640] = 1079, + [3641] = 1183, + [3642] = 1124, + [3643] = 1192, + [3644] = 3644, + [3645] = 1125, + [3646] = 1130, + [3647] = 1132, + [3648] = 1160, + [3649] = 1158, + [3650] = 1134, + [3651] = 3651, + [3652] = 1067, + [3653] = 1049, + [3654] = 1079, + [3655] = 2633, + [3656] = 2633, + [3657] = 3657, + [3658] = 831, + [3659] = 830, + [3660] = 828, + [3661] = 2274, + [3662] = 832, + [3663] = 850, + [3664] = 847, + [3665] = 2315, + [3666] = 2257, + [3667] = 852, + [3668] = 831, + [3669] = 2315, + [3670] = 1030, + [3671] = 807, + [3672] = 2274, + [3673] = 870, + [3674] = 3674, + [3675] = 846, + [3676] = 1064, + [3677] = 848, + [3678] = 2571, + [3679] = 3679, + [3680] = 1138, + [3681] = 852, + [3682] = 2560, + [3683] = 832, + [3684] = 2257, + [3685] = 2554, + [3686] = 828, + [3687] = 1039, + [3688] = 1079, + [3689] = 851, + [3690] = 2606, + [3691] = 830, + [3692] = 2553, + [3693] = 850, + [3694] = 847, + [3695] = 876, + [3696] = 851, + [3697] = 846, + [3698] = 2571, + [3699] = 872, + [3700] = 881, + [3701] = 2563, + [3702] = 876, + [3703] = 2606, + [3704] = 870, + [3705] = 2585, + [3706] = 2554, + [3707] = 2588, + [3708] = 856, + [3709] = 2553, + [3710] = 3710, + [3711] = 848, + [3712] = 2560, + [3713] = 848, + [3714] = 846, + [3715] = 869, + [3716] = 3710, + [3717] = 864, + [3718] = 3710, + [3719] = 3710, + [3720] = 878, + [3721] = 3721, + [3722] = 877, + [3723] = 3721, [3724] = 3724, - [3725] = 3725, - [3726] = 3726, - [3727] = 3727, - [3728] = 3726, - [3729] = 3729, - [3730] = 3730, - [3731] = 3731, - [3732] = 3727, - [3733] = 3731, + [3725] = 873, + [3726] = 3721, + [3727] = 3721, + [3728] = 3728, + [3729] = 810, + [3730] = 881, + [3731] = 3721, + [3732] = 3721, + [3733] = 3733, [3734] = 3734, - [3735] = 3729, - [3736] = 868, - [3737] = 3727, - [3738] = 3725, - [3739] = 911, - [3740] = 3740, - [3741] = 3734, - [3742] = 3725, - [3743] = 3731, - [3744] = 3734, - [3745] = 871, - [3746] = 871, - [3747] = 3727, - [3748] = 3730, - [3749] = 868, + [3735] = 864, + [3736] = 3721, + [3737] = 872, + [3738] = 3738, + [3739] = 879, + [3740] = 875, + [3741] = 856, + [3742] = 883, + [3743] = 2585, + [3744] = 2588, + [3745] = 3721, + [3746] = 3721, + [3747] = 3721, + [3748] = 869, + [3749] = 874, [3750] = 887, - [3751] = 893, - [3752] = 869, - [3753] = 3725, - [3754] = 3730, - [3755] = 889, - [3756] = 886, - [3757] = 882, - [3758] = 3730, - [3759] = 3729, - [3760] = 3740, - [3761] = 3740, - [3762] = 3731, - [3763] = 3726, - [3764] = 876, - [3765] = 874, - [3766] = 893, - [3767] = 3726, - [3768] = 3734, - [3769] = 3769, - [3770] = 3740, - [3771] = 872, - [3772] = 3729, + [3751] = 890, + [3752] = 3721, + [3753] = 868, + [3754] = 3721, + [3755] = 886, + [3756] = 880, + [3757] = 869, + [3758] = 3738, + [3759] = 3759, + [3760] = 2563, + [3761] = 3761, + [3762] = 908, + [3763] = 874, + [3764] = 887, + [3765] = 3765, + [3766] = 886, + [3767] = 3767, + [3768] = 3768, + [3769] = 873, + [3770] = 3770, + [3771] = 883, + [3772] = 875, [3773] = 3773, - [3774] = 859, - [3775] = 3775, - [3776] = 3776, + [3774] = 877, + [3775] = 878, + [3776] = 879, [3777] = 3777, - [3778] = 863, - [3779] = 837, - [3780] = 847, - [3781] = 828, - [3782] = 832, - [3783] = 831, + [3778] = 880, + [3779] = 886, + [3780] = 868, + [3781] = 890, + [3782] = 887, + [3783] = 874, [3784] = 3784, - [3785] = 3785, - [3786] = 3719, - [3787] = 3785, - [3788] = 3784, - [3789] = 3789, - [3790] = 3789, - [3791] = 3784, - [3792] = 3784, - [3793] = 3775, - [3794] = 3794, - [3795] = 849, - [3796] = 859, - [3797] = 3784, - [3798] = 850, - [3799] = 3799, - [3800] = 3799, - [3801] = 3794, - [3802] = 921, - [3803] = 853, - [3804] = 3724, - [3805] = 3784, - [3806] = 917, - [3807] = 3794, - [3808] = 3794, - [3809] = 3789, - [3810] = 871, - [3811] = 863, - [3812] = 3784, - [3813] = 3784, - [3814] = 3784, - [3815] = 3785, - [3816] = 3784, - [3817] = 3784, + [3785] = 3761, + [3786] = 3786, + [3787] = 3786, + [3788] = 3773, + [3789] = 3767, + [3790] = 3765, + [3791] = 3773, + [3792] = 3770, + [3793] = 3768, + [3794] = 3770, + [3795] = 3761, + [3796] = 3796, + [3797] = 3765, + [3798] = 3768, + [3799] = 3767, + [3800] = 3767, + [3801] = 3761, + [3802] = 3802, + [3803] = 3773, + [3804] = 3784, + [3805] = 3786, + [3806] = 3784, + [3807] = 3768, + [3808] = 3786, + [3809] = 3770, + [3810] = 3765, + [3811] = 3784, + [3812] = 852, + [3813] = 3813, + [3814] = 3813, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, [3818] = 3818, - [3819] = 923, + [3819] = 3819, [3820] = 3820, - [3821] = 831, - [3822] = 3775, - [3823] = 807, - [3824] = 3824, - [3825] = 3825, - [3826] = 850, - [3827] = 3775, - [3828] = 3784, + [3821] = 3820, + [3822] = 3815, + [3823] = 3823, + [3824] = 937, + [3825] = 3818, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, [3829] = 3829, - [3830] = 832, - [3831] = 828, - [3832] = 3776, + [3830] = 3830, + [3831] = 850, + [3832] = 3832, [3833] = 3833, - [3834] = 893, - [3835] = 837, - [3836] = 3789, - [3837] = 3799, - [3838] = 3799, - [3839] = 868, - [3840] = 925, - [3841] = 3785, - [3842] = 828, - [3843] = 849, - [3844] = 853, - [3845] = 2621, - [3846] = 859, - [3847] = 850, - [3848] = 849, - [3849] = 853, - [3850] = 2470, - [3851] = 2470, - [3852] = 3852, + [3834] = 3834, + [3835] = 3820, + [3836] = 3836, + [3837] = 3820, + [3838] = 3838, + [3839] = 3815, + [3840] = 3840, + [3841] = 3819, + [3842] = 3818, + [3843] = 3826, + [3844] = 3813, + [3845] = 3818, + [3846] = 3846, + [3847] = 3815, + [3848] = 3819, + [3849] = 3818, + [3850] = 3815, + [3851] = 3826, + [3852] = 3813, [3853] = 3853, - [3854] = 877, - [3855] = 2479, - [3856] = 807, + [3854] = 831, + [3855] = 3855, + [3856] = 3856, [3857] = 3857, - [3858] = 880, - [3859] = 2479, + [3858] = 3759, + [3859] = 3815, [3860] = 3860, - [3861] = 847, - [3862] = 863, - [3863] = 2409, - [3864] = 831, - [3865] = 3853, - [3866] = 3866, - [3867] = 832, - [3868] = 832, - [3869] = 837, - [3870] = 828, - [3871] = 897, - [3872] = 3872, - [3873] = 3873, - [3874] = 880, - [3875] = 877, - [3876] = 837, - [3877] = 847, - [3878] = 850, - [3879] = 863, - [3880] = 2409, + [3861] = 3815, + [3862] = 3834, + [3863] = 3826, + [3864] = 3815, + [3865] = 3819, + [3866] = 3818, + [3867] = 3815, + [3868] = 3868, + [3869] = 3869, + [3870] = 3815, + [3871] = 3815, + [3872] = 3840, + [3873] = 3813, + [3874] = 848, + [3875] = 830, + [3876] = 828, + [3877] = 3813, + [3878] = 3878, + [3879] = 850, + [3880] = 832, [3881] = 831, - [3882] = 3882, - [3883] = 3853, - [3884] = 3853, - [3885] = 859, - [3886] = 3886, - [3887] = 3887, - [3888] = 3886, - [3889] = 2562, - [3890] = 3890, + [3882] = 3815, + [3883] = 919, + [3884] = 3818, + [3885] = 3855, + [3886] = 3853, + [3887] = 3815, + [3888] = 3819, + [3889] = 3815, + [3890] = 3813, [3891] = 3891, - [3892] = 3892, + [3892] = 3826, [3893] = 3893, [3894] = 3894, - [3895] = 2566, + [3895] = 3820, [3896] = 3896, - [3897] = 3897, + [3897] = 846, [3898] = 3898, - [3899] = 3899, - [3900] = 3900, - [3901] = 3901, - [3902] = 3887, + [3899] = 830, + [3900] = 828, + [3901] = 3818, + [3902] = 832, [3903] = 3903, - [3904] = 3904, - [3905] = 3903, - [3906] = 3906, - [3907] = 3907, - [3908] = 3908, - [3909] = 3590, - [3910] = 3896, - [3911] = 3893, - [3912] = 3912, - [3913] = 3912, - [3914] = 3901, + [3904] = 3815, + [3905] = 3826, + [3906] = 3815, + [3907] = 3819, + [3908] = 3818, + [3909] = 3826, + [3910] = 3819, + [3911] = 3818, + [3912] = 3815, + [3913] = 3819, + [3914] = 3813, [3915] = 3903, - [3916] = 3893, + [3916] = 3815, [3917] = 3917, - [3918] = 3918, - [3919] = 3912, - [3920] = 846, - [3921] = 3608, - [3922] = 3912, - [3923] = 3893, + [3918] = 3815, + [3919] = 3919, + [3920] = 931, + [3921] = 3891, + [3922] = 3826, + [3923] = 3813, [3924] = 3903, - [3925] = 3901, - [3926] = 3926, - [3927] = 3926, - [3928] = 3918, - [3929] = 3904, - [3930] = 3904, - [3931] = 3904, - [3932] = 3896, - [3933] = 3908, - [3934] = 3907, - [3935] = 3894, - [3936] = 3892, - [3937] = 3891, - [3938] = 3906, - [3939] = 3939, - [3940] = 3890, - [3941] = 3903, - [3942] = 2556, - [3943] = 3943, - [3944] = 3912, - [3945] = 3887, - [3946] = 3901, - [3947] = 3899, - [3948] = 3887, - [3949] = 3906, - [3950] = 3950, - [3951] = 3926, - [3952] = 3907, - [3953] = 3908, - [3954] = 3896, - [3955] = 3918, - [3956] = 3912, - [3957] = 3893, - [3958] = 3899, - [3959] = 873, - [3960] = 3903, - [3961] = 3901, - [3962] = 3818, - [3963] = 3904, - [3964] = 3908, - [3965] = 2551, - [3966] = 3897, - [3967] = 3912, - [3968] = 3912, - [3969] = 3894, - [3970] = 3892, - [3971] = 3891, - [3972] = 852, - [3973] = 3890, - [3974] = 2909, - [3975] = 3926, - [3976] = 3893, - [3977] = 3903, - [3978] = 3893, - [3979] = 3979, - [3980] = 3912, - [3981] = 3981, - [3982] = 3903, - [3983] = 3901, - [3984] = 2546, - [3985] = 3594, - [3986] = 3899, - [3987] = 3886, - [3988] = 2479, - [3989] = 3887, - [3990] = 3906, - [3991] = 3907, - [3992] = 3907, - [3993] = 3908, - [3994] = 3896, - [3995] = 3890, - [3996] = 3918, - [3997] = 3926, - [3998] = 3912, - [3999] = 3893, + [3925] = 3813, + [3926] = 3826, + [3927] = 3818, + [3928] = 3826, + [3929] = 3820, + [3930] = 3838, + [3931] = 3931, + [3932] = 3829, + [3933] = 3815, + [3934] = 3826, + [3935] = 3830, + [3936] = 3833, + [3937] = 3818, + [3938] = 3813, + [3939] = 3815, + [3940] = 3819, + [3941] = 3820, + [3942] = 3942, + [3943] = 3813, + [3944] = 3826, + [3945] = 3894, + [3946] = 3813, + [3947] = 3947, + [3948] = 3832, + [3949] = 3949, + [3950] = 3818, + [3951] = 3819, + [3952] = 3820, + [3953] = 3903, + [3954] = 3813, + [3955] = 3833, + [3956] = 3826, + [3957] = 3813, + [3958] = 3826, + [3959] = 3834, + [3960] = 3818, + [3961] = 3819, + [3962] = 3820, + [3963] = 3818, + [3964] = 3819, + [3965] = 3903, + [3966] = 3966, + [3967] = 3818, + [3968] = 3931, + [3969] = 3813, + [3970] = 3826, + [3971] = 3826, + [3972] = 3838, + [3973] = 3973, + [3974] = 3818, + [3975] = 3813, + [3976] = 3816, + [3977] = 3819, + [3978] = 3860, + [3979] = 3838, + [3980] = 3826, + [3981] = 3815, + [3982] = 3982, + [3983] = 3815, + [3984] = 3813, + [3985] = 3818, + [3986] = 3819, + [3987] = 3826, + [3988] = 3818, + [3989] = 3813, + [3990] = 3832, + [3991] = 3896, + [3992] = 3931, + [3993] = 3816, + [3994] = 3994, + [3995] = 3826, + [3996] = 3860, + [3997] = 3893, + [3998] = 3813, + [3999] = 3826, [4000] = 3903, - [4001] = 3891, - [4002] = 3912, - [4003] = 3901, - [4004] = 3892, - [4005] = 3606, - [4006] = 3926, - [4007] = 3912, - [4008] = 3893, - [4009] = 3903, - [4010] = 3898, - [4011] = 3894, - [4012] = 3904, - [4013] = 3890, - [4014] = 3912, - [4015] = 3893, - [4016] = 3903, - [4017] = 3901, - [4018] = 3894, - [4019] = 3904, - [4020] = 810, - [4021] = 3912, - [4022] = 3901, - [4023] = 3892, - [4024] = 3893, - [4025] = 3893, - [4026] = 3904, - [4027] = 4027, - [4028] = 4028, - [4029] = 4029, - [4030] = 3903, - [4031] = 3943, - [4032] = 3943, - [4033] = 3926, - [4034] = 3943, - [4035] = 3901, - [4036] = 3912, + [4001] = 3818, + [4002] = 3898, + [4003] = 3817, + [4004] = 3818, + [4005] = 3813, + [4006] = 3815, + [4007] = 3947, + [4008] = 4008, + [4009] = 3830, + [4010] = 3813, + [4011] = 847, + [4012] = 3826, + [4013] = 3818, + [4014] = 4014, + [4015] = 886, + [4016] = 4016, + [4017] = 3815, + [4018] = 3834, + [4019] = 3898, + [4020] = 3820, + [4021] = 3819, + [4022] = 3833, + [4023] = 3813, + [4024] = 3826, + [4025] = 3818, + [4026] = 3818, + [4027] = 3819, + [4028] = 3891, + [4029] = 3949, + [4030] = 852, + [4031] = 3829, + [4032] = 3815, + [4033] = 3891, + [4034] = 3827, + [4035] = 3893, + [4036] = 3813, [4037] = 3894, - [4038] = 3979, - [4039] = 3893, - [4040] = 3903, - [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 875, - [4045] = 3903, - [4046] = 3893, - [4047] = 3912, - [4048] = 3773, - [4049] = 3900, - [4050] = 3912, - [4051] = 4042, - [4052] = 1143, - [4053] = 4043, - [4054] = 3893, - [4055] = 3918, - [4056] = 3893, - [4057] = 3903, - [4058] = 3900, - [4059] = 3899, - [4060] = 3896, - [4061] = 3906, - [4062] = 3903, - [4063] = 3907, - [4064] = 3908, - [4065] = 3908, - [4066] = 3896, - [4067] = 3918, - [4068] = 3912, - [4069] = 3893, - [4070] = 3903, - [4071] = 3901, - [4072] = 3907, - [4073] = 3904, - [4074] = 3906, - [4075] = 3906, - [4076] = 3926, - [4077] = 3894, - [4078] = 3901, - [4079] = 3901, - [4080] = 3887, - [4081] = 3912, - [4082] = 1177, - [4083] = 3906, - [4084] = 3903, - [4085] = 3893, - [4086] = 3918, - [4087] = 3908, - [4088] = 880, - [4089] = 3926, - [4090] = 1066, - [4091] = 3912, - [4092] = 3893, - [4093] = 4093, - [4094] = 3893, - [4095] = 4095, - [4096] = 877, - [4097] = 3903, - [4098] = 3893, - [4099] = 3904, - [4100] = 3899, - [4101] = 3903, - [4102] = 1081, - [4103] = 1082, - [4104] = 3912, - [4105] = 2562, - [4106] = 3894, - [4107] = 3897, - [4108] = 4108, - [4109] = 3892, - [4110] = 4041, - [4111] = 4043, - [4112] = 3901, - [4113] = 4113, - [4114] = 1181, - [4115] = 3912, - [4116] = 3893, - [4117] = 1176, - [4118] = 1164, - [4119] = 3903, - [4120] = 3901, - [4121] = 4042, - [4122] = 1108, - [4123] = 4123, - [4124] = 1106, - [4125] = 3898, - [4126] = 3904, - [4127] = 1085, - [4128] = 1138, - [4129] = 1029, - [4130] = 3898, - [4131] = 1030, - [4132] = 1033, - [4133] = 3894, - [4134] = 1034, - [4135] = 3903, - [4136] = 1035, - [4137] = 1037, - [4138] = 1038, - [4139] = 1046, - [4140] = 1047, - [4141] = 1178, - [4142] = 1048, - [4143] = 1051, - [4144] = 3979, - [4145] = 3891, - [4146] = 3901, - [4147] = 3887, - [4148] = 3890, - [4149] = 3912, - [4150] = 3893, - [4151] = 3903, - [4152] = 3926, - [4153] = 3901, - [4154] = 3891, - [4155] = 3892, - [4156] = 3904, - [4157] = 2566, - [4158] = 3894, - [4159] = 2479, - [4160] = 3894, - [4161] = 4041, - [4162] = 4041, - [4163] = 2908, - [4164] = 3890, - [4165] = 3912, - [4166] = 1133, - [4167] = 1125, - [4168] = 847, - [4169] = 1124, - [4170] = 1118, - [4171] = 1115, - [4172] = 3904, - [4173] = 1110, - [4174] = 3893, - [4175] = 3903, - [4176] = 3912, - [4177] = 3893, - [4178] = 4041, - [4179] = 4179, - [4180] = 853, - [4181] = 849, - [4182] = 4041, - [4183] = 3886, - [4184] = 3903, - [4185] = 3912, - [4186] = 3893, - [4187] = 4179, - [4188] = 4041, - [4189] = 4189, - [4190] = 920, - [4191] = 4191, - [4192] = 3833, - [4193] = 4193, - [4194] = 3926, - [4195] = 3903, - [4196] = 3912, - [4197] = 3901, - [4198] = 3912, - [4199] = 3893, - [4200] = 3903, - [4201] = 897, - [4202] = 4179, - [4203] = 3926, - [4204] = 880, - [4205] = 877, - [4206] = 847, - [4207] = 2546, - [4208] = 897, - [4209] = 4041, - [4210] = 3898, - [4211] = 2470, - [4212] = 4179, - [4213] = 2551, - [4214] = 4191, - [4215] = 3926, - [4216] = 3626, - [4217] = 4041, - [4218] = 2728, - [4219] = 3624, - [4220] = 2724, - [4221] = 3912, - [4222] = 3901, - [4223] = 2409, - [4224] = 3903, - [4225] = 3893, - [4226] = 3979, - [4227] = 3900, - [4228] = 3894, - [4229] = 3926, - [4230] = 4043, - [4231] = 4042, - [4232] = 873, - [4233] = 3893, - [4234] = 3903, - [4235] = 3904, - [4236] = 4179, - [4237] = 4179, - [4238] = 4238, - [4239] = 4041, - [4240] = 3901, - [4241] = 3897, - [4242] = 4242, - [4243] = 853, - [4244] = 2470, - [4245] = 3904, - [4246] = 849, - [4247] = 3901, - [4248] = 3903, - [4249] = 3893, - [4250] = 3912, - [4251] = 4041, - [4252] = 3926, - [4253] = 846, - [4254] = 2735, - [4255] = 3926, - [4256] = 852, - [4257] = 3926, - [4258] = 875, - [4259] = 3926, - [4260] = 3926, - [4261] = 2556, - [4262] = 3926, - [4263] = 3926, - [4264] = 3926, - [4265] = 3903, - [4266] = 3926, - [4267] = 3926, - [4268] = 3912, - [4269] = 3912, - [4270] = 3894, - [4271] = 3926, - [4272] = 3893, - [4273] = 3926, - [4274] = 3899, - [4275] = 3926, - [4276] = 3926, - [4277] = 3893, - [4278] = 3926, - [4279] = 3903, - [4280] = 3926, - [4281] = 4179, - [4282] = 3903, - [4283] = 3901, - [4284] = 3893, - [4285] = 3926, - [4286] = 3912, - [4287] = 4191, - [4288] = 2409, - [4289] = 3904, - [4290] = 3926, - [4291] = 3926, - [4292] = 2562, - [4293] = 873, - [4294] = 1027, - [4295] = 2540, - [4296] = 882, - [4297] = 2728, - [4298] = 872, - [4299] = 2556, - [4300] = 1204, - [4301] = 875, - [4302] = 2562, - [4303] = 852, - [4304] = 846, - [4305] = 2566, - [4306] = 846, - [4307] = 897, - [4308] = 2551, - [4309] = 2811, - [4310] = 871, - [4311] = 2546, - [4312] = 2551, - [4313] = 871, - [4314] = 868, - [4315] = 852, - [4316] = 887, - [4317] = 893, - [4318] = 869, - [4319] = 2758, - [4320] = 886, - [4321] = 2546, - [4322] = 882, - [4323] = 872, - [4324] = 869, - [4325] = 893, - [4326] = 874, - [4327] = 810, - [4328] = 2735, - [4329] = 2814, - [4330] = 876, - [4331] = 2541, - [4332] = 887, - [4333] = 2541, - [4334] = 2715, - [4335] = 1146, - [4336] = 2716, - [4337] = 873, - [4338] = 889, - [4339] = 2713, - [4340] = 2708, - [4341] = 2724, - [4342] = 868, - [4343] = 2566, - [4344] = 2719, - [4345] = 2720, - [4346] = 2556, - [4347] = 2559, - [4348] = 1069, - [4349] = 874, - [4350] = 2726, - [4351] = 2727, - [4352] = 889, - [4353] = 886, - [4354] = 2559, - [4355] = 2707, - [4356] = 920, - [4357] = 875, - [4358] = 2909, - [4359] = 876, - [4360] = 897, - [4361] = 2730, - [4362] = 2731, - [4363] = 2908, - [4364] = 2540, - [4365] = 2732, - [4366] = 1157, - [4367] = 2559, - [4368] = 4368, - [4369] = 2747, - [4370] = 2787, - [4371] = 859, - [4372] = 2559, - [4373] = 2540, - [4374] = 871, - [4375] = 868, - [4376] = 2752, - [4377] = 887, - [4378] = 2758, - [4379] = 876, - [4380] = 2713, - [4381] = 893, - [4382] = 874, - [4383] = 4383, - [4384] = 869, - [4385] = 872, - [4386] = 2766, - [4387] = 2764, - [4388] = 4388, - [4389] = 4389, - [4390] = 882, - [4391] = 2715, - [4392] = 2716, - [4393] = 4393, - [4394] = 832, - [4395] = 2708, - [4396] = 4396, - [4397] = 2812, - [4398] = 2719, - [4399] = 2720, - [4400] = 2785, - [4401] = 2814, - [4402] = 886, - [4403] = 4403, - [4404] = 889, - [4405] = 4405, - [4406] = 874, - [4407] = 4407, - [4408] = 828, - [4409] = 4409, - [4410] = 876, - [4411] = 886, - [4412] = 2740, - [4413] = 2763, - [4414] = 4414, - [4415] = 869, - [4416] = 850, - [4417] = 893, - [4418] = 837, - [4419] = 2540, - [4420] = 3217, - [4421] = 2726, - [4422] = 2727, - [4423] = 2746, - [4424] = 2751, - [4425] = 2916, - [4426] = 887, - [4427] = 831, - [4428] = 2792, + [4038] = 3919, + [4039] = 3813, + [4040] = 3826, + [4041] = 3818, + [4042] = 3819, + [4043] = 3828, + [4044] = 3853, + [4045] = 3826, + [4046] = 3855, + [4047] = 3903, + [4048] = 3813, + [4049] = 3733, + [4050] = 3949, + [4051] = 3903, + [4052] = 3919, + [4053] = 3832, + [4054] = 3826, + [4055] = 3813, + [4056] = 3826, + [4057] = 3818, + [4058] = 3830, + [4059] = 3860, + [4060] = 3819, + [4061] = 3931, + [4062] = 3815, + [4063] = 3820, + [4064] = 3840, + [4065] = 3919, + [4066] = 3818, + [4067] = 3860, + [4068] = 3815, + [4069] = 4069, + [4070] = 3829, + [4071] = 3903, + [4072] = 3894, + [4073] = 3949, + [4074] = 3919, + [4075] = 3829, + [4076] = 3817, + [4077] = 847, + [4078] = 3846, + [4079] = 3857, + [4080] = 923, + [4081] = 4081, + [4082] = 3828, + [4083] = 3830, + [4084] = 3820, + [4085] = 3838, + [4086] = 3815, + [4087] = 3832, + [4088] = 3834, + [4089] = 3813, + [4090] = 3846, + [4091] = 3857, + [4092] = 3818, + [4093] = 3815, + [4094] = 3833, + [4095] = 3826, + [4096] = 4096, + [4097] = 3832, + [4098] = 3830, + [4099] = 3813, + [4100] = 3826, + [4101] = 3931, + [4102] = 3815, + [4103] = 807, + [4104] = 3919, + [4105] = 3860, + [4106] = 3833, + [4107] = 3813, + [4108] = 3818, + [4109] = 3903, + [4110] = 3826, + [4111] = 3815, + [4112] = 3818, + [4113] = 3826, + [4114] = 3813, + [4115] = 3931, + [4116] = 887, + [4117] = 3830, + [4118] = 851, + [4119] = 3833, + [4120] = 3947, + [4121] = 3860, + [4122] = 3820, + [4123] = 874, + [4124] = 3819, + [4125] = 3857, + [4126] = 3860, + [4127] = 3846, + [4128] = 3826, + [4129] = 3828, + [4130] = 3903, + [4131] = 3818, + [4132] = 3817, + [4133] = 3834, + [4134] = 3860, + [4135] = 3893, + [4136] = 3829, + [4137] = 3903, + [4138] = 3819, + [4139] = 3894, + [4140] = 3893, + [4141] = 3820, + [4142] = 3891, + [4143] = 3891, + [4144] = 3860, + [4145] = 3818, + [4146] = 3826, + [4147] = 3813, + [4148] = 3919, + [4149] = 3898, + [4150] = 3826, + [4151] = 3818, + [4152] = 3860, + [4153] = 3840, + [4154] = 3819, + [4155] = 3829, + [4156] = 3830, + [4157] = 3832, + [4158] = 3833, + [4159] = 3834, + [4160] = 3931, + [4161] = 3838, + [4162] = 3893, + [4163] = 3947, + [4164] = 3896, + [4165] = 3816, + [4166] = 3820, + [4167] = 3855, + [4168] = 3896, + [4169] = 3894, + [4170] = 3853, + [4171] = 3819, + [4172] = 3813, + [4173] = 3894, + [4174] = 3827, + [4175] = 3815, + [4176] = 3903, + [4177] = 3820, + [4178] = 3891, + [4179] = 3838, + [4180] = 828, + [4181] = 2257, + [4182] = 2274, + [4183] = 4183, + [4184] = 4183, + [4185] = 4185, + [4186] = 2315, + [4187] = 2274, + [4188] = 869, + [4189] = 846, + [4190] = 831, + [4191] = 870, + [4192] = 4192, + [4193] = 876, + [4194] = 848, + [4195] = 852, + [4196] = 847, + [4197] = 851, + [4198] = 4198, + [4199] = 850, + [4200] = 2633, + [4201] = 4201, + [4202] = 832, + [4203] = 831, + [4204] = 832, + [4205] = 828, + [4206] = 830, + [4207] = 870, + [4208] = 847, + [4209] = 4183, + [4210] = 850, + [4211] = 2257, + [4212] = 830, + [4213] = 4213, + [4214] = 852, + [4215] = 851, + [4216] = 4183, + [4217] = 807, + [4218] = 846, + [4219] = 876, + [4220] = 848, + [4221] = 2315, + [4222] = 2554, + [4223] = 869, + [4224] = 3878, + [4225] = 876, + [4226] = 3869, + [4227] = 869, + [4228] = 2920, + [4229] = 2274, + [4230] = 2553, + [4231] = 856, + [4232] = 2606, + [4233] = 2315, + [4234] = 4234, + [4235] = 846, + [4236] = 864, + [4237] = 4237, + [4238] = 848, + [4239] = 2554, + [4240] = 1093, + [4241] = 1107, + [4242] = 2571, + [4243] = 2560, + [4244] = 2274, + [4245] = 870, + [4246] = 870, + [4247] = 2560, + [4248] = 1082, + [4249] = 851, + [4250] = 881, + [4251] = 1110, + [4252] = 2571, + [4253] = 4234, + [4254] = 2257, + [4255] = 2746, + [4256] = 876, + [4257] = 1103, + [4258] = 872, + [4259] = 872, + [4260] = 1236, + [4261] = 3603, + [4262] = 851, + [4263] = 3609, + [4264] = 1116, + [4265] = 3612, + [4266] = 2921, + [4267] = 3856, + [4268] = 4268, + [4269] = 2744, + [4270] = 1058, + [4271] = 1118, + [4272] = 2742, + [4273] = 1119, + [4274] = 856, + [4275] = 4234, + [4276] = 881, + [4277] = 1238, + [4278] = 864, + [4279] = 3567, + [4280] = 2606, + [4281] = 1123, + [4282] = 1230, + [4283] = 846, + [4284] = 1124, + [4285] = 1125, + [4286] = 2315, + [4287] = 810, + [4288] = 1091, + [4289] = 4289, + [4290] = 1049, + [4291] = 3644, + [4292] = 1067, + [4293] = 1158, + [4294] = 4234, + [4295] = 1160, + [4296] = 1192, + [4297] = 2257, + [4298] = 939, + [4299] = 1183, + [4300] = 4234, + [4301] = 3568, + [4302] = 1155, + [4303] = 2553, + [4304] = 1152, + [4305] = 1145, + [4306] = 1140, + [4307] = 1137, + [4308] = 1134, + [4309] = 1132, + [4310] = 848, + [4311] = 1130, + [4312] = 879, + [4313] = 2728, + [4314] = 2736, + [4315] = 2553, + [4316] = 2732, + [4317] = 2585, + [4318] = 2729, + [4319] = 2563, + [4320] = 810, + [4321] = 2606, + [4322] = 2571, + [4323] = 869, + [4324] = 2745, + [4325] = 2920, + [4326] = 2749, + [4327] = 1138, + [4328] = 2718, + [4329] = 2738, + [4330] = 874, + [4331] = 887, + [4332] = 890, + [4333] = 868, + [4334] = 886, + [4335] = 880, + [4336] = 2733, + [4337] = 874, + [4338] = 878, + [4339] = 2740, + [4340] = 2741, + [4341] = 856, + [4342] = 2746, + [4343] = 2811, + [4344] = 887, + [4345] = 2799, + [4346] = 890, + [4347] = 2762, + [4348] = 877, + [4349] = 2737, + [4350] = 868, + [4351] = 875, + [4352] = 886, + [4353] = 880, + [4354] = 883, + [4355] = 2585, + [4356] = 2588, + [4357] = 873, + [4358] = 2554, + [4359] = 872, + [4360] = 879, + [4361] = 881, + [4362] = 872, + [4363] = 856, + [4364] = 2560, + [4365] = 869, + [4366] = 878, + [4367] = 864, + [4368] = 2571, + [4369] = 864, + [4370] = 939, + [4371] = 877, + [4372] = 875, + [4373] = 2588, + [4374] = 2560, + [4375] = 2921, + [4376] = 2563, + [4377] = 2553, + [4378] = 881, + [4379] = 2744, + [4380] = 883, + [4381] = 2554, + [4382] = 2742, + [4383] = 873, + [4384] = 1079, + [4385] = 2606, + [4386] = 1039, + [4387] = 1064, + [4388] = 1030, + [4389] = 2932, + [4390] = 2741, + [4391] = 2762, + [4392] = 874, + [4393] = 887, + [4394] = 2799, + [4395] = 890, + [4396] = 868, + [4397] = 886, + [4398] = 880, + [4399] = 2751, + [4400] = 2816, + [4401] = 2811, + [4402] = 879, + [4403] = 878, + [4404] = 877, + [4405] = 875, + [4406] = 2773, + [4407] = 883, + [4408] = 873, + [4409] = 2810, + [4410] = 2585, + [4411] = 2588, + [4412] = 2827, + [4413] = 2924, + [4414] = 2759, + [4415] = 2797, + [4416] = 2794, + [4417] = 2789, + [4418] = 2776, + [4419] = 4419, + [4420] = 2563, + [4421] = 2752, + [4422] = 2757, + [4423] = 2800, + [4424] = 4424, + [4425] = 3233, + [4426] = 874, + [4427] = 887, + [4428] = 890, [4429] = 868, - [4430] = 871, - [4431] = 2961, - [4432] = 2773, - [4433] = 2541, - [4434] = 3217, - [4435] = 2745, - [4436] = 2730, - [4437] = 2559, - [4438] = 2770, - [4439] = 2775, - [4440] = 4440, - [4441] = 882, - [4442] = 2753, - [4443] = 2731, - [4444] = 872, - [4445] = 2784, - [4446] = 2540, - [4447] = 2926, - [4448] = 2786, - [4449] = 2776, - [4450] = 2801, - [4451] = 889, - [4452] = 4452, - [4453] = 2732, - [4454] = 2707, - [4455] = 4455, - [4456] = 2541, - [4457] = 2788, - [4458] = 2811, - [4459] = 863, - [4460] = 4460, - [4461] = 2755, - [4462] = 2914, - [4463] = 4463, - [4464] = 2762, - [4465] = 2803, - [4466] = 2559, - [4467] = 4403, - [4468] = 831, - [4469] = 2753, - [4470] = 2540, - [4471] = 2770, - [4472] = 4440, - [4473] = 4383, - [4474] = 868, - [4475] = 837, - [4476] = 2752, - [4477] = 4407, - [4478] = 4409, - [4479] = 2746, - [4480] = 2751, - [4481] = 850, - [4482] = 2961, - [4483] = 4393, - [4484] = 2916, - [4485] = 2745, - [4486] = 832, - [4487] = 828, - [4488] = 859, - [4489] = 2787, - [4490] = 2812, - [4491] = 859, - [4492] = 2792, - [4493] = 859, - [4494] = 4368, - [4495] = 831, - [4496] = 850, - [4497] = 2764, - [4498] = 832, - [4499] = 2740, - [4500] = 871, - [4501] = 2766, - [4502] = 2914, - [4503] = 2755, - [4504] = 4460, - [4505] = 828, - [4506] = 2926, - [4507] = 2785, - [4508] = 2786, - [4509] = 880, - [4510] = 831, - [4511] = 2773, - [4512] = 832, - [4513] = 828, - [4514] = 849, - [4515] = 853, - [4516] = 4388, - [4517] = 4396, - [4518] = 2801, - [4519] = 4463, - [4520] = 2803, - [4521] = 893, - [4522] = 863, - [4523] = 863, - [4524] = 4405, - [4525] = 2762, - [4526] = 2776, - [4527] = 3220, - [4528] = 4455, - [4529] = 2788, - [4530] = 3219, - [4531] = 4389, - [4532] = 847, - [4533] = 3217, - [4534] = 2784, - [4535] = 837, - [4536] = 837, - [4537] = 3217, - [4538] = 4414, - [4539] = 2763, - [4540] = 863, - [4541] = 2775, - [4542] = 4452, - [4543] = 3220, - [4544] = 877, - [4545] = 3217, - [4546] = 850, - [4547] = 3219, - [4548] = 2747, - [4549] = 3219, - [4550] = 832, - [4551] = 3220, - [4552] = 832, - [4553] = 4553, - [4554] = 3219, - [4555] = 4555, - [4556] = 4556, - [4557] = 880, - [4558] = 850, - [4559] = 831, - [4560] = 859, - [4561] = 846, - [4562] = 3217, - [4563] = 849, - [4564] = 847, - [4565] = 863, - [4566] = 853, - [4567] = 3220, - [4568] = 863, - [4569] = 849, - [4570] = 853, - [4571] = 3243, - [4572] = 877, - [4573] = 877, - [4574] = 859, - [4575] = 847, - [4576] = 4555, - [4577] = 807, - [4578] = 4555, - [4579] = 3220, - [4580] = 3219, - [4581] = 849, - [4582] = 873, - [4583] = 875, - [4584] = 4555, - [4585] = 859, - [4586] = 4586, - [4587] = 4555, - [4588] = 831, - [4589] = 4555, - [4590] = 852, - [4591] = 3243, - [4592] = 880, + [4430] = 886, + [4431] = 880, + [4432] = 4432, + [4433] = 4433, + [4434] = 878, + [4435] = 2793, + [4436] = 850, + [4437] = 877, + [4438] = 875, + [4439] = 2588, + [4440] = 2585, + [4441] = 2790, + [4442] = 852, + [4443] = 2756, + [4444] = 2585, + [4445] = 2588, + [4446] = 4446, + [4447] = 4447, + [4448] = 831, + [4449] = 847, + [4450] = 3233, + [4451] = 2778, + [4452] = 2788, + [4453] = 4453, + [4454] = 2807, + [4455] = 2818, + [4456] = 4456, + [4457] = 4457, + [4458] = 830, + [4459] = 883, + [4460] = 2732, + [4461] = 2736, + [4462] = 2563, + [4463] = 2745, + [4464] = 2749, + [4465] = 873, + [4466] = 2729, + [4467] = 2728, + [4468] = 2952, + [4469] = 4469, + [4470] = 828, + [4471] = 832, + [4472] = 2718, + [4473] = 2738, + [4474] = 2733, + [4475] = 4475, + [4476] = 4476, + [4477] = 4477, + [4478] = 4478, + [4479] = 2737, + [4480] = 2792, + [4481] = 4481, + [4482] = 2740, + [4483] = 2782, + [4484] = 2758, + [4485] = 879, + [4486] = 2787, + [4487] = 2783, + [4488] = 2933, + [4489] = 4489, + [4490] = 831, + [4491] = 850, + [4492] = 848, + [4493] = 831, + [4494] = 4424, + [4495] = 847, + [4496] = 4475, + [4497] = 2788, + [4498] = 2751, + [4499] = 4469, + [4500] = 2758, + [4501] = 2792, + [4502] = 2933, + [4503] = 2585, + [4504] = 2782, + [4505] = 2757, + [4506] = 846, + [4507] = 2783, + [4508] = 2787, + [4509] = 852, + [4510] = 2827, + [4511] = 4476, + [4512] = 886, + [4513] = 4419, + [4514] = 2807, + [4515] = 2773, + [4516] = 2756, + [4517] = 4432, + [4518] = 4433, + [4519] = 4481, + [4520] = 852, + [4521] = 3242, + [4522] = 850, + [4523] = 3236, + [4524] = 2790, + [4525] = 2793, + [4526] = 2932, + [4527] = 2752, + [4528] = 2800, + [4529] = 2776, + [4530] = 2778, + [4531] = 828, + [4532] = 850, + [4533] = 2789, + [4534] = 2794, + [4535] = 2797, + [4536] = 830, + [4537] = 828, + [4538] = 870, + [4539] = 2588, + [4540] = 2810, + [4541] = 887, + [4542] = 4446, + [4543] = 2759, + [4544] = 832, + [4545] = 4489, + [4546] = 4447, + [4547] = 2952, + [4548] = 2924, + [4549] = 4478, + [4550] = 847, + [4551] = 3233, + [4552] = 4477, + [4553] = 3233, + [4554] = 847, + [4555] = 832, + [4556] = 831, + [4557] = 3233, + [4558] = 828, + [4559] = 851, + [4560] = 3236, + [4561] = 2818, + [4562] = 2816, + [4563] = 830, + [4564] = 4457, + [4565] = 876, + [4566] = 830, + [4567] = 832, + [4568] = 874, + [4569] = 852, + [4570] = 4453, + [4571] = 4456, + [4572] = 3242, + [4573] = 851, + [4574] = 851, + [4575] = 3236, + [4576] = 852, + [4577] = 831, + [4578] = 832, + [4579] = 846, + [4580] = 852, + [4581] = 872, + [4582] = 3242, + [4583] = 847, + [4584] = 848, + [4585] = 850, + [4586] = 852, + [4587] = 830, + [4588] = 830, + [4589] = 4589, + [4590] = 848, + [4591] = 876, + [4592] = 832, [4593] = 828, - [4594] = 853, + [4594] = 830, [4595] = 828, - [4596] = 847, - [4597] = 4597, - [4598] = 831, - [4599] = 850, - [4600] = 3220, - [4601] = 837, - [4602] = 837, - [4603] = 877, - [4604] = 828, - [4605] = 847, - [4606] = 863, - [4607] = 850, - [4608] = 859, - [4609] = 837, - [4610] = 863, - [4611] = 880, - [4612] = 831, - [4613] = 837, - [4614] = 850, - [4615] = 832, - [4616] = 849, - [4617] = 832, - [4618] = 853, - [4619] = 897, - [4620] = 3219, - [4621] = 828, - [4622] = 4555, - [4623] = 852, - [4624] = 869, - [4625] = 853, + [4596] = 3242, + [4597] = 847, + [4598] = 848, + [4599] = 846, + [4600] = 870, + [4601] = 831, + [4602] = 3253, + [4603] = 4603, + [4604] = 3236, + [4605] = 832, + [4606] = 856, + [4607] = 3253, + [4608] = 850, + [4609] = 852, + [4610] = 3236, + [4611] = 870, + [4612] = 881, + [4613] = 850, + [4614] = 4614, + [4615] = 4603, + [4616] = 4603, + [4617] = 847, + [4618] = 847, + [4619] = 4603, + [4620] = 4603, + [4621] = 851, + [4622] = 864, + [4623] = 831, + [4624] = 3242, + [4625] = 876, [4626] = 846, - [4627] = 897, - [4628] = 3724, - [4629] = 873, - [4630] = 880, - [4631] = 3243, - [4632] = 847, - [4633] = 877, - [4634] = 911, - [4635] = 4635, - [4636] = 849, - [4637] = 846, - [4638] = 880, - [4639] = 877, - [4640] = 853, - [4641] = 872, - [4642] = 4642, - [4643] = 849, - [4644] = 4644, - [4645] = 853, - [4646] = 873, - [4647] = 876, - [4648] = 849, - [4649] = 852, - [4650] = 880, - [4651] = 3243, - [4652] = 882, - [4653] = 897, - [4654] = 3407, - [4655] = 877, - [4656] = 4656, - [4657] = 2621, - [4658] = 859, - [4659] = 847, - [4660] = 852, + [4627] = 848, + [4628] = 851, + [4629] = 4629, + [4630] = 876, + [4631] = 870, + [4632] = 3233, + [4633] = 4633, + [4634] = 846, + [4635] = 3236, + [4636] = 807, + [4637] = 831, + [4638] = 3242, + [4639] = 4603, + [4640] = 869, + [4641] = 832, + [4642] = 828, + [4643] = 828, + [4644] = 4603, + [4645] = 850, + [4646] = 830, + [4647] = 851, + [4648] = 877, + [4649] = 846, + [4650] = 851, + [4651] = 2633, + [4652] = 851, + [4653] = 4653, + [4654] = 856, + [4655] = 869, + [4656] = 848, + [4657] = 3759, + [4658] = 848, + [4659] = 846, + [4660] = 4660, [4661] = 4661, - [4662] = 4662, - [4663] = 917, - [4664] = 3719, - [4665] = 873, - [4666] = 897, - [4667] = 875, - [4668] = 877, - [4669] = 875, - [4670] = 886, - [4671] = 4671, - [4672] = 3243, - [4673] = 897, - [4674] = 889, - [4675] = 875, - [4676] = 887, - [4677] = 880, - [4678] = 846, + [4662] = 872, + [4663] = 848, + [4664] = 846, + [4665] = 872, + [4666] = 3445, + [4667] = 3733, + [4668] = 4668, + [4669] = 4669, + [4670] = 870, + [4671] = 864, + [4672] = 847, + [4673] = 4673, + [4674] = 869, + [4675] = 869, + [4676] = 864, + [4677] = 908, + [4678] = 3253, [4679] = 4679, - [4680] = 893, + [4680] = 869, [4681] = 868, - [4682] = 871, - [4683] = 4683, - [4684] = 874, - [4685] = 850, - [4686] = 847, - [4687] = 2621, - [4688] = 923, - [4689] = 872, - [4690] = 810, - [4691] = 847, + [4682] = 919, + [4683] = 856, + [4684] = 3253, + [4685] = 870, + [4686] = 856, + [4687] = 881, + [4688] = 873, + [4689] = 876, + [4690] = 876, + [4691] = 890, [4692] = 4692, - [4693] = 874, - [4694] = 849, - [4695] = 3493, - [4696] = 873, - [4697] = 874, - [4698] = 876, - [4699] = 873, - [4700] = 872, - [4701] = 4701, - [4702] = 889, - [4703] = 920, - [4704] = 882, - [4705] = 887, - [4706] = 3492, - [4707] = 3494, - [4708] = 875, - [4709] = 3496, - [4710] = 852, - [4711] = 880, - [4712] = 3490, - [4713] = 886, - [4714] = 4714, - [4715] = 925, - [4716] = 871, - [4717] = 868, - [4718] = 882, - [4719] = 893, - [4720] = 873, - [4721] = 876, - [4722] = 875, - [4723] = 3485, - [4724] = 3478, - [4725] = 871, - [4726] = 889, - [4727] = 859, - [4728] = 877, - [4729] = 874, - [4730] = 876, - [4731] = 871, - [4732] = 4732, - [4733] = 4714, - [4734] = 875, - [4735] = 850, - [4736] = 872, - [4737] = 886, - [4738] = 4714, - [4739] = 846, - [4740] = 4740, - [4741] = 868, - [4742] = 852, - [4743] = 873, - [4744] = 853, - [4745] = 846, - [4746] = 897, - [4747] = 869, - [4748] = 869, - [4749] = 852, - [4750] = 852, - [4751] = 2621, - [4752] = 846, - [4753] = 882, - [4754] = 4754, - [4755] = 897, - [4756] = 868, - [4757] = 887, - [4758] = 893, - [4759] = 897, - [4760] = 887, - [4761] = 886, - [4762] = 893, - [4763] = 869, - [4764] = 846, - [4765] = 4765, - [4766] = 921, - [4767] = 889, - [4768] = 875, + [4693] = 864, + [4694] = 3253, + [4695] = 852, + [4696] = 4696, + [4697] = 881, + [4698] = 880, + [4699] = 870, + [4700] = 876, + [4701] = 881, + [4702] = 872, + [4703] = 879, + [4704] = 878, + [4705] = 870, + [4706] = 876, + [4707] = 875, + [4708] = 883, + [4709] = 886, + [4710] = 2633, + [4711] = 887, + [4712] = 874, + [4713] = 847, + [4714] = 856, + [4715] = 874, + [4716] = 868, + [4717] = 4717, + [4718] = 890, + [4719] = 4717, + [4720] = 887, + [4721] = 881, + [4722] = 4717, + [4723] = 874, + [4724] = 875, + [4725] = 810, + [4726] = 873, + [4727] = 4727, + [4728] = 886, + [4729] = 923, + [4730] = 883, + [4731] = 886, + [4732] = 872, + [4733] = 878, + [4734] = 880, + [4735] = 4735, + [4736] = 873, + [4737] = 876, + [4738] = 4738, + [4739] = 879, + [4740] = 875, + [4741] = 877, + [4742] = 878, + [4743] = 890, + [4744] = 868, + [4745] = 877, + [4746] = 3547, + [4747] = 3505, + [4748] = 875, + [4749] = 881, + [4750] = 864, + [4751] = 2633, + [4752] = 878, + [4753] = 879, + [4754] = 887, + [4755] = 880, + [4756] = 879, + [4757] = 877, + [4758] = 872, + [4759] = 864, + [4760] = 881, + [4761] = 856, + [4762] = 937, + [4763] = 880, + [4764] = 886, + [4765] = 851, + [4766] = 868, + [4767] = 872, + [4768] = 890, [4769] = 887, - [4770] = 4770, - [4771] = 874, - [4772] = 2728, + [4770] = 874, + [4771] = 864, + [4772] = 3481, [4773] = 4773, - [4774] = 869, - [4775] = 2720, - [4776] = 4773, - [4777] = 871, - [4778] = 2727, - [4779] = 871, - [4780] = 4770, - [4781] = 872, - [4782] = 3818, - [4783] = 2707, - [4784] = 2726, - [4785] = 868, - [4786] = 2719, - [4787] = 887, - [4788] = 893, - [4789] = 4789, - [4790] = 4773, - [4791] = 869, - [4792] = 882, - [4793] = 2730, - [4794] = 4794, - [4795] = 882, - [4796] = 886, - [4797] = 889, - [4798] = 872, - [4799] = 869, - [4800] = 886, - [4801] = 4801, - [4802] = 2724, - [4803] = 4770, - [4804] = 4770, - [4805] = 886, - [4806] = 2716, - [4807] = 2908, + [4774] = 870, + [4775] = 881, + [4776] = 873, + [4777] = 931, + [4778] = 872, + [4779] = 4779, + [4780] = 869, + [4781] = 883, + [4782] = 883, + [4783] = 869, + [4784] = 852, + [4785] = 3510, + [4786] = 3508, + [4787] = 4787, + [4788] = 3504, + [4789] = 869, + [4790] = 846, + [4791] = 939, + [4792] = 856, + [4793] = 856, + [4794] = 848, + [4795] = 3495, + [4796] = 864, + [4797] = 4797, + [4798] = 2742, + [4799] = 4799, + [4800] = 2740, + [4801] = 868, + [4802] = 880, + [4803] = 2738, + [4804] = 2718, + [4805] = 4805, + [4806] = 873, + [4807] = 883, [4808] = 4808, - [4809] = 4770, - [4810] = 882, - [4811] = 4773, - [4812] = 868, - [4813] = 2731, - [4814] = 872, - [4815] = 2715, - [4816] = 2730, - [4817] = 2735, - [4818] = 2732, - [4819] = 4770, - [4820] = 874, - [4821] = 869, - [4822] = 893, - [4823] = 4773, - [4824] = 2713, - [4825] = 871, - [4826] = 4773, - [4827] = 4770, - [4828] = 876, - [4829] = 2731, - [4830] = 4773, - [4831] = 868, - [4832] = 2728, - [4833] = 2724, - [4834] = 889, - [4835] = 886, - [4836] = 920, - [4837] = 4837, - [4838] = 4773, - [4839] = 3773, - [4840] = 4770, - [4841] = 4770, - [4842] = 4770, - [4843] = 876, - [4844] = 2728, - [4845] = 4770, - [4846] = 4770, - [4847] = 874, - [4848] = 871, - [4849] = 2909, - [4850] = 4773, - [4851] = 889, - [4852] = 4773, - [4853] = 877, - [4854] = 872, - [4855] = 897, - [4856] = 893, - [4857] = 4857, - [4858] = 873, - [4859] = 4859, - [4860] = 887, - [4861] = 4861, - [4862] = 887, - [4863] = 876, - [4864] = 4773, - [4865] = 4773, - [4866] = 2726, - [4867] = 876, - [4868] = 882, - [4869] = 4770, - [4870] = 3833, - [4871] = 2735, - [4872] = 4773, - [4873] = 920, - [4874] = 4773, - [4875] = 4773, - [4876] = 831, - [4877] = 4773, - [4878] = 889, - [4879] = 4770, - [4880] = 2732, - [4881] = 2715, - [4882] = 4882, - [4883] = 4773, - [4884] = 832, - [4885] = 828, - [4886] = 2727, - [4887] = 2716, - [4888] = 863, - [4889] = 837, - [4890] = 2713, - [4891] = 4891, - [4892] = 4773, - [4893] = 874, - [4894] = 4770, - [4895] = 868, - [4896] = 2719, - [4897] = 4770, - [4898] = 4770, - [4899] = 4773, - [4900] = 2708, - [4901] = 4770, - [4902] = 4773, - [4903] = 2720, - [4904] = 2708, - [4905] = 4770, - [4906] = 4770, - [4907] = 2707, - [4908] = 4773, - [4909] = 880, - [4910] = 2735, - [4911] = 2724, - [4912] = 4770, - [4913] = 893, - [4914] = 4773, - [4915] = 4770, - [4916] = 4773, - [4917] = 4770, - [4918] = 3476, - [4919] = 1181, - [4920] = 3608, - [4921] = 2728, - [4922] = 2707, - [4923] = 4923, - [4924] = 2747, - [4925] = 2792, - [4926] = 2740, - [4927] = 4927, - [4928] = 2762, - [4929] = 2801, - [4930] = 4923, - [4931] = 1046, - [4932] = 2787, - [4933] = 4933, - [4934] = 4934, - [4935] = 2773, - [4936] = 4927, - [4937] = 2732, - [4938] = 2803, - [4939] = 2803, - [4940] = 2731, - [4941] = 2730, - [4942] = 2788, - [4943] = 4943, - [4944] = 4927, - [4945] = 4943, - [4946] = 2724, - [4947] = 2786, - [4948] = 4927, - [4949] = 4943, - [4950] = 4934, - [4951] = 3562, - [4952] = 2763, - [4953] = 4927, - [4954] = 3634, - [4955] = 4943, - [4956] = 2727, - [4957] = 3635, - [4958] = 2726, - [4959] = 4927, - [4960] = 2811, - [4961] = 1176, - [4962] = 847, - [4963] = 4943, - [4964] = 1177, - [4965] = 2792, - [4966] = 4966, - [4967] = 2812, - [4968] = 4927, - [4969] = 2720, - [4970] = 2775, - [4971] = 2719, - [4972] = 2784, - [4973] = 873, - [4974] = 2716, - [4975] = 3564, - [4976] = 1066, - [4977] = 2786, - [4978] = 4927, - [4979] = 2715, - [4980] = 4943, - [4981] = 4927, - [4982] = 2755, - [4983] = 3630, - [4984] = 3627, - [4985] = 4943, - [4986] = 2766, - [4987] = 4923, - [4988] = 2788, - [4989] = 4927, - [4990] = 4943, - [4991] = 4927, - [4992] = 2764, - [4993] = 4943, - [4994] = 4923, - [4995] = 2753, - [4996] = 2773, - [4997] = 4943, - [4998] = 3624, - [4999] = 4943, - [5000] = 2758, - [5001] = 3626, - [5002] = 4933, - [5003] = 4943, - [5004] = 4927, - [5005] = 2735, - [5006] = 4934, - [5007] = 1164, - [5008] = 2764, - [5009] = 4927, - [5010] = 2708, - [5011] = 2755, - [5012] = 1143, - [5013] = 2776, - [5014] = 1108, - [5015] = 4966, - [5016] = 2745, - [5017] = 1085, - [5018] = 4943, - [5019] = 4943, - [5020] = 4943, - [5021] = 4943, - [5022] = 4943, - [5023] = 2715, - [5024] = 2716, - [5025] = 4934, - [5026] = 2719, - [5027] = 4927, - [5028] = 2720, - [5029] = 1110, - [5030] = 1115, - [5031] = 1118, - [5032] = 2726, - [5033] = 1138, - [5034] = 2801, - [5035] = 2727, - [5036] = 4927, - [5037] = 2785, - [5038] = 4933, - [5039] = 3544, - [5040] = 2770, - [5041] = 5041, - [5042] = 1029, - [5043] = 2730, - [5044] = 4966, - [5045] = 2731, - [5046] = 4943, - [5047] = 2746, - [5048] = 2751, - [5049] = 920, - [5050] = 3590, - [5051] = 4927, - [5052] = 4927, - [5053] = 2732, - [5054] = 3606, - [5055] = 4923, - [5056] = 1030, - [5057] = 1082, - [5058] = 1033, - [5059] = 1034, - [5060] = 4927, - [5061] = 2812, - [5062] = 4934, - [5063] = 1035, - [5064] = 4934, - [5065] = 1037, - [5066] = 4943, - [5067] = 2814, - [5068] = 1125, - [5069] = 1133, - [5070] = 4943, - [5071] = 1038, - [5072] = 2811, - [5073] = 1106, - [5074] = 1047, - [5075] = 3542, - [5076] = 2775, - [5077] = 4927, - [5078] = 1048, - [5079] = 2784, - [5080] = 1051, - [5081] = 3568, - [5082] = 3573, - [5083] = 2745, - [5084] = 2752, - [5085] = 2753, - [5086] = 2762, - [5087] = 2763, - [5088] = 4927, - [5089] = 2776, - [5090] = 2758, - [5091] = 2707, - [5092] = 4923, - [5093] = 2747, - [5094] = 4943, - [5095] = 2740, - [5096] = 1081, - [5097] = 2814, - [5098] = 2713, - [5099] = 4943, - [5100] = 4923, - [5101] = 1124, - [5102] = 4927, - [5103] = 2713, - [5104] = 2787, - [5105] = 4927, - [5106] = 3594, - [5107] = 2766, - [5108] = 2770, - [5109] = 2708, - [5110] = 4934, - [5111] = 2811, - [5112] = 2785, - [5113] = 4943, - [5114] = 2751, - [5115] = 2746, - [5116] = 2814, - [5117] = 4927, - [5118] = 2752, - [5119] = 1178, - [5120] = 2758, - [5121] = 5041, - [5122] = 2784, - [5123] = 2776, - [5124] = 2776, - [5125] = 2784, - [5126] = 5126, - [5127] = 2751, - [5128] = 2746, - [5129] = 2758, - [5130] = 5126, - [5131] = 2785, - [5132] = 5126, - [5133] = 2811, - [5134] = 2764, - [5135] = 2766, - [5136] = 2755, - [5137] = 875, - [5138] = 911, - [5139] = 2770, - [5140] = 917, - [5141] = 2775, - [5142] = 4383, - [5143] = 2773, - [5144] = 2814, - [5145] = 2762, - [5146] = 2747, - [5147] = 2812, - [5148] = 2792, - [5149] = 846, - [5150] = 2801, - [5151] = 2740, - [5152] = 2763, - [5153] = 2753, - [5154] = 2803, - [5155] = 2788, - [5156] = 2786, - [5157] = 2792, - [5158] = 2785, - [5159] = 2751, - [5160] = 2914, - [5161] = 5126, - [5162] = 852, - [5163] = 2753, - [5164] = 2926, - [5165] = 2752, - [5166] = 5166, - [5167] = 853, - [5168] = 2752, - [5169] = 2745, - [5170] = 2787, - [5171] = 2775, - [5172] = 2916, - [5173] = 2773, - [5174] = 2745, - [5175] = 5175, - [5176] = 2770, - [5177] = 2801, - [5178] = 2961, - [5179] = 847, - [5180] = 4368, - [5181] = 2762, - [5182] = 5182, - [5183] = 5166, - [5184] = 4452, - [5185] = 849, - [5186] = 5186, - [5187] = 4460, - [5188] = 2764, - [5189] = 2803, - [5190] = 5175, - [5191] = 2763, - [5192] = 2766, - [5193] = 2787, - [5194] = 2740, - [5195] = 2755, - [5196] = 2747, - [5197] = 2746, - [5198] = 2788, - [5199] = 2786, - [5200] = 2812, - [5201] = 5201, - [5202] = 5202, - [5203] = 5203, - [5204] = 886, - [5205] = 5205, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5206, - [5210] = 5210, - [5211] = 5211, - [5212] = 5207, - [5213] = 5208, - [5214] = 925, - [5215] = 5210, - [5216] = 5216, - [5217] = 5217, - [5218] = 5208, - [5219] = 5202, - [5220] = 5210, - [5221] = 5221, - [5222] = 5216, - [5223] = 3399, - [5224] = 5216, - [5225] = 849, - [5226] = 853, - [5227] = 2843, - [5228] = 5205, - [5229] = 5229, - [5230] = 5205, - [5231] = 889, - [5232] = 5232, - [5233] = 5205, - [5234] = 5216, - [5235] = 3399, + [4809] = 2728, + [4810] = 2729, + [4811] = 4797, + [4812] = 4799, + [4813] = 4797, + [4814] = 878, + [4815] = 4799, + [4816] = 2749, + [4817] = 2745, + [4818] = 4797, + [4819] = 2742, + [4820] = 2733, + [4821] = 4799, + [4822] = 2737, + [4823] = 2741, + [4824] = 4797, + [4825] = 879, + [4826] = 2744, + [4827] = 2736, + [4828] = 2746, + [4829] = 890, + [4830] = 887, + [4831] = 875, + [4832] = 877, + [4833] = 2732, + [4834] = 877, + [4835] = 4797, + [4836] = 4799, + [4837] = 4797, + [4838] = 2740, + [4839] = 4799, + [4840] = 4799, + [4841] = 4799, + [4842] = 875, + [4843] = 2729, + [4844] = 2746, + [4845] = 4845, + [4846] = 4799, + [4847] = 4797, + [4848] = 4848, + [4849] = 2744, + [4850] = 2733, + [4851] = 878, + [4852] = 2738, + [4853] = 2921, + [4854] = 4799, + [4855] = 2742, + [4856] = 4856, + [4857] = 874, + [4858] = 869, + [4859] = 4797, + [4860] = 4797, + [4861] = 881, + [4862] = 876, + [4863] = 4799, + [4864] = 2728, + [4865] = 879, + [4866] = 4797, + [4867] = 4797, + [4868] = 939, + [4869] = 3856, + [4870] = 4797, + [4871] = 4799, + [4872] = 879, + [4873] = 832, + [4874] = 4799, + [4875] = 2920, + [4876] = 2749, + [4877] = 883, + [4878] = 4797, + [4879] = 2745, + [4880] = 2736, + [4881] = 2732, + [4882] = 2718, + [4883] = 4799, + [4884] = 831, + [4885] = 4797, + [4886] = 3878, + [4887] = 4799, + [4888] = 873, + [4889] = 874, + [4890] = 2746, + [4891] = 4799, + [4892] = 887, + [4893] = 4797, + [4894] = 4894, + [4895] = 4895, + [4896] = 4797, + [4897] = 890, + [4898] = 868, + [4899] = 4899, + [4900] = 886, + [4901] = 828, + [4902] = 4799, + [4903] = 880, + [4904] = 4797, + [4905] = 4799, + [4906] = 873, + [4907] = 939, + [4908] = 880, + [4909] = 830, + [4910] = 4797, + [4911] = 2741, + [4912] = 4912, + [4913] = 878, + [4914] = 883, + [4915] = 879, + [4916] = 4916, + [4917] = 886, + [4918] = 875, + [4919] = 877, + [4920] = 4799, + [4921] = 4797, + [4922] = 868, + [4923] = 4799, + [4924] = 890, + [4925] = 850, + [4926] = 887, + [4927] = 874, + [4928] = 874, + [4929] = 4799, + [4930] = 4797, + [4931] = 877, + [4932] = 887, + [4933] = 886, + [4934] = 878, + [4935] = 886, + [4936] = 873, + [4937] = 883, + [4938] = 875, + [4939] = 880, + [4940] = 4799, + [4941] = 868, + [4942] = 4797, + [4943] = 3869, + [4944] = 870, + [4945] = 2737, + [4946] = 890, + [4947] = 4799, + [4948] = 4797, + [4949] = 2744, + [4950] = 4950, + [4951] = 4951, + [4952] = 1118, + [4953] = 2790, + [4954] = 1116, + [4955] = 2758, + [4956] = 1110, + [4957] = 4957, + [4958] = 2742, + [4959] = 4959, + [4960] = 2736, + [4961] = 2793, + [4962] = 4957, + [4963] = 2792, + [4964] = 2744, + [4965] = 2799, + [4966] = 2810, + [4967] = 2746, + [4968] = 2752, + [4969] = 2762, + [4970] = 4959, + [4971] = 4957, + [4972] = 1093, + [4973] = 4973, + [4974] = 2729, + [4975] = 2816, + [4976] = 2818, + [4977] = 4957, + [4978] = 4959, + [4979] = 4950, + [4980] = 4950, + [4981] = 2745, + [4982] = 4973, + [4983] = 4957, + [4984] = 2728, + [4985] = 1119, + [4986] = 1123, + [4987] = 4950, + [4988] = 2811, + [4989] = 4959, + [4990] = 2782, + [4991] = 4957, + [4992] = 2783, + [4993] = 2818, + [4994] = 4959, + [4995] = 1124, + [4996] = 939, + [4997] = 4959, + [4998] = 2827, + [4999] = 4959, + [5000] = 1130, + [5001] = 2749, + [5002] = 4957, + [5003] = 2718, + [5004] = 5004, + [5005] = 4957, + [5006] = 4951, + [5007] = 2738, + [5008] = 2807, + [5009] = 2773, + [5010] = 4959, + [5011] = 4951, + [5012] = 1132, + [5013] = 1134, + [5014] = 2759, + [5015] = 2733, + [5016] = 2757, + [5017] = 2732, + [5018] = 4973, + [5019] = 1137, + [5020] = 4959, + [5021] = 4959, + [5022] = 4951, + [5023] = 3585, + [5024] = 2756, + [5025] = 2807, + [5026] = 3589, + [5027] = 4957, + [5028] = 4957, + [5029] = 2740, + [5030] = 2740, + [5031] = 4950, + [5032] = 3524, + [5033] = 2811, + [5034] = 3567, + [5035] = 1107, + [5036] = 1049, + [5037] = 1082, + [5038] = 3568, + [5039] = 1103, + [5040] = 2797, + [5041] = 2794, + [5042] = 4959, + [5043] = 2741, + [5044] = 2737, + [5045] = 1145, + [5046] = 1236, + [5047] = 1238, + [5048] = 2789, + [5049] = 4957, + [5050] = 1152, + [5051] = 4957, + [5052] = 1155, + [5053] = 2776, + [5054] = 1230, + [5055] = 1091, + [5056] = 4959, + [5057] = 2788, + [5058] = 2783, + [5059] = 1183, + [5060] = 1192, + [5061] = 2759, + [5062] = 2778, + [5063] = 4957, + [5064] = 2810, + [5065] = 4957, + [5066] = 4957, + [5067] = 4951, + [5068] = 2752, + [5069] = 2782, + [5070] = 2741, + [5071] = 2800, + [5072] = 3571, + [5073] = 1058, + [5074] = 4959, + [5075] = 4959, + [5076] = 4959, + [5077] = 4959, + [5078] = 4957, + [5079] = 3593, + [5080] = 2811, + [5081] = 4959, + [5082] = 3588, + [5083] = 3644, + [5084] = 4959, + [5085] = 2756, + [5086] = 4959, + [5087] = 5004, + [5088] = 2793, + [5089] = 3591, + [5090] = 2790, + [5091] = 2800, + [5092] = 5092, + [5093] = 2816, + [5094] = 2776, + [5095] = 2773, + [5096] = 4959, + [5097] = 3651, + [5098] = 4957, + [5099] = 851, + [5100] = 2762, + [5101] = 1125, + [5102] = 4951, + [5103] = 2751, + [5104] = 2732, + [5105] = 2736, + [5106] = 2787, + [5107] = 2827, + [5108] = 2799, + [5109] = 2749, + [5110] = 1140, + [5111] = 5004, + [5112] = 1158, + [5113] = 3608, + [5114] = 2757, + [5115] = 1160, + [5116] = 4957, + [5117] = 2729, + [5118] = 2728, + [5119] = 4957, + [5120] = 2797, + [5121] = 2718, + [5122] = 2738, + [5123] = 2778, + [5124] = 4957, + [5125] = 4957, + [5126] = 2733, + [5127] = 2788, + [5128] = 2794, + [5129] = 4957, + [5130] = 2751, + [5131] = 4959, + [5132] = 2787, + [5133] = 4959, + [5134] = 2789, + [5135] = 4950, + [5136] = 4959, + [5137] = 3630, + [5138] = 2745, + [5139] = 2799, + [5140] = 1067, + [5141] = 2737, + [5142] = 3603, + [5143] = 3609, + [5144] = 3612, + [5145] = 2758, + [5146] = 4950, + [5147] = 2792, + [5148] = 3606, + [5149] = 4951, + [5150] = 4957, + [5151] = 2762, + [5152] = 881, + [5153] = 2773, + [5154] = 908, + [5155] = 2783, + [5156] = 2792, + [5157] = 2782, + [5158] = 2952, + [5159] = 2759, + [5160] = 2933, + [5161] = 848, + [5162] = 2776, + [5163] = 2793, + [5164] = 2787, + [5165] = 2783, + [5166] = 2756, + [5167] = 2782, + [5168] = 2827, + [5169] = 2790, + [5170] = 2751, + [5171] = 2752, + [5172] = 5172, + [5173] = 2758, + [5174] = 2807, + [5175] = 4447, + [5176] = 5176, + [5177] = 2757, + [5178] = 5178, + [5179] = 5176, + [5180] = 5180, + [5181] = 2756, + [5182] = 2789, + [5183] = 2807, + [5184] = 2800, + [5185] = 2797, + [5186] = 2792, + [5187] = 2816, + [5188] = 2827, + [5189] = 919, + [5190] = 2811, + [5191] = 2932, + [5192] = 2816, + [5193] = 2818, + [5194] = 2818, + [5195] = 5178, + [5196] = 3733, + [5197] = 5197, + [5198] = 2758, + [5199] = 5092, + [5200] = 864, + [5201] = 2778, + [5202] = 2788, + [5203] = 2751, + [5204] = 2810, + [5205] = 2778, + [5206] = 4453, + [5207] = 5178, + [5208] = 2924, + [5209] = 2789, + [5210] = 2794, + [5211] = 2794, + [5212] = 5178, + [5213] = 4457, + [5214] = 4489, + [5215] = 2759, + [5216] = 856, + [5217] = 2790, + [5218] = 2793, + [5219] = 2810, + [5220] = 851, + [5221] = 3759, + [5222] = 872, + [5223] = 2787, + [5224] = 846, + [5225] = 2773, + [5226] = 2776, + [5227] = 2800, + [5228] = 2757, + [5229] = 2799, + [5230] = 2797, + [5231] = 2762, + [5232] = 5197, + [5233] = 2752, + [5234] = 2788, + [5235] = 5235, [5236] = 5236, - [5237] = 5205, - [5238] = 2843, - [5239] = 5205, - [5240] = 5206, - [5241] = 5201, - [5242] = 5207, - [5243] = 5205, - [5244] = 5202, - [5245] = 3219, - [5246] = 5205, - [5247] = 5247, - [5248] = 887, - [5249] = 5201, - [5250] = 5250, - [5251] = 5229, - [5252] = 3404, - [5253] = 5202, - [5254] = 5216, - [5255] = 5202, - [5256] = 5207, - [5257] = 5216, - [5258] = 5206, - [5259] = 3402, - [5260] = 5202, - [5261] = 5216, - [5262] = 5202, - [5263] = 5205, - [5264] = 5202, - [5265] = 5202, - [5266] = 5202, - [5267] = 5267, - [5268] = 897, - [5269] = 5236, - [5270] = 5270, - [5271] = 850, - [5272] = 5217, - [5273] = 5205, - [5274] = 5202, - [5275] = 5202, - [5276] = 911, - [5277] = 5216, - [5278] = 5216, - [5279] = 5205, - [5280] = 5217, - [5281] = 5201, - [5282] = 5205, - [5283] = 5283, - [5284] = 5202, - [5285] = 5205, - [5286] = 2828, - [5287] = 5236, - [5288] = 5229, - [5289] = 5202, - [5290] = 5202, - [5291] = 5202, - [5292] = 5202, - [5293] = 5202, - [5294] = 5202, - [5295] = 921, - [5296] = 5216, - [5297] = 5205, - [5298] = 5216, - [5299] = 3404, - [5300] = 5216, - [5301] = 3719, - [5302] = 5217, - [5303] = 5216, - [5304] = 5202, - [5305] = 3402, - [5306] = 5216, - [5307] = 5202, - [5308] = 5308, - [5309] = 5205, - [5310] = 847, - [5311] = 5216, - [5312] = 5312, - [5313] = 859, - [5314] = 5202, - [5315] = 5201, - [5316] = 5202, - [5317] = 5202, + [5237] = 3412, + [5238] = 3443, + [5239] = 3443, + [5240] = 5240, + [5241] = 5235, + [5242] = 877, + [5243] = 5243, + [5244] = 5244, + [5245] = 3417, + [5246] = 5246, + [5247] = 5243, + [5248] = 5248, + [5249] = 5240, + [5250] = 923, + [5251] = 937, + [5252] = 5252, + [5253] = 5253, + [5254] = 875, + [5255] = 2895, + [5256] = 5246, + [5257] = 5246, + [5258] = 5252, + [5259] = 5236, + [5260] = 5260, + [5261] = 5248, + [5262] = 5235, + [5263] = 5246, + [5264] = 5236, + [5265] = 5265, + [5266] = 5252, + [5267] = 2895, + [5268] = 5236, + [5269] = 5269, + [5270] = 5252, + [5271] = 3412, + [5272] = 5244, + [5273] = 5246, + [5274] = 5235, + [5275] = 5246, + [5276] = 5246, + [5277] = 5235, + [5278] = 3412, + [5279] = 5279, + [5280] = 5235, + [5281] = 5252, + [5282] = 5252, + [5283] = 5248, + [5284] = 5260, + [5285] = 5252, + [5286] = 5286, + [5287] = 5287, + [5288] = 3242, + [5289] = 5248, + [5290] = 5246, + [5291] = 2875, + [5292] = 5252, + [5293] = 931, + [5294] = 5260, + [5295] = 5248, + [5296] = 5246, + [5297] = 5252, + [5298] = 5248, + [5299] = 3412, + [5300] = 5246, + [5301] = 5252, + [5302] = 848, + [5303] = 5260, + [5304] = 5304, + [5305] = 3443, + [5306] = 846, + [5307] = 5307, + [5308] = 3417, + [5309] = 5248, + [5310] = 5248, + [5311] = 5252, + [5312] = 3236, + [5313] = 5246, + [5314] = 5304, + [5315] = 5315, + [5316] = 5248, + [5317] = 5317, [5318] = 869, - [5319] = 5202, - [5320] = 917, - [5321] = 5202, - [5322] = 876, - [5323] = 3724, - [5324] = 882, - [5325] = 872, - [5326] = 5229, - [5327] = 5202, - [5328] = 3402, - [5329] = 5202, - [5330] = 5208, - [5331] = 3402, - [5332] = 5206, - [5333] = 5202, - [5334] = 5217, - [5335] = 5205, - [5336] = 5336, - [5337] = 5205, - [5338] = 5202, - [5339] = 5216, - [5340] = 923, - [5341] = 5205, - [5342] = 5216, - [5343] = 5229, - [5344] = 5207, - [5345] = 5201, - [5346] = 5346, - [5347] = 5206, - [5348] = 874, - [5349] = 5201, - [5350] = 3407, - [5351] = 3404, - [5352] = 3404, - [5353] = 5216, - [5354] = 5205, - [5355] = 5355, - [5356] = 5205, - [5357] = 3399, - [5358] = 5205, - [5359] = 5216, - [5360] = 5202, - [5361] = 5202, - [5362] = 2828, - [5363] = 5210, - [5364] = 5216, - [5365] = 5207, - [5366] = 5216, - [5367] = 5206, - [5368] = 5217, - [5369] = 3399, - [5370] = 5229, - [5371] = 5371, - [5372] = 5217, - [5373] = 5205, - [5374] = 5236, - [5375] = 5207, - [5376] = 5216, - [5377] = 5202, - [5378] = 3220, - [5379] = 5216, - [5380] = 5205, - [5381] = 5202, - [5382] = 5382, - [5383] = 5202, - [5384] = 3404, - [5385] = 5385, - [5386] = 5385, - [5387] = 880, - [5388] = 877, - [5389] = 3529, - [5390] = 3528, - [5391] = 3497, - [5392] = 3487, - [5393] = 925, - [5394] = 3479, - [5395] = 5395, - [5396] = 923, - [5397] = 5385, - [5398] = 3820, - [5399] = 3528, - [5400] = 859, - [5401] = 3525, - [5402] = 3525, - [5403] = 5385, - [5404] = 5404, - [5405] = 5405, - [5406] = 5385, - [5407] = 5407, - [5408] = 850, - [5409] = 3529, - [5410] = 897, - [5411] = 921, - [5412] = 5405, - [5413] = 5385, - [5414] = 5395, - [5415] = 3531, - [5416] = 3533, - [5417] = 3534, - [5418] = 3501, - [5419] = 5385, - [5420] = 5420, - [5421] = 5421, - [5422] = 5422, - [5423] = 5423, - [5424] = 5421, - [5425] = 5425, - [5426] = 5423, - [5427] = 5407, - [5428] = 5421, - [5429] = 5423, - [5430] = 5404, - [5431] = 5423, - [5432] = 5385, - [5433] = 5433, - [5434] = 3534, - [5435] = 5435, - [5436] = 5421, - [5437] = 3533, - [5438] = 5438, - [5439] = 5421, - [5440] = 5407, - [5441] = 5423, - [5442] = 5404, - [5443] = 5443, - [5444] = 5423, - [5445] = 5438, - [5446] = 5443, - [5447] = 5421, - [5448] = 5448, - [5449] = 5449, - [5450] = 5404, - [5451] = 5421, - [5452] = 5433, - [5453] = 5443, + [5319] = 5307, + [5320] = 5248, + [5321] = 5321, + [5322] = 5243, + [5323] = 5323, + [5324] = 5235, + [5325] = 5240, + [5326] = 5252, + [5327] = 5253, + [5328] = 5248, + [5329] = 5240, + [5330] = 5330, + [5331] = 5243, + [5332] = 3417, + [5333] = 5252, + [5334] = 5248, + [5335] = 5248, + [5336] = 5243, + [5337] = 5240, + [5338] = 890, + [5339] = 2875, + [5340] = 5252, + [5341] = 5246, + [5342] = 5248, + [5343] = 5248, + [5344] = 5304, + [5345] = 5307, + [5346] = 5248, + [5347] = 5246, + [5348] = 5246, + [5349] = 5349, + [5350] = 3417, + [5351] = 5248, + [5352] = 5246, + [5353] = 5307, + [5354] = 5248, + [5355] = 3443, + [5356] = 5235, + [5357] = 5244, + [5358] = 5235, + [5359] = 5248, + [5360] = 5236, + [5361] = 868, + [5362] = 851, + [5363] = 5363, + [5364] = 3445, + [5365] = 5248, + [5366] = 5366, + [5367] = 5248, + [5368] = 5252, + [5369] = 5235, + [5370] = 5246, + [5371] = 919, + [5372] = 5248, + [5373] = 5248, + [5374] = 5235, + [5375] = 5235, + [5376] = 5246, + [5377] = 879, + [5378] = 5235, + [5379] = 5252, + [5380] = 5248, + [5381] = 5253, + [5382] = 5236, + [5383] = 5248, + [5384] = 5384, + [5385] = 5246, + [5386] = 908, + [5387] = 5248, + [5388] = 5235, + [5389] = 883, + [5390] = 5248, + [5391] = 5248, + [5392] = 5252, + [5393] = 5235, + [5394] = 5235, + [5395] = 5235, + [5396] = 5235, + [5397] = 5248, + [5398] = 5244, + [5399] = 5248, + [5400] = 873, + [5401] = 5248, + [5402] = 5252, + [5403] = 5248, + [5404] = 5235, + [5405] = 5252, + [5406] = 5260, + [5407] = 5235, + [5408] = 5246, + [5409] = 5409, + [5410] = 880, + [5411] = 5248, + [5412] = 5235, + [5413] = 5248, + [5414] = 5235, + [5415] = 5235, + [5416] = 5246, + [5417] = 847, + [5418] = 5252, + [5419] = 5240, + [5420] = 5244, + [5421] = 5244, + [5422] = 5243, + [5423] = 5246, + [5424] = 852, + [5425] = 5235, + [5426] = 5426, + [5427] = 5235, + [5428] = 5235, + [5429] = 5243, + [5430] = 5252, + [5431] = 5240, + [5432] = 5235, + [5433] = 5235, + [5434] = 5235, + [5435] = 5248, + [5436] = 5260, + [5437] = 5235, + [5438] = 5260, + [5439] = 5253, + [5440] = 5235, + [5441] = 5246, + [5442] = 5252, + [5443] = 5252, + [5444] = 5244, + [5445] = 878, + [5446] = 5304, + [5447] = 5246, + [5448] = 5235, + [5449] = 5235, + [5450] = 3535, + [5451] = 5451, + [5452] = 5452, + [5453] = 5453, [5454] = 5454, - [5455] = 5423, - [5456] = 5421, - [5457] = 5457, - [5458] = 5385, - [5459] = 3501, - [5460] = 3497, - [5461] = 5421, - [5462] = 5462, - [5463] = 5404, + [5455] = 876, + [5456] = 3412, + [5457] = 3503, + [5458] = 5458, + [5459] = 5451, + [5460] = 3495, + [5461] = 5461, + [5462] = 3527, + [5463] = 5463, [5464] = 5464, [5465] = 5465, - [5466] = 5385, - [5467] = 5467, - [5468] = 5423, - [5469] = 5469, - [5470] = 5470, - [5471] = 3531, - [5472] = 3724, - [5473] = 5433, - [5474] = 5421, - [5475] = 5405, - [5476] = 5385, - [5477] = 5477, - [5478] = 5385, - [5479] = 5385, - [5480] = 5385, - [5481] = 5405, - [5482] = 5435, + [5466] = 5384, + [5467] = 870, + [5468] = 5458, + [5469] = 3417, + [5470] = 3503, + [5471] = 3530, + [5472] = 3535, + [5473] = 3504, + [5474] = 5474, + [5475] = 5475, + [5476] = 5461, + [5477] = 5451, + [5478] = 5478, + [5479] = 5474, + [5480] = 5480, + [5481] = 5475, + [5482] = 3481, [5483] = 5483, - [5484] = 5443, - [5485] = 3534, - [5486] = 5438, - [5487] = 5405, - [5488] = 5448, - [5489] = 5449, - [5490] = 5385, - [5491] = 3719, - [5492] = 3407, - [5493] = 5433, - [5494] = 3404, - [5495] = 3479, - [5496] = 3487, - [5497] = 3402, - [5498] = 3479, - [5499] = 3497, - [5500] = 3501, - [5501] = 5385, - [5502] = 5385, - [5503] = 5405, - [5504] = 5504, - [5505] = 5385, - [5506] = 5404, - [5507] = 5407, - [5508] = 3476, - [5509] = 3487, - [5510] = 5395, - [5511] = 5457, - [5512] = 5385, - [5513] = 2843, - [5514] = 3497, - [5515] = 5421, - [5516] = 3501, - [5517] = 5469, - [5518] = 5232, - [5519] = 5467, - [5520] = 5469, - [5521] = 5469, - [5522] = 5467, - [5523] = 5467, - [5524] = 5443, - [5525] = 3402, - [5526] = 5385, - [5527] = 3399, - [5528] = 2828, - [5529] = 5385, - [5530] = 5457, - [5531] = 5385, - [5532] = 5407, - [5533] = 5533, - [5534] = 5423, - [5535] = 3528, - [5536] = 3534, - [5537] = 5385, - [5538] = 3533, - [5539] = 5462, - [5540] = 5385, - [5541] = 5438, - [5542] = 5385, - [5543] = 5457, - [5544] = 3531, - [5545] = 5385, - [5546] = 5421, - [5547] = 3487, - [5548] = 5443, - [5549] = 3529, - [5550] = 5385, - [5551] = 5385, - [5552] = 3525, - [5553] = 5385, - [5554] = 5385, - [5555] = 3479, - [5556] = 5385, - [5557] = 3528, - [5558] = 3529, - [5559] = 5433, - [5560] = 5462, - [5561] = 5385, - [5562] = 3525, - [5563] = 5433, - [5564] = 5435, - [5565] = 5407, - [5566] = 5443, - [5567] = 3531, - [5568] = 5385, - [5569] = 5407, - [5570] = 3492, - [5571] = 3399, - [5572] = 5405, - [5573] = 3490, - [5574] = 5404, - [5575] = 3485, - [5576] = 3478, - [5577] = 5421, - [5578] = 3533, - [5579] = 5433, - [5580] = 5423, - [5581] = 5423, - [5582] = 3496, - [5583] = 3494, - [5584] = 3493, - [5585] = 5395, - [5586] = 5435, - [5587] = 5462, - [5588] = 1082, - [5589] = 2907, - [5590] = 3626, - [5591] = 3624, - [5592] = 3479, - [5593] = 3487, - [5594] = 2905, - [5595] = 5449, - [5596] = 5596, - [5597] = 2906, - [5598] = 5598, - [5599] = 3544, - [5600] = 3635, - [5601] = 2479, - [5602] = 3564, - [5603] = 3531, - [5604] = 3562, - [5605] = 3634, - [5606] = 2903, - [5607] = 3606, - [5608] = 2904, - [5609] = 3594, - [5610] = 3590, - [5611] = 2904, - [5612] = 5596, - [5613] = 3608, - [5614] = 5614, - [5615] = 5448, - [5616] = 5616, - [5617] = 3479, - [5618] = 3476, - [5619] = 3487, - [5620] = 3497, - [5621] = 3501, - [5622] = 3534, - [5623] = 3533, - [5624] = 3531, - [5625] = 3542, - [5626] = 5596, - [5627] = 3529, - [5628] = 3528, - [5629] = 3525, - [5630] = 2903, - [5631] = 3525, - [5632] = 2907, - [5633] = 3528, - [5634] = 5598, - [5635] = 3529, - [5636] = 873, - [5637] = 3533, - [5638] = 3534, - [5639] = 5639, - [5640] = 3485, - [5641] = 3627, - [5642] = 3478, - [5643] = 3630, - [5644] = 3490, - [5645] = 3492, - [5646] = 3493, - [5647] = 3494, - [5648] = 3496, - [5649] = 2905, - [5650] = 3818, - [5651] = 5651, - [5652] = 5454, - [5653] = 3773, - [5654] = 3497, - [5655] = 3833, - [5656] = 3568, - [5657] = 3573, - [5658] = 3501, + [5484] = 5458, + [5485] = 5480, + [5486] = 5454, + [5487] = 3508, + [5488] = 5458, + [5489] = 5458, + [5490] = 5490, + [5491] = 5458, + [5492] = 5458, + [5493] = 2895, + [5494] = 5475, + [5495] = 3417, + [5496] = 5465, + [5497] = 5497, + [5498] = 3510, + [5499] = 5451, + [5500] = 3530, + [5501] = 3527, + [5502] = 5451, + [5503] = 5503, + [5504] = 923, + [5505] = 5451, + [5506] = 5458, + [5507] = 3527, + [5508] = 5451, + [5509] = 5474, + [5510] = 937, + [5511] = 5454, + [5512] = 5458, + [5513] = 5474, + [5514] = 5514, + [5515] = 5458, + [5516] = 3733, + [5517] = 5478, + [5518] = 3503, + [5519] = 5463, + [5520] = 5458, + [5521] = 5463, + [5522] = 5461, + [5523] = 5458, + [5524] = 5480, + [5525] = 5458, + [5526] = 5480, + [5527] = 5527, + [5528] = 5458, + [5529] = 5474, + [5530] = 5458, + [5531] = 5531, + [5532] = 5451, + [5533] = 5458, + [5534] = 3542, + [5535] = 3505, + [5536] = 931, + [5537] = 5454, + [5538] = 3547, + [5539] = 5539, + [5540] = 5497, + [5541] = 5464, + [5542] = 5463, + [5543] = 5458, + [5544] = 5458, + [5545] = 5453, + [5546] = 5452, + [5547] = 5465, + [5548] = 5465, + [5549] = 5463, + [5550] = 5550, + [5551] = 5452, + [5552] = 5465, + [5553] = 5458, + [5554] = 5480, + [5555] = 5453, + [5556] = 5458, + [5557] = 5458, + [5558] = 5480, + [5559] = 5464, + [5560] = 5497, + [5561] = 5480, + [5562] = 5458, + [5563] = 5451, + [5564] = 5451, + [5565] = 5480, + [5566] = 3869, + [5567] = 3541, + [5568] = 5475, + [5569] = 3541, + [5570] = 869, + [5571] = 5461, + [5572] = 3542, + [5573] = 5480, + [5574] = 5574, + [5575] = 3543, + [5576] = 5576, + [5577] = 5577, + [5578] = 3546, + [5579] = 5474, + [5580] = 852, + [5581] = 3549, + [5582] = 5458, + [5583] = 3524, + [5584] = 3550, + [5585] = 5475, + [5586] = 5586, + [5587] = 5458, + [5588] = 5458, + [5589] = 3443, + [5590] = 3530, + [5591] = 3535, + [5592] = 5475, + [5593] = 5451, + [5594] = 5463, + [5595] = 5458, + [5596] = 3856, + [5597] = 5463, + [5598] = 5458, + [5599] = 3535, + [5600] = 5458, + [5601] = 3541, + [5602] = 5451, + [5603] = 5603, + [5604] = 5531, + [5605] = 5454, + [5606] = 5458, + [5607] = 5480, + [5608] = 5458, + [5609] = 3542, + [5610] = 5478, + [5611] = 3550, + [5612] = 5475, + [5613] = 3445, + [5614] = 3549, + [5615] = 5577, + [5616] = 5531, + [5617] = 3543, + [5618] = 3878, + [5619] = 3412, + [5620] = 3546, + [5621] = 3546, + [5622] = 3550, + [5623] = 3543, + [5624] = 5624, + [5625] = 847, + [5626] = 5458, + [5627] = 5586, + [5628] = 4096, + [5629] = 5458, + [5630] = 5452, + [5631] = 5478, + [5632] = 5531, + [5633] = 3550, + [5634] = 5480, + [5635] = 5451, + [5636] = 3549, + [5637] = 5465, + [5638] = 3546, + [5639] = 3543, + [5640] = 3542, + [5641] = 3759, + [5642] = 2875, + [5643] = 3503, + [5644] = 3527, + [5645] = 5454, + [5646] = 3530, + [5647] = 3541, + [5648] = 5453, + [5649] = 5458, + [5650] = 3549, + [5651] = 3443, + [5652] = 5474, + [5653] = 5465, + [5654] = 5654, + [5655] = 5464, + [5656] = 5454, + [5657] = 5497, + [5658] = 3504, [5659] = 5659, - [5660] = 5651, - [5661] = 5661, - [5662] = 5659, - [5663] = 5651, - [5664] = 5659, - [5665] = 5598, - [5666] = 2906, - [5667] = 5667, - [5668] = 1066, - [5669] = 1081, - [5670] = 5596, - [5671] = 1181, - [5672] = 1176, + [5660] = 5660, + [5661] = 3644, + [5662] = 2918, + [5663] = 3612, + [5664] = 3609, + [5665] = 5665, + [5666] = 3603, + [5667] = 2917, + [5668] = 2915, + [5669] = 3568, + [5670] = 3567, + [5671] = 5586, + [5672] = 5672, [5673] = 5673, - [5674] = 1108, - [5675] = 5598, - [5676] = 1106, - [5677] = 5616, - [5678] = 1085, - [5679] = 1138, - [5680] = 5673, - [5681] = 1029, - [5682] = 1030, - [5683] = 1033, - [5684] = 5596, - [5685] = 1034, - [5686] = 1035, - [5687] = 1037, - [5688] = 5598, - [5689] = 5673, - [5690] = 5690, - [5691] = 1038, - [5692] = 5692, - [5693] = 1046, - [5694] = 1047, - [5695] = 5596, - [5696] = 5673, - [5697] = 1048, - [5698] = 5598, - [5699] = 5673, - [5700] = 5673, - [5701] = 5673, - [5702] = 1051, - [5703] = 5673, - [5704] = 1133, - [5705] = 5673, - [5706] = 1125, - [5707] = 1118, - [5708] = 5673, - [5709] = 1115, - [5710] = 1110, - [5711] = 5673, - [5712] = 5712, - [5713] = 1177, - [5714] = 1164, - [5715] = 5715, - [5716] = 5673, - [5717] = 1178, - [5718] = 5598, - [5719] = 5673, - [5720] = 5673, - [5721] = 5673, - [5722] = 1124, - [5723] = 5723, - [5724] = 5596, - [5725] = 5659, - [5726] = 1143, - [5727] = 880, - [5728] = 5651, - [5729] = 877, - [5730] = 5730, - [5731] = 3564, - [5732] = 5732, - [5733] = 873, - [5734] = 5734, - [5735] = 1125, - [5736] = 1143, - [5737] = 1178, - [5738] = 1124, - [5739] = 1164, - [5740] = 1110, - [5741] = 1115, - [5742] = 1118, - [5743] = 1108, - [5744] = 1133, - [5745] = 1051, - [5746] = 1048, - [5747] = 1047, - [5748] = 5748, - [5749] = 5749, - [5750] = 1046, - [5751] = 1038, - [5752] = 1037, - [5753] = 1035, - [5754] = 1034, - [5755] = 1033, - [5756] = 1030, - [5757] = 1029, - [5758] = 5748, - [5759] = 1138, - [5760] = 1085, - [5761] = 1106, - [5762] = 1177, - [5763] = 1176, - [5764] = 1181, - [5765] = 5765, - [5766] = 5748, - [5767] = 5749, - [5768] = 1082, - [5769] = 1081, - [5770] = 1066, - [5771] = 5732, - [5772] = 5772, - [5773] = 5773, - [5774] = 5774, - [5775] = 5775, - [5776] = 5776, - [5777] = 5777, - [5778] = 5775, - [5779] = 5765, - [5780] = 5734, - [5781] = 2908, - [5782] = 5782, - [5783] = 5765, - [5784] = 5765, - [5785] = 3608, - [5786] = 5774, - [5787] = 3590, - [5788] = 3594, - [5789] = 3606, - [5790] = 3626, - [5791] = 5749, - [5792] = 5774, - [5793] = 3624, - [5794] = 2908, - [5795] = 3773, - [5796] = 5734, - [5797] = 5734, - [5798] = 5748, - [5799] = 5765, - [5800] = 5749, - [5801] = 5765, - [5802] = 5775, - [5803] = 3635, - [5804] = 5765, - [5805] = 3562, - [5806] = 3634, - [5807] = 2904, - [5808] = 5774, - [5809] = 3544, - [5810] = 5749, - [5811] = 3542, - [5812] = 5732, - [5813] = 2909, - [5814] = 2903, - [5815] = 2907, - [5816] = 5765, - [5817] = 3627, - [5818] = 5775, - [5819] = 3630, - [5820] = 5765, - [5821] = 2905, - [5822] = 3833, - [5823] = 3568, - [5824] = 3573, - [5825] = 2906, - [5826] = 5732, - [5827] = 3818, - [5828] = 5765, - [5829] = 5734, - [5830] = 5748, - [5831] = 5749, - [5832] = 5732, - [5833] = 5774, - [5834] = 5732, - [5835] = 5765, - [5836] = 5448, - [5837] = 5749, - [5838] = 5732, - [5839] = 5748, - [5840] = 5775, - [5841] = 5734, - [5842] = 5749, - [5843] = 5774, - [5844] = 5775, - [5845] = 5734, - [5846] = 5774, - [5847] = 5765, - [5848] = 5848, - [5849] = 2909, - [5850] = 5775, - [5851] = 5748, - [5852] = 5777, - [5853] = 5776, - [5854] = 5854, - [5855] = 5448, + [5674] = 2916, + [5675] = 5577, + [5676] = 2919, + [5677] = 3503, + [5678] = 3524, + [5679] = 3527, + [5680] = 3535, + [5681] = 5681, + [5682] = 5681, + [5683] = 5681, + [5684] = 5681, + [5685] = 5681, + [5686] = 5681, + [5687] = 3530, + [5688] = 5681, + [5689] = 5689, + [5690] = 5660, + [5691] = 5681, + [5692] = 3630, + [5693] = 5681, + [5694] = 5681, + [5695] = 5681, + [5696] = 5660, + [5697] = 3541, + [5698] = 5681, + [5699] = 3588, + [5700] = 2274, + [5701] = 3542, + [5702] = 5681, + [5703] = 3543, + [5704] = 3546, + [5705] = 3549, + [5706] = 5689, + [5707] = 3550, + [5708] = 5672, + [5709] = 3591, + [5710] = 3593, + [5711] = 5681, + [5712] = 5659, + [5713] = 3571, + [5714] = 3550, + [5715] = 5681, + [5716] = 3549, + [5717] = 3546, + [5718] = 3543, + [5719] = 5689, + [5720] = 2918, + [5721] = 5660, + [5722] = 5672, + [5723] = 3606, + [5724] = 3542, + [5725] = 2917, + [5726] = 2915, + [5727] = 5673, + [5728] = 3541, + [5729] = 3547, + [5730] = 3589, + [5731] = 5731, + [5732] = 3585, + [5733] = 5574, + [5734] = 5689, + [5735] = 3505, + [5736] = 2916, + [5737] = 5689, + [5738] = 5660, + [5739] = 3481, + [5740] = 3535, + [5741] = 3530, + [5742] = 3651, + [5743] = 3608, + [5744] = 5673, + [5745] = 2919, + [5746] = 3495, + [5747] = 3508, + [5748] = 3510, + [5749] = 5672, + [5750] = 5750, + [5751] = 5751, + [5752] = 5660, + [5753] = 5753, + [5754] = 5754, + [5755] = 5689, + [5756] = 5689, + [5757] = 5757, + [5758] = 1067, + [5759] = 1158, + [5760] = 3527, + [5761] = 876, + [5762] = 1160, + [5763] = 3503, + [5764] = 1192, + [5765] = 1183, + [5766] = 1152, + [5767] = 870, + [5768] = 1145, + [5769] = 1140, + [5770] = 1137, + [5771] = 1134, + [5772] = 1132, + [5773] = 1130, + [5774] = 1125, + [5775] = 1124, + [5776] = 1123, + [5777] = 1119, + [5778] = 1118, + [5779] = 1116, + [5780] = 1110, + [5781] = 1093, + [5782] = 1049, + [5783] = 1103, + [5784] = 1238, + [5785] = 5785, + [5786] = 1230, + [5787] = 1091, + [5788] = 5660, + [5789] = 1155, + [5790] = 1082, + [5791] = 1058, + [5792] = 1236, + [5793] = 1107, + [5794] = 5794, + [5795] = 5673, + [5796] = 881, + [5797] = 3856, + [5798] = 1236, + [5799] = 1091, + [5800] = 1230, + [5801] = 1238, + [5802] = 1103, + [5803] = 5803, + [5804] = 5804, + [5805] = 5805, + [5806] = 1082, + [5807] = 1093, + [5808] = 1110, + [5809] = 1116, + [5810] = 1107, + [5811] = 1118, + [5812] = 5812, + [5813] = 5813, + [5814] = 1119, + [5815] = 1123, + [5816] = 5816, + [5817] = 5805, + [5818] = 2919, + [5819] = 3608, + [5820] = 5816, + [5821] = 3651, + [5822] = 1124, + [5823] = 5812, + [5824] = 1125, + [5825] = 1130, + [5826] = 5803, + [5827] = 1049, + [5828] = 1134, + [5829] = 1137, + [5830] = 5804, + [5831] = 1140, + [5832] = 5832, + [5833] = 5812, + [5834] = 5805, + [5835] = 2916, + [5836] = 5836, + [5837] = 1145, + [5838] = 5838, + [5839] = 5839, + [5840] = 5816, + [5841] = 5586, + [5842] = 1152, + [5843] = 1183, + [5844] = 5803, + [5845] = 5812, + [5846] = 5803, + [5847] = 3585, + [5848] = 1192, + [5849] = 3589, + [5850] = 5838, + [5851] = 5838, + [5852] = 1160, + [5853] = 5816, + [5854] = 5804, + [5855] = 5803, [5856] = 5856, - [5857] = 5857, - [5858] = 2909, - [5859] = 2908, - [5860] = 5860, - [5861] = 5861, - [5862] = 2914, + [5857] = 2917, + [5858] = 1158, + [5859] = 1067, + [5860] = 1155, + [5861] = 5812, + [5862] = 3612, [5863] = 5863, - [5864] = 5864, - [5865] = 5865, - [5866] = 2916, - [5867] = 2926, - [5868] = 5863, - [5869] = 5864, - [5870] = 5864, - [5871] = 5863, - [5872] = 5872, - [5873] = 5864, - [5874] = 917, - [5875] = 5863, - [5876] = 5863, - [5877] = 5865, - [5878] = 5861, - [5879] = 5879, - [5880] = 5861, - [5881] = 5864, - [5882] = 5863, - [5883] = 5863, - [5884] = 5863, - [5885] = 5864, - [5886] = 5865, - [5887] = 5865, - [5888] = 5888, - [5889] = 5889, - [5890] = 5863, - [5891] = 5864, - [5892] = 5863, - [5893] = 5863, - [5894] = 5894, - [5895] = 5895, - [5896] = 5864, - [5897] = 5897, - [5898] = 5898, - [5899] = 5861, - [5900] = 5861, - [5901] = 5898, - [5902] = 5897, - [5903] = 5894, - [5904] = 911, - [5905] = 5897, - [5906] = 5897, - [5907] = 5898, - [5908] = 5864, - [5909] = 5864, - [5910] = 5863, - [5911] = 5864, - [5912] = 5863, - [5913] = 5894, - [5914] = 5879, - [5915] = 5894, - [5916] = 5898, - [5917] = 5863, - [5918] = 5863, - [5919] = 5864, - [5920] = 5864, - [5921] = 5861, - [5922] = 5863, - [5923] = 5894, - [5924] = 5864, - [5925] = 5898, - [5926] = 2926, - [5927] = 5894, - [5928] = 5861, - [5929] = 5863, - [5930] = 5864, - [5931] = 3407, - [5932] = 5897, - [5933] = 5863, - [5934] = 5864, - [5935] = 5863, - [5936] = 5897, - [5937] = 5898, - [5938] = 5863, - [5939] = 5864, - [5940] = 5864, - [5941] = 2916, - [5942] = 5864, - [5943] = 5863, - [5944] = 5861, - [5945] = 5861, - [5946] = 5863, - [5947] = 5863, - [5948] = 5864, - [5949] = 5861, - [5950] = 5864, - [5951] = 5863, - [5952] = 5864, - [5953] = 5897, - [5954] = 5864, - [5955] = 5863, - [5956] = 5956, - [5957] = 5861, - [5958] = 5863, - [5959] = 5864, - [5960] = 5864, - [5961] = 5864, - [5962] = 2914, - [5963] = 5879, - [5964] = 5863, - [5965] = 5864, - [5966] = 5864, - [5967] = 5863, - [5968] = 5894, - [5969] = 5865, - [5970] = 5863, - [5971] = 5861, - [5972] = 5864, - [5973] = 5863, - [5974] = 5864, - [5975] = 5864, - [5976] = 5863, - [5977] = 5861, - [5978] = 5865, - [5979] = 5863, - [5980] = 5864, - [5981] = 5861, - [5982] = 5863, - [5983] = 5879, - [5984] = 5861, - [5985] = 5863, - [5986] = 5864, - [5987] = 5861, - [5988] = 5861, - [5989] = 5864, - [5990] = 5865, - [5991] = 5863, - [5992] = 5864, - [5993] = 5897, - [5994] = 5898, - [5995] = 5995, - [5996] = 5996, - [5997] = 5997, - [5998] = 2970, - [5999] = 5999, - [6000] = 2952, - [6001] = 2946, - [6002] = 2945, - [6003] = 2943, - [6004] = 2971, - [6005] = 2961, - [6006] = 6006, - [6007] = 2937, - [6008] = 2964, - [6009] = 2967, - [6010] = 2938, - [6011] = 2949, - [6012] = 2914, - [6013] = 5999, - [6014] = 2926, - [6015] = 6015, - [6016] = 6006, - [6017] = 2916, - [6018] = 2908, - [6019] = 2942, - [6020] = 6020, - [6021] = 6021, - [6022] = 2966, - [6023] = 2969, - [6024] = 6024, - [6025] = 6025, - [6026] = 2969, - [6027] = 2934, - [6028] = 2935, - [6029] = 6029, - [6030] = 5997, - [6031] = 2968, - [6032] = 6020, - [6033] = 6024, - [6034] = 2962, - [6035] = 6020, - [6036] = 5999, - [6037] = 2940, - [6038] = 2947, - [6039] = 2941, - [6040] = 5999, - [6041] = 2953, - [6042] = 2941, - [6043] = 2953, - [6044] = 2968, - [6045] = 5999, - [6046] = 6006, - [6047] = 2947, - [6048] = 6048, - [6049] = 5999, - [6050] = 2940, - [6051] = 2962, - [6052] = 6020, - [6053] = 6053, - [6054] = 2935, - [6055] = 6029, - [6056] = 6056, - [6057] = 5999, - [6058] = 924, - [6059] = 2942, - [6060] = 2934, - [6061] = 5997, - [6062] = 2949, - [6063] = 2967, - [6064] = 2964, - [6065] = 6021, - [6066] = 2961, - [6067] = 5999, - [6068] = 6006, - [6069] = 2971, - [6070] = 2943, - [6071] = 2945, - [6072] = 2946, - [6073] = 944, - [6074] = 2952, - [6075] = 6006, - [6076] = 5995, - [6077] = 6024, - [6078] = 5997, - [6079] = 5995, - [6080] = 2970, - [6081] = 5997, - [6082] = 6029, - [6083] = 6029, - [6084] = 6020, - [6085] = 5999, - [6086] = 925, - [6087] = 5995, - [6088] = 918, - [6089] = 5995, - [6090] = 6020, - [6091] = 5999, - [6092] = 923, - [6093] = 6006, - [6094] = 5995, - [6095] = 5995, - [6096] = 5997, - [6097] = 2938, - [6098] = 5999, - [6099] = 6099, - [6100] = 6024, - [6101] = 933, - [6102] = 6021, - [6103] = 2937, - [6104] = 5997, - [6105] = 6006, - [6106] = 6029, - [6107] = 847, - [6108] = 5999, - [6109] = 931, - [6110] = 6020, - [6111] = 6111, - [6112] = 6029, - [6113] = 6029, - [6114] = 921, - [6115] = 6115, - [6116] = 6116, - [6117] = 2966, - [6118] = 6021, - [6119] = 6119, - [6120] = 6120, - [6121] = 2970, - [6122] = 6122, + [5864] = 2921, + [5865] = 5816, + [5866] = 5836, + [5867] = 1132, + [5868] = 3630, + [5869] = 3606, + [5870] = 5803, + [5871] = 5805, + [5872] = 5803, + [5873] = 5805, + [5874] = 5804, + [5875] = 1058, + [5876] = 5804, + [5877] = 5812, + [5878] = 5838, + [5879] = 881, + [5880] = 2918, + [5881] = 5881, + [5882] = 3571, + [5883] = 5803, + [5884] = 3593, + [5885] = 5836, + [5886] = 5838, + [5887] = 3591, + [5888] = 5803, + [5889] = 2921, + [5890] = 3588, + [5891] = 3869, + [5892] = 2915, + [5893] = 5804, + [5894] = 2920, + [5895] = 5816, + [5896] = 5836, + [5897] = 5836, + [5898] = 5803, + [5899] = 5838, + [5900] = 5838, + [5901] = 5805, + [5902] = 3878, + [5903] = 5812, + [5904] = 5804, + [5905] = 3568, + [5906] = 3603, + [5907] = 5836, + [5908] = 5803, + [5909] = 5909, + [5910] = 5816, + [5911] = 5911, + [5912] = 5836, + [5913] = 3644, + [5914] = 3609, + [5915] = 5805, + [5916] = 5805, + [5917] = 2920, + [5918] = 5803, + [5919] = 3567, + [5920] = 5586, + [5921] = 2921, + [5922] = 2920, + [5923] = 5856, + [5924] = 5863, + [5925] = 5925, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5929, + [5931] = 5931, + [5932] = 5929, + [5933] = 5933, + [5934] = 5929, + [5935] = 5933, + [5936] = 5929, + [5937] = 5933, + [5938] = 5938, + [5939] = 5938, + [5940] = 5927, + [5941] = 5929, + [5942] = 5929, + [5943] = 5943, + [5944] = 5938, + [5945] = 5928, + [5946] = 5946, + [5947] = 5933, + [5948] = 5933, + [5949] = 5949, + [5950] = 5938, + [5951] = 5931, + [5952] = 5938, + [5953] = 5929, + [5954] = 5927, + [5955] = 908, + [5956] = 5929, + [5957] = 5938, + [5958] = 5933, + [5959] = 5929, + [5960] = 5929, + [5961] = 2932, + [5962] = 5938, + [5963] = 5938, + [5964] = 5931, + [5965] = 2924, + [5966] = 5933, + [5967] = 5967, + [5968] = 5927, + [5969] = 5927, + [5970] = 5928, + [5971] = 5928, + [5972] = 5938, + [5973] = 5929, + [5974] = 5967, + [5975] = 5929, + [5976] = 5931, + [5977] = 5929, + [5978] = 5938, + [5979] = 5927, + [5980] = 5980, + [5981] = 5933, + [5982] = 919, + [5983] = 5931, + [5984] = 5931, + [5985] = 5928, + [5986] = 5929, + [5987] = 5929, + [5988] = 5938, + [5989] = 5933, + [5990] = 2933, + [5991] = 2933, + [5992] = 5992, + [5993] = 5929, + [5994] = 5938, + [5995] = 5938, + [5996] = 5929, + [5997] = 5929, + [5998] = 5929, + [5999] = 5927, + [6000] = 5938, + [6001] = 5929, + [6002] = 5938, + [6003] = 5938, + [6004] = 5933, + [6005] = 5967, + [6006] = 5938, + [6007] = 5929, + [6008] = 5929, + [6009] = 5929, + [6010] = 5929, + [6011] = 5992, + [6012] = 5967, + [6013] = 5929, + [6014] = 5938, + [6015] = 5928, + [6016] = 5967, + [6017] = 5938, + [6018] = 5929, + [6019] = 5938, + [6020] = 5933, + [6021] = 5929, + [6022] = 5938, + [6023] = 5992, + [6024] = 5929, + [6025] = 5938, + [6026] = 5938, + [6027] = 5933, + [6028] = 5933, + [6029] = 5938, + [6030] = 5938, + [6031] = 5929, + [6032] = 5967, + [6033] = 2924, + [6034] = 5928, + [6035] = 5929, + [6036] = 5931, + [6037] = 5938, + [6038] = 5938, + [6039] = 5992, + [6040] = 5933, + [6041] = 3445, + [6042] = 5929, + [6043] = 5933, + [6044] = 5938, + [6045] = 5967, + [6046] = 5929, + [6047] = 5938, + [6048] = 5938, + [6049] = 5938, + [6050] = 5938, + [6051] = 2932, + [6052] = 6052, + [6053] = 5967, + [6054] = 5938, + [6055] = 5938, + [6056] = 5929, + [6057] = 5933, + [6058] = 5933, + [6059] = 5938, + [6060] = 5929, + [6061] = 3002, + [6062] = 2924, + [6063] = 2985, + [6064] = 2979, + [6065] = 6065, + [6066] = 2974, + [6067] = 2968, + [6068] = 6068, + [6069] = 2994, + [6070] = 3006, + [6071] = 851, + [6072] = 2977, + [6073] = 6073, + [6074] = 2963, + [6075] = 6075, + [6076] = 3004, + [6077] = 3010, + [6078] = 2946, + [6079] = 2920, + [6080] = 3020, + [6081] = 6081, + [6082] = 6082, + [6083] = 3014, + [6084] = 6075, + [6085] = 3012, + [6086] = 2992, + [6087] = 3018, + [6088] = 6088, + [6089] = 6089, + [6090] = 6081, + [6091] = 2955, + [6092] = 6092, + [6093] = 949, + [6094] = 2957, + [6095] = 6092, + [6096] = 6068, + [6097] = 6081, + [6098] = 6081, + [6099] = 2955, + [6100] = 6100, + [6101] = 6081, + [6102] = 3011, + [6103] = 2952, + [6104] = 2963, + [6105] = 6081, + [6106] = 6106, + [6107] = 3018, + [6108] = 923, + [6109] = 937, + [6110] = 2982, + [6111] = 6068, + [6112] = 6112, + [6113] = 3012, + [6114] = 2982, + [6115] = 3014, + [6116] = 3020, + [6117] = 6068, + [6118] = 2946, + [6119] = 6106, + [6120] = 3010, + [6121] = 6089, + [6122] = 3004, [6123] = 6123, - [6124] = 6124, - [6125] = 6122, - [6126] = 6122, + [6124] = 2977, + [6125] = 3006, + [6126] = 2974, [6127] = 6127, - [6128] = 6128, - [6129] = 2938, - [6130] = 6130, - [6131] = 6131, - [6132] = 2952, - [6133] = 6122, - [6134] = 6134, - [6135] = 2946, - [6136] = 2945, - [6137] = 2943, - [6138] = 2971, - [6139] = 6122, - [6140] = 6140, - [6141] = 6120, - [6142] = 6142, - [6143] = 6143, - [6144] = 6144, - [6145] = 6142, - [6146] = 920, - [6147] = 6134, - [6148] = 6120, - [6149] = 6143, - [6150] = 2964, - [6151] = 6151, - [6152] = 6122, - [6153] = 6122, - [6154] = 6154, - [6155] = 6155, - [6156] = 2949, - [6157] = 6122, - [6158] = 3399, - [6159] = 6128, - [6160] = 6160, - [6161] = 6161, - [6162] = 6131, - [6163] = 6131, - [6164] = 6122, - [6165] = 2969, - [6166] = 6161, - [6167] = 2934, - [6168] = 2935, - [6169] = 6169, - [6170] = 6170, - [6171] = 6171, - [6172] = 6172, - [6173] = 6122, - [6174] = 2962, - [6175] = 976, - [6176] = 6143, - [6177] = 977, - [6178] = 6178, - [6179] = 2940, - [6180] = 6180, - [6181] = 6122, - [6182] = 6128, - [6183] = 2947, - [6184] = 6142, + [6128] = 2979, + [6129] = 2985, + [6130] = 6081, + [6131] = 2990, + [6132] = 2994, + [6133] = 931, + [6134] = 6068, + [6135] = 6106, + [6136] = 6089, + [6137] = 6081, + [6138] = 2992, + [6139] = 921, + [6140] = 6112, + [6141] = 922, + [6142] = 6106, + [6143] = 6089, + [6144] = 6081, + [6145] = 6112, + [6146] = 6123, + [6147] = 6075, + [6148] = 2968, + [6149] = 2952, + [6150] = 3002, + [6151] = 6068, + [6152] = 6106, + [6153] = 6089, + [6154] = 6081, + [6155] = 6112, + [6156] = 6075, + [6157] = 6123, + [6158] = 6106, + [6159] = 6089, + [6160] = 6081, + [6161] = 2990, + [6162] = 6112, + [6163] = 6092, + [6164] = 2957, + [6165] = 6075, + [6166] = 6112, + [6167] = 3011, + [6168] = 6123, + [6169] = 6075, + [6170] = 6106, + [6171] = 6089, + [6172] = 6081, + [6173] = 6068, + [6174] = 6174, + [6175] = 6175, + [6176] = 918, + [6177] = 6092, + [6178] = 925, + [6179] = 6179, + [6180] = 6075, + [6181] = 6181, + [6182] = 2932, + [6183] = 2933, + [6184] = 6112, [6185] = 6185, - [6186] = 2941, - [6187] = 2953, - [6188] = 6122, - [6189] = 6120, - [6190] = 6134, - [6191] = 6142, - [6192] = 6134, - [6193] = 2966, + [6186] = 6185, + [6187] = 3417, + [6188] = 2955, + [6189] = 2952, + [6190] = 6190, + [6191] = 6191, + [6192] = 6192, + [6193] = 6193, [6194] = 6194, [6195] = 6195, - [6196] = 6122, - [6197] = 6155, - [6198] = 2968, - [6199] = 6122, - [6200] = 6120, - [6201] = 2967, - [6202] = 6140, + [6196] = 6196, + [6197] = 6194, + [6198] = 6185, + [6199] = 971, + [6200] = 6200, + [6201] = 6201, + [6202] = 6202, [6203] = 6203, [6204] = 6204, [6205] = 6205, - [6206] = 6122, - [6207] = 6122, + [6206] = 6206, + [6207] = 6207, [6208] = 6208, [6209] = 6209, - [6210] = 6140, - [6211] = 6211, - [6212] = 2942, - [6213] = 6122, - [6214] = 6122, - [6215] = 6142, - [6216] = 2937, + [6210] = 6210, + [6211] = 6204, + [6212] = 6207, + [6213] = 6213, + [6214] = 6214, + [6215] = 3412, + [6216] = 6216, [6217] = 6217, - [6218] = 6122, - [6219] = 6122, - [6220] = 6161, - [6221] = 6221, - [6222] = 2961, - [6223] = 6134, - [6224] = 6142, - [6225] = 6225, - [6226] = 6161, - [6227] = 6122, - [6228] = 6122, - [6229] = 6142, - [6230] = 6134, - [6231] = 6120, - [6232] = 6122, - [6233] = 6143, - [6234] = 6161, - [6235] = 6122, - [6236] = 6236, - [6237] = 6155, + [6218] = 6185, + [6219] = 6219, + [6220] = 6220, + [6221] = 975, + [6222] = 6193, + [6223] = 6192, + [6224] = 955, + [6225] = 961, + [6226] = 3443, + [6227] = 6227, + [6228] = 6228, + [6229] = 6213, + [6230] = 6207, + [6231] = 6231, + [6232] = 6232, + [6233] = 6233, + [6234] = 6234, + [6235] = 6235, + [6236] = 6207, + [6237] = 3018, [6238] = 6238, - [6239] = 6131, - [6240] = 6236, - [6241] = 6142, - [6242] = 6122, - [6243] = 6238, - [6244] = 6122, - [6245] = 6236, - [6246] = 6161, - [6247] = 6161, - [6248] = 6248, - [6249] = 6161, - [6250] = 6155, - [6251] = 6140, - [6252] = 6161, - [6253] = 6140, - [6254] = 6120, - [6255] = 6169, - [6256] = 6122, - [6257] = 6248, - [6258] = 6124, - [6259] = 6134, - [6260] = 6122, - [6261] = 6236, - [6262] = 6142, - [6263] = 6161, - [6264] = 6172, - [6265] = 6122, - [6266] = 6248, - [6267] = 6142, - [6268] = 6178, - [6269] = 6161, - [6270] = 6178, - [6271] = 6124, - [6272] = 6128, - [6273] = 3404, - [6274] = 6172, - [6275] = 6169, - [6276] = 6155, - [6277] = 6131, - [6278] = 6248, - [6279] = 6124, - [6280] = 6280, - [6281] = 6140, - [6282] = 6143, - [6283] = 6142, + [6239] = 2982, + [6240] = 6207, + [6241] = 3012, + [6242] = 6185, + [6243] = 6243, + [6244] = 6244, + [6245] = 6185, + [6246] = 3014, + [6247] = 6203, + [6248] = 6243, + [6249] = 3020, + [6250] = 6194, + [6251] = 6251, + [6252] = 2946, + [6253] = 3010, + [6254] = 6185, + [6255] = 6238, + [6256] = 3004, + [6257] = 6257, + [6258] = 6243, + [6259] = 6207, + [6260] = 6185, + [6261] = 6203, + [6262] = 2963, + [6263] = 6263, + [6264] = 2977, + [6265] = 6265, + [6266] = 6185, + [6267] = 6267, + [6268] = 6268, + [6269] = 6238, + [6270] = 3006, + [6271] = 6271, + [6272] = 2974, + [6273] = 6273, + [6274] = 6243, + [6275] = 2979, + [6276] = 6192, + [6277] = 6193, + [6278] = 6203, + [6279] = 6279, + [6280] = 6213, + [6281] = 6185, + [6282] = 6235, + [6283] = 6214, [6284] = 6284, - [6285] = 6142, - [6286] = 6131, - [6287] = 6120, - [6288] = 966, - [6289] = 6122, - [6290] = 6290, - [6291] = 6238, - [6292] = 6161, - [6293] = 6178, - [6294] = 6134, - [6295] = 6161, - [6296] = 6172, + [6285] = 2985, + [6286] = 6238, + [6287] = 6207, + [6288] = 6243, + [6289] = 2990, + [6290] = 6203, + [6291] = 6235, + [6292] = 2994, + [6293] = 6293, + [6294] = 6185, + [6295] = 6204, + [6296] = 6296, [6297] = 6297, - [6298] = 6127, - [6299] = 6134, - [6300] = 6204, - [6301] = 6301, - [6302] = 6140, - [6303] = 6303, - [6304] = 6236, - [6305] = 6120, - [6306] = 6128, - [6307] = 6155, - [6308] = 6238, - [6309] = 6140, - [6310] = 6134, - [6311] = 6120, - [6312] = 6142, - [6313] = 6313, - [6314] = 6161, - [6315] = 6315, - [6316] = 6122, - [6317] = 6122, - [6318] = 6313, - [6319] = 6161, - [6320] = 6140, - [6321] = 6143, - [6322] = 6238, - [6323] = 6323, - [6324] = 6155, - [6325] = 6325, - [6326] = 6326, - [6327] = 6131, - [6328] = 6161, - [6329] = 6140, + [6298] = 6194, + [6299] = 6231, + [6300] = 2992, + [6301] = 6238, + [6302] = 6185, + [6303] = 6293, + [6304] = 6304, + [6305] = 6243, + [6306] = 6185, + [6307] = 6213, + [6308] = 6203, + [6309] = 6309, + [6310] = 6185, + [6311] = 6207, + [6312] = 2968, + [6313] = 6213, + [6314] = 6213, + [6315] = 6204, + [6316] = 6185, + [6317] = 6213, + [6318] = 939, + [6319] = 6238, + [6320] = 6238, + [6321] = 6185, + [6322] = 6194, + [6323] = 6243, + [6324] = 6194, + [6325] = 6192, + [6326] = 6193, + [6327] = 3002, + [6328] = 6192, + [6329] = 6185, [6330] = 6330, - [6331] = 6142, - [6332] = 6178, - [6333] = 6333, - [6334] = 6172, - [6335] = 6122, - [6336] = 6336, - [6337] = 3402, - [6338] = 6142, - [6339] = 6185, - [6340] = 6169, - [6341] = 6128, - [6342] = 6142, - [6343] = 6343, - [6344] = 6140, - [6345] = 6142, - [6346] = 6122, - [6347] = 6169, - [6348] = 6161, - [6349] = 6122, - [6350] = 6128, - [6351] = 969, + [6331] = 6185, + [6332] = 6332, + [6333] = 6193, + [6334] = 6185, + [6335] = 6203, + [6336] = 6193, + [6337] = 6337, + [6338] = 6192, + [6339] = 6207, + [6340] = 6185, + [6341] = 6204, + [6342] = 6192, + [6343] = 6193, + [6344] = 6330, + [6345] = 6332, + [6346] = 6337, + [6347] = 6347, + [6348] = 6348, + [6349] = 6185, + [6350] = 6204, + [6351] = 6214, [6352] = 6352, - [6353] = 6134, - [6354] = 6354, - [6355] = 6161, - [6356] = 6127, - [6357] = 6120, - [6358] = 6142, + [6353] = 6204, + [6354] = 6185, + [6355] = 6213, + [6356] = 6356, + [6357] = 6192, + [6358] = 6193, [6359] = 6359, - [6360] = 6120, - [6361] = 6140, - [6362] = 6134, - [6363] = 6122, - [6364] = 6143, - [6365] = 6365, - [6366] = 6122, - [6367] = 6367, - [6368] = 6142, - [6369] = 6161, - [6370] = 6127, - [6371] = 6371, - [6372] = 6372, - [6373] = 6373, - [6374] = 6374, - [6375] = 2978, - [6376] = 6376, - [6377] = 6377, + [6360] = 6360, + [6361] = 6185, + [6362] = 6185, + [6363] = 6192, + [6364] = 6364, + [6365] = 6213, + [6366] = 6366, + [6367] = 6193, + [6368] = 6185, + [6369] = 6193, + [6370] = 6192, + [6371] = 6185, + [6372] = 2957, + [6373] = 6213, + [6374] = 6352, + [6375] = 6204, + [6376] = 6204, + [6377] = 6213, [6378] = 6378, - [6379] = 1035, - [6380] = 6380, - [6381] = 1034, - [6382] = 6382, - [6383] = 6383, - [6384] = 6384, - [6385] = 6385, - [6386] = 6386, - [6387] = 6387, - [6388] = 6388, - [6389] = 6389, - [6390] = 1033, - [6391] = 1030, - [6392] = 1029, - [6393] = 1138, - [6394] = 1085, - [6395] = 1106, - [6396] = 1108, - [6397] = 1176, - [6398] = 1181, - [6399] = 6399, - [6400] = 1082, - [6401] = 6401, - [6402] = 6402, - [6403] = 6403, - [6404] = 6404, - [6405] = 1081, - [6406] = 1066, - [6407] = 6399, - [6408] = 6408, - [6409] = 6409, - [6410] = 6410, - [6411] = 6411, - [6412] = 6412, - [6413] = 6413, - [6414] = 1037, - [6415] = 6377, - [6416] = 6416, - [6417] = 6417, - [6418] = 6418, - [6419] = 6387, - [6420] = 6420, - [6421] = 6409, - [6422] = 6422, - [6423] = 1038, - [6424] = 6409, - [6425] = 1046, - [6426] = 6418, - [6427] = 1047, - [6428] = 6428, - [6429] = 6429, - [6430] = 6430, - [6431] = 6431, - [6432] = 6432, - [6433] = 6433, - [6434] = 6434, - [6435] = 6435, - [6436] = 6436, - [6437] = 6437, - [6438] = 6377, - [6439] = 1048, - [6440] = 6399, - [6441] = 6399, - [6442] = 6378, - [6443] = 1177, - [6444] = 6434, - [6445] = 6436, - [6446] = 6422, - [6447] = 6434, - [6448] = 6382, - [6449] = 6377, - [6450] = 6436, + [6379] = 6268, + [6380] = 6207, + [6381] = 6185, + [6382] = 6185, + [6383] = 6352, + [6384] = 6213, + [6385] = 6185, + [6386] = 6352, + [6387] = 6204, + [6388] = 6204, + [6389] = 6185, + [6390] = 6352, + [6391] = 6391, + [6392] = 6213, + [6393] = 6366, + [6394] = 6213, + [6395] = 6235, + [6396] = 6185, + [6397] = 6391, + [6398] = 6204, + [6399] = 6366, + [6400] = 6391, + [6401] = 3011, + [6402] = 6204, + [6403] = 6391, + [6404] = 6213, + [6405] = 6185, + [6406] = 6204, + [6407] = 6366, + [6408] = 6185, + [6409] = 6204, + [6410] = 6207, + [6411] = 6213, + [6412] = 6185, + [6413] = 6204, + [6414] = 6214, + [6415] = 6214, + [6416] = 6337, + [6417] = 6207, + [6418] = 6213, + [6419] = 6185, + [6420] = 6204, + [6421] = 6332, + [6422] = 6330, + [6423] = 6330, + [6424] = 6193, + [6425] = 6213, + [6426] = 6185, + [6427] = 6204, + [6428] = 6337, + [6429] = 6332, + [6430] = 6330, + [6431] = 6193, + [6432] = 6192, + [6433] = 6192, + [6434] = 6332, + [6435] = 6204, + [6436] = 6337, + [6437] = 6185, + [6438] = 6213, + [6439] = 6194, + [6440] = 6440, + [6441] = 6441, + [6442] = 6442, + [6443] = 6443, + [6444] = 6444, + [6445] = 6445, + [6446] = 6446, + [6447] = 6447, + [6448] = 6448, + [6449] = 6447, + [6450] = 6450, [6451] = 6451, - [6452] = 6435, + [6452] = 6452, [6453] = 6453, - [6454] = 1133, - [6455] = 6420, - [6456] = 1125, - [6457] = 1118, + [6454] = 6454, + [6455] = 6455, + [6456] = 6456, + [6457] = 6457, [6458] = 6458, [6459] = 6459, - [6460] = 6420, + [6460] = 6460, [6461] = 6461, [6462] = 6462, - [6463] = 1115, - [6464] = 1110, + [6463] = 6463, + [6464] = 6464, [6465] = 6465, - [6466] = 6403, - [6467] = 6404, - [6468] = 6387, - [6469] = 6461, - [6470] = 6388, - [6471] = 6404, - [6472] = 6403, - [6473] = 1164, - [6474] = 6399, - [6475] = 6404, - [6476] = 1124, + [6466] = 6464, + [6467] = 6467, + [6468] = 6468, + [6469] = 6469, + [6470] = 6470, + [6471] = 6471, + [6472] = 6472, + [6473] = 6473, + [6474] = 6474, + [6475] = 6440, + [6476] = 6476, [6477] = 6477, - [6478] = 6461, - [6479] = 6433, + [6478] = 6478, + [6479] = 6479, [6480] = 6480, - [6481] = 1051, - [6482] = 6377, - [6483] = 6436, + [6481] = 6481, + [6482] = 6482, + [6483] = 6483, [6484] = 6484, - [6485] = 1143, - [6486] = 1178, - [6487] = 6389, - [6488] = 6388, - [6489] = 6387, - [6490] = 6403, - [6491] = 6389, - [6492] = 6461, - [6493] = 6386, - [6494] = 6401, - [6495] = 6495, - [6496] = 6384, - [6497] = 6403, - [6498] = 6384, - [6499] = 6499, - [6500] = 6378, - [6501] = 6461, - [6502] = 6502, - [6503] = 6377, - [6504] = 6437, - [6505] = 6505, - [6506] = 6428, - [6507] = 6399, - [6508] = 6383, - [6509] = 6403, + [6485] = 6485, + [6486] = 6486, + [6487] = 6440, + [6488] = 6444, + [6489] = 6489, + [6490] = 6453, + [6491] = 6468, + [6492] = 6444, + [6493] = 6457, + [6494] = 6478, + [6495] = 6482, + [6496] = 6484, + [6497] = 6471, + [6498] = 6482, + [6499] = 6464, + [6500] = 6484, + [6501] = 6453, + [6502] = 6453, + [6503] = 6489, + [6504] = 6484, + [6505] = 6483, + [6506] = 6506, + [6507] = 6477, + [6508] = 6476, + [6509] = 6509, [6510] = 6510, - [6511] = 6453, - [6512] = 6435, - [6513] = 6461, + [6511] = 6511, + [6512] = 6512, + [6513] = 6441, [6514] = 6514, - [6515] = 6377, - [6516] = 6382, - [6517] = 6374, - [6518] = 6399, - [6519] = 6519, - [6520] = 6409, - [6521] = 6403, - [6522] = 6418, - [6523] = 6523, - [6524] = 6461, - [6525] = 6510, - [6526] = 6526, - [6527] = 6403, - [6528] = 6528, - [6529] = 6404, - [6530] = 6499, - [6531] = 6531, - [6532] = 6532, - [6533] = 6461, - [6534] = 6389, - [6535] = 6399, - [6536] = 6484, - [6537] = 6403, - [6538] = 6382, - [6539] = 6539, - [6540] = 6422, - [6541] = 6480, - [6542] = 6420, - [6543] = 6477, - [6544] = 6435, - [6545] = 6377, - [6546] = 6413, - [6547] = 6461, - [6548] = 6453, - [6549] = 6401, - [6550] = 6386, - [6551] = 6434, - [6552] = 6420, - [6553] = 6401, - [6554] = 6554, - [6555] = 6453, + [6515] = 6515, + [6516] = 6516, + [6517] = 6517, + [6518] = 6518, + [6519] = 6511, + [6520] = 6440, + [6521] = 6518, + [6522] = 6468, + [6523] = 6510, + [6524] = 6453, + [6525] = 6468, + [6526] = 6451, + [6527] = 6527, + [6528] = 6506, + [6529] = 6517, + [6530] = 6530, + [6531] = 6453, + [6532] = 6467, + [6533] = 6464, + [6534] = 6534, + [6535] = 6509, + [6536] = 6452, + [6537] = 6474, + [6538] = 6473, + [6539] = 6464, + [6540] = 6472, + [6541] = 6451, + [6542] = 6517, + [6543] = 6543, + [6544] = 6544, + [6545] = 6486, + [6546] = 6479, + [6547] = 6451, + [6548] = 6517, + [6549] = 6549, + [6550] = 6550, + [6551] = 6551, + [6552] = 6451, + [6553] = 6553, + [6554] = 6517, + [6555] = 6479, [6556] = 6451, - [6557] = 6557, - [6558] = 6435, - [6559] = 6559, - [6560] = 6408, - [6561] = 6403, - [6562] = 6382, - [6563] = 6399, - [6564] = 6388, - [6565] = 6422, - [6566] = 6416, - [6567] = 6420, - [6568] = 6387, - [6569] = 6461, - [6570] = 6413, - [6571] = 6465, - [6572] = 6462, - [6573] = 6416, - [6574] = 6418, - [6575] = 6458, - [6576] = 6409, - [6577] = 6451, - [6578] = 6578, - [6579] = 6404, - [6580] = 6408, - [6581] = 6403, + [6557] = 6486, + [6558] = 6453, + [6559] = 6445, + [6560] = 6452, + [6561] = 6511, + [6562] = 6518, + [6563] = 6509, + [6564] = 6461, + [6565] = 6517, + [6566] = 6506, + [6567] = 6464, + [6568] = 6482, + [6569] = 6453, + [6570] = 6570, + [6571] = 6467, + [6572] = 6464, + [6573] = 6465, + [6574] = 6574, + [6575] = 6451, + [6576] = 6470, + [6577] = 6577, + [6578] = 6463, + [6579] = 6579, + [6580] = 6458, + [6581] = 6517, [6582] = 6582, - [6583] = 6386, - [6584] = 6401, - [6585] = 6585, - [6586] = 6428, - [6587] = 6430, - [6588] = 6389, - [6589] = 6431, - [6590] = 6590, - [6591] = 6388, - [6592] = 6387, - [6593] = 6418, + [6583] = 6461, + [6584] = 6471, + [6585] = 6485, + [6586] = 6456, + [6587] = 6451, + [6588] = 6588, + [6589] = 6485, + [6590] = 6457, + [6591] = 6457, + [6592] = 6457, + [6593] = 6517, [6594] = 6594, - [6595] = 6461, - [6596] = 6596, - [6597] = 6437, - [6598] = 6377, - [6599] = 6378, - [6600] = 6409, - [6601] = 6432, - [6602] = 6451, + [6595] = 6595, + [6596] = 6478, + [6597] = 6485, + [6598] = 6464, + [6599] = 6445, + [6600] = 6456, + [6601] = 6451, + [6602] = 6445, [6603] = 6603, - [6604] = 6383, - [6605] = 6408, - [6606] = 6378, - [6607] = 6377, - [6608] = 6437, - [6609] = 6403, - [6610] = 6610, - [6611] = 6428, - [6612] = 6458, - [6613] = 6428, - [6614] = 6461, - [6615] = 6462, - [6616] = 6465, - [6617] = 6387, - [6618] = 6618, - [6619] = 6388, - [6620] = 6435, - [6621] = 4389, - [6622] = 6409, - [6623] = 6477, - [6624] = 4414, - [6625] = 6433, - [6626] = 6382, - [6627] = 6430, - [6628] = 6418, - [6629] = 6431, - [6630] = 6480, - [6631] = 6432, - [6632] = 6399, - [6633] = 6484, - [6634] = 6389, - [6635] = 6635, - [6636] = 6636, - [6637] = 6637, - [6638] = 6378, - [6639] = 6639, - [6640] = 6499, - [6641] = 6437, - [6642] = 6610, - [6643] = 6399, - [6644] = 6519, - [6645] = 6610, - [6646] = 6382, - [6647] = 6519, - [6648] = 6610, - [6649] = 6519, - [6650] = 6650, - [6651] = 6435, - [6652] = 6377, - [6653] = 6453, - [6654] = 6377, - [6655] = 6401, - [6656] = 6610, - [6657] = 6420, - [6658] = 6519, - [6659] = 6378, - [6660] = 6610, - [6661] = 6519, - [6662] = 6610, - [6663] = 6519, - [6664] = 6610, - [6665] = 6437, - [6666] = 6519, - [6667] = 6432, - [6668] = 6413, - [6669] = 6431, - [6670] = 6610, - [6671] = 6430, - [6672] = 6596, - [6673] = 6673, - [6674] = 6519, - [6675] = 6453, - [6676] = 6514, - [6677] = 6677, - [6678] = 6416, - [6679] = 6404, - [6680] = 6459, - [6681] = 6681, - [6682] = 4440, - [6683] = 6618, - [6684] = 6418, - [6685] = 6685, - [6686] = 6389, - [6687] = 6388, - [6688] = 6387, - [6689] = 6385, - [6690] = 6590, - [6691] = 6404, - [6692] = 6610, - [6693] = 6596, - [6694] = 6386, - [6695] = 6519, - [6696] = 6374, - [6697] = 6514, - [6698] = 6459, - [6699] = 6428, - [6700] = 6594, - [6701] = 6409, - [6702] = 6429, - [6703] = 6458, - [6704] = 6510, - [6705] = 6385, - [6706] = 6610, - [6707] = 6596, - [6708] = 6519, - [6709] = 6462, - [6710] = 6378, - [6711] = 6377, - [6712] = 6437, - [6713] = 6374, - [6714] = 6514, - [6715] = 6459, - [6716] = 6428, - [6717] = 6465, - [6718] = 6718, - [6719] = 6429, - [6720] = 6720, - [6721] = 6422, - [6722] = 6385, - [6723] = 6723, - [6724] = 6409, - [6725] = 6610, - [6726] = 6409, - [6727] = 6418, - [6728] = 6596, - [6729] = 6418, - [6730] = 6387, - [6731] = 6519, - [6732] = 6420, - [6733] = 6374, - [6734] = 6428, - [6735] = 6514, - [6736] = 6459, - [6737] = 6388, - [6738] = 6738, - [6739] = 6401, - [6740] = 6429, - [6741] = 6453, - [6742] = 6399, - [6743] = 6435, - [6744] = 6382, - [6745] = 6385, - [6746] = 6746, - [6747] = 6673, - [6748] = 6382, - [6749] = 6435, - [6750] = 6453, - [6751] = 6416, - [6752] = 6610, - [6753] = 6401, - [6754] = 6618, - [6755] = 6420, - [6756] = 6596, - [6757] = 6399, - [6758] = 6519, - [6759] = 6374, - [6760] = 6453, - [6761] = 6514, - [6762] = 6459, - [6763] = 6763, - [6764] = 6429, - [6765] = 6554, - [6766] = 6766, - [6767] = 4455, - [6768] = 6385, - [6769] = 6477, - [6770] = 6430, - [6771] = 6431, - [6772] = 6433, - [6773] = 6413, - [6774] = 6673, - [6775] = 6480, - [6776] = 6610, - [6777] = 6596, - [6778] = 6418, - [6779] = 6409, - [6780] = 6519, - [6781] = 6432, - [6782] = 6374, - [6783] = 6404, - [6784] = 6514, - [6785] = 6437, - [6786] = 6484, - [6787] = 6459, - [6788] = 6377, - [6789] = 6413, - [6790] = 6378, - [6791] = 6429, - [6792] = 6428, - [6793] = 3000, - [6794] = 6428, - [6795] = 6385, - [6796] = 6796, - [6797] = 6389, - [6798] = 6389, - [6799] = 6388, - [6800] = 6387, - [6801] = 6430, - [6802] = 6673, - [6803] = 6431, - [6804] = 6432, - [6805] = 6610, - [6806] = 6596, - [6807] = 6437, - [6808] = 6377, - [6809] = 6519, - [6810] = 6378, - [6811] = 6374, - [6812] = 6514, - [6813] = 2996, - [6814] = 6459, - [6815] = 6378, - [6816] = 6816, - [6817] = 6399, - [6818] = 6377, - [6819] = 6429, - [6820] = 6437, - [6821] = 6385, - [6822] = 6428, - [6823] = 2990, - [6824] = 4409, - [6825] = 4407, - [6826] = 6458, - [6827] = 6673, - [6828] = 6382, - [6829] = 6829, - [6830] = 6462, - [6831] = 6610, - [6832] = 6499, - [6833] = 6594, - [6834] = 6596, - [6835] = 6387, - [6836] = 6388, - [6837] = 6409, - [6838] = 6590, - [6839] = 6418, - [6840] = 6519, - [6841] = 6435, - [6842] = 6374, - [6843] = 6514, - [6844] = 6458, - [6845] = 6459, - [6846] = 6477, - [6847] = 6433, - [6848] = 6429, - [6849] = 6433, - [6850] = 6480, - [6851] = 6851, - [6852] = 6453, - [6853] = 4463, - [6854] = 6385, - [6855] = 4396, - [6856] = 6380, - [6857] = 4388, - [6858] = 6399, - [6859] = 6510, - [6860] = 6484, - [6861] = 6389, - [6862] = 6499, - [6863] = 6673, - [6864] = 6382, - [6865] = 6462, - [6866] = 6510, - [6867] = 4403, - [6868] = 6435, - [6869] = 6453, - [6870] = 6610, - [6871] = 6401, - [6872] = 6596, - [6873] = 2981, - [6874] = 6401, - [6875] = 2978, - [6876] = 3004, - [6877] = 6465, - [6878] = 6519, - [6879] = 6420, - [6880] = 6374, - [6881] = 6420, - [6882] = 6514, - [6883] = 6422, - [6884] = 6459, - [6885] = 6387, - [6886] = 6404, - [6887] = 6429, - [6888] = 6385, - [6889] = 2982, - [6890] = 6465, - [6891] = 2980, - [6892] = 6380, - [6893] = 2999, - [6894] = 6422, - [6895] = 3000, - [6896] = 6404, - [6897] = 6420, - [6898] = 6384, - [6899] = 6383, - [6900] = 6401, - [6901] = 6453, - [6902] = 6435, - [6903] = 6382, - [6904] = 6673, - [6905] = 6399, - [6906] = 6380, - [6907] = 6388, - [6908] = 6385, - [6909] = 6554, - [6910] = 6502, - [6911] = 6505, - [6912] = 6610, - [6913] = 6596, - [6914] = 6418, - [6915] = 6409, - [6916] = 6519, - [6917] = 6374, - [6918] = 6514, - [6919] = 6459, - [6920] = 6429, - [6921] = 6428, - [6922] = 6430, - [6923] = 6431, - [6924] = 6429, - [6925] = 6432, - [6926] = 6510, - [6927] = 6437, - [6928] = 6477, - [6929] = 6459, - [6930] = 6433, - [6931] = 6685, - [6932] = 6385, - [6933] = 6404, - [6934] = 6377, - [6935] = 6380, - [6936] = 2999, - [6937] = 2980, - [6938] = 2982, - [6939] = 6514, - [6940] = 6374, - [6941] = 6484, - [6942] = 6378, - [6943] = 6519, - [6944] = 6389, - [6945] = 6484, - [6946] = 6387, - [6947] = 6458, - [6948] = 6480, - [6949] = 2996, - [6950] = 6389, - [6951] = 6673, - [6952] = 2990, - [6953] = 6465, - [6954] = 6510, - [6955] = 6462, - [6956] = 6596, - [6957] = 3004, - [6958] = 6413, - [6959] = 6610, - [6960] = 2981, - [6961] = 6477, - [6962] = 6499, - [6963] = 6499, - [6964] = 6388, - [6965] = 6480, - [6966] = 6966, - [6967] = 6967, - [6968] = 6968, - [6969] = 1178, - [6970] = 6970, - [6971] = 6971, - [6972] = 6972, - [6973] = 6973, - [6974] = 6974, - [6975] = 6967, - [6976] = 6976, - [6977] = 6977, - [6978] = 6978, - [6979] = 6979, - [6980] = 6980, - [6981] = 6981, - [6982] = 6982, - [6983] = 6983, - [6984] = 6984, - [6985] = 6985, - [6986] = 6986, - [6987] = 6987, - [6988] = 6988, - [6989] = 6989, - [6990] = 6990, - [6991] = 6991, - [6992] = 6992, - [6993] = 6993, - [6994] = 6994, - [6995] = 6995, - [6996] = 6996, - [6997] = 6997, - [6998] = 6998, - [6999] = 6999, - [7000] = 7000, - [7001] = 2937, - [7002] = 7002, - [7003] = 7003, - [7004] = 7004, - [7005] = 7005, - [7006] = 7006, - [7007] = 7007, - [7008] = 7008, - [7009] = 7009, - [7010] = 6983, - [7011] = 7011, - [7012] = 6987, - [7013] = 7013, - [7014] = 7014, - [7015] = 7015, - [7016] = 7016, - [7017] = 7017, - [7018] = 6966, - [7019] = 6980, - [7020] = 6979, - [7021] = 7021, - [7022] = 7022, - [7023] = 7023, - [7024] = 7024, - [7025] = 7025, - [7026] = 7026, - [7027] = 7027, - [7028] = 7028, - [7029] = 7024, - [7030] = 7023, - [7031] = 7022, - [7032] = 7026, + [6604] = 6517, + [6605] = 6458, + [6606] = 6463, + [6607] = 6444, + [6608] = 6517, + [6609] = 6465, + [6610] = 6445, + [6611] = 6464, + [6612] = 6467, + [6613] = 6489, + [6614] = 6480, + [6615] = 6472, + [6616] = 6603, + [6617] = 6454, + [6618] = 6451, + [6619] = 6483, + [6620] = 6473, + [6621] = 6474, + [6622] = 6622, + [6623] = 6468, + [6624] = 4432, + [6625] = 6440, + [6626] = 6517, + [6627] = 6476, + [6628] = 6477, + [6629] = 4433, + [6630] = 6483, + [6631] = 6477, + [6632] = 6457, + [6633] = 6485, + [6634] = 6480, + [6635] = 6456, + [6636] = 6489, + [6637] = 6464, + [6638] = 6454, + [6639] = 6479, + [6640] = 6451, + [6641] = 6458, + [6642] = 6506, + [6643] = 6444, + [6644] = 6476, + [6645] = 6486, + [6646] = 6509, + [6647] = 6518, + [6648] = 6486, + [6649] = 6446, + [6650] = 6478, + [6651] = 6463, + [6652] = 6471, + [6653] = 6517, + [6654] = 6654, + [6655] = 6440, + [6656] = 6656, + [6657] = 6480, + [6658] = 6658, + [6659] = 6470, + [6660] = 6468, + [6661] = 6454, + [6662] = 6461, + [6663] = 6451, + [6664] = 6664, + [6665] = 6465, + [6666] = 6474, + [6667] = 6473, + [6668] = 6510, + [6669] = 6669, + [6670] = 6472, + [6671] = 6671, + [6672] = 6467, + [6673] = 6452, + [6674] = 6511, + [6675] = 6464, + [6676] = 6676, + [6677] = 6467, + [6678] = 6678, + [6679] = 6679, + [6680] = 6680, + [6681] = 4446, + [6682] = 6464, + [6683] = 6544, + [6684] = 6543, + [6685] = 6453, + [6686] = 6465, + [6687] = 6506, + [6688] = 6509, + [6689] = 6518, + [6690] = 6472, + [6691] = 6595, + [6692] = 6534, + [6693] = 6473, + [6694] = 6511, + [6695] = 6595, + [6696] = 6534, + [6697] = 6479, + [6698] = 6474, + [6699] = 6510, + [6700] = 6518, + [6701] = 6595, + [6702] = 6534, + [6703] = 6509, + [6704] = 6704, + [6705] = 6705, + [6706] = 6463, + [6707] = 6595, + [6708] = 6506, + [6709] = 6534, + [6710] = 6452, + [6711] = 6486, + [6712] = 6453, + [6713] = 6713, + [6714] = 6595, + [6715] = 6486, + [6716] = 6479, + [6717] = 6458, + [6718] = 6534, + [6719] = 6446, + [6720] = 6444, + [6721] = 6468, + [6722] = 6595, + [6723] = 6534, + [6724] = 6440, + [6725] = 6725, + [6726] = 6595, + [6727] = 6534, + [6728] = 6456, + [6729] = 6468, + [6730] = 6730, + [6731] = 6731, + [6732] = 6595, + [6733] = 4456, + [6734] = 6588, + [6735] = 6441, + [6736] = 6534, + [6737] = 6737, + [6738] = 6511, + [6739] = 6530, + [6740] = 6527, + [6741] = 6481, + [6742] = 6476, + [6743] = 6518, + [6744] = 6452, + [6745] = 6477, + [6746] = 6483, + [6747] = 6448, + [6748] = 6509, + [6749] = 6595, + [6750] = 6489, + [6751] = 6447, + [6752] = 6588, + [6753] = 1058, + [6754] = 1107, + [6755] = 6467, + [6756] = 6506, + [6757] = 6534, + [6758] = 6453, + [6759] = 6530, + [6760] = 6486, + [6761] = 6527, + [6762] = 1236, + [6763] = 1049, + [6764] = 1155, + [6765] = 6465, + [6766] = 6481, + [6767] = 6767, + [6768] = 6469, + [6769] = 6444, + [6770] = 6445, + [6771] = 6448, + [6772] = 6595, + [6773] = 6588, + [6774] = 6774, + [6775] = 6534, + [6776] = 4477, + [6777] = 6530, + [6778] = 1091, + [6779] = 1230, + [6780] = 1238, + [6781] = 1103, + [6782] = 6527, + [6783] = 4478, + [6784] = 1082, + [6785] = 6481, + [6786] = 6469, + [6787] = 1093, + [6788] = 6457, + [6789] = 6445, + [6790] = 6790, + [6791] = 6461, + [6792] = 6485, + [6793] = 6448, + [6794] = 1110, + [6795] = 6478, + [6796] = 1116, + [6797] = 6595, + [6798] = 6588, + [6799] = 1118, + [6800] = 6534, + [6801] = 1119, + [6802] = 1123, + [6803] = 6461, + [6804] = 4481, + [6805] = 6530, + [6806] = 6527, + [6807] = 4476, + [6808] = 6481, + [6809] = 1124, + [6810] = 1125, + [6811] = 1130, + [6812] = 1132, + [6813] = 4475, + [6814] = 6469, + [6815] = 1134, + [6816] = 6471, + [6817] = 1137, + [6818] = 1140, + [6819] = 6448, + [6820] = 6678, + [6821] = 6595, + [6822] = 6588, + [6823] = 4469, + [6824] = 6534, + [6825] = 1145, + [6826] = 1152, + [6827] = 1183, + [6828] = 6530, + [6829] = 6527, + [6830] = 1192, + [6831] = 6481, + [6832] = 6453, + [6833] = 6469, + [6834] = 6470, + [6835] = 3033, + [6836] = 6457, + [6837] = 6485, + [6838] = 6506, + [6839] = 6448, + [6840] = 1160, + [6841] = 1158, + [6842] = 1067, + [6843] = 6485, + [6844] = 6457, + [6845] = 6678, + [6846] = 6509, + [6847] = 6518, + [6848] = 6511, + [6849] = 6595, + [6850] = 6445, + [6851] = 6588, + [6852] = 6456, + [6853] = 6485, + [6854] = 6458, + [6855] = 6457, + [6856] = 6534, + [6857] = 6470, + [6858] = 6463, + [6859] = 6530, + [6860] = 6527, + [6861] = 6481, + [6862] = 6461, + [6863] = 6465, + [6864] = 6515, + [6865] = 6469, + [6866] = 6516, + [6867] = 6464, + [6868] = 6467, + [6869] = 6448, + [6870] = 6678, + [6871] = 6445, + [6872] = 6472, + [6873] = 6473, + [6874] = 6595, + [6875] = 6474, + [6876] = 6588, + [6877] = 6468, + [6878] = 6440, + [6879] = 6476, + [6880] = 6452, + [6881] = 6603, + [6882] = 6477, + [6883] = 6534, + [6884] = 6483, + [6885] = 6530, + [6886] = 6527, + [6887] = 6669, + [6888] = 6481, + [6889] = 3029, + [6890] = 6456, + [6891] = 3031, + [6892] = 6469, + [6893] = 6458, + [6894] = 6444, + [6895] = 6440, + [6896] = 6468, + [6897] = 3041, + [6898] = 6489, + [6899] = 6444, + [6900] = 6448, + [6901] = 6478, + [6902] = 6471, + [6903] = 3043, + [6904] = 3036, + [6905] = 6678, + [6906] = 6595, + [6907] = 3055, + [6908] = 6588, + [6909] = 6453, + [6910] = 6506, + [6911] = 6509, + [6912] = 6534, + [6913] = 6467, + [6914] = 3026, + [6915] = 6518, + [6916] = 6530, + [6917] = 6464, + [6918] = 6465, + [6919] = 6527, + [6920] = 6481, + [6921] = 6452, + [6922] = 6511, + [6923] = 6510, + [6924] = 3033, + [6925] = 6445, + [6926] = 6469, + [6927] = 6448, + [6928] = 6443, + [6929] = 3057, + [6930] = 6486, + [6931] = 6479, + [6932] = 6486, + [6933] = 6511, + [6934] = 6518, + [6935] = 6509, + [6936] = 6452, + [6937] = 6457, + [6938] = 6506, + [6939] = 6678, + [6940] = 6485, + [6941] = 6453, + [6942] = 6465, + [6943] = 3029, + [6944] = 3031, + [6945] = 3041, + [6946] = 6595, + [6947] = 6588, + [6948] = 6464, + [6949] = 3043, + [6950] = 6467, + [6951] = 3036, + [6952] = 6485, + [6953] = 6457, + [6954] = 6534, + [6955] = 3055, + [6956] = 6530, + [6957] = 6527, + [6958] = 6481, + [6959] = 6471, + [6960] = 6445, + [6961] = 3026, + [6962] = 6453, + [6963] = 6469, + [6964] = 6465, + [6965] = 6464, + [6966] = 6467, + [6967] = 6448, + [6968] = 6506, + [6969] = 6443, + [6970] = 6452, + [6971] = 3057, + [6972] = 6468, + [6973] = 6440, + [6974] = 6444, + [6975] = 6443, + [6976] = 6509, + [6977] = 6448, + [6978] = 6518, + [6979] = 6511, + [6980] = 6447, + [6981] = 6446, + [6982] = 6452, + [6983] = 6678, + [6984] = 6463, + [6985] = 6595, + [6986] = 6588, + [6987] = 6486, + [6988] = 6486, + [6989] = 6469, + [6990] = 6544, + [6991] = 6478, + [6992] = 6511, + [6993] = 6534, + [6994] = 6518, + [6995] = 6509, + [6996] = 6530, + [6997] = 6527, + [6998] = 6481, + [6999] = 6481, + [7000] = 6506, + [7001] = 6453, + [7002] = 6543, + [7003] = 6469, + [7004] = 6444, + [7005] = 6472, + [7006] = 6448, + [7007] = 6465, + [7008] = 6527, + [7009] = 6530, + [7010] = 6457, + [7011] = 6489, + [7012] = 6534, + [7013] = 6485, + [7014] = 6467, + [7015] = 6444, + [7016] = 6440, + [7017] = 6473, + [7018] = 6468, + [7019] = 6476, + [7020] = 6474, + [7021] = 6445, + [7022] = 6443, + [7023] = 6678, + [7024] = 6452, + [7025] = 6477, + [7026] = 6588, + [7027] = 6468, + [7028] = 6483, + [7029] = 6595, + [7030] = 6464, + [7031] = 6440, + [7032] = 7032, [7033] = 7033, - [7034] = 6967, - [7035] = 7014, - [7036] = 7013, - [7037] = 7037, - [7038] = 7038, - [7039] = 7039, - [7040] = 7009, - [7041] = 7008, + [7034] = 7034, + [7035] = 7035, + [7036] = 7036, + [7037] = 1236, + [7038] = 7033, + [7039] = 1155, + [7040] = 7040, + [7041] = 7041, [7042] = 7042, - [7043] = 1143, + [7043] = 7043, [7044] = 7044, - [7045] = 6974, + [7045] = 7045, [7046] = 7046, [7047] = 7047, [7048] = 7048, [7049] = 7049, [7050] = 7050, - [7051] = 7051, + [7051] = 7043, [7052] = 7052, - [7053] = 6972, - [7054] = 6973, - [7055] = 920, - [7056] = 6971, - [7057] = 7057, - [7058] = 6976, - [7059] = 6966, - [7060] = 7046, - [7061] = 6977, - [7062] = 7017, - [7063] = 6978, - [7064] = 6970, - [7065] = 6968, + [7053] = 7053, + [7054] = 7054, + [7055] = 7055, + [7056] = 7056, + [7057] = 3043, + [7058] = 7058, + [7059] = 3057, + [7060] = 7060, + [7061] = 7061, + [7062] = 7062, + [7063] = 7034, + [7064] = 7064, + [7065] = 7065, [7066] = 7066, [7067] = 7067, - [7068] = 1143, - [7069] = 6982, - [7070] = 7070, + [7068] = 7068, + [7069] = 7069, + [7070] = 3026, [7071] = 7071, - [7072] = 7016, - [7073] = 7015, - [7074] = 920, - [7075] = 6985, - [7076] = 7006, + [7072] = 7072, + [7073] = 7073, + [7074] = 7074, + [7075] = 7075, + [7076] = 7076, [7077] = 7077, - [7078] = 6986, - [7079] = 7006, - [7080] = 7006, - [7081] = 6988, - [7082] = 7006, - [7083] = 7083, - [7084] = 7006, - [7085] = 6989, + [7078] = 7078, + [7079] = 3055, + [7080] = 7080, + [7081] = 7081, + [7082] = 7056, + [7083] = 3036, + [7084] = 7084, + [7085] = 7085, [7086] = 7086, - [7087] = 7006, + [7087] = 7087, [7088] = 7088, [7089] = 7089, - [7090] = 2942, - [7091] = 6992, - [7092] = 7006, - [7093] = 7006, - [7094] = 6993, - [7095] = 7088, - [7096] = 6994, - [7097] = 7086, - [7098] = 7083, - [7099] = 6997, - [7100] = 6998, - [7101] = 7027, - [7102] = 7000, - [7103] = 7042, - [7104] = 7048, - [7105] = 7006, - [7106] = 7006, - [7107] = 7006, - [7108] = 7042, + [7090] = 7090, + [7091] = 7091, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 7097, + [7098] = 7098, + [7099] = 7099, + [7100] = 7100, + [7101] = 7101, + [7102] = 7102, + [7103] = 7103, + [7104] = 3041, + [7105] = 7103, + [7106] = 7102, + [7107] = 3031, + [7108] = 3029, [7109] = 7109, - [7110] = 7015, - [7111] = 7016, - [7112] = 7017, - [7113] = 6966, - [7114] = 7046, - [7115] = 7027, - [7116] = 1178, - [7117] = 7048, - [7118] = 7066, - [7119] = 7083, - [7120] = 7026, - [7121] = 7086, - [7122] = 7006, - [7123] = 7024, - [7124] = 7023, - [7125] = 7022, + [7110] = 7093, + [7111] = 7111, + [7112] = 7112, + [7113] = 7113, + [7114] = 7101, + [7115] = 7100, + [7116] = 7099, + [7117] = 7036, + [7118] = 7118, + [7119] = 7119, + [7120] = 7033, + [7121] = 7032, + [7122] = 7122, + [7123] = 7096, + [7124] = 7124, + [7125] = 7041, [7126] = 7126, - [7127] = 7006, - [7128] = 7006, - [7129] = 7014, - [7130] = 7013, - [7131] = 7006, - [7132] = 7009, - [7133] = 7008, - [7134] = 6990, - [7135] = 7006, - [7136] = 7006, + [7127] = 7032, + [7128] = 7118, + [7129] = 7044, + [7130] = 7052, + [7131] = 7113, + [7132] = 7045, + [7133] = 7133, + [7134] = 7046, + [7135] = 7112, + [7136] = 7136, [7137] = 7137, - [7138] = 7138, - [7139] = 7047, - [7140] = 7006, + [7138] = 7054, + [7139] = 7139, + [7140] = 7050, [7141] = 7141, - [7142] = 7088, - [7143] = 7006, - [7144] = 6968, - [7145] = 6970, - [7146] = 6973, - [7147] = 6971, - [7148] = 6972, - [7149] = 7149, - [7150] = 6976, - [7151] = 7006, - [7152] = 6974, - [7153] = 6977, - [7154] = 7006, - [7155] = 6978, - [7156] = 6968, - [7157] = 6970, - [7158] = 7057, - [7159] = 7159, - [7160] = 7160, - [7161] = 6982, - [7162] = 6967, - [7163] = 6971, - [7164] = 6972, - [7165] = 7006, - [7166] = 7006, - [7167] = 6985, - [7168] = 7027, - [7169] = 7050, - [7170] = 7170, - [7171] = 6988, - [7172] = 6979, - [7173] = 6980, - [7174] = 7006, - [7175] = 6989, + [7142] = 7032, + [7143] = 7035, + [7144] = 7144, + [7145] = 7145, + [7146] = 7053, + [7147] = 7090, + [7148] = 7040, + [7149] = 7055, + [7150] = 7150, + [7151] = 7151, + [7152] = 7058, + [7153] = 7153, + [7154] = 7088, + [7155] = 7155, + [7156] = 7061, + [7157] = 7157, + [7158] = 7087, + [7159] = 7086, + [7160] = 7085, + [7161] = 7032, + [7162] = 7065, + [7163] = 7032, + [7164] = 7032, + [7165] = 7067, + [7166] = 7043, + [7167] = 7069, + [7168] = 7052, + [7169] = 7054, + [7170] = 7072, + [7171] = 7073, + [7172] = 7056, + [7173] = 7075, + [7174] = 7060, + [7175] = 7032, [7176] = 7176, - [7177] = 7027, - [7178] = 7178, - [7179] = 6974, - [7180] = 6967, - [7181] = 6992, - [7182] = 6995, - [7183] = 7077, - [7184] = 6993, - [7185] = 6979, - [7186] = 6994, - [7187] = 6980, - [7188] = 6983, - [7189] = 6997, - [7190] = 6998, - [7191] = 7000, - [7192] = 7000, - [7193] = 7005, - [7194] = 7028, - [7195] = 7071, - [7196] = 7070, - [7197] = 7006, - [7198] = 7027, - [7199] = 6995, - [7200] = 7015, - [7201] = 7016, - [7202] = 7017, - [7203] = 6966, - [7204] = 7067, - [7205] = 7205, - [7206] = 7028, - [7207] = 7066, - [7208] = 6987, - [7209] = 7026, - [7210] = 7210, - [7211] = 7003, - [7212] = 7024, - [7213] = 7006, - [7214] = 7027, - [7215] = 7215, - [7216] = 7014, - [7217] = 7009, - [7218] = 7008, - [7219] = 6995, - [7220] = 7028, - [7221] = 7066, - [7222] = 7222, - [7223] = 7051, - [7224] = 6991, - [7225] = 7225, - [7226] = 7226, - [7227] = 7006, - [7228] = 6973, - [7229] = 6990, - [7230] = 6998, - [7231] = 6976, - [7232] = 7027, - [7233] = 6995, - [7234] = 6977, - [7235] = 7028, - [7236] = 6978, - [7237] = 7037, - [7238] = 6982, - [7239] = 7239, - [7240] = 7044, - [7241] = 7039, - [7242] = 6985, - [7243] = 7038, - [7244] = 7037, - [7245] = 6995, - [7246] = 6996, - [7247] = 6989, - [7248] = 7248, - [7249] = 6984, - [7250] = 6992, - [7251] = 6999, - [7252] = 6995, - [7253] = 6993, - [7254] = 7006, - [7255] = 6998, - [7256] = 7027, - [7257] = 7002, - [7258] = 6997, - [7259] = 7015, - [7260] = 7016, - [7261] = 7017, - [7262] = 6966, - [7263] = 7077, - [7264] = 7264, - [7265] = 7028, - [7266] = 7266, - [7267] = 7026, - [7268] = 7004, - [7269] = 6995, - [7270] = 7024, - [7271] = 7028, - [7272] = 7066, - [7273] = 7273, - [7274] = 7014, - [7275] = 7009, - [7276] = 7008, - [7277] = 7277, - [7278] = 7004, - [7279] = 6996, - [7280] = 7280, - [7281] = 7006, - [7282] = 7282, - [7283] = 7027, - [7284] = 7002, - [7285] = 6973, - [7286] = 7071, - [7287] = 7126, - [7288] = 6976, - [7289] = 6999, - [7290] = 7021, - [7291] = 6977, - [7292] = 6996, - [7293] = 6978, - [7294] = 7070, - [7295] = 6982, - [7296] = 6995, - [7297] = 6981, - [7298] = 6995, - [7299] = 6985, - [7300] = 6990, - [7301] = 7028, - [7302] = 7066, - [7303] = 7303, - [7304] = 6989, - [7305] = 6999, - [7306] = 6994, - [7307] = 6992, - [7308] = 6993, - [7309] = 6998, - [7310] = 7310, - [7311] = 7007, - [7312] = 7028, - [7313] = 7015, - [7314] = 7016, - [7315] = 7017, - [7316] = 7006, - [7317] = 7317, - [7318] = 7027, - [7319] = 7002, - [7320] = 7320, - [7321] = 7026, - [7322] = 7067, - [7323] = 7004, - [7324] = 7024, - [7325] = 7038, - [7326] = 6995, - [7327] = 7028, - [7328] = 7014, - [7329] = 7009, - [7330] = 7008, - [7331] = 7066, - [7332] = 7332, - [7333] = 7039, - [7334] = 7044, - [7335] = 7021, - [7336] = 7006, - [7337] = 7066, - [7338] = 7027, - [7339] = 6973, - [7340] = 7051, - [7341] = 7341, - [7342] = 6976, - [7343] = 7027, - [7344] = 6983, - [7345] = 6977, - [7346] = 7042, - [7347] = 6978, - [7348] = 6993, - [7349] = 6982, - [7350] = 7052, - [7351] = 7046, - [7352] = 6987, - [7353] = 6985, - [7354] = 6995, - [7355] = 7048, - [7356] = 7028, - [7357] = 7066, - [7358] = 6989, - [7359] = 7025, - [7360] = 7033, - [7361] = 6992, - [7362] = 6993, - [7363] = 6998, - [7364] = 7364, - [7365] = 6995, - [7366] = 7083, - [7367] = 7015, - [7368] = 7016, - [7369] = 7017, - [7370] = 6966, - [7371] = 7049, - [7372] = 7006, - [7373] = 7027, - [7374] = 7042, - [7375] = 7026, - [7376] = 7066, - [7377] = 7086, - [7378] = 7024, - [7379] = 7067, - [7380] = 7088, - [7381] = 7070, - [7382] = 7014, - [7383] = 7009, - [7384] = 7008, - [7385] = 7006, - [7386] = 6995, - [7387] = 7071, - [7388] = 7388, - [7389] = 7028, - [7390] = 7390, - [7391] = 7391, + [7177] = 7062, + [7178] = 7032, + [7179] = 3033, + [7180] = 7180, + [7181] = 7085, + [7182] = 7086, + [7183] = 7087, + [7184] = 7088, + [7185] = 7032, + [7186] = 7060, + [7187] = 7032, + [7188] = 7064, + [7189] = 7097, + [7190] = 7032, + [7191] = 7096, + [7192] = 7066, + [7193] = 7032, + [7194] = 7099, + [7195] = 7100, + [7196] = 7101, + [7197] = 7062, + [7198] = 7032, + [7199] = 7071, + [7200] = 7103, + [7201] = 7102, + [7202] = 7074, + [7203] = 7093, + [7204] = 7111, + [7205] = 7092, + [7206] = 7032, + [7207] = 7076, + [7208] = 7091, + [7209] = 7032, + [7210] = 7036, + [7211] = 7077, + [7212] = 7071, + [7213] = 7033, + [7214] = 7032, + [7215] = 7089, + [7216] = 7080, + [7217] = 7081, + [7218] = 7041, + [7219] = 7032, + [7220] = 7144, + [7221] = 7035, + [7222] = 7044, + [7223] = 7032, + [7224] = 7089, + [7225] = 7045, + [7226] = 7032, + [7227] = 7046, + [7228] = 7090, + [7229] = 7091, + [7230] = 7092, + [7231] = 7081, + [7232] = 7032, + [7233] = 7050, + [7234] = 7034, + [7235] = 7080, + [7236] = 7032, + [7237] = 7097, + [7238] = 7112, + [7239] = 7053, + [7240] = 7032, + [7241] = 7032, + [7242] = 7113, + [7243] = 7058, + [7244] = 7244, + [7245] = 939, + [7246] = 7040, + [7247] = 7061, + [7248] = 7077, + [7249] = 7118, + [7250] = 1107, + [7251] = 7032, + [7252] = 7076, + [7253] = 7065, + [7254] = 7032, + [7255] = 7040, + [7256] = 7067, + [7257] = 7035, + [7258] = 7069, + [7259] = 7118, + [7260] = 7113, + [7261] = 7072, + [7262] = 7073, + [7263] = 7112, + [7264] = 7075, + [7265] = 7052, + [7266] = 7034, + [7267] = 7074, + [7268] = 1058, + [7269] = 7064, + [7270] = 7270, + [7271] = 7144, + [7272] = 7085, + [7273] = 7086, + [7274] = 7087, + [7275] = 7088, + [7276] = 7276, + [7277] = 7040, + [7278] = 7278, + [7279] = 7032, + [7280] = 7270, + [7281] = 7096, + [7282] = 7032, + [7283] = 7040, + [7284] = 7099, + [7285] = 7052, + [7286] = 7066, + [7287] = 7287, + [7288] = 7103, + [7289] = 7093, + [7290] = 7111, + [7291] = 7064, + [7292] = 7064, + [7293] = 7032, + [7294] = 7040, + [7295] = 7052, + [7296] = 7064, + [7297] = 7033, + [7298] = 7066, + [7299] = 7097, + [7300] = 7089, + [7301] = 7041, + [7302] = 7157, + [7303] = 7155, + [7304] = 7044, + [7305] = 7066, + [7306] = 7062, + [7307] = 7045, + [7308] = 7060, + [7309] = 7046, + [7310] = 7151, + [7311] = 7050, + [7312] = 7150, + [7313] = 7141, + [7314] = 7139, + [7315] = 7053, + [7316] = 7056, + [7317] = 7054, + [7318] = 7032, + [7319] = 7040, + [7320] = 7061, + [7321] = 7137, + [7322] = 2968, + [7323] = 7065, + [7324] = 7136, + [7325] = 7052, + [7326] = 7067, + [7327] = 7092, + [7328] = 7073, + [7329] = 7052, + [7330] = 7091, + [7331] = 7064, + [7332] = 7085, + [7333] = 7086, + [7334] = 7087, + [7335] = 7088, + [7336] = 7066, + [7337] = 7089, + [7338] = 7043, + [7339] = 7032, + [7340] = 7096, + [7341] = 7078, + [7342] = 7040, + [7343] = 7099, + [7344] = 7040, + [7345] = 7345, + [7346] = 7346, + [7347] = 7103, + [7348] = 7093, + [7349] = 7111, + [7350] = 7144, + [7351] = 7052, + [7352] = 7352, + [7353] = 7068, + [7354] = 7064, + [7355] = 7066, + [7356] = 7033, + [7357] = 7089, + [7358] = 7064, + [7359] = 7041, + [7360] = 7040, + [7361] = 7043, + [7362] = 7044, + [7363] = 7144, + [7364] = 7032, + [7365] = 7045, + [7366] = 7040, + [7367] = 7046, + [7368] = 7035, + [7369] = 7050, + [7370] = 7089, + [7371] = 7034, + [7372] = 7052, + [7373] = 7053, + [7374] = 7374, + [7375] = 939, + [7376] = 7054, + [7377] = 7056, + [7378] = 7061, + [7379] = 7060, + [7380] = 7062, + [7381] = 7065, + [7382] = 7067, + [7383] = 7073, + [7384] = 7052, + [7385] = 7071, + [7386] = 1107, + [7387] = 7085, + [7388] = 7086, + [7389] = 7087, + [7390] = 7088, + [7391] = 7064, [7392] = 7066, - [7393] = 6976, - [7394] = 7394, - [7395] = 7395, - [7396] = 6977, - [7397] = 3004, - [7398] = 6978, - [7399] = 7077, - [7400] = 7006, - [7401] = 6985, - [7402] = 7027, - [7403] = 7028, - [7404] = 6992, - [7405] = 6995, - [7406] = 7077, - [7407] = 7028, - [7408] = 7015, - [7409] = 7016, - [7410] = 7017, - [7411] = 6966, - [7412] = 7066, - [7413] = 6992, - [7414] = 7071, - [7415] = 7070, - [7416] = 7026, - [7417] = 7052, - [7418] = 7067, - [7419] = 7024, - [7420] = 7066, - [7421] = 7006, - [7422] = 7422, - [7423] = 7014, - [7424] = 7009, - [7425] = 7008, - [7426] = 7027, - [7427] = 7427, - [7428] = 7051, - [7429] = 7052, - [7430] = 6995, - [7431] = 7051, - [7432] = 7028, - [7433] = 6990, - [7434] = 6976, - [7435] = 7066, - [7436] = 7436, - [7437] = 6977, - [7438] = 7037, - [7439] = 6978, - [7440] = 7038, - [7441] = 7441, - [7442] = 6985, - [7443] = 7044, - [7444] = 7006, - [7445] = 7027, - [7446] = 7006, - [7447] = 7015, - [7448] = 7016, - [7449] = 7017, - [7450] = 6966, - [7451] = 7088, - [7452] = 7052, - [7453] = 7038, - [7454] = 7037, - [7455] = 7026, - [7456] = 7086, - [7457] = 7138, - [7458] = 7024, - [7459] = 7039, - [7460] = 6995, - [7461] = 7083, - [7462] = 7014, - [7463] = 7009, - [7464] = 7008, - [7465] = 7028, - [7466] = 7066, - [7467] = 7044, - [7468] = 7028, + [7393] = 7089, + [7394] = 7074, + [7395] = 7096, + [7396] = 7112, + [7397] = 7113, + [7398] = 7099, + [7399] = 7071, + [7400] = 7118, + [7401] = 7401, + [7402] = 7103, + [7403] = 7093, + [7404] = 7111, + [7405] = 7040, + [7406] = 7032, + [7407] = 7040, + [7408] = 7076, + [7409] = 7077, + [7410] = 2955, + [7411] = 7033, + [7412] = 7412, + [7413] = 7052, + [7414] = 7041, + [7415] = 7064, + [7416] = 7066, + [7417] = 7044, + [7418] = 7064, + [7419] = 7066, + [7420] = 7045, + [7421] = 7089, + [7422] = 7046, + [7423] = 7081, + [7424] = 7050, + [7425] = 7071, + [7426] = 7074, + [7427] = 7076, + [7428] = 7053, + [7429] = 7080, + [7430] = 7077, + [7431] = 7080, + [7432] = 1058, + [7433] = 7061, + [7434] = 7081, + [7435] = 7032, + [7436] = 7065, + [7437] = 7067, + [7438] = 7073, + [7439] = 7040, + [7440] = 7052, + [7441] = 7064, + [7442] = 7085, + [7443] = 7086, + [7444] = 7087, + [7445] = 7088, + [7446] = 7066, + [7447] = 7080, + [7448] = 7089, + [7449] = 7157, + [7450] = 7096, + [7451] = 7081, + [7452] = 7155, + [7453] = 7099, + [7454] = 7153, + [7455] = 7097, + [7456] = 7456, + [7457] = 7103, + [7458] = 7093, + [7459] = 7111, + [7460] = 7401, + [7461] = 7032, + [7462] = 7462, + [7463] = 7151, + [7464] = 7089, + [7465] = 7150, + [7466] = 7033, + [7467] = 7052, + [7468] = 7145, [7469] = 7044, - [7470] = 7039, - [7471] = 7038, - [7472] = 7037, - [7473] = 6976, - [7474] = 7006, - [7475] = 7048, - [7476] = 6977, - [7477] = 7027, - [7478] = 6978, - [7479] = 7479, - [7480] = 7046, - [7481] = 6985, - [7482] = 7482, - [7483] = 2999, - [7484] = 7484, - [7485] = 6989, - [7486] = 7015, - [7487] = 7016, - [7488] = 7017, - [7489] = 6966, - [7490] = 7004, - [7491] = 2980, - [7492] = 2982, - [7493] = 7070, - [7494] = 7026, - [7495] = 7028, - [7496] = 7496, - [7497] = 7024, - [7498] = 7498, - [7499] = 7038, - [7500] = 6988, - [7501] = 7014, - [7502] = 7009, - [7503] = 7008, + [7470] = 7092, + [7471] = 7471, + [7472] = 7045, + [7473] = 7064, + [7474] = 7046, + [7475] = 7077, + [7476] = 7476, + [7477] = 7053, + [7478] = 7066, + [7479] = 7141, + [7480] = 7065, + [7481] = 7089, + [7482] = 7139, + [7483] = 7091, + [7484] = 7085, + [7485] = 7086, + [7486] = 7087, + [7487] = 7088, + [7488] = 7137, + [7489] = 7136, + [7490] = 7090, + [7491] = 7075, + [7492] = 7096, + [7493] = 7076, + [7494] = 7126, + [7495] = 7099, + [7496] = 7032, + [7497] = 7040, + [7498] = 7052, + [7499] = 7103, + [7500] = 7093, + [7501] = 7111, + [7502] = 7089, + [7503] = 7064, [7504] = 7066, - [7505] = 7002, - [7506] = 7027, - [7507] = 7210, - [7508] = 6999, - [7509] = 7427, - [7510] = 6996, - [7511] = 7226, - [7512] = 6976, - [7513] = 6995, - [7514] = 7028, - [7515] = 6977, - [7516] = 6990, - [7517] = 6978, - [7518] = 7518, - [7519] = 7006, - [7520] = 6985, - [7521] = 7088, - [7522] = 7086, - [7523] = 6986, - [7524] = 7083, - [7525] = 7015, - [7526] = 7016, - [7527] = 7017, - [7528] = 6966, - [7529] = 7027, - [7530] = 7530, - [7531] = 7051, - [7532] = 7026, - [7533] = 7394, - [7534] = 7011, - [7535] = 7024, - [7536] = 7052, - [7537] = 2978, - [7538] = 2981, - [7539] = 7014, - [7540] = 7009, - [7541] = 7008, - [7542] = 6995, - [7543] = 7039, - [7544] = 7239, - [7545] = 7364, - [7546] = 7028, - [7547] = 6995, - [7548] = 7038, - [7549] = 6976, - [7550] = 7066, - [7551] = 7391, - [7552] = 6977, - [7553] = 7042, - [7554] = 6978, - [7555] = 7046, - [7556] = 7048, - [7557] = 6985, - [7558] = 7277, - [7559] = 7015, - [7560] = 7016, - [7561] = 7017, - [7562] = 7021, - [7563] = 7563, - [7564] = 7024, - [7565] = 6985, - [7566] = 7332, - [7567] = 7006, - [7568] = 7088, - [7569] = 6977, - [7570] = 7086, - [7571] = 6996, - [7572] = 7015, - [7573] = 7016, - [7574] = 7017, - [7575] = 7575, - [7576] = 6999, - [7577] = 7024, - [7578] = 7310, - [7579] = 7083, - [7580] = 7580, - [7581] = 2996, - [7582] = 7015, - [7583] = 7016, - [7584] = 7017, - [7585] = 7002, - [7586] = 6968, - [7587] = 7024, - [7588] = 6970, - [7589] = 7083, - [7590] = 6971, - [7591] = 7086, - [7592] = 7015, - [7593] = 7016, - [7594] = 7017, - [7595] = 6972, - [7596] = 7004, - [7597] = 7024, - [7598] = 7027, - [7599] = 7088, - [7600] = 7006, - [7601] = 7015, - [7602] = 7016, - [7603] = 7017, - [7604] = 7066, - [7605] = 2990, - [7606] = 6995, - [7607] = 7028, - [7608] = 7038, - [7609] = 7015, - [7610] = 7016, - [7611] = 7017, - [7612] = 6974, - [7613] = 7047, - [7614] = 7614, - [7615] = 7066, - [7616] = 7067, - [7617] = 7015, - [7618] = 7016, - [7619] = 7017, - [7620] = 6996, - [7621] = 7621, - [7622] = 6979, - [7623] = 7066, - [7624] = 7077, - [7625] = 7015, - [7626] = 7016, - [7627] = 6980, - [7628] = 7006, - [7629] = 7088, - [7630] = 7015, - [7631] = 7016, - [7632] = 7086, - [7633] = 7633, - [7634] = 7083, - [7635] = 7015, - [7636] = 7016, - [7637] = 7071, - [7638] = 7332, - [7639] = 7071, - [7640] = 7015, - [7641] = 7016, - [7642] = 7070, - [7643] = 7643, - [7644] = 7644, - [7645] = 7004, - [7646] = 7027, - [7647] = 7067, - [7648] = 6983, - [7649] = 7021, - [7650] = 7088, - [7651] = 7651, - [7652] = 7652, - [7653] = 6982, - [7654] = 7002, - [7655] = 7052, - [7656] = 6987, - [7657] = 7052, - [7658] = 7051, + [7505] = 7124, + [7506] = 7089, + [7507] = 7074, + [7508] = 7033, + [7509] = 7509, + [7510] = 7510, + [7511] = 7044, + [7512] = 7081, + [7513] = 7122, + [7514] = 7045, + [7515] = 7032, + [7516] = 7046, + [7517] = 7517, + [7518] = 7073, + [7519] = 7053, + [7520] = 7040, + [7521] = 7080, + [7522] = 7052, + [7523] = 7064, + [7524] = 7085, + [7525] = 7086, + [7526] = 7087, + [7527] = 7088, + [7528] = 7346, + [7529] = 7066, + [7530] = 7032, + [7531] = 7531, + [7532] = 7096, + [7533] = 7374, + [7534] = 7534, + [7535] = 7099, + [7536] = 7119, + [7537] = 7077, + [7538] = 7076, + [7539] = 7103, + [7540] = 7093, + [7541] = 7111, + [7542] = 7032, + [7543] = 7040, + [7544] = 7052, + [7545] = 7072, + [7546] = 7074, + [7547] = 7089, + [7548] = 7033, + [7549] = 7064, + [7550] = 7550, + [7551] = 7044, + [7552] = 7066, + [7553] = 7553, + [7554] = 7045, + [7555] = 7089, + [7556] = 7046, + [7557] = 7557, + [7558] = 7109, + [7559] = 7053, + [7560] = 7090, + [7561] = 7071, + [7562] = 7091, + [7563] = 7098, + [7564] = 7085, + [7565] = 7086, + [7566] = 7087, + [7567] = 7088, + [7568] = 7092, + [7569] = 7089, + [7570] = 7066, + [7571] = 7571, + [7572] = 7096, + [7573] = 7066, + [7574] = 7064, + [7575] = 7099, + [7576] = 7069, + [7577] = 7032, + [7578] = 7084, + [7579] = 7103, + [7580] = 7093, + [7581] = 7111, + [7582] = 7040, + [7583] = 7052, + [7584] = 7064, + [7585] = 7585, + [7586] = 7066, + [7587] = 7097, + [7588] = 7033, + [7589] = 7589, + [7590] = 7074, + [7591] = 7044, + [7592] = 7089, + [7593] = 7062, + [7594] = 7045, + [7595] = 7032, + [7596] = 7046, + [7597] = 7064, + [7598] = 7118, + [7599] = 7053, + [7600] = 7600, + [7601] = 7113, + [7602] = 7078, + [7603] = 7067, + [7604] = 7085, + [7605] = 7086, + [7606] = 7087, + [7607] = 7088, + [7608] = 7112, + [7609] = 7068, + [7610] = 7090, + [7611] = 7096, + [7612] = 7060, + [7613] = 7040, + [7614] = 7099, + [7615] = 7049, + [7616] = 7180, + [7617] = 7048, + [7618] = 7103, + [7619] = 7093, + [7620] = 7111, + [7621] = 7040, + [7622] = 7056, + [7623] = 7054, + [7624] = 7052, + [7625] = 7144, + [7626] = 7047, + [7627] = 7033, + [7628] = 7035, + [7629] = 7044, + [7630] = 7052, + [7631] = 7043, + [7632] = 7045, + [7633] = 7064, + [7634] = 7046, + [7635] = 7066, + [7636] = 7636, + [7637] = 7053, + [7638] = 7352, + [7639] = 7085, + [7640] = 7086, + [7641] = 7087, + [7642] = 7074, + [7643] = 7412, + [7644] = 7099, + [7645] = 7089, + [7646] = 7065, + [7647] = 7034, + [7648] = 7033, + [7649] = 7649, + [7650] = 7045, + [7651] = 7112, + [7652] = 7345, + [7653] = 7085, + [7654] = 7086, + [7655] = 7087, + [7656] = 7076, + [7657] = 7113, + [7658] = 7099, [7659] = 7659, - [7660] = 7077, - [7661] = 7364, - [7662] = 6995, - [7663] = 7663, - [7664] = 7664, - [7665] = 7028, - [7666] = 7666, - [7667] = 7239, - [7668] = 7011, - [7669] = 7038, - [7670] = 7394, - [7671] = 7310, - [7672] = 7066, - [7673] = 7673, - [7674] = 7674, - [7675] = 7675, - [7676] = 7676, - [7677] = 3000, - [7678] = 7044, - [7679] = 7039, - [7680] = 6990, - [7681] = 7028, - [7682] = 7006, - [7683] = 7088, - [7684] = 7427, - [7685] = 6999, - [7686] = 7686, - [7687] = 7687, - [7688] = 7688, - [7689] = 7086, - [7690] = 7083, - [7691] = 7038, - [7692] = 6978, - [7693] = 7693, - [7694] = 7037, - [7695] = 6995, - [7696] = 7038, - [7697] = 6996, - [7698] = 7037, - [7699] = 7027, - [7700] = 7700, - [7701] = 7701, - [7702] = 7028, - [7703] = 7703, - [7704] = 7704, - [7705] = 7004, - [7706] = 6999, - [7707] = 7039, - [7708] = 7002, - [7709] = 6995, - [7710] = 7710, - [7711] = 7711, - [7712] = 7002, - [7713] = 7713, - [7714] = 7044, - [7715] = 7004, - [7716] = 7277, - [7717] = 6977, - [7718] = 7002, - [7719] = 7719, + [7660] = 7032, + [7661] = 7033, + [7662] = 7054, + [7663] = 7118, + [7664] = 7085, + [7665] = 7086, + [7666] = 7087, + [7667] = 7113, + [7668] = 7043, + [7669] = 7099, + [7670] = 7670, + [7671] = 7112, + [7672] = 7033, + [7673] = 7032, + [7674] = 7040, + [7675] = 7085, + [7676] = 7086, + [7677] = 7087, + [7678] = 7678, + [7679] = 7091, + [7680] = 7099, + [7681] = 7092, + [7682] = 7097, + [7683] = 7033, + [7684] = 7052, + [7685] = 7085, + [7686] = 7086, + [7687] = 7087, + [7688] = 7064, + [7689] = 7066, + [7690] = 7074, + [7691] = 7089, + [7692] = 7033, + [7693] = 7276, + [7694] = 7085, + [7695] = 7086, + [7696] = 7087, + [7697] = 7042, + [7698] = 7278, + [7699] = 7032, + [7700] = 7118, + [7701] = 7033, + [7702] = 7113, + [7703] = 7085, + [7704] = 7086, + [7705] = 7087, + [7706] = 7112, + [7707] = 7032, + [7708] = 7118, + [7709] = 7287, + [7710] = 7033, + [7711] = 7040, + [7712] = 7085, + [7713] = 7086, + [7714] = 7714, + [7715] = 7113, + [7716] = 7716, + [7717] = 7033, + [7718] = 7085, + [7719] = 7086, [7720] = 7720, - [7721] = 7721, - [7722] = 7722, - [7723] = 7028, - [7724] = 7038, - [7725] = 7725, - [7726] = 7039, - [7727] = 6995, + [7721] = 7061, + [7722] = 7112, + [7723] = 7033, + [7724] = 7085, + [7725] = 7086, + [7726] = 7040, + [7727] = 7727, [7728] = 7728, - [7729] = 7066, - [7730] = 7693, - [7731] = 6999, - [7732] = 7688, - [7733] = 7687, - [7734] = 6996, - [7735] = 7674, - [7736] = 7673, - [7737] = 6995, - [7738] = 6976, - [7739] = 7621, - [7740] = 7051, - [7741] = 7021, - [7742] = 7652, - [7743] = 7651, - [7744] = 7027, - [7745] = 7644, - [7746] = 7643, - [7747] = 6983, - [7748] = 7006, - [7749] = 7575, - [7750] = 7563, - [7751] = 7066, - [7752] = 7364, - [7753] = 7484, - [7754] = 7028, - [7755] = 7388, - [7756] = 7317, - [7757] = 7282, - [7758] = 7248, - [7759] = 7086, - [7760] = 7160, - [7761] = 7761, - [7762] = 7083, - [7763] = 7149, - [7764] = 7027, - [7765] = 7700, - [7766] = 7701, - [7767] = 7141, - [7768] = 7703, - [7769] = 7704, - [7770] = 7037, - [7771] = 7038, - [7772] = 7137, - [7773] = 7039, - [7774] = 7027, - [7775] = 7710, - [7776] = 7711, - [7777] = 7044, - [7778] = 7713, - [7779] = 7210, - [7780] = 7042, - [7781] = 1124, - [7782] = 6995, - [7783] = 7051, - [7784] = 7719, - [7785] = 7720, - [7786] = 7721, - [7787] = 7722, - [7788] = 7052, - [7789] = 7002, - [7790] = 7725, - [7791] = 7046, - [7792] = 7028, - [7793] = 7728, - [7794] = 7038, - [7795] = 7693, - [7796] = 7039, - [7797] = 7688, - [7798] = 7687, - [7799] = 7138, - [7800] = 7674, - [7801] = 7673, - [7802] = 6990, - [7803] = 7066, - [7804] = 7621, - [7805] = 7048, - [7806] = 7066, - [7807] = 7652, - [7808] = 7651, - [7809] = 7067, - [7810] = 7644, - [7811] = 7643, - [7812] = 7070, - [7813] = 7575, - [7814] = 7563, - [7815] = 7071, - [7816] = 1164, - [7817] = 7484, - [7818] = 7006, - [7819] = 7388, - [7820] = 7317, - [7821] = 7282, - [7822] = 7248, - [7823] = 7077, - [7824] = 7160, - [7825] = 7391, - [7826] = 7088, - [7827] = 7006, - [7828] = 7700, - [7829] = 7701, - [7830] = 7088, - [7831] = 7703, - [7832] = 7704, - [7833] = 7083, - [7834] = 7086, - [7835] = 7083, - [7836] = 7728, - [7837] = 7086, - [7838] = 7710, - [7839] = 7711, - [7840] = 7088, - [7841] = 7713, - [7842] = 7006, - [7843] = 7027, - [7844] = 7086, - [7845] = 7083, - [7846] = 7725, - [7847] = 7719, - [7848] = 7720, - [7849] = 7721, - [7850] = 7722, - [7851] = 7141, - [7852] = 7137, - [7853] = 7725, - [7854] = 6973, - [7855] = 7049, - [7856] = 7033, - [7857] = 7693, - [7858] = 7048, - [7859] = 7688, - [7860] = 7687, - [7861] = 7025, - [7862] = 6995, - [7863] = 7002, - [7864] = 7621, - [7865] = 7226, - [7866] = 6987, - [7867] = 7652, - [7868] = 7651, - [7869] = 7028, - [7870] = 7644, - [7871] = 7643, - [7872] = 7038, - [7873] = 7575, - [7874] = 7563, - [7875] = 6972, - [7876] = 7039, - [7877] = 7484, - [7878] = 7006, - [7879] = 7388, - [7880] = 7317, - [7881] = 7282, - [7882] = 7248, - [7883] = 7088, - [7884] = 7160, - [7885] = 7028, - [7886] = 7086, - [7887] = 7046, - [7888] = 7700, - [7889] = 7701, - [7890] = 7704, - [7891] = 7083, - [7892] = 7042, - [7893] = 7007, - [7894] = 7077, - [7895] = 7710, - [7896] = 7713, - [7897] = 7722, - [7898] = 6981, - [7899] = 7899, - [7900] = 7721, - [7901] = 7901, - [7902] = 7048, - [7903] = 7046, - [7904] = 7725, - [7905] = 7066, - [7906] = 7042, - [7907] = 7071, - [7908] = 7006, - [7909] = 7621, - [7910] = 7088, - [7911] = 7126, - [7912] = 7652, - [7913] = 7651, - [7914] = 7027, - [7915] = 7089, - [7916] = 6984, - [7917] = 7070, - [7918] = 7484, - [7919] = 6991, - [7920] = 7317, - [7921] = 7086, - [7922] = 7083, - [7923] = 7067, - [7924] = 7700, - [7925] = 7701, - [7926] = 7704, - [7927] = 7003, - [7928] = 7005, - [7929] = 7066, - [7930] = 7720, - [7931] = 7710, - [7932] = 7004, - [7933] = 6980, - [7934] = 7934, - [7935] = 6979, - [7936] = 7052, - [7937] = 6967, - [7938] = 6974, - [7939] = 7725, - [7940] = 7940, - [7941] = 7719, - [7942] = 7027, - [7943] = 7067, - [7944] = 7621, - [7945] = 7070, - [7946] = 7050, - [7947] = 7652, - [7948] = 7651, - [7949] = 6972, - [7950] = 7071, - [7951] = 6971, - [7952] = 7484, - [7953] = 7057, - [7954] = 7317, - [7955] = 7047, - [7956] = 7051, - [7957] = 7027, - [7958] = 7700, - [7959] = 7701, - [7960] = 7704, - [7961] = 6970, - [7962] = 6968, - [7963] = 7089, - [7964] = 6990, - [7965] = 7710, - [7966] = 7077, - [7967] = 6968, - [7968] = 6970, - [7969] = 7057, - [7970] = 7044, - [7971] = 6971, - [7972] = 6991, - [7973] = 7725, - [7974] = 6995, - [7975] = 7002, - [7976] = 7039, - [7977] = 7028, - [7978] = 7621, - [7979] = 7050, - [7980] = 6974, - [7981] = 7652, - [7982] = 7651, - [7983] = 6967, - [7984] = 7038, - [7985] = 7039, - [7986] = 7484, - [7987] = 6979, - [7988] = 7317, - [7989] = 7989, - [7990] = 7008, - [7991] = 7066, - [7992] = 7700, - [7993] = 7701, - [7994] = 7704, - [7995] = 6980, - [7996] = 7038, - [7997] = 7009, - [7998] = 7003, - [7999] = 7710, - [8000] = 7037, - [8001] = 8001, - [8002] = 8002, - [8003] = 7088, - [8004] = 7006, - [8005] = 7014, - [8006] = 7046, - [8007] = 7088, - [8008] = 7086, - [8009] = 7083, - [8010] = 7700, - [8011] = 7701, - [8012] = 7704, - [8013] = 7004, - [8014] = 7126, - [8015] = 7149, - [8016] = 7002, - [8017] = 7710, - [8018] = 6981, - [8019] = 8019, - [8020] = 7027, - [8021] = 7141, - [8022] = 6999, - [8023] = 7137, - [8024] = 6996, - [8025] = 7007, - [8026] = 6995, - [8027] = 7700, - [8028] = 7701, - [8029] = 7704, - [8030] = 6990, - [8031] = 6983, - [8032] = 8032, - [8033] = 6995, - [8034] = 7710, - [8035] = 7002, - [8036] = 6987, - [8037] = 7028, - [8038] = 7713, - [8039] = 7038, - [8040] = 7039, - [8041] = 7013, - [8042] = 8042, - [8043] = 7066, - [8044] = 7700, - [8045] = 7701, - [8046] = 7704, - [8047] = 7025, - [8048] = 7033, - [8049] = 7049, - [8050] = 7027, - [8051] = 7710, - [8052] = 7042, - [8053] = 7089, - [8054] = 7711, - [8055] = 8055, - [8056] = 7046, - [8057] = 8057, - [8058] = 7006, - [8059] = 7002, - [8060] = 7088, - [8061] = 7700, - [8062] = 7701, - [8063] = 7704, - [8064] = 8064, - [8065] = 6990, - [8066] = 7141, - [8067] = 6999, - [8068] = 7710, - [8069] = 7138, - [8070] = 7086, - [8071] = 7083, - [8072] = 7083, - [8073] = 7027, - [8074] = 7701, - [8075] = 7027, - [8076] = 7086, - [8077] = 7701, - [8078] = 7088, - [8079] = 7701, - [8080] = 7710, - [8081] = 7701, - [8082] = 8082, - [8083] = 8083, - [8084] = 7006, - [8085] = 8085, - [8086] = 7210, - [8087] = 7226, - [8088] = 6995, - [8089] = 8032, - [8090] = 7940, - [8091] = 6995, - [8092] = 7899, - [8093] = 7002, - [8094] = 7028, - [8095] = 7277, - [8096] = 6996, - [8097] = 7686, - [8098] = 7022, - [8099] = 7006, - [8100] = 7088, - [8101] = 7178, - [8102] = 7728, - [8103] = 8082, - [8104] = 8083, - [8105] = 6999, - [8106] = 8085, - [8107] = 7310, - [8108] = 7002, - [8109] = 7038, - [8110] = 8032, - [8111] = 7940, - [8112] = 7004, - [8113] = 7899, - [8114] = 7039, - [8115] = 7086, - [8116] = 7686, - [8117] = 7083, - [8118] = 7066, - [8119] = 7077, - [8120] = 7178, - [8121] = 7728, - [8122] = 8082, - [8123] = 8083, - [8124] = 7071, - [8125] = 8085, - [8126] = 7332, - [8127] = 7042, - [8128] = 7070, - [8129] = 8032, - [8130] = 7940, - [8131] = 7006, - [8132] = 7899, - [8133] = 7028, - [8134] = 7042, - [8135] = 7686, - [8136] = 7021, - [8137] = 7067, - [8138] = 7023, - [8139] = 7178, - [8140] = 7728, - [8141] = 8082, - [8142] = 8083, - [8143] = 7024, - [8144] = 8085, - [8145] = 7086, - [8146] = 7083, - [8147] = 7728, - [8148] = 8082, - [8149] = 8083, - [8150] = 7026, - [8151] = 8085, - [8152] = 7066, - [8153] = 8153, - [8154] = 8082, - [8155] = 8083, - [8156] = 7364, - [8157] = 8085, - [8158] = 7083, - [8159] = 7239, - [8160] = 8082, - [8161] = 8083, - [8162] = 7048, - [8163] = 8085, - [8164] = 7011, - [8165] = 7046, - [8166] = 8082, - [8167] = 8083, - [8168] = 8168, - [8169] = 8085, - [8170] = 7394, - [8171] = 7052, - [8172] = 8082, - [8173] = 8083, - [8174] = 7028, - [8175] = 8085, - [8176] = 7086, - [8177] = 7427, - [8178] = 8082, - [8179] = 8083, - [8180] = 7051, - [8181] = 8085, - [8182] = 7088, - [8183] = 7037, - [8184] = 8082, - [8185] = 8083, - [8186] = 8186, - [8187] = 8085, - [8188] = 7006, - [8189] = 7038, - [8190] = 7039, - [8191] = 7044, - [8192] = 7027, - [8193] = 7044, - [8194] = 7039, - [8195] = 7038, - [8196] = 7704, - [8197] = 6995, - [8198] = 7051, - [8199] = 7052, - [8200] = 7002, - [8201] = 7391, - [8202] = 7037, - [8203] = 7676, - [8204] = 7518, - [8205] = 7280, - [8206] = 7222, - [8207] = 8207, - [8208] = 7048, - [8209] = 7676, - [8210] = 7518, - [8211] = 7280, - [8212] = 7222, - [8213] = 7027, - [8214] = 8214, - [8215] = 7676, - [8216] = 7518, - [8217] = 7280, - [8218] = 7222, - [8219] = 7028, - [8220] = 7066, - [8221] = 7038, - [8222] = 7067, - [8223] = 7089, - [8224] = 6996, - [8225] = 8225, - [8226] = 8226, - [8227] = 7070, - [8228] = 6966, - [8229] = 7071, + [7729] = 7111, + [7730] = 7085, + [7731] = 7086, + [7732] = 7058, + [7733] = 7094, + [7734] = 7270, + [7735] = 7033, + [7736] = 7095, + [7737] = 7244, + [7738] = 7738, + [7739] = 7033, + [7740] = 7144, + [7741] = 7097, + [7742] = 7055, + [7743] = 7033, + [7744] = 7035, + [7745] = 7052, + [7746] = 7746, + [7747] = 7033, + [7748] = 7034, + [7749] = 7034, + [7750] = 7064, + [7751] = 7033, + [7752] = 7066, + [7753] = 7035, + [7754] = 7052, + [7755] = 7033, + [7756] = 7074, + [7757] = 7144, + [7758] = 7089, + [7759] = 7033, + [7760] = 7040, + [7761] = 7062, + [7762] = 7287, + [7763] = 7033, + [7764] = 7764, + [7765] = 7092, + [7766] = 7133, + [7767] = 7033, + [7768] = 7060, + [7769] = 7769, + [7770] = 7053, + [7771] = 7033, + [7772] = 7176, + [7773] = 7054, + [7774] = 7774, + [7775] = 7033, + [7776] = 7056, + [7777] = 7176, + [7778] = 7778, + [7779] = 7060, + [7780] = 7091, + [7781] = 7056, + [7782] = 7043, + [7783] = 7133, + [7784] = 7062, + [7785] = 7090, + [7786] = 7786, + [7787] = 7090, + [7788] = 7076, + [7789] = 7095, + [7790] = 7094, + [7791] = 7791, + [7792] = 7118, + [7793] = 7113, + [7794] = 7112, + [7795] = 7089, + [7796] = 7278, + [7797] = 7042, + [7798] = 7040, + [7799] = 7799, + [7800] = 7276, + [7801] = 7801, + [7802] = 7802, + [7803] = 7112, + [7804] = 7804, + [7805] = 7805, + [7806] = 7043, + [7807] = 7113, + [7808] = 7401, + [7809] = 7244, + [7810] = 7052, + [7811] = 7811, + [7812] = 7812, + [7813] = 7060, + [7814] = 7118, + [7815] = 7815, + [7816] = 7064, + [7817] = 7052, + [7818] = 7818, + [7819] = 7819, + [7820] = 7157, + [7821] = 7821, + [7822] = 7822, + [7823] = 7823, + [7824] = 7824, + [7825] = 7155, + [7826] = 7151, + [7827] = 7827, + [7828] = 7150, + [7829] = 7048, + [7830] = 7830, + [7831] = 7141, + [7832] = 7832, + [7833] = 7066, + [7834] = 7834, + [7835] = 7835, + [7836] = 7139, + [7837] = 7837, + [7838] = 7838, + [7839] = 7074, + [7840] = 7270, + [7841] = 7841, + [7842] = 7076, + [7843] = 7137, + [7844] = 7844, + [7845] = 7845, + [7846] = 7136, + [7847] = 7819, + [7848] = 7818, + [7849] = 7845, + [7850] = 7844, + [7851] = 7774, + [7852] = 7769, + [7853] = 7089, + [7854] = 7050, + [7855] = 7720, + [7856] = 7049, + [7857] = 7636, + [7858] = 7585, + [7859] = 7557, + [7860] = 7534, + [7861] = 7032, + [7862] = 7462, + [7863] = 7032, + [7864] = 7841, + [7865] = 7118, + [7866] = 7113, + [7867] = 7801, + [7868] = 7802, + [7869] = 7112, + [7870] = 7804, + [7871] = 7805, + [7872] = 7872, + [7873] = 7097, + [7874] = 7040, + [7875] = 7345, + [7876] = 7081, + [7877] = 7811, + [7878] = 7812, + [7879] = 7078, + [7880] = 7118, + [7881] = 7815, + [7882] = 7882, + [7883] = 7077, + [7884] = 7884, + [7885] = 7076, + [7886] = 7838, + [7887] = 7821, + [7888] = 7822, + [7889] = 7823, + [7890] = 7824, + [7891] = 7068, + [7892] = 7052, + [7893] = 7827, + [7894] = 7346, + [7895] = 7060, + [7896] = 7830, + [7897] = 7412, + [7898] = 7832, + [7899] = 7032, + [7900] = 7834, + [7901] = 7835, + [7902] = 7068, + [7903] = 7837, + [7904] = 7838, + [7905] = 7064, + [7906] = 7352, + [7907] = 7841, + [7908] = 7066, + [7909] = 7074, + [7910] = 7844, + [7911] = 7845, + [7912] = 7081, + [7913] = 7819, + [7914] = 7818, + [7915] = 7032, + [7916] = 7774, + [7917] = 7769, + [7918] = 7089, + [7919] = 7837, + [7920] = 7720, + [7921] = 7092, + [7922] = 7636, + [7923] = 7585, + [7924] = 7557, + [7925] = 7534, + [7926] = 7926, + [7927] = 7462, + [7928] = 7928, + [7929] = 7091, + [7930] = 7074, + [7931] = 7801, + [7932] = 7802, + [7933] = 7090, + [7934] = 7804, + [7935] = 7805, + [7936] = 7089, + [7937] = 7078, + [7938] = 7071, + [7939] = 7052, + [7940] = 7032, + [7941] = 7811, + [7942] = 7812, + [7943] = 7064, + [7944] = 7054, + [7945] = 7815, + [7946] = 7056, + [7947] = 7060, + [7948] = 7118, + [7949] = 7062, + [7950] = 7066, + [7951] = 7821, + [7952] = 7822, + [7953] = 7823, + [7954] = 7824, + [7955] = 7118, + [7956] = 7113, + [7957] = 7827, + [7958] = 7112, + [7959] = 7084, + [7960] = 7960, + [7961] = 7832, + [7962] = 7374, + [7963] = 7834, + [7964] = 7835, + [7965] = 7066, + [7966] = 7966, + [7967] = 7374, + [7968] = 7841, + [7969] = 7270, + [7970] = 7098, + [7971] = 7844, + [7972] = 7845, + [7973] = 7040, + [7974] = 7819, + [7975] = 7818, + [7976] = 7976, + [7977] = 7774, + [7978] = 7769, + [7979] = 7109, + [7980] = 7835, + [7981] = 7720, + [7982] = 7081, + [7983] = 7636, + [7984] = 7585, + [7985] = 7557, + [7986] = 7534, + [7987] = 7834, + [7988] = 7462, + [7989] = 7064, + [7990] = 7080, + [7991] = 7352, + [7992] = 7801, + [7993] = 7802, + [7994] = 7805, + [7995] = 7412, + [7996] = 7064, + [7997] = 7046, + [7998] = 7832, + [7999] = 7811, + [8000] = 7071, + [8001] = 7815, + [8002] = 7066, + [8003] = 7052, + [8004] = 7074, + [8005] = 7060, + [8006] = 7064, + [8007] = 7071, + [8008] = 7074, + [8009] = 7827, + [8010] = 7066, + [8011] = 7076, + [8012] = 7074, + [8013] = 7077, + [8014] = 7841, + [8015] = 7076, + [8016] = 7077, + [8017] = 7844, + [8018] = 7845, + [8019] = 7122, + [8020] = 7045, + [8021] = 7076, + [8022] = 7089, + [8023] = 7720, + [8024] = 7124, + [8025] = 7585, + [8026] = 7113, + [8027] = 7346, + [8028] = 7345, + [8029] = 7801, + [8030] = 7802, + [8031] = 7805, + [8032] = 7112, + [8033] = 7136, + [8034] = 7044, + [8035] = 7080, + [8036] = 7811, + [8037] = 7080, + [8038] = 7089, + [8039] = 7137, + [8040] = 7081, + [8041] = 8041, + [8042] = 7080, + [8043] = 7139, + [8044] = 7118, + [8045] = 7827, + [8046] = 7077, + [8047] = 7141, + [8048] = 7113, + [8049] = 7112, + [8050] = 7841, + [8051] = 7145, + [8052] = 7150, + [8053] = 7844, + [8054] = 7845, + [8055] = 7151, + [8056] = 7076, + [8057] = 7278, + [8058] = 7720, + [8059] = 7090, + [8060] = 7585, + [8061] = 7040, + [8062] = 7091, + [8063] = 7270, + [8064] = 7801, + [8065] = 7802, + [8066] = 7805, + [8067] = 7401, + [8068] = 7092, + [8069] = 7074, + [8070] = 7244, + [8071] = 7811, + [8072] = 7830, + [8073] = 7153, + [8074] = 7089, + [8075] = 7052, + [8076] = 7097, + [8077] = 7827, + [8078] = 7155, + [8079] = 7060, + [8080] = 7827, + [8081] = 7041, + [8082] = 7157, + [8083] = 7071, + [8084] = 7064, + [8085] = 7841, + [8086] = 7066, + [8087] = 7074, + [8088] = 7844, + [8089] = 7845, + [8090] = 7076, + [8091] = 7089, + [8092] = 7180, + [8093] = 7720, + [8094] = 7040, + [8095] = 7585, + [8096] = 7034, + [8097] = 7144, + [8098] = 7060, + [8099] = 7801, + [8100] = 7802, + [8101] = 7805, + [8102] = 7176, + [8103] = 7032, + [8104] = 7118, + [8105] = 7113, + [8106] = 7811, + [8107] = 7112, + [8108] = 7824, + [8109] = 8109, + [8110] = 7823, + [8111] = 8111, + [8112] = 7066, + [8113] = 7089, + [8114] = 7035, + [8115] = 7034, + [8116] = 7056, + [8117] = 7032, + [8118] = 7801, + [8119] = 7802, + [8120] = 7805, + [8121] = 7118, + [8122] = 7112, + [8123] = 7113, + [8124] = 7034, + [8125] = 7811, + [8126] = 7035, + [8127] = 7064, + [8128] = 7144, + [8129] = 7113, + [8130] = 7118, + [8131] = 7112, + [8132] = 7033, + [8133] = 8133, + [8134] = 7040, + [8135] = 7054, + [8136] = 7801, + [8137] = 7802, + [8138] = 7805, + [8139] = 8139, + [8140] = 7032, + [8141] = 7133, + [8142] = 7822, + [8143] = 7811, + [8144] = 7113, + [8145] = 8145, + [8146] = 7052, + [8147] = 8147, + [8148] = 7821, + [8149] = 7040, + [8150] = 7090, + [8151] = 7091, + [8152] = 7092, + [8153] = 7095, + [8154] = 7801, + [8155] = 7802, + [8156] = 7805, + [8157] = 7036, + [8158] = 7094, + [8159] = 7042, + [8160] = 7047, + [8161] = 7811, + [8162] = 7052, + [8163] = 7060, + [8164] = 7097, + [8165] = 7276, + [8166] = 7064, + [8167] = 7066, + [8168] = 7074, + [8169] = 7076, + [8170] = 7103, + [8171] = 7124, + [8172] = 7801, + [8173] = 7802, + [8174] = 7805, + [8175] = 7035, + [8176] = 7062, + [8177] = 7043, + [8178] = 8178, + [8179] = 7811, + [8180] = 7111, + [8181] = 7144, + [8182] = 7093, + [8183] = 7032, + [8184] = 7118, + [8185] = 7060, + [8186] = 7802, + [8187] = 8187, + [8188] = 8188, + [8189] = 7113, + [8190] = 7802, + [8191] = 7112, + [8192] = 7056, + [8193] = 7802, + [8194] = 7287, + [8195] = 7047, + [8196] = 7802, + [8197] = 8197, + [8198] = 7040, + [8199] = 7278, + [8200] = 7276, + [8201] = 7048, + [8202] = 7049, + [8203] = 8203, + [8204] = 7062, + [8205] = 7097, + [8206] = 7078, + [8207] = 7815, + [8208] = 7092, + [8209] = 7102, + [8210] = 8210, + [8211] = 7077, + [8212] = 7157, + [8213] = 7155, + [8214] = 7151, + [8215] = 8215, + [8216] = 8216, + [8217] = 7812, + [8218] = 8218, + [8219] = 8219, + [8220] = 7150, + [8221] = 7089, + [8222] = 7052, + [8223] = 8203, + [8224] = 8147, + [8225] = 7141, + [8226] = 8109, + [8227] = 7060, + [8228] = 8228, + [8229] = 7139, [8230] = 8230, - [8231] = 7039, - [8232] = 8232, - [8233] = 7703, - [8234] = 7017, - [8235] = 7016, - [8236] = 7015, - [8237] = 7048, - [8238] = 8085, - [8239] = 7066, - [8240] = 7149, - [8241] = 7137, - [8242] = 7701, - [8243] = 7700, - [8244] = 7006, - [8245] = 7088, - [8246] = 7086, - [8247] = 8083, - [8248] = 7083, - [8249] = 8082, - [8250] = 7077, - [8251] = 7027, - [8252] = 6990, - [8253] = 6995, - [8254] = 8254, - [8255] = 8255, - [8256] = 8256, - [8257] = 3000, - [8258] = 8258, - [8259] = 8259, - [8260] = 8260, + [8231] = 7976, + [8232] = 7118, + [8233] = 8233, + [8234] = 7071, + [8235] = 7476, + [8236] = 7830, + [8237] = 8215, + [8238] = 8216, + [8239] = 7032, + [8240] = 8218, + [8241] = 8219, + [8242] = 7052, + [8243] = 7137, + [8244] = 7064, + [8245] = 8203, + [8246] = 8147, + [8247] = 7136, + [8248] = 8109, + [8249] = 7066, + [8250] = 7074, + [8251] = 7976, + [8252] = 7076, + [8253] = 7089, + [8254] = 7043, + [8255] = 7476, + [8256] = 7830, + [8257] = 8215, + [8258] = 8216, + [8259] = 7084, + [8260] = 8218, + [8261] = 8219, + [8262] = 7078, + [8263] = 7098, + [8264] = 7032, + [8265] = 8203, + [8266] = 8147, + [8267] = 7118, + [8268] = 8109, + [8269] = 7054, + [8270] = 7113, + [8271] = 7976, + [8272] = 7068, + [8273] = 7811, + [8274] = 7112, + [8275] = 7476, + [8276] = 7830, + [8277] = 8215, + [8278] = 8216, + [8279] = 7109, + [8280] = 8218, + [8281] = 8219, + [8282] = 7119, + [8283] = 7040, + [8284] = 7830, + [8285] = 8215, + [8286] = 8216, + [8287] = 7101, + [8288] = 8218, + [8289] = 8219, + [8290] = 7122, + [8291] = 7032, + [8292] = 8215, + [8293] = 8216, + [8294] = 7118, + [8295] = 8218, + [8296] = 8219, + [8297] = 7074, + [8298] = 7144, + [8299] = 8215, + [8300] = 8216, + [8301] = 7113, + [8302] = 8218, + [8303] = 8219, + [8304] = 7043, + [8305] = 7112, + [8306] = 8215, + [8307] = 8216, + [8308] = 7112, + [8309] = 8218, + [8310] = 8219, + [8311] = 7126, + [8312] = 7080, + [8313] = 8215, + [8314] = 8216, + [8315] = 7100, + [8316] = 8218, + [8317] = 8219, + [8318] = 7081, + [8319] = 7099, + [8320] = 8215, + [8321] = 8216, + [8322] = 7136, + [8323] = 8218, + [8324] = 8219, + [8325] = 7052, + [8326] = 7096, + [8327] = 8215, + [8328] = 8216, + [8329] = 8329, + [8330] = 8218, + [8331] = 8219, + [8332] = 7054, + [8333] = 7056, + [8334] = 8219, + [8335] = 7060, + [8336] = 8219, + [8337] = 7137, + [8338] = 8219, + [8339] = 7062, + [8340] = 8219, + [8341] = 8219, + [8342] = 8219, + [8343] = 8219, + [8344] = 8219, + [8345] = 8219, + [8346] = 8219, + [8347] = 8219, + [8348] = 8219, + [8349] = 8219, + [8350] = 8219, + [8351] = 8219, + [8352] = 8219, + [8353] = 8219, + [8354] = 8219, + [8355] = 8219, + [8356] = 8219, + [8357] = 8219, + [8358] = 7090, + [8359] = 7034, + [8360] = 7035, + [8361] = 8361, + [8362] = 7139, + [8363] = 7141, + [8364] = 7052, + [8365] = 7060, + [8366] = 7270, + [8367] = 8367, + [8368] = 7928, + [8369] = 7738, + [8370] = 7553, + [8371] = 7510, + [8372] = 7091, + [8373] = 7145, + [8374] = 7928, + [8375] = 7738, + [8376] = 7553, + [8377] = 7510, + [8378] = 7805, + [8379] = 7180, + [8380] = 7928, + [8381] = 7738, + [8382] = 7553, + [8383] = 7510, + [8384] = 8384, + [8385] = 7064, + [8386] = 7040, + [8387] = 8219, + [8388] = 8388, + [8389] = 7066, + [8390] = 7074, + [8391] = 7076, + [8392] = 7180, + [8393] = 7040, + [8394] = 8394, + [8395] = 8395, + [8396] = 7150, + [8397] = 7088, + [8398] = 7345, + [8399] = 8399, + [8400] = 7089, + [8401] = 8401, + [8402] = 7804, + [8403] = 7087, + [8404] = 7086, + [8405] = 7085, + [8406] = 7068, + [8407] = 8218, + [8408] = 7040, + [8409] = 7802, + [8410] = 7801, + [8411] = 7151, + [8412] = 7153, + [8413] = 8216, + [8414] = 8215, + [8415] = 7064, + [8416] = 7066, + [8417] = 7155, + [8418] = 7157, + [8419] = 8419, + [8420] = 8420, + [8421] = 8421, + [8422] = 3057, + [8423] = 8423, + [8424] = 8424, + [8425] = 8425, }; static TSCharacterRange sym__non_escape_char_character_set_1[] = { @@ -12019,79 +12191,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 463, - '#', 439, - '$', 506, - '%', 481, - '&', 381, - '\'', 442, - '(', 428, - ')', 369, - '*', 432, - '+', 489, - ',', 370, - '-', 489, - '.', 551, + '!', 488, + '"', 464, + '#', 440, + '$', 507, + '%', 482, + '&', 382, + '\'', 443, + '(', 429, + ')', 370, + '*', 433, + '+', 490, + ',', 371, + '-', 490, + '.', 552, '/', 200, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 443, - '>', 421, - '?', 372, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 444, + '>', 422, + '?', 373, '@', 130, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 384, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 385, '\\', 2, - ']', 388, - '^', 441, + ']', 389, + '^', 442, '`', 212, - 'a', 586, - 'd', 584, - 'f', 544, - 'i', 581, - 'l', 528, - 'm', 548, - 'n', 536, - 'r', 576, - 's', 523, - 'u', 531, - 'w', 577, - 'y', 518, - '{', 452, - '|', 378, - '}', 393, - '~', 485, - 'E', 556, - 'e', 556, - 'G', 546, - 'I', 546, - 'N', 546, - 'Q', 546, - 'R', 546, - 'Z', 546, + 'a', 587, + 'd', 585, + 'f', 545, + 'i', 582, + 'l', 529, + 'm', 549, + 'n', 537, + 'r', 577, + 's', 524, + 'u', 532, + 'w', 578, + 'y', 519, + '{', 453, + '|', 379, + '}', 394, + '~', 486, + 'E', 557, + 'e', 557, + 'G', 547, + 'I', 547, + 'N', 547, + 'Q', 547, + 'R', 547, + 'Z', 547, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(323); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(324); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '#') ADVANCE(602); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '#') ADVANCE(603); if (lookahead == '(') ADVANCE(196); if (lookahead == '/') ADVANCE(200); - if (lookahead == ';') ADVANCE(383); - if (lookahead == '\\') SKIP(43); + if (lookahead == ';') ADVANCE(384); + if (lookahead == '\\') SKIP(44); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || @@ -12101,25 +12273,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2: if (lookahead == '\r') SKIP(230); if (lookahead == 'n') SKIP(58); - if (lookahead == 'u') ADVANCE(311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); + if (lookahead == 'u') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); END_STATE(); case 3: ADVANCE_MAP( - '\r', 445, - 'n', 444, - 'u', 445, - '"', 444, - '\'', 444, - 'a', 444, - 'b', 444, - 'f', 444, - 'r', 444, - 't', 444, - 'v', 444, + '\r', 446, + 'n', 445, + 'u', 446, + '"', 445, + '\'', 445, + 'a', 445, + 'b', 445, + 'f', 445, + 'r', 445, + 't', 445, + 'v', 445, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); - if (lookahead != 0) ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(446); + if (lookahead != 0) ADVANCE(446); END_STATE(); case 4: if (lookahead == '\r') SKIP(263); @@ -12130,182 +12302,182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(126); END_STATE(); case 6: - if (lookahead == '\r') SKIP(271); - if (lookahead == 'n') SKIP(122); - END_STATE(); - case 7: if (lookahead == '\r') SKIP(265); if (lookahead == 'n') SKIP(118); END_STATE(); + case 7: + if (lookahead == '\r') SKIP(271); + if (lookahead == 'n') SKIP(122); + END_STATE(); case 8: + if (lookahead == '\r') SKIP(275); + if (lookahead == 'n') SKIP(123); + END_STATE(); + case 9: if (lookahead == '\r') SKIP(232); if (lookahead == 'n') SKIP(136); END_STATE(); - case 9: + case 10: if (lookahead == '\r') SKIP(233); if (lookahead == 'n') SKIP(108); END_STATE(); - case 10: + case 11: if (lookahead == '\r') SKIP(270); if (lookahead == 'n') SKIP(110); END_STATE(); - case 11: + case 12: if (lookahead == '\r') SKIP(266); if (lookahead == 'n') SKIP(104); END_STATE(); - case 12: + case 13: if (lookahead == '\r') SKIP(267); if (lookahead == 'n') SKIP(106); END_STATE(); - case 13: + case 14: if (lookahead == '\r') SKIP(272); if (lookahead == 'n') SKIP(105); END_STATE(); - case 14: - if (lookahead == '\r') SKIP(276); - if (lookahead == 'n') SKIP(107); - END_STATE(); case 15: if (lookahead == '\r') SKIP(268); if (lookahead == 'n') SKIP(103); END_STATE(); case 16: - if (lookahead == '\r') SKIP(274); - if (lookahead == 'n') SKIP(111); + if (lookahead == '\r') SKIP(276); + if (lookahead == 'n') SKIP(107); END_STATE(); case 17: - if (lookahead == '\r') SKIP(234); - if (lookahead == 'n') SKIP(142); + if (lookahead == '\r') SKIP(274); + if (lookahead == 'n') SKIP(111); END_STATE(); case 18: - if (lookahead == '\r') SKIP(235); + if (lookahead == '\r') SKIP(234); if (lookahead == 'n') SKIP(150); END_STATE(); case 19: + if (lookahead == '\r') SKIP(235); + if (lookahead == 'n') SKIP(142); + END_STATE(); + case 20: if (lookahead == '\r') SKIP(236); if (lookahead == 'n') SKIP(162); END_STATE(); - case 20: + case 21: if (lookahead == '\r') SKIP(237); if (lookahead == 'n') SKIP(156); END_STATE(); - case 21: + case 22: if (lookahead == '\r') SKIP(238); if (lookahead == 'n') SKIP(141); END_STATE(); - case 22: + case 23: if (lookahead == '\r') SKIP(239); if (lookahead == 'n') SKIP(169); END_STATE(); - case 23: + case 24: if (lookahead == '\r') SKIP(240); if (lookahead == 'n') SKIP(176); END_STATE(); - case 24: + case 25: if (lookahead == '\r') SKIP(241); if (lookahead == 'n') SKIP(147); END_STATE(); - case 25: + case 26: if (lookahead == '\r') SKIP(242); if (lookahead == 'n') SKIP(155); END_STATE(); - case 26: + case 27: if (lookahead == '\r') SKIP(243); if (lookahead == 'n') SKIP(161); END_STATE(); - case 27: + case 28: if (lookahead == '\r') SKIP(244); if (lookahead == 'n') SKIP(148); END_STATE(); - case 28: + case 29: if (lookahead == '\r') SKIP(245); if (lookahead == 'n') SKIP(149); END_STATE(); - case 29: + case 30: if (lookahead == '\r') SKIP(246); if (lookahead == 'n') SKIP(131); END_STATE(); - case 30: - if (lookahead == '\r') SKIP(247); - if (lookahead == 'n') SKIP(167); - END_STATE(); case 31: - if (lookahead == '\r') SKIP(248); + if (lookahead == '\r') SKIP(247); if (lookahead == 'n') SKIP(188); END_STATE(); case 32: + if (lookahead == '\r') SKIP(248); + if (lookahead == 'n') SKIP(167); + END_STATE(); + case 33: if (lookahead == '\r') SKIP(249); if (lookahead == 'n') SKIP(168); END_STATE(); - case 33: + case 34: if (lookahead == '\r') SKIP(250); if (lookahead == 'n') SKIP(181); END_STATE(); - case 34: + case 35: if (lookahead == '\r') SKIP(253); if (lookahead == 'n') SKIP(189); END_STATE(); - case 35: + case 36: if (lookahead == '\r') SKIP(254); if (lookahead == 'n') SKIP(184); END_STATE(); - case 36: + case 37: if (lookahead == '\r') SKIP(255); if (lookahead == 'n') SKIP(187); END_STATE(); - case 37: + case 38: if (lookahead == '\r') SKIP(256); if (lookahead == 'n') SKIP(178); END_STATE(); - case 38: + case 39: if (lookahead == '\r') SKIP(257); if (lookahead == 'n') SKIP(179); END_STATE(); - case 39: + case 40: if (lookahead == '\r') SKIP(258); if (lookahead == 'n') SKIP(177); END_STATE(); - case 40: + case 41: if (lookahead == '\r') SKIP(259); if (lookahead == 'n') SKIP(185); END_STATE(); - case 41: + case 42: if (lookahead == '\r') SKIP(260); if (lookahead == 'n') SKIP(182); END_STATE(); - case 42: + case 43: if (lookahead == '\r') SKIP(261); if (lookahead == 'n') SKIP(132); - if (lookahead == 'u') ADVANCE(311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); + if (lookahead == 'u') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); END_STATE(); - case 43: + case 44: if (lookahead == '\r') SKIP(262); if (lookahead == 'n') SKIP(1); END_STATE(); - case 44: + case 45: if (lookahead == '\r') SKIP(269); if (lookahead == 'n') SKIP(112); END_STATE(); - case 45: - if (lookahead == '\r') SKIP(275); - if (lookahead == 'n') SKIP(123); - END_STATE(); case 46: - if (lookahead == '\r') SKIP(273); - if (lookahead == 'n') SKIP(113); - END_STATE(); - case 47: if (lookahead == '\r') SKIP(277); if (lookahead == 'n') SKIP(125); END_STATE(); + case 47: + if (lookahead == '\r') SKIP(273); + if (lookahead == 'n') SKIP(113); + END_STATE(); case 48: if (lookahead == '\r') SKIP(278); - if (lookahead == 'n') SKIP(120); + if (lookahead == 'n') SKIP(114); END_STATE(); case 49: if (lookahead == '\r') SKIP(279); - if (lookahead == 'n') SKIP(114); + if (lookahead == 'n') SKIP(120); END_STATE(); case 50: if (lookahead == '\r') SKIP(280); @@ -12317,27 +12489,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: if (lookahead == '\r') SKIP(282); - if (lookahead == 'n') SKIP(109); + if (lookahead == 'n') SKIP(127); END_STATE(); case 53: if (lookahead == '\r') SKIP(283); - if (lookahead == 'n') SKIP(127); + if (lookahead == 'n') SKIP(109); END_STATE(); case 54: if (lookahead == '\r') SKIP(284); - if (lookahead == 'n') SKIP(115); + if (lookahead == 'n') SKIP(121); END_STATE(); case 55: if (lookahead == '\r') SKIP(285); - if (lookahead == 'n') SKIP(117); + if (lookahead == 'n') SKIP(115); END_STATE(); case 56: if (lookahead == '\r') SKIP(286); - if (lookahead == 'n') SKIP(121); + if (lookahead == 'n') SKIP(117); END_STATE(); case 57: if (lookahead == ' ') ADVANCE(193); - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(194); if (lookahead == '!' || lookahead == '%' || @@ -12350,3459 +12522,3459 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 58: ADVANCE_MAP( - '!', 487, - '"', 454, - '#', 439, - '$', 506, - '%', 481, - '&', 381, - '\'', 442, - '(', 366, - ')', 369, - '*', 431, - '+', 471, - ',', 370, - '-', 473, - '.', 403, + '!', 488, + '"', 455, + '#', 440, + '$', 507, + '%', 482, + '&', 382, + '\'', 443, + '(', 367, + ')', 370, + '*', 432, + '+', 472, + ',', 371, + '-', 474, + '.', 404, '/', 200, - '0', 508, - ':', 356, - ';', 383, - '<', 435, - '=', 443, - '>', 421, - '?', 372, + '0', 509, + ':', 357, + ';', 384, + '<', 436, + '=', 444, + '>', 422, + '?', 373, '@', 130, - '[', 384, + '[', 385, '\\', 2, - ']', 388, - '^', 441, + ']', 389, + '^', 442, '`', 212, - 'a', 586, - 'd', 584, - 'i', 581, - 'l', 572, - 'm', 569, - 'r', 576, - 'u', 587, - 'w', 577, - 'y', 579, - '{', 392, - '|', 378, - '}', 393, - '~', 485, + 'a', 587, + 'd', 585, + 'i', 582, + 'l', 573, + 'm', 570, + 'r', 577, + 'u', 588, + 'w', 578, + 'y', 580, + '{', 393, + '|', 379, + '}', 394, + '~', 486, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(58); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 59: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 387, ); if (lookahead == '\\') SKIP(15); - if (lookahead == '^') ADVANCE(500); + if (lookahead == '^') ADVANCE(501); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(103); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 60: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 387, ); - if (lookahead == '\\') SKIP(11); + if (lookahead == '\\') SKIP(12); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 61: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + '[', 387, ); - if (lookahead == '\\') SKIP(13); + if (lookahead == '\\') SKIP(14); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 62: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + '[', 387, ); - if (lookahead == '\\') SKIP(12); + if (lookahead == '\\') SKIP(13); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 63: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 387, ); - if (lookahead == '\\') SKIP(14); + if (lookahead == '\\') SKIP(16); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(107); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 64: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 551, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 552, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(9); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(10); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(108); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 65: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(51); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(124); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 66: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(10); + if (lookahead == '\\') SKIP(11); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 67: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(44); + if (lookahead == '\\') SKIP(45); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 68: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(47); + if (lookahead == '\\') SKIP(46); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(125); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 69: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(48); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(114); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 70: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); if (lookahead == '\\') SKIP(50); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(116); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 71: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 443, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 444, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(52); + if (lookahead == '\\') SKIP(53); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(109); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 72: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(10); + if (lookahead == '\\') SKIP(11); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 73: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(10); + if (lookahead == '\\') SKIP(11); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 74: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(10); + if (lookahead == '\\') SKIP(11); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 75: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(16); + if (lookahead == '\\') SKIP(17); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(111); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 76: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(44); + if (lookahead == '\\') SKIP(45); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 77: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(44); + if (lookahead == '\\') SKIP(45); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 78: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(44); + if (lookahead == '\\') SKIP(45); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 79: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(46); + if (lookahead == '\\') SKIP(47); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(113); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 80: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(48); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(114); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 81: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(48); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(114); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 82: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(48); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(114); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 83: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + '[', 388, ); - if (lookahead == '\\') SKIP(54); + if (lookahead == '\\') SKIP(55); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(115); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 84: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + 'L', 541, + 'U', 569, + '[', 388, ); if (lookahead == '\\') SKIP(50); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(116); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 85: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + 'M', 550, + '[', 388, ); if (lookahead == '\\') SKIP(50); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(116); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 86: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + 'M', 550, + '[', 388, ); if (lookahead == '\\') SKIP(50); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(116); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 87: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + '[', 388, ); - if (lookahead == '\\') SKIP(55); + if (lookahead == '\\') SKIP(56); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(117); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 88: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 552, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 553, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 89: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 552, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 553, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(48); + if (lookahead == '\\') SKIP(49); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 90: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(7); + if (lookahead == '\\') SKIP(6); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(118); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 91: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'U', 569, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 92: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'L', 540, - 'U', 568, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(48); + if (lookahead == '\\') SKIP(49); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 93: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 94: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 95: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(48); + if (lookahead == '\\') SKIP(49); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 96: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - 'M', 549, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(48); + if (lookahead == '\\') SKIP(49); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 97: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(4); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 98: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 99: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(53); + if (lookahead == '\\') SKIP(52); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 100: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(56); + if (lookahead == '\\') SKIP(54); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(121); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 101: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 490, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 491, + '[', 388, ); - if (lookahead == '\\') SKIP(6); + if (lookahead == '\\') SKIP(7); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 102: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '?', 372, - '@', 491, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '?', 373, + '@', 492, + '[', 388, ); - if (lookahead == '\\') SKIP(45); + if (lookahead == '\\') SKIP(8); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(123); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 103: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, + '-', 476, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 387, ); if (lookahead == '\\') SKIP(15); - if (lookahead == '^') ADVANCE(500); + if (lookahead == '^') ADVANCE(501); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(103); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 104: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, + '-', 476, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '?', 373, + '@', 493, + '[', 387, ); - if (lookahead == '\\') SKIP(11); + if (lookahead == '\\') SKIP(12); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 105: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '?', 372, - '@', 490, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, + '-', 476, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '?', 373, + '@', 491, + '[', 387, ); - if (lookahead == '\\') SKIP(13); + if (lookahead == '\\') SKIP(14); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 106: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '?', 372, - '@', 491, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, + '-', 476, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '?', 373, + '@', 492, + '[', 387, ); - if (lookahead == '\\') SKIP(12); + if (lookahead == '\\') SKIP(13); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 107: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '?', 372, - '@', 492, - '[', 386, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, + '-', 476, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '?', 373, + '@', 493, + '[', 387, ); - if (lookahead == '\\') SKIP(14); + if (lookahead == '\\') SKIP(16); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(107); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 108: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(9); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(10); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(108); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 109: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 443, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 444, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(52); + if (lookahead == '\\') SKIP(53); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(109); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 110: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(10); + if (lookahead == '\\') SKIP(11); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 111: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(16); + if (lookahead == '\\') SKIP(17); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(111); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 112: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(44); + if (lookahead == '\\') SKIP(45); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(112); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 113: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(46); + if (lookahead == '\\') SKIP(47); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(113); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 114: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 490, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 491, + '[', 388, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(48); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(114); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 115: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 490, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 491, + '[', 388, ); - if (lookahead == '\\') SKIP(54); + if (lookahead == '\\') SKIP(55); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(115); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 116: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 491, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 492, + '[', 388, ); if (lookahead == '\\') SKIP(50); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(116); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 117: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 491, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 492, + '[', 388, ); - if (lookahead == '\\') SKIP(55); + if (lookahead == '\\') SKIP(56); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(117); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 118: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 422, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 423, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(7); + if (lookahead == '\\') SKIP(6); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(118); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 119: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(4); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 120: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(48); + if (lookahead == '\\') SKIP(49); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 121: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(56); + if (lookahead == '\\') SKIP(54); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(121); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 122: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 490, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 491, + '[', 388, ); - if (lookahead == '\\') SKIP(6); + if (lookahead == '\\') SKIP(7); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 123: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 491, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 492, + '[', 388, ); - if (lookahead == '\\') SKIP(45); + if (lookahead == '\\') SKIP(8); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(123); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 124: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 475, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 476, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(51); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(124); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 125: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 475, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 476, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(47); + if (lookahead == '\\') SKIP(46); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(125); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 126: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 475, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 476, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); if (lookahead == '\\') SKIP(5); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 127: ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 601, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 475, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '?', 372, - '@', 492, - '[', 387, + '!', 488, + '"', 456, + '#', 602, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 476, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '?', 373, + '@', 493, + '[', 388, ); - if (lookahead == '\\') SKIP(53); + if (lookahead == '\\') SKIP(52); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 128: - if (lookahead == '"') ADVANCE(453); + if (lookahead == '"') ADVANCE(454); END_STATE(); case 129: - if (lookahead == '"') ADVANCE(460); + if (lookahead == '"') ADVANCE(461); END_STATE(); case 130: - if (lookahead == '"') ADVANCE(460); - if (lookahead == '>') ADVANCE(396); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '>') ADVANCE(397); if (lookahead == '@') ADVANCE(204); END_STATE(); case 131: ADVANCE_MAP( - '"', 454, - '#', 599, - '\'', 442, - '(', 368, - '*', 431, - '+', 296, - ',', 370, + '"', 455, + '#', 600, + '\'', 443, + '(', 369, + '*', 432, + '+', 297, + ',', 371, '-', 206, - '.', 402, + '.', 403, '/', 200, - ':', 360, - ';', 383, - '<', 434, - '=', 443, - '>', 421, + ':', 361, + ';', 384, + '<', 435, + '=', 444, + '>', 211, '@', 129, '[', 202, ); - if (lookahead == '\\') SKIP(29); - if (lookahead == ']') ADVANCE(388); - if (lookahead == '^') ADVANCE(441); + if (lookahead == '\\') SKIP(30); + if (lookahead == ']') ADVANCE(389); + if (lookahead == '^') ADVANCE(442); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'l') ADVANCE(572); + if (lookahead == 'l') ADVANCE(573); if (lookahead == '|') ADVANCE(210); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 132: - if (lookahead == '"') ADVANCE(454); - if (lookahead == '#') ADVANCE(602); + if (lookahead == '"') ADVANCE(455); + if (lookahead == '#') ADVANCE(603); if (lookahead == '(') ADVANCE(196); if (lookahead == '/') ADVANCE(200); - if (lookahead == ';') ADVANCE(383); - if (lookahead == '\\') ADVANCE(42); + if (lookahead == ';') ADVANCE(384); + if (lookahead == '\\') ADVANCE(43); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || @@ -15810,29 +15982,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(132); END_STATE(); case 133: - if (lookahead == '"') ADVANCE(454); - if (lookahead == '#') ADVANCE(449); - if (lookahead == '(') ADVANCE(449); - if (lookahead == '/') ADVANCE(449); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '"') ADVANCE(455); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '(') ADVANCE(450); + if (lookahead == '/') ADVANCE(450); + if (lookahead == ';') ADVANCE(450); if (lookahead == '\\') ADVANCE(3); - if (lookahead == '{') ADVANCE(452); + if (lookahead == '{') ADVANCE(453); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r')) SKIP(132); if (lookahead == '\n' || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(449); + lookahead == 0xfeff) ADVANCE(450); if (lookahead != 0 && - (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(449); + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(450); END_STATE(); case 134: - if (lookahead == '"') ADVANCE(454); - if (lookahead == '#') ADVANCE(449); - if (lookahead == '(') ADVANCE(449); - if (lookahead == '/') ADVANCE(449); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '"') ADVANCE(455); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '(') ADVANCE(450); + if (lookahead == '/') ADVANCE(450); + if (lookahead == ';') ADVANCE(450); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r')) SKIP(132); @@ -15840,1327 +16012,1328 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(449); + lookahead == 0xfeff) ADVANCE(450); if (lookahead != 0 && - (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(449); + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(450); END_STATE(); case 135: - if (lookahead == '"') ADVANCE(465); + if (lookahead == '"') ADVANCE(466); END_STATE(); case 136: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '*', 431, - '+', 471, - '-', 473, - '.', 402, + '(', 367, + '*', 432, + '+', 472, + '-', 474, + '.', 403, '/', 200, - '0', 508, + '0', 509, ':', 203, - ';', 383, - '<', 437, + ';', 384, + '<', 438, '@', 129, - '[', 386, + '[', 387, ); - if (lookahead == '\\') SKIP(8); + if (lookahead == '\\') SKIP(9); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(136); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 137: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, - ',', 370, - '-', 474, - '.', 550, + '(', 367, + '+', 472, + ',', 371, + '-', 475, + '.', 551, '/', 200, - '0', 508, - ';', 383, + '0', 509, + ';', 384, '<', 207, - '>', 421, + '>', 422, '@', 129, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 387, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(21); + if (lookahead == '\\') SKIP(22); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(141); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 138: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, - ',', 370, - '-', 474, + '(', 367, + '+', 472, + ',', 371, + '-', 475, '/', 200, - '0', 508, - ';', 383, + '0', 509, + ';', 384, '<', 207, - '>', 421, + '>', 422, '@', 129, - 'L', 540, - 'U', 568, - '[', 387, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(21); + if (lookahead == '\\') SKIP(22); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(141); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 139: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, - ',', 370, - '-', 474, + '(', 367, + '+', 472, + ',', 371, + '-', 475, '/', 200, - '0', 508, - ';', 383, + '0', 509, + ';', 384, '<', 207, - '>', 421, + '>', 422, '@', 129, - 'M', 549, - '[', 387, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(21); + if (lookahead == '\\') SKIP(22); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(141); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 140: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, - ',', 370, - '-', 474, + '(', 367, + '+', 472, + ',', 371, + '-', 475, '/', 200, - '0', 508, - ';', 383, + '0', 509, + ';', 384, '<', 207, - '>', 421, + '>', 422, '@', 129, - 'M', 549, - '[', 387, + 'M', 550, + '[', 388, ); - if (lookahead == '\\') SKIP(21); + if (lookahead == '\\') SKIP(22); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(141); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 141: ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, - ',', 370, - '-', 474, + '(', 367, + '+', 472, + ',', 371, + '-', 475, '/', 200, - '0', 508, - ';', 383, + '0', 509, + ';', 384, '<', 207, - '>', 421, + '>', 422, '@', 129, - '[', 387, + '[', 388, ); - if (lookahead == '\\') SKIP(21); + if (lookahead == '\\') SKIP(22); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(141); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 142: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, - '.', 402, + '(', 367, + ')', 370, + ',', 371, + '.', 403, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(17); + if (lookahead == '\\') SKIP(19); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(142); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 143: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, - '.', 550, + '(', 367, + ')', 370, + ',', 371, + '.', 551, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(25); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(147); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 144: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, + '(', 367, + ')', 370, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(25); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(147); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 145: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, + '(', 367, + ')', 370, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(25); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(147); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 146: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, + '(', 367, + ')', 370, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(25); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(147); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 147: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ')', 369, - ',', 370, + '(', 367, + ')', 370, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(24); + if (lookahead == '\\') SKIP(25); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(147); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 148: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '*', 431, - '+', 296, - ',', 370, + '(', 367, + '*', 432, + '+', 297, + ',', 371, '-', 206, - '.', 402, + '.', 403, '/', 200, - '0', 508, - ':', 358, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 359, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 384, + '[', 385, ); - if (lookahead == '\\') SKIP(27); + if (lookahead == '\\') SKIP(28); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(148); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 149: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '*', 431, - '+', 296, - ',', 370, + '(', 367, + '*', 432, + '+', 297, + ',', 371, '-', 206, - '.', 402, + '.', 403, '/', 200, - '0', 508, - ':', 358, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 359, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 384, + '[', 385, ); - if (lookahead == '\\') SKIP(28); + if (lookahead == '\\') SKIP(29); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(149); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 150: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, - '.', 402, + '.', 403, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); if (lookahead == '\\') SKIP(18); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(150); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 151: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, - '.', 550, + '.', 551, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(25); + if (lookahead == '\\') SKIP(26); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 152: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(25); + if (lookahead == '\\') SKIP(26); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 153: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(25); + if (lookahead == '\\') SKIP(26); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 154: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(25); + if (lookahead == '\\') SKIP(26); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 155: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - '+', 296, - ',', 370, + '(', 367, + '+', 297, + ',', 371, '-', 206, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(25); + if (lookahead == '\\') SKIP(26); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 156: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, - '.', 402, + '(', 367, + ',', 371, + '.', 403, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '=', 351, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(20); + if (lookahead == '\\') SKIP(21); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(156); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 157: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, - '.', 550, + '(', 367, + ',', 371, + '.', 551, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(26); + if (lookahead == '\\') SKIP(27); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(161); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 158: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, + '(', 367, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - 'L', 540, - 'U', 568, - '[', 385, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(26); + if (lookahead == '\\') SKIP(27); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(161); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 159: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, + '(', 367, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(26); + if (lookahead == '\\') SKIP(27); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(161); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 160: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, + '(', 367, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(26); + if (lookahead == '\\') SKIP(27); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(161); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 161: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, - '&', 380, + '&', 381, '\'', 190, - '(', 366, - ',', 370, + '(', 367, + ',', 371, '/', 200, - '0', 508, - ':', 359, - ';', 383, - '?', 371, + '0', 509, + ':', 360, + ';', 384, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(26); + if (lookahead == '\\') SKIP(27); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(296); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(161); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 162: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 366, - ')', 369, - '.', 402, + '(', 367, + ')', 370, + '.', 403, '/', 200, - '0', 508, - ':', 361, - ';', 383, - '<', 434, - '=', 351, - '?', 371, + '0', 509, + ':', 362, + ';', 384, + '<', 435, + '=', 352, + '?', 372, '@', 129, - '[', 385, + '[', 386, ); - if (lookahead == '\\') SKIP(19); + if (lookahead == '\\') SKIP(20); if (lookahead == '`') ADVANCE(212); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (lookahead == '+' || - lookahead == '-') ADVANCE(296); + lookahead == '-') ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 163: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, + '(', 368, '*', 191, - '+', 296, + '+', 297, '-', 206, - '.', 550, + '.', 551, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - 'L', 540, - 'U', 568, - '[', 387, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(30); + if (lookahead == '\\') SKIP(32); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 164: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, - '+', 296, + '(', 368, + '+', 297, '-', 206, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - 'L', 540, - 'U', 568, - '[', 387, + 'L', 541, + 'U', 569, + '[', 388, ); - if (lookahead == '\\') SKIP(32); + if (lookahead == '\\') SKIP(33); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 165: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, - '+', 296, + '(', 368, + '+', 297, '-', 206, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - '[', 387, + '[', 388, ); - if (lookahead == '\\') SKIP(30); + if (lookahead == '\\') SKIP(32); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == '{') ADVANCE(391); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == '{') ADVANCE(392); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == 'e') ADVANCE(557); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 166: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, - '+', 296, + '(', 368, + '+', 297, '-', 206, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - '[', 387, + '[', 388, ); - if (lookahead == '\\') SKIP(30); + if (lookahead == '\\') SKIP(32); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == '{') ADVANCE(391); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == '{') ADVANCE(392); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(549); + lookahead == 'm') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 167: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, - '+', 296, + '(', 368, + '+', 297, '-', 206, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - '[', 387, + '[', 388, ); - if (lookahead == '\\') SKIP(30); + if (lookahead == '\\') SKIP(32); if (lookahead == '`') ADVANCE(212); - if (lookahead == '{') ADVANCE(391); + if (lookahead == '{') ADVANCE(392); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 168: ADVANCE_MAP( - '"', 455, - '#', 602, + '"', 456, + '#', 603, '$', 128, '\'', 190, - '(', 367, - '+', 296, + '(', 368, + '+', 297, '-', 206, '/', 200, - '0', 508, - ':', 354, - ';', 383, - '=', 351, + '0', 509, + ':', 355, + ';', 384, + '=', 352, '@', 129, - '[', 387, + '[', 388, ); - if (lookahead == '\\') SKIP(32); + if (lookahead == '\\') SKIP(33); if (lookahead == '`') ADVANCE(212); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 169: ADVANCE_MAP( - '"', 455, - '#', 440, + '"', 456, + '#', 441, '$', 128, - '\'', 442, - '(', 367, + '\'', 443, + '(', 368, '/', 200, - '0', 508, - ';', 383, - '>', 421, + '0', 509, + ';', 384, + '>', 422, '@', 129, ); - if (lookahead == '\\') SKIP(22); - if (lookahead == '^') ADVANCE(441); + if (lookahead == '\\') SKIP(23); + if (lookahead == '^') ADVANCE(442); if (lookahead == '`') ADVANCE(212); + if (lookahead == '{') ADVANCE(294); if (lookahead == '+' || - lookahead == '-') ADVANCE(296); + lookahead == '-') ADVANCE(297); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(169); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 170: - if (lookahead == '"') ADVANCE(466); + if (lookahead == '"') ADVANCE(467); END_STATE(); case 171: - if (lookahead == '"') ADVANCE(456); - if (lookahead == '#') ADVANCE(449); - if (lookahead == '(') ADVANCE(449); - if (lookahead == '/') ADVANCE(449); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '"') ADVANCE(457); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '(') ADVANCE(450); + if (lookahead == '/') ADVANCE(450); + if (lookahead == ';') ADVANCE(450); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r')) SKIP(132); @@ -17168,54 +17341,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(449); + lookahead == 0xfeff) ADVANCE(450); if (lookahead != 0 && - (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(449); + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(450); END_STATE(); case 172: - if (lookahead == '"') ADVANCE(462); - if (lookahead == '#') ADVANCE(449); - if (lookahead == '(') ADVANCE(449); - if (lookahead == '/') ADVANCE(449); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '\\') ADVANCE(458); + if (lookahead == '"') ADVANCE(463); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '(') ADVANCE(450); + if (lookahead == '/') ADVANCE(450); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '\\') ADVANCE(459); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r')) SKIP(175); if (lookahead == '\n' || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(449); + lookahead == 0xfeff) ADVANCE(450); if (lookahead != 0 && - (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(449); + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(450); END_STATE(); case 173: - if (lookahead == '"') ADVANCE(459); + if (lookahead == '"') ADVANCE(460); END_STATE(); case 174: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(449); - if (lookahead == '(') ADVANCE(449); - if (lookahead == '/') ADVANCE(449); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '\\') ADVANCE(458); + if (lookahead == '"') ADVANCE(462); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '(') ADVANCE(450); + if (lookahead == '/') ADVANCE(450); + if (lookahead == ';') ADVANCE(450); + if (lookahead == '\\') ADVANCE(459); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r')) SKIP(175); if (lookahead == '\n' || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(449); + lookahead == 0xfeff) ADVANCE(450); if (lookahead != 0 && - (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(449); + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(450); END_STATE(); case 175: if (lookahead == '"') ADVANCE(173); - if (lookahead == '#') ADVANCE(602); + if (lookahead == '#') ADVANCE(603); if (lookahead == '(') ADVANCE(196); if (lookahead == '/') ADVANCE(200); - if (lookahead == ';') ADVANCE(383); - if (lookahead == '\\') ADVANCE(457); + if (lookahead == ';') ADVANCE(384); + if (lookahead == '\\') ADVANCE(458); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || @@ -17223,213 +17396,213 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(175); END_STATE(); case 176: - if (lookahead == '#') ADVANCE(439); - if (lookahead == '\'') ADVANCE(442); - if (lookahead == '(') ADVANCE(368); + if (lookahead == '#') ADVANCE(440); + if (lookahead == '\'') ADVANCE(443); + if (lookahead == '(') ADVANCE(369); if (lookahead == '/') ADVANCE(200); - if (lookahead == ';') ADVANCE(383); + if (lookahead == ';') ADVANCE(384); if (lookahead == '[') ADVANCE(201); - if (lookahead == '\\') SKIP(23); - if (lookahead == '^') ADVANCE(441); + if (lookahead == '\\') SKIP(24); + if (lookahead == '^') ADVANCE(442); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(176); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 177: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - '*', 431, - ',', 370, + ')', 370, + '*', 432, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 357, - ';', 383, - '<', 434, - '=', 351, - '>', 421, + ':', 358, + ';', 384, + '<', 435, + '=', 352, + '>', 422, '[', 209, ); - if (lookahead == '\\') SKIP(39); + if (lookahead == '\\') SKIP(40); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(177); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 178: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - '*', 431, - ',', 370, + ')', 370, + '*', 432, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 357, - ';', 383, - '<', 434, - '=', 351, + ':', 358, + ';', 384, + '<', 435, + '=', 352, '[', 209, ); - if (lookahead == '\\') SKIP(37); + if (lookahead == '\\') SKIP(38); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(178); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 179: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - '*', 431, - ',', 370, + ')', 370, + '*', 432, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 357, - ';', 383, - '<', 434, - '=', 351, + ':', 358, + ';', 384, + '<', 435, + '=', 352, '[', 209, ); - if (lookahead == '\\') SKIP(38); + if (lookahead == '\\') SKIP(39); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(179); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 180: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - '+', 296, - ',', 370, + ')', 370, + '+', 297, + ',', 371, '-', 206, - '.', 550, + '.', 551, '/', 200, - ':', 355, - ';', 383, - '<', 434, - '=', 351, - '>', 421, - 'L', 539, + ':', 356, + ';', 384, + '<', 435, + '=', 352, + '>', 422, + 'L', 540, 'U', 208, ); - if (lookahead == '\\') SKIP(33); + if (lookahead == '\\') SKIP(34); if (lookahead == 'a') ADVANCE(289); - if (lookahead == 'f') ADVANCE(543); + if (lookahead == 'f') ADVANCE(544); if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'l') ADVANCE(527); - if (lookahead == 'n') ADVANCE(535); - if (lookahead == 's') ADVANCE(522); - if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'n') ADVANCE(536); + if (lookahead == 's') ADVANCE(523); + if (lookahead == 'u') ADVANCE(534); if (lookahead == 'w') ADVANCE(226); - if (lookahead == 'y') ADVANCE(517); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'y') ADVANCE(518); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(555); + lookahead == 'e') ADVANCE(556); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(547); + lookahead == 'm') ADVANCE(548); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(545); + lookahead == 'Z') ADVANCE(546); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 181: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - '+', 296, - ',', 370, + ')', 370, + '+', 297, + ',', 371, '-', 206, '/', 200, - ':', 355, - ';', 383, - '<', 434, - '=', 351, - '>', 421, + ':', 356, + ';', 384, + '<', 435, + '=', 352, + '>', 422, ); - if (lookahead == '\\') SKIP(33); + if (lookahead == '\\') SKIP(34); if (lookahead == 'a') ADVANCE(289); if (lookahead == 'i') ADVANCE(251); if (lookahead == 'w') ADVANCE(226); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 182: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - ',', 370, + ')', 370, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 355, - ';', 383, - '<', 434, - '=', 351, + ':', 356, + ';', 384, + '<', 435, + '=', 352, ); - if (lookahead == '\\') SKIP(41); + if (lookahead == '\\') SKIP(42); if (lookahead == 'a') ADVANCE(289); if (lookahead == 'i') ADVANCE(251); if (lookahead == 'w') ADVANCE(226); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || @@ -17438,204 +17611,205 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 183: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - ',', 370, + ')', 370, + ',', 371, '-', 205, '/', 200, - ':', 355, - ';', 383, - '<', 434, - '=', 351, - 'L', 540, - 'U', 568, + ':', 356, + ';', 384, + '<', 435, + '=', 352, + 'L', 541, + 'U', 569, ); - if (lookahead == '\\') SKIP(35); + if (lookahead == '\\') SKIP(36); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(184); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 184: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ')', 369, - ',', 370, + ')', 370, + ',', 371, '-', 205, '/', 200, - ':', 355, - ';', 383, - '<', 434, - '=', 351, + ':', 356, + ';', 384, + '<', 435, + '=', 352, ); - if (lookahead == '\\') SKIP(35); + if (lookahead == '\\') SKIP(36); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == 'w') ADVANCE(577); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'w') ADVANCE(578); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(184); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 185: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - '*', 431, - ',', 370, + '*', 432, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 357, - ';', 383, - '<', 434, - '=', 443, + ':', 358, + ';', 384, + '<', 435, + '=', 444, '[', 209, ); - if (lookahead == '\\') SKIP(40); + if (lookahead == '\\') SKIP(41); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'i') ADVANCE(581); - if (lookahead == '|') ADVANCE(376); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(185); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 186: ADVANCE_MAP( - '#', 602, - '&', 380, + '#', 603, + '&', 381, '(', 196, - ',', 370, + ',', 371, '/', 200, - ':', 355, - ';', 383, - 'L', 540, - 'U', 568, + ':', 356, + ';', 384, + 'L', 541, + 'U', 569, ); - if (lookahead == '\\') SKIP(36); + if (lookahead == '\\') SKIP(37); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == 'l') ADVANCE(529); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(532); - if (lookahead == 'y') ADVANCE(519); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(533); + if (lookahead == 'y') ADVANCE(520); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(187); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 187: - if (lookahead == '#') ADVANCE(602); - if (lookahead == '&') ADVANCE(380); + if (lookahead == '#') ADVANCE(603); + if (lookahead == '&') ADVANCE(381); if (lookahead == '(') ADVANCE(196); - if (lookahead == ',') ADVANCE(370); + if (lookahead == ',') ADVANCE(371); if (lookahead == '/') ADVANCE(200); - if (lookahead == ':') ADVANCE(355); - if (lookahead == ';') ADVANCE(383); - if (lookahead == '\\') SKIP(36); + if (lookahead == ':') ADVANCE(356); + if (lookahead == ';') ADVANCE(384); + if (lookahead == '\\') SKIP(37); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '|') ADVANCE(376); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'a') ADVANCE(587); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '}') ADVANCE(394); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(187); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 188: ADVANCE_MAP( - '#', 440, - '\'', 442, - '(', 368, + '#', 441, + '\'', 443, + '(', 369, '/', 200, - ';', 383, - '>', 421, - '?', 371, + ';', 384, + '>', 422, + '?', 372, '[', 201, ); if (lookahead == '\\') SKIP(31); - if (lookahead == '^') ADVANCE(441); + if (lookahead == '^') ADVANCE(442); if (lookahead == '`') ADVANCE(212); + if (lookahead == '{') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(188); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 189: ADVANCE_MAP( - '#', 600, - '\'', 442, - '(', 368, - ')', 369, - '*', 431, - ',', 370, + '#', 601, + '\'', 443, + '(', 369, + ')', 370, + '*', 432, + ',', 371, '-', 205, - '.', 402, + '.', 403, '/', 200, - ':', 360, - ';', 383, - '<', 434, - '=', 351, - '>', 421, + ':', 361, + ';', 384, + '<', 435, + '=', 352, + '>', 422, '[', 202, ); - if (lookahead == '\\') SKIP(34); - if (lookahead == '^') ADVANCE(441); + if (lookahead == '\\') SKIP(35); + if (lookahead == '^') ADVANCE(442); if (lookahead == '`') ADVANCE(212); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(376); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(189); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 190: - if (lookahead == '\'') ADVANCE(451); + if (lookahead == '\'') ADVANCE(452); if (lookahead == '\\') ADVANCE(292); if (lookahead != 0 && (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(190); END_STATE(); case 191: - if (lookahead == ')') ADVANCE(559); + if (lookahead == ')') ADVANCE(560); END_STATE(); case 192: - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (lookahead == '.') ADVANCE(57); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); @@ -17649,18 +17823,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '~') ADVANCE(195); END_STATE(); case 193: - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (lookahead == '.') ADVANCE(198); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); END_STATE(); case 194: - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); END_STATE(); case 195: - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); if (lookahead == '!' || @@ -17673,7 +17847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '~') ADVANCE(195); END_STATE(); case 196: - if (lookahead == '*') ADVANCE(557); + if (lookahead == '*') ADVANCE(558); END_STATE(); case 197: if (lookahead == '.') ADVANCE(192); @@ -17693,52 +17867,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(194); END_STATE(); case 199: - if (lookahead == '.') ADVANCE(430); + if (lookahead == '.') ADVANCE(431); END_STATE(); case 200: - if (lookahead == '/') ADVANCE(560); + if (lookahead == '/') ADVANCE(561); END_STATE(); case 201: - if (lookahead == '<') ADVANCE(352); + if (lookahead == '<') ADVANCE(353); END_STATE(); case 202: - if (lookahead == '<') ADVANCE(352); - if (lookahead == ']') ADVANCE(438); + if (lookahead == '<') ADVANCE(353); + if (lookahead == ']') ADVANCE(439); END_STATE(); case 203: - if (lookahead == '>') ADVANCE(410); + if (lookahead == '>') ADVANCE(411); END_STATE(); case 204: - if (lookahead == '>') ADVANCE(400); + if (lookahead == '>') ADVANCE(401); END_STATE(); case 205: - if (lookahead == '>') ADVANCE(414); + if (lookahead == '>') ADVANCE(415); END_STATE(); case 206: - if (lookahead == '>') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (lookahead == '>') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 207: - if (lookahead == '@') ADVANCE(394); + if (lookahead == '@') ADVANCE(395); END_STATE(); case 208: - if (lookahead == 'L') ADVANCE(541); + if (lookahead == 'L') ADVANCE(542); END_STATE(); case 209: - if (lookahead == ']') ADVANCE(438); + if (lookahead == ']') ADVANCE(439); END_STATE(); case 210: - if (lookahead == ']') ADVANCE(390); - if (lookahead == '}') ADVANCE(407); + if (lookahead == ']') ADVANCE(391); + if (lookahead == '}') ADVANCE(408); END_STATE(); case 211: - if (lookahead == ']') ADVANCE(353); + if (lookahead == ']') ADVANCE(354); END_STATE(); case 212: - if (lookahead == '`') ADVANCE(313); + if (lookahead == '`') ADVANCE(314); END_STATE(); case 213: - if (lookahead == '`') ADVANCE(562); + if (lookahead == '`') ADVANCE(563); END_STATE(); case 214: if (lookahead == '`') ADVANCE(213); @@ -17754,25 +17928,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(288); END_STATE(); case 217: - if (lookahead == 'd') ADVANCE(596); + if (lookahead == 'd') ADVANCE(597); END_STATE(); case 218: if (lookahead == 'd') ADVANCE(228); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(598); + if (lookahead == 'e') ADVANCE(599); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(605); + if (lookahead == 'e') ADVANCE(606); END_STATE(); case 221: if (lookahead == 'e') ADVANCE(252); END_STATE(); case 222: - if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'f') ADVANCE(604); END_STATE(); case 223: - if (lookahead == 'f') ADVANCE(604); + if (lookahead == 'f') ADVANCE(605); END_STATE(); case 224: if (lookahead == 'g') ADVANCE(225); @@ -17799,7 +17973,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(58); END_STATE(); case 231: - if (lookahead == 'n') ADVANCE(593); + if (lookahead == 'n') ADVANCE(594); END_STATE(); case 232: if (lookahead == 'n') SKIP(136); @@ -17808,10 +17982,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(108); END_STATE(); case 234: - if (lookahead == 'n') SKIP(142); + if (lookahead == 'n') SKIP(150); END_STATE(); case 235: - if (lookahead == 'n') SKIP(150); + if (lookahead == 'n') SKIP(142); END_STATE(); case 236: if (lookahead == 'n') SKIP(162); @@ -17847,10 +18021,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(131); END_STATE(); case 247: - if (lookahead == 'n') SKIP(167); + if (lookahead == 'n') SKIP(188); END_STATE(); case 248: - if (lookahead == 'n') SKIP(188); + if (lookahead == 'n') SKIP(167); END_STATE(); case 249: if (lookahead == 'n') SKIP(168); @@ -17859,10 +18033,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(181); END_STATE(); case 251: - if (lookahead == 'n') ADVANCE(412); + if (lookahead == 'n') ADVANCE(413); END_STATE(); case 252: - if (lookahead == 'n') ADVANCE(426); + if (lookahead == 'n') ADVANCE(427); END_STATE(); case 253: if (lookahead == 'n') SKIP(189); @@ -17940,10 +18114,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(125); END_STATE(); case 278: - if (lookahead == 'n') SKIP(120); + if (lookahead == 'n') SKIP(114); END_STATE(); case 279: - if (lookahead == 'n') SKIP(114); + if (lookahead == 'n') SKIP(120); END_STATE(); case 280: if (lookahead == 'n') SKIP(116); @@ -17952,19 +18126,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') SKIP(124); END_STATE(); case 282: - if (lookahead == 'n') SKIP(109); + if (lookahead == 'n') SKIP(127); END_STATE(); case 283: - if (lookahead == 'n') SKIP(127); + if (lookahead == 'n') SKIP(109); END_STATE(); case 284: - if (lookahead == 'n') SKIP(115); + if (lookahead == 'n') SKIP(121); END_STATE(); case 285: - if (lookahead == 'n') SKIP(117); + if (lookahead == 'n') SKIP(115); END_STATE(); case 286: - if (lookahead == 'n') SKIP(121); + if (lookahead == 'n') SKIP(117); END_STATE(); case 287: if (lookahead == 'o') ADVANCE(293); @@ -17973,17 +18147,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(231); END_STATE(); case 289: - if (lookahead == 's') ADVANCE(364); + if (lookahead == 's') ADVANCE(365); END_STATE(); case 290: if (lookahead == 's') ADVANCE(220); END_STATE(); case 291: - if (lookahead == 't') ADVANCE(594); + if (lookahead == 't') ADVANCE(595); END_STATE(); case 292: ADVANCE_MAP( - 'u', 312, + 'u', 313, '"', 190, '\'', 190, 'a', 190, @@ -17994,42 +18168,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 190, 'v', 190, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); END_STATE(); case 293: if (lookahead == 'w') ADVANCE(216); END_STATE(); case 294: - if (lookahead == '0' || - lookahead == '1') ADVANCE(511); + if (lookahead == '|') ADVANCE(407); END_STATE(); case 295: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(512); + if (lookahead == '0' || + lookahead == '1') ADVANCE(512); END_STATE(); case 296: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(513); END_STATE(); case 297: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 298: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(449); END_STATE(); case 299: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(297); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); case 300: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); END_STATE(); case 301: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); END_STATE(); case 302: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(446); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(514); END_STATE(); case 303: if (('0' <= lookahead && lookahead <= '9') || @@ -18039,12 +18211,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 304: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(448); END_STATE(); case 305: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(302); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); END_STATE(); case 306: if (('0' <= lookahead && lookahead <= '9') || @@ -18079,1047 +18251,1052 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 312: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(309); END_STATE(); case 313: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + END_STATE(); + case 314: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != '`') ADVANCE(214); END_STATE(); - case 314: - if (eof) ADVANCE(350); - if (lookahead == '\r') SKIP(341); - if (lookahead == 'n') SKIP(337); - END_STATE(); case 315: - if (eof) ADVANCE(350); - if (lookahead == '\r') SKIP(345); - if (lookahead == 'n') SKIP(333); - END_STATE(); - case 316: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(342); if (lookahead == 'n') SKIP(338); END_STATE(); - case 317: - if (eof) ADVANCE(350); + case 316: + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(346); - if (lookahead == 'n') SKIP(332); + if (lookahead == 'n') SKIP(334); END_STATE(); - case 318: - if (eof) ADVANCE(350); + case 317: + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(343); if (lookahead == 'n') SKIP(339); END_STATE(); + case 318: + if (eof) ADVANCE(351); + if (lookahead == '\r') SKIP(347); + if (lookahead == 'n') SKIP(333); + END_STATE(); case 319: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(344); if (lookahead == 'n') SKIP(340); END_STATE(); case 320: - if (eof) ADVANCE(350); - if (lookahead == '\r') SKIP(347); - if (lookahead == 'n') SKIP(336); + if (eof) ADVANCE(351); + if (lookahead == '\r') SKIP(345); + if (lookahead == 'n') SKIP(341); END_STATE(); case 321: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(348); - if (lookahead == 'n') SKIP(335); + if (lookahead == 'n') SKIP(337); END_STATE(); case 322: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == '\r') SKIP(349); - if (lookahead == 'n') SKIP(334); + if (lookahead == 'n') SKIP(336); END_STATE(); case 323: - if (eof) ADVANCE(350); - ADVANCE_MAP( - '!', 487, - '"', 454, - '#', 439, - '$', 506, - '%', 481, - '&', 381, - '\'', 442, - '(', 366, - ')', 369, - '*', 431, - '+', 471, - ',', 370, - '-', 473, - '.', 403, - '/', 200, - '0', 508, - ':', 356, - ';', 383, - '<', 435, - '=', 443, - '>', 421, - '?', 372, - '@', 130, - '[', 384, - '\\', 2, - ']', 388, - '^', 441, - '`', 212, - 'a', 586, - 'd', 584, - 'i', 581, - 'l', 572, - 'm', 569, - 'r', 576, - 'u', 587, - 'w', 577, - 'y', 579, - '{', 392, - '|', 378, - '}', 393, - '~', 485, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(323); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (eof) ADVANCE(351); + if (lookahead == '\r') SKIP(350); + if (lookahead == 'n') SKIP(335); END_STATE(); case 324: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, + '!', 488, '"', 455, - '#', 599, - '$', 506, + '#', 440, + '$', 507, '%', 482, '&', 382, - '\'', 493, - '(', 428, - '*', 433, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 384, + '\'', 443, + '(', 367, + ')', 370, + '*', 432, + '+', 472, + ',', 371, + '-', 474, + '.', 404, + '/', 200, + '0', 509, + ':', 357, + ';', 384, + '<', 436, + '=', 444, + '>', 422, + '?', 373, + '@', 130, + '[', 385, + '\\', 2, + ']', 389, + '^', 442, + '`', 212, + 'a', 587, + 'd', 585, + 'i', 582, + 'l', 573, + 'm', 570, + 'r', 577, + 'u', 588, + 'w', 578, + 'y', 580, + '{', 393, + '|', 379, + '}', 394, + '~', 486, ); - if (lookahead == '\\') SKIP(317); - if (lookahead == ']') ADVANCE(388); - if (lookahead == '^') ADVANCE(500); - if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(332); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(324); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 325: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - 'L', 540, - 'U', 568, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '*', 434, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, '[', 385, ); - if (lookahead == '\\') SKIP(315); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(318); + if (lookahead == ']') ADVANCE(389); + if (lookahead == '^') ADVANCE(501); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); - if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 326: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - 'M', 549, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + 'L', 541, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(315); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(316); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(334); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 327: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - 'M', 549, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + 'M', 550, + '[', 386, ); - if (lookahead == '\\') SKIP(315); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(316); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'f') ADVANCE(544); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(557); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(334); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 328: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + 'M', 550, + '[', 386, ); - if (lookahead == '\\') SKIP(315); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(316); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(334); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 329: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(322); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(316); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(334); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 330: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 553, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - 'L', 540, - 'M', 549, - 'U', 568, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(321); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(323); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(528); - if (lookahead == 'm') ADVANCE(548); - if (lookahead == 'n') ADVANCE(536); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'u') ADVANCE(531); - if (lookahead == 'y') ADVANCE(518); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(546); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(335); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 331: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 428, - '+', 489, - ',', 370, - '-', 489, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 420, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 554, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + 'L', 541, + 'M', 550, + 'U', 569, + '[', 386, ); - if (lookahead == '\\') SKIP(320); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(322); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 's') ADVANCE(524); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'y') ADVANCE(519); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(557); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(336); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 332: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '*', 433, - '+', 472, - ',', 370, - '-', 475, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 436, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 384, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 429, + '+', 490, + ',', 371, + '-', 490, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 421, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(317); - if (lookahead == ']') ADVANCE(388); - if (lookahead == '^') ADVANCE(500); + if (lookahead == '\\') SKIP(321); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); + if (lookahead == '*' || + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(332); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + lookahead == 0xfeff) SKIP(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 333: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '*', 434, + '+', 473, + ',', 371, '-', 476, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 498, - '?', 372, - '@', 492, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 437, + '=', 352, + '>', 499, + '?', 373, + '@', 493, '[', 385, ); - if (lookahead == '\\') SKIP(315); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(318); + if (lookahead == ']') ADVANCE(389); + if (lookahead == '^') ADVANCE(501); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); - if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 334: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 403, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(322); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(316); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(379); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(334); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 335: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 405, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 404, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(321); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(323); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(380); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(335); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 336: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '!', 487, - '"', 455, - '#', 599, - '$', 506, - '%', 482, - '&', 382, - '\'', 493, - '(', 366, - '+', 472, - ',', 370, - '-', 476, - '.', 404, - '/', 495, - '0', 508, - ':', 356, - ';', 383, - '<', 494, - '=', 351, - '>', 498, - '?', 372, - '@', 492, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 406, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(320); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(322); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '|') ADVANCE(499); - if (lookahead == '}') ADVANCE(393); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); if (lookahead == '*' || - lookahead == '^') ADVANCE(500); + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(336); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 337: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '"', 455, - '#', 599, - '$', 128, - '%', 481, - '&', 381, - '\'', 190, - '(', 366, - '*', 431, - '+', 471, - ',', 370, - '-', 474, - '.', 199, - '/', 200, - '0', 508, - ';', 383, - '<', 207, - '>', 421, - '@', 129, - '[', 385, + '!', 488, + '"', 456, + '#', 600, + '$', 507, + '%', 483, + '&', 383, + '\'', 494, + '(', 367, + '+', 473, + ',', 371, + '-', 477, + '.', 405, + '/', 496, + '0', 509, + ':', 357, + ';', 384, + '<', 495, + '=', 352, + '>', 499, + '?', 373, + '@', 493, + '[', 386, ); - if (lookahead == '\\') SKIP(314); - if (lookahead == ']') ADVANCE(388); + if (lookahead == '\\') SKIP(321); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); - if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '|') ADVANCE(500); + if (lookahead == '}') ADVANCE(394); + if (lookahead == '~') ADVANCE(486); + if (lookahead == '*' || + lookahead == '^') ADVANCE(501); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(337); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 338: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 600, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '*', 431, - '+', 471, - '-', 473, - '.', 402, + '(', 367, + '*', 432, + '+', 472, + ',', 371, + '-', 475, + '.', 199, '/', 200, - '0', 508, - ':', 360, - ';', 383, - '<', 437, - '>', 211, + '0', 509, + ';', 384, + '<', 207, + '>', 422, '@', 129, - '[', 384, + '[', 386, ); - if (lookahead == '\\') SKIP(316); + if (lookahead == '\\') SKIP(315); + if (lookahead == ']') ADVANCE(389); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(338); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 339: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '"', 455, - '#', 601, + '"', 456, + '#', 602, '$', 128, - '%', 481, - '&', 381, + '%', 482, + '&', 382, '\'', 190, - '(', 366, - '+', 471, + '(', 367, + '*', 432, + '+', 472, '-', 474, - '.', 402, + '.', 403, '/', 200, - '0', 508, - ';', 383, - '<', 207, - '=', 351, + '0', 509, + ':', 361, + ';', 384, + '<', 438, + '>', 211, '@', 129, '[', 385, ); - if (lookahead == '\\') SKIP(318); + if (lookahead == '\\') SKIP(317); if (lookahead == '`') ADVANCE(212); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'l') ADVANCE(572); - if (lookahead == 'm') ADVANCE(569); - if (lookahead == 'r') ADVANCE(576); - if (lookahead == 'u') ADVANCE(587); - if (lookahead == 'y') ADVANCE(579); - if (lookahead == '{') ADVANCE(392); - if (lookahead == '~') ADVANCE(485); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); if (lookahead == '!' || - lookahead == '?') ADVANCE(488); + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(339); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 340: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); ADVANCE_MAP( - '"', 455, - '#', 600, + '"', 456, + '#', 602, '$', 128, + '%', 482, + '&', 382, '\'', 190, '(', 367, - ')', 369, - '*', 431, - '+', 296, - ',', 370, - '-', 206, - '.', 402, + '+', 472, + '-', 475, + '.', 403, '/', 200, - '0', 508, - ':', 360, - ';', 383, - '<', 434, - '=', 351, - '>', 211, + '0', 509, + ';', 384, + '<', 207, + '=', 352, '@', 129, - '[', 385, + '[', 386, ); if (lookahead == '\\') SKIP(319); - if (lookahead == ']') ADVANCE(388); if (lookahead == '`') ADVANCE(212); - if (lookahead == '{') ADVANCE(391); - if (lookahead == '|') ADVANCE(377); - if (lookahead == '}') ADVANCE(393); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'l') ADVANCE(573); + if (lookahead == 'm') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); + if (lookahead == 'u') ADVANCE(588); + if (lookahead == 'y') ADVANCE(580); + if (lookahead == '{') ADVANCE(393); + if (lookahead == '~') ADVANCE(486); + if (lookahead == '!' || + lookahead == '?') ADVANCE(489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(340); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(509); - if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(592); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 341: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(337); + if (eof) ADVANCE(351); + ADVANCE_MAP( + '"', 456, + '#', 601, + '$', 128, + '\'', 190, + '(', 368, + ')', 370, + '*', 432, + '+', 297, + ',', 371, + '-', 206, + '.', 403, + '/', 200, + '0', 509, + ':', 361, + ';', 384, + '<', 435, + '=', 352, + '>', 422, + '@', 129, + '[', 386, + ); + if (lookahead == '\\') SKIP(320); + if (lookahead == ']') ADVANCE(389); + if (lookahead == '`') ADVANCE(212); + if (lookahead == '{') ADVANCE(392); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(394); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(341); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(510); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(593); END_STATE(); case 342: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == 'n') SKIP(338); END_STATE(); case 343: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == 'n') SKIP(339); END_STATE(); case 344: - if (eof) ADVANCE(350); + if (eof) ADVANCE(351); if (lookahead == 'n') SKIP(340); END_STATE(); case 345: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(333); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(341); END_STATE(); case 346: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(332); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(334); END_STATE(); case 347: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(336); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(333); END_STATE(); case 348: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(335); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(337); END_STATE(); case 349: - if (eof) ADVANCE(350); - if (lookahead == 'n') SKIP(334); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(336); END_STATE(); case 350: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(351); + if (lookahead == 'n') SKIP(335); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_LBRACK_LT); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_GT_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_GT_RBRACK); END_STATE(); case 355: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(375); END_STATE(); case 356: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(375); - if (lookahead == '=') ADVANCE(505); - if (lookahead == '>') ADVANCE(410); - if (lookahead == '?') ADVANCE(374); + if (lookahead == ':') ADVANCE(376); END_STATE(); case 357: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(375); - if (lookahead == '>') ADVANCE(410); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '=') ADVANCE(506); + if (lookahead == '>') ADVANCE(411); + if (lookahead == '?') ADVANCE(375); END_STATE(); case 358: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(375); - if (lookahead == '>') ADVANCE(410); - if (lookahead == '?') ADVANCE(373); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '>') ADVANCE(411); END_STATE(); case 359: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(375); - if (lookahead == '?') ADVANCE(373); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '>') ADVANCE(411); + if (lookahead == '?') ADVANCE(374); END_STATE(); case 360: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(410); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '?') ADVANCE(374); END_STATE(); case 361: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '?') ADVANCE(373); + if (lookahead == '>') ADVANCE(411); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '!') ADVANCE(363); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '?') ADVANCE(374); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_let_BANG); + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '!') ADVANCE(364); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_let_BANG); END_STATE(); case 365: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 366: + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); + END_STATE(); + case 367: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(467); - if (lookahead == '*') ADVANCE(558); + if (lookahead == ')') ADVANCE(468); + if (lookahead == '*') ADVANCE(559); if (lookahead == '.') ADVANCE(192); if (lookahead == '?') ADVANCE(194); - if (lookahead == '|') ADVANCE(468); + if (lookahead == '|') ADVANCE(469); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(197); if (lookahead == '!' || @@ -19130,27 +19307,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '~') ADVANCE(195); END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(467); - if (lookahead == '*') ADVANCE(557); - END_STATE(); case 368: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '*') ADVANCE(557); + if (lookahead == ')') ADVANCE(468); + if (lookahead == '*') ADVANCE(558); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '*') ADVANCE(558); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 372: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '<') ADVANCE(486); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '<') ADVANCE(487); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -19158,35 +19335,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('=' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + lookahead == '~') ADVANCE(489); END_STATE(); case 374: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '>') ADVANCE(411); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '>') ADVANCE(412); END_STATE(); case 376: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 377: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') ADVANCE(469); END_STATE(); case 378: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') ADVANCE(469); - if (lookahead == ']') ADVANCE(390); - if (lookahead == '|') ADVANCE(502); - if (lookahead == '}') ADVANCE(407); + if (lookahead == ')') ADVANCE(470); END_STATE(); case 379: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == ')') ADVANCE(470); + if (lookahead == ']') ADVANCE(391); if (lookahead == '|') ADVANCE(503); + if (lookahead == '}') ADVANCE(408); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(504); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -19195,18 +19372,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(500); - END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_AMP); + lookahead == '~') ADVANCE(501); END_STATE(); case 381: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(483); END_STATE(); case 382: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(484); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(485); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || @@ -19214,69 +19391,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '~') && lookahead != '&' && - lookahead != '\'') ADVANCE(500); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_SEMI); + lookahead != '\'') ADVANCE(501); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(352); - if (lookahead == ']') ADVANCE(438); - if (lookahead == '|') ADVANCE(389); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 385: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(352); - if (lookahead == '|') ADVANCE(389); + if (lookahead == '<') ADVANCE(353); + if (lookahead == ']') ADVANCE(439); + if (lookahead == '|') ADVANCE(390); END_STATE(); case 386: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(438); - if (lookahead == '|') ADVANCE(389); + if (lookahead == '<') ADVANCE(353); + if (lookahead == '|') ADVANCE(390); END_STATE(); case 387: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '|') ADVANCE(389); + if (lookahead == ']') ADVANCE(439); + if (lookahead == '|') ADVANCE(390); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '|') ADVANCE(390); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 390: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); END_STATE(); case 392: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(406); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(407); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_LT_AT); - if (lookahead == '@') ADVANCE(398); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 395: ACCEPT_TOKEN(anon_sym_LT_AT); if (lookahead == '@') ADVANCE(399); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_LT_AT); + if (lookahead == '@') ADVANCE(400); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 396: + case 397: ACCEPT_TOKEN(anon_sym_AT_GT); END_STATE(); - case 397: + case 398: ACCEPT_TOKEN(anon_sym_AT_GT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19284,12 +19461,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 398: + case 399: ACCEPT_TOKEN(anon_sym_LT_AT_AT); END_STATE(); - case 399: + case 400: ACCEPT_TOKEN(anon_sym_LT_AT_AT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19297,12 +19474,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 400: + case 401: ACCEPT_TOKEN(anon_sym_AT_AT_GT); END_STATE(); - case 401: + case 402: ACCEPT_TOKEN(anon_sym_AT_AT_GT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19310,54 +19487,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); - END_STATE(); - case 402: - ACCEPT_TOKEN(anon_sym_DOT); + lookahead != '\'') ADVANCE(501); END_STATE(); case 403: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '[') ADVANCE(419); END_STATE(); case 404: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(425); - if (lookahead == '[') ADVANCE(419); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 405: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '[') ADVANCE(419); + if (lookahead == '.') ADVANCE(426); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 406: - ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 407: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); case 408: - ACCEPT_TOKEN(anon_sym_return_BANG); + ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_yield_BANG); + ACCEPT_TOKEN(anon_sym_return_BANG); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_COLON_GT); + ACCEPT_TOKEN(anon_sym_yield_BANG); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_COLON_QMARK_GT); + ACCEPT_TOKEN(anon_sym_COLON_GT); END_STATE(); case 412: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_COLON_QMARK_GT); END_STATE(); case 413: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_in); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 415: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 416: ACCEPT_TOKEN(anon_sym_DASH_GT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19365,15 +19542,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 416: + case 417: ACCEPT_TOKEN(anon_sym_match_BANG); END_STATE(); - case 417: + case 418: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 418: + case 419: ACCEPT_TOKEN(anon_sym_LT_DASH); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19381,18 +19558,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 419: + case 420: ACCEPT_TOKEN(anon_sym_DOT_LBRACK); END_STATE(); - case 420: + case 421: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 421: + case 422: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 422: + case 423: ACCEPT_TOKEN(anon_sym_GT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19400,42 +19577,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); - END_STATE(); - case 423: - ACCEPT_TOKEN(anon_sym_use_BANG); + lookahead != '\'') ADVANCE(501); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_do_BANG); + ACCEPT_TOKEN(anon_sym_use_BANG); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_do_BANG); END_STATE(); case 426: - ACCEPT_TOKEN(anon_sym_when); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 427: ACCEPT_TOKEN(anon_sym_when); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_LPAREN2); - if (lookahead == ')') ADVANCE(467); + ACCEPT_TOKEN(anon_sym_when); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 429: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); + ACCEPT_TOKEN(anon_sym_LPAREN2); + if (lookahead == ')') ADVANCE(468); END_STATE(); case 430: - ACCEPT_TOKEN(anon_sym_DOT_DOT3); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DOT_DOT3); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == ')') ADVANCE(559); END_STATE(); case 433: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == ')') ADVANCE(560); + END_STATE(); + case 434: ACCEPT_TOKEN(anon_sym_STAR); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19443,145 +19620,145 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); - END_STATE(); - case 434: - ACCEPT_TOKEN(anon_sym_LT2); + lookahead != '\'') ADVANCE(501); END_STATE(); case 435: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(417); - if (lookahead == '@') ADVANCE(394); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == '-') ADVANCE(418); if (lookahead == '@') ADVANCE(395); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '-') ADVANCE(419); + if (lookahead == '@') ADVANCE(396); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 437: + case 438: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '@') ADVANCE(394); + if (lookahead == '@') ADVANCE(395); END_STATE(); - case 438: + case 439: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 439: + case 440: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == 'i') ADVANCE(222); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 440: + case 441: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 441: + case 442: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 442: + case 443: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 443: + case 444: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 444: + case 445: ACCEPT_TOKEN(sym__escape_char); END_STATE(); - case 445: + case 446: ACCEPT_TOKEN(sym__non_escape_char); END_STATE(); - case 446: + case 447: ACCEPT_TOKEN(sym__unicodegraph_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(309); - END_STATE(); - case 447: - ACCEPT_TOKEN(sym__unicodegraph_long); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); END_STATE(); case 448: - ACCEPT_TOKEN(sym__trigraph); + ACCEPT_TOKEN(sym__unicodegraph_long); END_STATE(); case 449: - ACCEPT_TOKEN(aux_sym__simple_string_char_token1); + ACCEPT_TOKEN(sym__trigraph); END_STATE(); case 450: - ACCEPT_TOKEN(aux_sym_char_token1); + ACCEPT_TOKEN(aux_sym__simple_string_char_token1); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_char_token1); - if (lookahead == 'B') ADVANCE(450); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_LBRACE2); + ACCEPT_TOKEN(aux_sym_char_token1); + if (lookahead == 'B') ADVANCE(451); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); - if (lookahead == '"') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + if (lookahead == '"') ADVANCE(135); END_STATE(); case 455: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(170); END_STATE(); case 456: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == 'B') ADVANCE(464); + if (lookahead == '"') ADVANCE(170); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == 'B') ADVANCE(465); END_STATE(); case 458: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\r') ADVANCE(445); - if ((!eof && set_contains(sym__non_escape_char_character_set_1, 9, lookahead))) ADVANCE(445); END_STATE(); case 459: - ACCEPT_TOKEN(aux_sym__verbatim_string_char_token1); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '\r') ADVANCE(446); + if ((!eof && set_contains(sym__non_escape_char_character_set_1, 9, lookahead))) ADVANCE(446); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_AT_DQUOTE); + ACCEPT_TOKEN(aux_sym__verbatim_string_char_token1); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == '"') ADVANCE(459); + ACCEPT_TOKEN(anon_sym_AT_DQUOTE); END_STATE(); case 462: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == '"') ADVANCE(459); - if (lookahead == 'B') ADVANCE(464); + if (lookahead == '"') ADVANCE(460); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == 'B') ADVANCE(464); + if (lookahead == '"') ADVANCE(460); + if (lookahead == 'B') ADVANCE(465); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_DQUOTEB); + ACCEPT_TOKEN(anon_sym_DQUOTE2); + if (lookahead == 'B') ADVANCE(465); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_DQUOTEB); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 467: - ACCEPT_TOKEN(sym_unit); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 468: + ACCEPT_TOKEN(sym_unit); + END_STATE(); + case 469: ACCEPT_TOKEN(anon_sym_LPAREN_PIPE); - if (lookahead == ')') ADVANCE(470); + if (lookahead == ')') ADVANCE(471); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); if (lookahead == '!' || @@ -19593,65 +19770,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '|' || lookahead == '~') ADVANCE(195); END_STATE(); - case 469: - ACCEPT_TOKEN(anon_sym_PIPE_RPAREN); - END_STATE(); case 470: - ACCEPT_TOKEN(sym_op_identifier); + ACCEPT_TOKEN(anon_sym_PIPE_RPAREN); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + ACCEPT_TOKEN(sym_op_identifier); END_STATE(); case 472: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); + END_STATE(); + case 473: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); - END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(479); - if (lookahead == '>') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + lookahead != '\'') ADVANCE(501); END_STATE(); case 474: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (lookahead == '.') ADVANCE(480); + if (lookahead == '>') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 475: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(480); - if (lookahead == '>') ADVANCE(415); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); + END_STATE(); + case 476: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(481); + if (lookahead == '>') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || ('=' <= lookahead && lookahead <= '?') || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 476: + case 477: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (lookahead == '.') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 477: + case 478: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 478: + case 479: ACCEPT_TOKEN(anon_sym_PLUS_DOT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19659,12 +19836,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 479: + case 480: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 480: + case 481: ACCEPT_TOKEN(anon_sym_DASH_DOT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19672,12 +19849,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 481: + case 482: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 482: + case 483: ACCEPT_TOKEN(anon_sym_PERCENT); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19685,12 +19862,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 483: + case 484: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 484: + case 485: ACCEPT_TOKEN(anon_sym_AMP_AMP); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19698,14 +19875,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 485: + case 486: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 486: + case 487: ACCEPT_TOKEN(aux_sym_prefix_op_token1); - if (lookahead == '-') ADVANCE(507); + if (lookahead == '-') ADVANCE(508); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -19713,11 +19890,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); + lookahead == '~') ADVANCE(489); END_STATE(); - case 487: + case 488: ACCEPT_TOKEN(aux_sym_prefix_op_token1); - if (lookahead == '=') ADVANCE(504); + if (lookahead == '=') ADVANCE(505); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -19725,9 +19902,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); + lookahead == '~') ADVANCE(489); END_STATE(); - case 488: + case 489: ACCEPT_TOKEN(aux_sym_prefix_op_token1); if (lookahead == '!' || lookahead == '%' || @@ -19736,119 +19913,119 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); + lookahead == '~') ADVANCE(489); END_STATE(); - case 489: + case 490: ACCEPT_TOKEN(aux_sym_infix_op_token1); END_STATE(); - case 490: + case 491: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '"') ADVANCE(460); - if (lookahead == '>') ADVANCE(397); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '>') ADVANCE(398); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || ('=' <= lookahead && lookahead <= '?') || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 491: + case 492: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '"') ADVANCE(460); - if (lookahead == '@') ADVANCE(497); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '@') ADVANCE(498); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 492: + case 493: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '"') ADVANCE(460); + if (lookahead == '"') ADVANCE(461); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 493: + case 494: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '\'') ADVANCE(451); + if (lookahead == '\'') ADVANCE(452); if (lookahead == '\\') ADVANCE(292); if (set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || - lookahead == '~') ADVANCE(493); + lookahead == '~') ADVANCE(494); if (lookahead != 0 && (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(190); END_STATE(); - case 494: + case 495: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '-') ADVANCE(418); - if (lookahead == '@') ADVANCE(395); + if (lookahead == '-') ADVANCE(419); + if (lookahead == '@') ADVANCE(396); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 495: + case 496: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '/') ADVANCE(497); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 496: + case 497: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '/') ADVANCE(497); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(501); + lookahead != '\'') ADVANCE(502); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(561); + lookahead != '\r') ADVANCE(562); END_STATE(); - case 497: + case 498: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '>') ADVANCE(401); + if (lookahead == '>') ADVANCE(402); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || ('=' <= lookahead && lookahead <= '?') || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 498: + case 499: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == ']') ADVANCE(353); + if (lookahead == ']') ADVANCE(354); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || lookahead == '.' || lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 499: + case 500: ACCEPT_TOKEN(aux_sym_infix_op_token2); - if (lookahead == '|') ADVANCE(503); + if (lookahead == '|') ADVANCE(504); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -19857,9 +20034,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(500); + lookahead == '~') ADVANCE(501); END_STATE(); - case 500: + case 501: ACCEPT_TOKEN(aux_sym_infix_op_token2); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19867,9 +20044,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 501: + case 502: ACCEPT_TOKEN(aux_sym_infix_op_token2); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19877,15 +20054,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(501); + lookahead != '\'') ADVANCE(502); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(561); + lookahead != '\r') ADVANCE(562); END_STATE(); - case 502: + case 503: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 503: + case 504: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); if ((set_contains(aux_sym_infix_op_token2_character_set_1, 9, lookahead) || lookahead == '!' || @@ -19893,9 +20070,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || lookahead == '?' || lookahead == '~') && - lookahead != '\'') ADVANCE(500); + lookahead != '\'') ADVANCE(501); END_STATE(); - case 504: + case 505: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '!' || lookahead == '%' || @@ -19904,16 +20081,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); + lookahead == '~') ADVANCE(489); END_STATE(); - case 505: + case 506: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 506: + case 507: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(453); + if (lookahead == '"') ADVANCE(454); END_STATE(); - case 507: + case 508: ACCEPT_TOKEN(anon_sym_QMARK_LT_DASH); if (lookahead == '!' || lookahead == '%' || @@ -19922,235 +20099,235 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(488); + lookahead == '~') ADVANCE(489); END_STATE(); - case 508: + case 509: ACCEPT_TOKEN(sym_int); - if (lookahead == '_') ADVANCE(510); + if (lookahead == '_') ADVANCE(511); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(294); + lookahead == 'b') ADVANCE(295); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(295); + lookahead == 'o') ADVANCE(296); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); - END_STATE(); - case 509: - ACCEPT_TOKEN(sym_int); - if (lookahead == '_') ADVANCE(510); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + lookahead == 'x') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 510: ACCEPT_TOKEN(sym_int); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(509); + if (lookahead == '_') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 511: - ACCEPT_TOKEN(sym_xint); - if (lookahead == '_') ADVANCE(514); - if (lookahead == '0' || - lookahead == '1') ADVANCE(511); + ACCEPT_TOKEN(sym_int); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); END_STATE(); case 512: ACCEPT_TOKEN(sym_xint); if (lookahead == '_') ADVANCE(515); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(512); + if (lookahead == '0' || + lookahead == '1') ADVANCE(512); END_STATE(); case 513: ACCEPT_TOKEN(sym_xint); if (lookahead == '_') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(513); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(513); END_STATE(); case 514: ACCEPT_TOKEN(sym_xint); - if (lookahead == '0' || - lookahead == '1') ADVANCE(511); + if (lookahead == '_') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(514); END_STATE(); case 515: ACCEPT_TOKEN(sym_xint); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(512); + if (lookahead == '0' || + lookahead == '1') ADVANCE(512); END_STATE(); case 516: ACCEPT_TOKEN(sym_xint); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(513); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(513); END_STATE(); case 517: - ACCEPT_TOKEN(anon_sym_y); + ACCEPT_TOKEN(sym_xint); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(514); END_STATE(); case 518: ACCEPT_TOKEN(anon_sym_y); - if (lookahead == 'i') ADVANCE(573); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 519: ACCEPT_TOKEN(anon_sym_y); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'i') ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_uy); + ACCEPT_TOKEN(anon_sym_y); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 521: ACCEPT_TOKEN(anon_sym_uy); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_s); + ACCEPT_TOKEN(anon_sym_uy); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 523: ACCEPT_TOKEN(anon_sym_s); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_us); + ACCEPT_TOKEN(anon_sym_s); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 525: ACCEPT_TOKEN(anon_sym_us); - if (lookahead == 'e') ADVANCE(564); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 526: ACCEPT_TOKEN(anon_sym_us); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(565); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 527: - ACCEPT_TOKEN(anon_sym_l); + ACCEPT_TOKEN(anon_sym_us); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 528: ACCEPT_TOKEN(anon_sym_l); - if (lookahead == 'e') ADVANCE(588); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 529: ACCEPT_TOKEN(anon_sym_l); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(589); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 530: - ACCEPT_TOKEN(aux_sym_uint32_token1); + ACCEPT_TOKEN(anon_sym_l); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'l') ADVANCE(534); - if (lookahead == 'n') ADVANCE(538); - if (lookahead == 's') ADVANCE(525); - if (lookahead == 'y') ADVANCE(521); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'l') ADVANCE(534); - if (lookahead == 'n') ADVANCE(538); + if (lookahead == 'L') ADVANCE(543); + if (lookahead == 'l') ADVANCE(535); + if (lookahead == 'n') ADVANCE(539); if (lookahead == 's') ADVANCE(526); - if (lookahead == 'y') ADVANCE(521); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'y') ADVANCE(522); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(541); - if (lookahead == 'l') ADVANCE(530); - if (lookahead == 'n') ADVANCE(537); - if (lookahead == 's') ADVANCE(524); - if (lookahead == 'y') ADVANCE(520); + if (lookahead == 'L') ADVANCE(543); + if (lookahead == 'l') ADVANCE(535); + if (lookahead == 'n') ADVANCE(539); + if (lookahead == 's') ADVANCE(527); + if (lookahead == 'y') ADVANCE(522); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'L') ADVANCE(542); + if (lookahead == 'l') ADVANCE(531); + if (lookahead == 'n') ADVANCE(538); + if (lookahead == 's') ADVANCE(525); + if (lookahead == 'y') ADVANCE(521); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_n); + ACCEPT_TOKEN(aux_sym_uint32_token1); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 536: ACCEPT_TOKEN(anon_sym_n); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_un); + ACCEPT_TOKEN(anon_sym_n); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 538: ACCEPT_TOKEN(anon_sym_un); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_L); + ACCEPT_TOKEN(anon_sym_un); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 540: ACCEPT_TOKEN(anon_sym_L); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 541: - ACCEPT_TOKEN(aux_sym_uint64_token1); + ACCEPT_TOKEN(anon_sym_L); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym_uint64_token1); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_f); + ACCEPT_TOKEN(aux_sym_uint64_token1); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 544: ACCEPT_TOKEN(anon_sym_f); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 545: - ACCEPT_TOKEN(aux_sym_bignum_token1); + ACCEPT_TOKEN(anon_sym_f); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym_bignum_token1); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 547: - ACCEPT_TOKEN(aux_sym_decimal_token1); + ACCEPT_TOKEN(aux_sym_bignum_token1); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (lookahead == 'a') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'a') ADVANCE(590); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(aux_sym_decimal_token1); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 551: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '[') ADVANCE(419); END_STATE(); case 552: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(425); - if (lookahead == '[') ADVANCE(419); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 553: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '[') ADVANCE(419); + if (lookahead == '.') ADVANCE(426); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 554: - ACCEPT_TOKEN(aux_sym_float_token1); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '[') ADVANCE(420); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == '+' || - lookahead == '-') ADVANCE(554); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym_float_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(554); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + lookahead == '-') ADVANCE(555); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_LPAREN_STAR); + ACCEPT_TOKEN(aux_sym_float_token1); + if (lookahead == '+' || + lookahead == '-') ADVANCE(555); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 558: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); - if (lookahead == ')') ADVANCE(470); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_LPAREN_STAR); + if (lookahead == ')') ADVANCE(471); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); if (lookahead == '!' || @@ -20162,228 +20339,228 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '|' || lookahead == '~') ADVANCE(195); END_STATE(); - case 559: + case 560: ACCEPT_TOKEN(anon_sym_STAR_RPAREN); END_STATE(); - case 560: + case 561: ACCEPT_TOKEN(sym_line_comment); - if (lookahead == '/') ADVANCE(560); + if (lookahead == '/') ADVANCE(561); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(561); + lookahead != '\r') ADVANCE(562); END_STATE(); - case 561: + case 562: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(561); - END_STATE(); - case 562: - ACCEPT_TOKEN(sym_identifier); + lookahead != '\r') ADVANCE(562); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(424); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(423); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == '!') ADVANCE(425); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(416); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == '!') ADVANCE(424); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(409); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == '!') ADVANCE(417); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(408); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == '!') ADVANCE(410); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(542); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == '!') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'L') ADVANCE(543); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(578); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'a') ADVANCE(590); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(566); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'c') ADVANCE(579); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(588); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'd') ADVANCE(567); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(580); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(589); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(582); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(564); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(583); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(590); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(565); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(574); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'e') ADVANCE(591); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(565); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'h') ADVANCE(575); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(573); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'h') ADVANCE(566); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(571); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'i') ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(413); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'l') ADVANCE(572); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(427); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'n') ADVANCE(414); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(567); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'n') ADVANCE(428); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(563); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'n') ADVANCE(568); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(583); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'o') ADVANCE(564); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(365); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'r') ADVANCE(584); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(575); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 's') ADVANCE(366); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(362); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 's') ADVANCE(576); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(570); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 't') ADVANCE(363); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(591); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 't') ADVANCE(571); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(585); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 't') ADVANCE(592); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(592); + if (lookahead == 'u') ADVANCE(586); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_POUNDnowarn); + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(593); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_POUNDlight); + ACCEPT_TOKEN(anon_sym_POUNDnowarn); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_POUNDr); + ACCEPT_TOKEN(anon_sym_POUNDlight); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_POUNDload); + ACCEPT_TOKEN(anon_sym_POUNDr); END_STATE(); case 597: - ACCEPT_TOKEN(aux_sym_fsi_directive_decl_token1); - if (lookahead == '\n') ADVANCE(597); + ACCEPT_TOKEN(anon_sym_POUNDload); END_STATE(); case 598: - ACCEPT_TOKEN(aux_sym_preproc_line_token1); + ACCEPT_TOKEN(aux_sym_fsi_directive_decl_token1); + if (lookahead == '\n') ADVANCE(598); END_STATE(); case 599: + ACCEPT_TOKEN(aux_sym_preproc_line_token1); + END_STATE(); + case 600: ACCEPT_TOKEN(aux_sym_preproc_line_token1); if (lookahead == 'e') ADVANCE(229); if (lookahead == 'i') ADVANCE(222); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 600: + case 601: ACCEPT_TOKEN(aux_sym_preproc_line_token1); if (lookahead == 'e') ADVANCE(229); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 601: + case 602: ACCEPT_TOKEN(aux_sym_preproc_line_token1); if (lookahead == 'i') ADVANCE(222); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 602: + case 603: ACCEPT_TOKEN(aux_sym_preproc_line_token1); if (lookahead == 'l') ADVANCE(227); if (lookahead == 'n') ADVANCE(287); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(596); END_STATE(); - case 603: + case 604: ACCEPT_TOKEN(anon_sym_POUNDif); END_STATE(); - case 604: + case 605: ACCEPT_TOKEN(anon_sym_POUNDendif); END_STATE(); - case 605: + case 606: ACCEPT_TOKEN(anon_sym_POUNDelse); END_STATE(); default: @@ -21410,2019 +21587,2019 @@ 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 = 337, .external_lex_state = 2}, - [2] = {.lex_state = 328, .external_lex_state = 3}, - [3] = {.lex_state = 328, .external_lex_state = 3}, - [4] = {.lex_state = 328, .external_lex_state = 3}, - [5] = {.lex_state = 328, .external_lex_state = 3}, - [6] = {.lex_state = 328, .external_lex_state = 3}, - [7] = {.lex_state = 328, .external_lex_state = 3}, - [8] = {.lex_state = 328, .external_lex_state = 3}, - [9] = {.lex_state = 328, .external_lex_state = 3}, - [10] = {.lex_state = 328, .external_lex_state = 3}, - [11] = {.lex_state = 328, .external_lex_state = 3}, - [12] = {.lex_state = 328, .external_lex_state = 3}, - [13] = {.lex_state = 328, .external_lex_state = 3}, - [14] = {.lex_state = 328, .external_lex_state = 3}, - [15] = {.lex_state = 328, .external_lex_state = 3}, - [16] = {.lex_state = 328, .external_lex_state = 3}, - [17] = {.lex_state = 328, .external_lex_state = 3}, - [18] = {.lex_state = 328, .external_lex_state = 3}, - [19] = {.lex_state = 328, .external_lex_state = 3}, - [20] = {.lex_state = 328, .external_lex_state = 3}, - [21] = {.lex_state = 328, .external_lex_state = 3}, - [22] = {.lex_state = 328, .external_lex_state = 3}, - [23] = {.lex_state = 328, .external_lex_state = 3}, - [24] = {.lex_state = 328, .external_lex_state = 3}, - [25] = {.lex_state = 328, .external_lex_state = 3}, - [26] = {.lex_state = 328, .external_lex_state = 3}, - [27] = {.lex_state = 328, .external_lex_state = 3}, - [28] = {.lex_state = 328, .external_lex_state = 3}, - [29] = {.lex_state = 328, .external_lex_state = 3}, - [30] = {.lex_state = 328, .external_lex_state = 3}, - [31] = {.lex_state = 328, .external_lex_state = 4}, - [32] = {.lex_state = 97, .external_lex_state = 5}, - [33] = {.lex_state = 328, .external_lex_state = 4}, - [34] = {.lex_state = 328, .external_lex_state = 4}, - [35] = {.lex_state = 97, .external_lex_state = 5}, - [36] = {.lex_state = 97, .external_lex_state = 5}, - [37] = {.lex_state = 97, .external_lex_state = 5}, - [38] = {.lex_state = 328, .external_lex_state = 5}, - [39] = {.lex_state = 97, .external_lex_state = 5}, - [40] = {.lex_state = 97, .external_lex_state = 5}, - [41] = {.lex_state = 97, .external_lex_state = 5}, - [42] = {.lex_state = 328, .external_lex_state = 4}, - [43] = {.lex_state = 97, .external_lex_state = 5}, - [44] = {.lex_state = 97, .external_lex_state = 5}, - [45] = {.lex_state = 97, .external_lex_state = 5}, - [46] = {.lex_state = 328, .external_lex_state = 4}, - [47] = {.lex_state = 328, .external_lex_state = 3}, - [48] = {.lex_state = 328, .external_lex_state = 5}, - [49] = {.lex_state = 328, .external_lex_state = 4}, - [50] = {.lex_state = 328, .external_lex_state = 5}, - [51] = {.lex_state = 328, .external_lex_state = 3}, - [52] = {.lex_state = 328, .external_lex_state = 5}, - [53] = {.lex_state = 328, .external_lex_state = 5}, - [54] = {.lex_state = 328, .external_lex_state = 5}, - [55] = {.lex_state = 328, .external_lex_state = 3}, - [56] = {.lex_state = 328, .external_lex_state = 5}, - [57] = {.lex_state = 328, .external_lex_state = 5}, - [58] = {.lex_state = 328, .external_lex_state = 4}, - [59] = {.lex_state = 328, .external_lex_state = 4}, - [60] = {.lex_state = 328, .external_lex_state = 3}, - [61] = {.lex_state = 97, .external_lex_state = 3}, - [62] = {.lex_state = 328, .external_lex_state = 4}, - [63] = {.lex_state = 328, .external_lex_state = 4}, - [64] = {.lex_state = 328, .external_lex_state = 3}, - [65] = {.lex_state = 328, .external_lex_state = 3}, + [1] = {.lex_state = 338, .external_lex_state = 2}, + [2] = {.lex_state = 329, .external_lex_state = 3}, + [3] = {.lex_state = 329, .external_lex_state = 3}, + [4] = {.lex_state = 329, .external_lex_state = 3}, + [5] = {.lex_state = 329, .external_lex_state = 3}, + [6] = {.lex_state = 329, .external_lex_state = 3}, + [7] = {.lex_state = 329, .external_lex_state = 3}, + [8] = {.lex_state = 329, .external_lex_state = 3}, + [9] = {.lex_state = 329, .external_lex_state = 3}, + [10] = {.lex_state = 329, .external_lex_state = 3}, + [11] = {.lex_state = 329, .external_lex_state = 3}, + [12] = {.lex_state = 329, .external_lex_state = 3}, + [13] = {.lex_state = 329, .external_lex_state = 3}, + [14] = {.lex_state = 329, .external_lex_state = 3}, + [15] = {.lex_state = 329, .external_lex_state = 3}, + [16] = {.lex_state = 329, .external_lex_state = 3}, + [17] = {.lex_state = 329, .external_lex_state = 3}, + [18] = {.lex_state = 329, .external_lex_state = 3}, + [19] = {.lex_state = 329, .external_lex_state = 3}, + [20] = {.lex_state = 329, .external_lex_state = 3}, + [21] = {.lex_state = 329, .external_lex_state = 3}, + [22] = {.lex_state = 329, .external_lex_state = 3}, + [23] = {.lex_state = 329, .external_lex_state = 3}, + [24] = {.lex_state = 329, .external_lex_state = 3}, + [25] = {.lex_state = 329, .external_lex_state = 3}, + [26] = {.lex_state = 329, .external_lex_state = 3}, + [27] = {.lex_state = 329, .external_lex_state = 3}, + [28] = {.lex_state = 329, .external_lex_state = 3}, + [29] = {.lex_state = 329, .external_lex_state = 3}, + [30] = {.lex_state = 329, .external_lex_state = 3}, + [31] = {.lex_state = 97, .external_lex_state = 4}, + [32] = {.lex_state = 329, .external_lex_state = 5}, + [33] = {.lex_state = 97, .external_lex_state = 4}, + [34] = {.lex_state = 97, .external_lex_state = 4}, + [35] = {.lex_state = 329, .external_lex_state = 5}, + [36] = {.lex_state = 329, .external_lex_state = 5}, + [37] = {.lex_state = 97, .external_lex_state = 4}, + [38] = {.lex_state = 97, .external_lex_state = 4}, + [39] = {.lex_state = 329, .external_lex_state = 5}, + [40] = {.lex_state = 97, .external_lex_state = 4}, + [41] = {.lex_state = 97, .external_lex_state = 4}, + [42] = {.lex_state = 97, .external_lex_state = 4}, + [43] = {.lex_state = 97, .external_lex_state = 4}, + [44] = {.lex_state = 97, .external_lex_state = 4}, + [45] = {.lex_state = 329, .external_lex_state = 4}, + [46] = {.lex_state = 329, .external_lex_state = 5}, + [47] = {.lex_state = 98, .external_lex_state = 3}, + [48] = {.lex_state = 329, .external_lex_state = 3}, + [49] = {.lex_state = 329, .external_lex_state = 3}, + [50] = {.lex_state = 329, .external_lex_state = 3}, + [51] = {.lex_state = 329, .external_lex_state = 3}, + [52] = {.lex_state = 98, .external_lex_state = 3}, + [53] = {.lex_state = 329, .external_lex_state = 3}, + [54] = {.lex_state = 329, .external_lex_state = 3}, + [55] = {.lex_state = 98, .external_lex_state = 3}, + [56] = {.lex_state = 329, .external_lex_state = 3}, + [57] = {.lex_state = 98, .external_lex_state = 3}, + [58] = {.lex_state = 98, .external_lex_state = 3}, + [59] = {.lex_state = 329, .external_lex_state = 3}, + [60] = {.lex_state = 329, .external_lex_state = 3}, + [61] = {.lex_state = 329, .external_lex_state = 3}, + [62] = {.lex_state = 329, .external_lex_state = 3}, + [63] = {.lex_state = 98, .external_lex_state = 3}, + [64] = {.lex_state = 329, .external_lex_state = 5}, + [65] = {.lex_state = 97, .external_lex_state = 3}, [66] = {.lex_state = 97, .external_lex_state = 3}, - [67] = {.lex_state = 98, .external_lex_state = 3}, - [68] = {.lex_state = 328, .external_lex_state = 5}, - [69] = {.lex_state = 328, .external_lex_state = 4}, - [70] = {.lex_state = 328, .external_lex_state = 4}, - [71] = {.lex_state = 328, .external_lex_state = 3}, - [72] = {.lex_state = 328, .external_lex_state = 3}, - [73] = {.lex_state = 328, .external_lex_state = 4}, - [74] = {.lex_state = 328, .external_lex_state = 3}, - [75] = {.lex_state = 328, .external_lex_state = 5}, - [76] = {.lex_state = 97, .external_lex_state = 3}, - [77] = {.lex_state = 328, .external_lex_state = 3}, - [78] = {.lex_state = 328, .external_lex_state = 3}, - [79] = {.lex_state = 328, .external_lex_state = 5}, - [80] = {.lex_state = 328, .external_lex_state = 3}, - [81] = {.lex_state = 328, .external_lex_state = 4}, - [82] = {.lex_state = 328, .external_lex_state = 3}, - [83] = {.lex_state = 97, .external_lex_state = 3}, - [84] = {.lex_state = 97, .external_lex_state = 3}, - [85] = {.lex_state = 328, .external_lex_state = 3}, - [86] = {.lex_state = 97, .external_lex_state = 3}, - [87] = {.lex_state = 97, .external_lex_state = 3}, - [88] = {.lex_state = 328, .external_lex_state = 3}, - [89] = {.lex_state = 328, .external_lex_state = 3}, - [90] = {.lex_state = 98, .external_lex_state = 3}, - [91] = {.lex_state = 97, .external_lex_state = 3}, + [67] = {.lex_state = 97, .external_lex_state = 3}, + [68] = {.lex_state = 329, .external_lex_state = 3}, + [69] = {.lex_state = 329, .external_lex_state = 3}, + [70] = {.lex_state = 329, .external_lex_state = 4}, + [71] = {.lex_state = 97, .external_lex_state = 3}, + [72] = {.lex_state = 329, .external_lex_state = 4}, + [73] = {.lex_state = 329, .external_lex_state = 5}, + [74] = {.lex_state = 329, .external_lex_state = 4}, + [75] = {.lex_state = 329, .external_lex_state = 4}, + [76] = {.lex_state = 329, .external_lex_state = 4}, + [77] = {.lex_state = 97, .external_lex_state = 3}, + [78] = {.lex_state = 329, .external_lex_state = 4}, + [79] = {.lex_state = 329, .external_lex_state = 4}, + [80] = {.lex_state = 97, .external_lex_state = 3}, + [81] = {.lex_state = 329, .external_lex_state = 3}, + [82] = {.lex_state = 329, .external_lex_state = 3}, + [83] = {.lex_state = 329, .external_lex_state = 5}, + [84] = {.lex_state = 329, .external_lex_state = 4}, + [85] = {.lex_state = 329, .external_lex_state = 4}, + [86] = {.lex_state = 329, .external_lex_state = 3}, + [87] = {.lex_state = 329, .external_lex_state = 4}, + [88] = {.lex_state = 329, .external_lex_state = 4}, + [89] = {.lex_state = 329, .external_lex_state = 4}, + [90] = {.lex_state = 329, .external_lex_state = 3}, + [91] = {.lex_state = 329, .external_lex_state = 3}, [92] = {.lex_state = 98, .external_lex_state = 3}, - [93] = {.lex_state = 328, .external_lex_state = 3}, - [94] = {.lex_state = 328, .external_lex_state = 3}, - [95] = {.lex_state = 328, .external_lex_state = 3}, - [96] = {.lex_state = 328, .external_lex_state = 3}, - [97] = {.lex_state = 328, .external_lex_state = 3}, - [98] = {.lex_state = 328, .external_lex_state = 3}, - [99] = {.lex_state = 98, .external_lex_state = 3}, + [93] = {.lex_state = 97, .external_lex_state = 3}, + [94] = {.lex_state = 98, .external_lex_state = 3}, + [95] = {.lex_state = 329, .external_lex_state = 3}, + [96] = {.lex_state = 329, .external_lex_state = 4}, + [97] = {.lex_state = 329, .external_lex_state = 3}, + [98] = {.lex_state = 98, .external_lex_state = 3}, + [99] = {.lex_state = 329, .external_lex_state = 5}, [100] = {.lex_state = 98, .external_lex_state = 3}, - [101] = {.lex_state = 328, .external_lex_state = 3}, - [102] = {.lex_state = 98, .external_lex_state = 3}, - [103] = {.lex_state = 328, .external_lex_state = 5}, - [104] = {.lex_state = 328, .external_lex_state = 3}, - [105] = {.lex_state = 328, .external_lex_state = 3}, - [106] = {.lex_state = 328, .external_lex_state = 5}, - [107] = {.lex_state = 328, .external_lex_state = 3}, - [108] = {.lex_state = 97, .external_lex_state = 3}, - [109] = {.lex_state = 98, .external_lex_state = 3}, - [110] = {.lex_state = 98, .external_lex_state = 3}, - [111] = {.lex_state = 98, .external_lex_state = 3}, - [112] = {.lex_state = 328, .external_lex_state = 5}, - [113] = {.lex_state = 328, .external_lex_state = 5}, - [114] = {.lex_state = 98, .external_lex_state = 3}, - [115] = {.lex_state = 328, .external_lex_state = 3}, - [116] = {.lex_state = 98, .external_lex_state = 3}, - [117] = {.lex_state = 98, .external_lex_state = 3}, - [118] = {.lex_state = 328, .external_lex_state = 5}, - [119] = {.lex_state = 328, .external_lex_state = 3}, - [120] = {.lex_state = 328, .external_lex_state = 5}, - [121] = {.lex_state = 328, .external_lex_state = 3}, - [122] = {.lex_state = 328, .external_lex_state = 3}, - [123] = {.lex_state = 328, .external_lex_state = 3}, - [124] = {.lex_state = 328, .external_lex_state = 5}, - [125] = {.lex_state = 328, .external_lex_state = 5}, - [126] = {.lex_state = 328, .external_lex_state = 3}, - [127] = {.lex_state = 328, .external_lex_state = 5}, - [128] = {.lex_state = 328, .external_lex_state = 3}, - [129] = {.lex_state = 328, .external_lex_state = 5}, - [130] = {.lex_state = 328, .external_lex_state = 5}, - [131] = {.lex_state = 328, .external_lex_state = 3}, - [132] = {.lex_state = 328, .external_lex_state = 5}, - [133] = {.lex_state = 97, .external_lex_state = 3}, - [134] = {.lex_state = 328, .external_lex_state = 4}, - [135] = {.lex_state = 328, .external_lex_state = 5}, - [136] = {.lex_state = 328, .external_lex_state = 5}, - [137] = {.lex_state = 328, .external_lex_state = 5}, - [138] = {.lex_state = 331, .external_lex_state = 3}, - [139] = {.lex_state = 331, .external_lex_state = 3}, + [101] = {.lex_state = 329, .external_lex_state = 3}, + [102] = {.lex_state = 329, .external_lex_state = 4}, + [103] = {.lex_state = 329, .external_lex_state = 3}, + [104] = {.lex_state = 98, .external_lex_state = 3}, + [105] = {.lex_state = 98, .external_lex_state = 3}, + [106] = {.lex_state = 329, .external_lex_state = 3}, + [107] = {.lex_state = 329, .external_lex_state = 5}, + [108] = {.lex_state = 329, .external_lex_state = 4}, + [109] = {.lex_state = 329, .external_lex_state = 3}, + [110] = {.lex_state = 97, .external_lex_state = 3}, + [111] = {.lex_state = 329, .external_lex_state = 4}, + [112] = {.lex_state = 329, .external_lex_state = 5}, + [113] = {.lex_state = 329, .external_lex_state = 3}, + [114] = {.lex_state = 329, .external_lex_state = 3}, + [115] = {.lex_state = 329, .external_lex_state = 3}, + [116] = {.lex_state = 329, .external_lex_state = 3}, + [117] = {.lex_state = 329, .external_lex_state = 4}, + [118] = {.lex_state = 329, .external_lex_state = 4}, + [119] = {.lex_state = 329, .external_lex_state = 4}, + [120] = {.lex_state = 329, .external_lex_state = 4}, + [121] = {.lex_state = 329, .external_lex_state = 3}, + [122] = {.lex_state = 329, .external_lex_state = 5}, + [123] = {.lex_state = 329, .external_lex_state = 3}, + [124] = {.lex_state = 329, .external_lex_state = 3}, + [125] = {.lex_state = 329, .external_lex_state = 4}, + [126] = {.lex_state = 329, .external_lex_state = 5}, + [127] = {.lex_state = 329, .external_lex_state = 3}, + [128] = {.lex_state = 97, .external_lex_state = 3}, + [129] = {.lex_state = 329, .external_lex_state = 3}, + [130] = {.lex_state = 329, .external_lex_state = 4}, + [131] = {.lex_state = 329, .external_lex_state = 5}, + [132] = {.lex_state = 329, .external_lex_state = 3}, + [133] = {.lex_state = 329, .external_lex_state = 5}, + [134] = {.lex_state = 329, .external_lex_state = 4}, + [135] = {.lex_state = 97, .external_lex_state = 3}, + [136] = {.lex_state = 90, .external_lex_state = 3}, + [137] = {.lex_state = 329, .external_lex_state = 4}, + [138] = {.lex_state = 98, .external_lex_state = 3}, + [139] = {.lex_state = 101, .external_lex_state = 3}, [140] = {.lex_state = 101, .external_lex_state = 3}, - [141] = {.lex_state = 328, .external_lex_state = 5}, + [141] = {.lex_state = 101, .external_lex_state = 3}, [142] = {.lex_state = 101, .external_lex_state = 3}, - [143] = {.lex_state = 331, .external_lex_state = 3}, - [144] = {.lex_state = 328, .external_lex_state = 6}, - [145] = {.lex_state = 98, .external_lex_state = 3}, - [146] = {.lex_state = 328, .external_lex_state = 5}, - [147] = {.lex_state = 328, .external_lex_state = 6}, - [148] = {.lex_state = 331, .external_lex_state = 3}, - [149] = {.lex_state = 331, .external_lex_state = 3}, - [150] = {.lex_state = 328, .external_lex_state = 5}, + [143] = {.lex_state = 102, .external_lex_state = 3}, + [144] = {.lex_state = 101, .external_lex_state = 3}, + [145] = {.lex_state = 101, .external_lex_state = 3}, + [146] = {.lex_state = 329, .external_lex_state = 4}, + [147] = {.lex_state = 329, .external_lex_state = 4}, + [148] = {.lex_state = 101, .external_lex_state = 3}, + [149] = {.lex_state = 329, .external_lex_state = 4}, + [150] = {.lex_state = 98, .external_lex_state = 3}, [151] = {.lex_state = 98, .external_lex_state = 3}, [152] = {.lex_state = 98, .external_lex_state = 3}, - [153] = {.lex_state = 328, .external_lex_state = 3}, - [154] = {.lex_state = 331, .external_lex_state = 3}, - [155] = {.lex_state = 331, .external_lex_state = 3}, - [156] = {.lex_state = 101, .external_lex_state = 3}, - [157] = {.lex_state = 102, .external_lex_state = 3}, - [158] = {.lex_state = 328, .external_lex_state = 5}, - [159] = {.lex_state = 98, .external_lex_state = 3}, - [160] = {.lex_state = 331, .external_lex_state = 3}, - [161] = {.lex_state = 328, .external_lex_state = 5}, - [162] = {.lex_state = 328, .external_lex_state = 6}, - [163] = {.lex_state = 328, .external_lex_state = 5}, - [164] = {.lex_state = 328, .external_lex_state = 3}, - [165] = {.lex_state = 328, .external_lex_state = 5}, - [166] = {.lex_state = 328, .external_lex_state = 3}, - [167] = {.lex_state = 328, .external_lex_state = 5}, - [168] = {.lex_state = 102, .external_lex_state = 3}, - [169] = {.lex_state = 101, .external_lex_state = 3}, - [170] = {.lex_state = 328, .external_lex_state = 5}, - [171] = {.lex_state = 328, .external_lex_state = 5}, - [172] = {.lex_state = 101, .external_lex_state = 3}, - [173] = {.lex_state = 328, .external_lex_state = 5}, - [174] = {.lex_state = 328, .external_lex_state = 6}, - [175] = {.lex_state = 98, .external_lex_state = 3}, - [176] = {.lex_state = 328, .external_lex_state = 5}, - [177] = {.lex_state = 101, .external_lex_state = 3}, - [178] = {.lex_state = 102, .external_lex_state = 3}, - [179] = {.lex_state = 98, .external_lex_state = 3}, - [180] = {.lex_state = 98, .external_lex_state = 3}, - [181] = {.lex_state = 101, .external_lex_state = 3}, - [182] = {.lex_state = 328, .external_lex_state = 5}, - [183] = {.lex_state = 98, .external_lex_state = 3}, - [184] = {.lex_state = 328, .external_lex_state = 6}, - [185] = {.lex_state = 98, .external_lex_state = 3}, - [186] = {.lex_state = 328, .external_lex_state = 5}, - [187] = {.lex_state = 98, .external_lex_state = 3}, - [188] = {.lex_state = 102, .external_lex_state = 3}, - [189] = {.lex_state = 328, .external_lex_state = 6}, - [190] = {.lex_state = 101, .external_lex_state = 3}, - [191] = {.lex_state = 328, .external_lex_state = 5}, - [192] = {.lex_state = 101, .external_lex_state = 3}, - [193] = {.lex_state = 328, .external_lex_state = 5}, - [194] = {.lex_state = 102, .external_lex_state = 3}, - [195] = {.lex_state = 328, .external_lex_state = 6}, - [196] = {.lex_state = 328, .external_lex_state = 6}, - [197] = {.lex_state = 98, .external_lex_state = 3}, - [198] = {.lex_state = 328, .external_lex_state = 5}, - [199] = {.lex_state = 328, .external_lex_state = 6}, - [200] = {.lex_state = 102, .external_lex_state = 3}, - [201] = {.lex_state = 328, .external_lex_state = 5}, - [202] = {.lex_state = 98, .external_lex_state = 3}, - [203] = {.lex_state = 98, .external_lex_state = 3}, - [204] = {.lex_state = 101, .external_lex_state = 3}, - [205] = {.lex_state = 328, .external_lex_state = 6}, - [206] = {.lex_state = 98, .external_lex_state = 3}, - [207] = {.lex_state = 328, .external_lex_state = 3}, + [153] = {.lex_state = 329, .external_lex_state = 3}, + [154] = {.lex_state = 102, .external_lex_state = 3}, + [155] = {.lex_state = 329, .external_lex_state = 4}, + [156] = {.lex_state = 329, .external_lex_state = 4}, + [157] = {.lex_state = 329, .external_lex_state = 4}, + [158] = {.lex_state = 329, .external_lex_state = 3}, + [159] = {.lex_state = 329, .external_lex_state = 4}, + [160] = {.lex_state = 90, .external_lex_state = 3}, + [161] = {.lex_state = 332, .external_lex_state = 3}, + [162] = {.lex_state = 332, .external_lex_state = 3}, + [163] = {.lex_state = 329, .external_lex_state = 4}, + [164] = {.lex_state = 329, .external_lex_state = 4}, + [165] = {.lex_state = 101, .external_lex_state = 3}, + [166] = {.lex_state = 329, .external_lex_state = 4}, + [167] = {.lex_state = 101, .external_lex_state = 3}, + [168] = {.lex_state = 332, .external_lex_state = 3}, + [169] = {.lex_state = 98, .external_lex_state = 3}, + [170] = {.lex_state = 329, .external_lex_state = 4}, + [171] = {.lex_state = 329, .external_lex_state = 4}, + [172] = {.lex_state = 332, .external_lex_state = 3}, + [173] = {.lex_state = 101, .external_lex_state = 3}, + [174] = {.lex_state = 329, .external_lex_state = 4}, + [175] = {.lex_state = 329, .external_lex_state = 6}, + [176] = {.lex_state = 329, .external_lex_state = 4}, + [177] = {.lex_state = 329, .external_lex_state = 4}, + [178] = {.lex_state = 98, .external_lex_state = 3}, + [179] = {.lex_state = 101, .external_lex_state = 3}, + [180] = {.lex_state = 329, .external_lex_state = 4}, + [181] = {.lex_state = 329, .external_lex_state = 4}, + [182] = {.lex_state = 329, .external_lex_state = 4}, + [183] = {.lex_state = 329, .external_lex_state = 4}, + [184] = {.lex_state = 332, .external_lex_state = 3}, + [185] = {.lex_state = 329, .external_lex_state = 4}, + [186] = {.lex_state = 329, .external_lex_state = 4}, + [187] = {.lex_state = 329, .external_lex_state = 4}, + [188] = {.lex_state = 329, .external_lex_state = 4}, + [189] = {.lex_state = 332, .external_lex_state = 3}, + [190] = {.lex_state = 329, .external_lex_state = 4}, + [191] = {.lex_state = 329, .external_lex_state = 4}, + [192] = {.lex_state = 90, .external_lex_state = 3}, + [193] = {.lex_state = 329, .external_lex_state = 4}, + [194] = {.lex_state = 329, .external_lex_state = 3}, + [195] = {.lex_state = 329, .external_lex_state = 4}, + [196] = {.lex_state = 332, .external_lex_state = 3}, + [197] = {.lex_state = 329, .external_lex_state = 3}, + [198] = {.lex_state = 98, .external_lex_state = 3}, + [199] = {.lex_state = 98, .external_lex_state = 3}, + [200] = {.lex_state = 329, .external_lex_state = 4}, + [201] = {.lex_state = 102, .external_lex_state = 3}, + [202] = {.lex_state = 329, .external_lex_state = 4}, + [203] = {.lex_state = 329, .external_lex_state = 4}, + [204] = {.lex_state = 329, .external_lex_state = 4}, + [205] = {.lex_state = 329, .external_lex_state = 6}, + [206] = {.lex_state = 329, .external_lex_state = 4}, + [207] = {.lex_state = 101, .external_lex_state = 3}, [208] = {.lex_state = 101, .external_lex_state = 3}, - [209] = {.lex_state = 98, .external_lex_state = 3}, - [210] = {.lex_state = 331, .external_lex_state = 3}, - [211] = {.lex_state = 102, .external_lex_state = 3}, - [212] = {.lex_state = 328, .external_lex_state = 3}, - [213] = {.lex_state = 98, .external_lex_state = 3}, - [214] = {.lex_state = 328, .external_lex_state = 5}, - [215] = {.lex_state = 328, .external_lex_state = 5}, - [216] = {.lex_state = 328, .external_lex_state = 6}, - [217] = {.lex_state = 98, .external_lex_state = 3}, - [218] = {.lex_state = 98, .external_lex_state = 3}, - [219] = {.lex_state = 98, .external_lex_state = 3}, - [220] = {.lex_state = 328, .external_lex_state = 5}, - [221] = {.lex_state = 328, .external_lex_state = 3}, - [222] = {.lex_state = 331, .external_lex_state = 3}, - [223] = {.lex_state = 90, .external_lex_state = 3}, - [224] = {.lex_state = 102, .external_lex_state = 3}, - [225] = {.lex_state = 328, .external_lex_state = 3}, - [226] = {.lex_state = 331, .external_lex_state = 3}, - [227] = {.lex_state = 102, .external_lex_state = 3}, - [228] = {.lex_state = 101, .external_lex_state = 3}, - [229] = {.lex_state = 331, .external_lex_state = 3}, - [230] = {.lex_state = 90, .external_lex_state = 3}, - [231] = {.lex_state = 90, .external_lex_state = 3}, - [232] = {.lex_state = 102, .external_lex_state = 3}, - [233] = {.lex_state = 328, .external_lex_state = 5}, - [234] = {.lex_state = 331, .external_lex_state = 3}, - [235] = {.lex_state = 328, .external_lex_state = 5}, - [236] = {.lex_state = 328, .external_lex_state = 5}, - [237] = {.lex_state = 90, .external_lex_state = 3}, - [238] = {.lex_state = 90, .external_lex_state = 3}, - [239] = {.lex_state = 98, .external_lex_state = 3}, - [240] = {.lex_state = 328, .external_lex_state = 5}, - [241] = {.lex_state = 101, .external_lex_state = 3}, - [242] = {.lex_state = 328, .external_lex_state = 5}, - [243] = {.lex_state = 328, .external_lex_state = 5}, - [244] = {.lex_state = 98, .external_lex_state = 3}, - [245] = {.lex_state = 328, .external_lex_state = 5}, - [246] = {.lex_state = 90, .external_lex_state = 3}, - [247] = {.lex_state = 328, .external_lex_state = 5}, - [248] = {.lex_state = 328, .external_lex_state = 3}, - [249] = {.lex_state = 328, .external_lex_state = 5}, - [250] = {.lex_state = 101, .external_lex_state = 3}, - [251] = {.lex_state = 328, .external_lex_state = 3}, - [252] = {.lex_state = 90, .external_lex_state = 3}, - [253] = {.lex_state = 328, .external_lex_state = 5}, - [254] = {.lex_state = 102, .external_lex_state = 3}, - [255] = {.lex_state = 328, .external_lex_state = 3}, - [256] = {.lex_state = 328, .external_lex_state = 5}, - [257] = {.lex_state = 101, .external_lex_state = 3}, - [258] = {.lex_state = 328, .external_lex_state = 3}, - [259] = {.lex_state = 102, .external_lex_state = 3}, - [260] = {.lex_state = 102, .external_lex_state = 3}, - [261] = {.lex_state = 102, .external_lex_state = 3}, - [262] = {.lex_state = 102, .external_lex_state = 3}, - [263] = {.lex_state = 328, .external_lex_state = 5}, - [264] = {.lex_state = 102, .external_lex_state = 3}, + [209] = {.lex_state = 102, .external_lex_state = 3}, + [210] = {.lex_state = 101, .external_lex_state = 3}, + [211] = {.lex_state = 329, .external_lex_state = 6}, + [212] = {.lex_state = 329, .external_lex_state = 4}, + [213] = {.lex_state = 102, .external_lex_state = 3}, + [214] = {.lex_state = 329, .external_lex_state = 3}, + [215] = {.lex_state = 329, .external_lex_state = 4}, + [216] = {.lex_state = 329, .external_lex_state = 4}, + [217] = {.lex_state = 101, .external_lex_state = 3}, + [218] = {.lex_state = 329, .external_lex_state = 3}, + [219] = {.lex_state = 101, .external_lex_state = 3}, + [220] = {.lex_state = 329, .external_lex_state = 4}, + [221] = {.lex_state = 90, .external_lex_state = 3}, + [222] = {.lex_state = 332, .external_lex_state = 3}, + [223] = {.lex_state = 329, .external_lex_state = 4}, + [224] = {.lex_state = 98, .external_lex_state = 3}, + [225] = {.lex_state = 329, .external_lex_state = 4}, + [226] = {.lex_state = 329, .external_lex_state = 4}, + [227] = {.lex_state = 329, .external_lex_state = 4}, + [228] = {.lex_state = 98, .external_lex_state = 3}, + [229] = {.lex_state = 102, .external_lex_state = 3}, + [230] = {.lex_state = 98, .external_lex_state = 3}, + [231] = {.lex_state = 329, .external_lex_state = 6}, + [232] = {.lex_state = 329, .external_lex_state = 4}, + [233] = {.lex_state = 329, .external_lex_state = 4}, + [234] = {.lex_state = 332, .external_lex_state = 3}, + [235] = {.lex_state = 102, .external_lex_state = 3}, + [236] = {.lex_state = 332, .external_lex_state = 3}, + [237] = {.lex_state = 329, .external_lex_state = 3}, + [238] = {.lex_state = 332, .external_lex_state = 3}, + [239] = {.lex_state = 102, .external_lex_state = 3}, + [240] = {.lex_state = 329, .external_lex_state = 4}, + [241] = {.lex_state = 329, .external_lex_state = 4}, + [242] = {.lex_state = 329, .external_lex_state = 4}, + [243] = {.lex_state = 329, .external_lex_state = 6}, + [244] = {.lex_state = 329, .external_lex_state = 4}, + [245] = {.lex_state = 332, .external_lex_state = 3}, + [246] = {.lex_state = 98, .external_lex_state = 3}, + [247] = {.lex_state = 329, .external_lex_state = 4}, + [248] = {.lex_state = 98, .external_lex_state = 3}, + [249] = {.lex_state = 101, .external_lex_state = 3}, + [250] = {.lex_state = 329, .external_lex_state = 4}, + [251] = {.lex_state = 102, .external_lex_state = 3}, + [252] = {.lex_state = 329, .external_lex_state = 3}, + [253] = {.lex_state = 329, .external_lex_state = 3}, + [254] = {.lex_state = 329, .external_lex_state = 4}, + [255] = {.lex_state = 332, .external_lex_state = 3}, + [256] = {.lex_state = 329, .external_lex_state = 3}, + [257] = {.lex_state = 329, .external_lex_state = 4}, + [258] = {.lex_state = 90, .external_lex_state = 3}, + [259] = {.lex_state = 329, .external_lex_state = 4}, + [260] = {.lex_state = 329, .external_lex_state = 6}, + [261] = {.lex_state = 332, .external_lex_state = 3}, + [262] = {.lex_state = 329, .external_lex_state = 3}, + [263] = {.lex_state = 98, .external_lex_state = 3}, + [264] = {.lex_state = 329, .external_lex_state = 6}, [265] = {.lex_state = 101, .external_lex_state = 3}, - [266] = {.lex_state = 101, .external_lex_state = 3}, - [267] = {.lex_state = 102, .external_lex_state = 3}, - [268] = {.lex_state = 328, .external_lex_state = 5}, - [269] = {.lex_state = 328, .external_lex_state = 5}, - [270] = {.lex_state = 328, .external_lex_state = 5}, - [271] = {.lex_state = 98, .external_lex_state = 3}, - [272] = {.lex_state = 331, .external_lex_state = 3}, - [273] = {.lex_state = 331, .external_lex_state = 3}, - [274] = {.lex_state = 90, .external_lex_state = 3}, - [275] = {.lex_state = 328, .external_lex_state = 5}, - [276] = {.lex_state = 328, .external_lex_state = 5}, - [277] = {.lex_state = 328, .external_lex_state = 5}, - [278] = {.lex_state = 328, .external_lex_state = 5}, - [279] = {.lex_state = 328, .external_lex_state = 3}, - [280] = {.lex_state = 328, .external_lex_state = 3}, - [281] = {.lex_state = 328, .external_lex_state = 5}, - [282] = {.lex_state = 101, .external_lex_state = 3}, - [283] = {.lex_state = 331, .external_lex_state = 3}, - [284] = {.lex_state = 101, .external_lex_state = 3}, - [285] = {.lex_state = 102, .external_lex_state = 3}, - [286] = {.lex_state = 331, .external_lex_state = 3}, - [287] = {.lex_state = 328, .external_lex_state = 5}, - [288] = {.lex_state = 328, .external_lex_state = 5}, - [289] = {.lex_state = 328, .external_lex_state = 5}, - [290] = {.lex_state = 98, .external_lex_state = 3}, - [291] = {.lex_state = 331, .external_lex_state = 3}, - [292] = {.lex_state = 328, .external_lex_state = 5}, - [293] = {.lex_state = 328, .external_lex_state = 5}, - [294] = {.lex_state = 328, .external_lex_state = 5}, - [295] = {.lex_state = 90, .external_lex_state = 3}, - [296] = {.lex_state = 331, .external_lex_state = 3}, - [297] = {.lex_state = 328, .external_lex_state = 5}, - [298] = {.lex_state = 328, .external_lex_state = 3}, - [299] = {.lex_state = 102, .external_lex_state = 3}, - [300] = {.lex_state = 328, .external_lex_state = 5}, - [301] = {.lex_state = 101, .external_lex_state = 3}, - [302] = {.lex_state = 328, .external_lex_state = 5}, - [303] = {.lex_state = 328, .external_lex_state = 5}, - [304] = {.lex_state = 102, .external_lex_state = 3}, - [305] = {.lex_state = 328, .external_lex_state = 5}, - [306] = {.lex_state = 102, .external_lex_state = 3}, - [307] = {.lex_state = 328, .external_lex_state = 5}, - [308] = {.lex_state = 328, .external_lex_state = 5}, - [309] = {.lex_state = 101, .external_lex_state = 3}, - [310] = {.lex_state = 328, .external_lex_state = 5}, - [311] = {.lex_state = 331, .external_lex_state = 3}, - [312] = {.lex_state = 328, .external_lex_state = 5}, - [313] = {.lex_state = 328, .external_lex_state = 5}, - [314] = {.lex_state = 328, .external_lex_state = 5}, - [315] = {.lex_state = 328, .external_lex_state = 5}, - [316] = {.lex_state = 328, .external_lex_state = 3}, - [317] = {.lex_state = 328, .external_lex_state = 5}, - [318] = {.lex_state = 328, .external_lex_state = 5}, - [319] = {.lex_state = 331, .external_lex_state = 3}, - [320] = {.lex_state = 331, .external_lex_state = 3}, - [321] = {.lex_state = 328, .external_lex_state = 5}, - [322] = {.lex_state = 328, .external_lex_state = 5}, - [323] = {.lex_state = 328, .external_lex_state = 5}, - [324] = {.lex_state = 328, .external_lex_state = 5}, - [325] = {.lex_state = 328, .external_lex_state = 5}, - [326] = {.lex_state = 331, .external_lex_state = 3}, - [327] = {.lex_state = 331, .external_lex_state = 3}, - [328] = {.lex_state = 328, .external_lex_state = 5}, - [329] = {.lex_state = 331, .external_lex_state = 3}, - [330] = {.lex_state = 328, .external_lex_state = 5}, - [331] = {.lex_state = 328, .external_lex_state = 5}, - [332] = {.lex_state = 328, .external_lex_state = 5}, - [333] = {.lex_state = 328, .external_lex_state = 5}, - [334] = {.lex_state = 328, .external_lex_state = 5}, - [335] = {.lex_state = 328, .external_lex_state = 5}, - [336] = {.lex_state = 328, .external_lex_state = 5}, - [337] = {.lex_state = 328, .external_lex_state = 3}, - [338] = {.lex_state = 90, .external_lex_state = 3}, - [339] = {.lex_state = 328, .external_lex_state = 3}, - [340] = {.lex_state = 328, .external_lex_state = 6}, - [341] = {.lex_state = 328, .external_lex_state = 3}, - [342] = {.lex_state = 328, .external_lex_state = 3}, - [343] = {.lex_state = 328, .external_lex_state = 3}, - [344] = {.lex_state = 328, .external_lex_state = 3}, - [345] = {.lex_state = 328, .external_lex_state = 3}, - [346] = {.lex_state = 328, .external_lex_state = 3}, - [347] = {.lex_state = 328, .external_lex_state = 3}, - [348] = {.lex_state = 328, .external_lex_state = 3}, - [349] = {.lex_state = 328, .external_lex_state = 3}, - [350] = {.lex_state = 328, .external_lex_state = 3}, - [351] = {.lex_state = 328, .external_lex_state = 3}, - [352] = {.lex_state = 328, .external_lex_state = 3}, - [353] = {.lex_state = 328, .external_lex_state = 3}, - [354] = {.lex_state = 328, .external_lex_state = 3}, - [355] = {.lex_state = 328, .external_lex_state = 3}, - [356] = {.lex_state = 328, .external_lex_state = 3}, - [357] = {.lex_state = 328, .external_lex_state = 3}, - [358] = {.lex_state = 328, .external_lex_state = 3}, - [359] = {.lex_state = 328, .external_lex_state = 3}, - [360] = {.lex_state = 328, .external_lex_state = 3}, - [361] = {.lex_state = 328, .external_lex_state = 3}, - [362] = {.lex_state = 328, .external_lex_state = 3}, - [363] = {.lex_state = 328, .external_lex_state = 3}, - [364] = {.lex_state = 328, .external_lex_state = 3}, - [365] = {.lex_state = 328, .external_lex_state = 3}, - [366] = {.lex_state = 337, .external_lex_state = 4}, - [367] = {.lex_state = 337, .external_lex_state = 4}, - [368] = {.lex_state = 337, .external_lex_state = 4}, - [369] = {.lex_state = 337, .external_lex_state = 4}, - [370] = {.lex_state = 337, .external_lex_state = 2}, - [371] = {.lex_state = 337, .external_lex_state = 2}, - [372] = {.lex_state = 337, .external_lex_state = 2}, - [373] = {.lex_state = 337, .external_lex_state = 2}, - [374] = {.lex_state = 337, .external_lex_state = 2}, - [375] = {.lex_state = 337, .external_lex_state = 2}, - [376] = {.lex_state = 337, .external_lex_state = 2}, - [377] = {.lex_state = 337, .external_lex_state = 2}, - [378] = {.lex_state = 337, .external_lex_state = 2}, - [379] = {.lex_state = 337, .external_lex_state = 2}, - [380] = {.lex_state = 337, .external_lex_state = 2}, - [381] = {.lex_state = 337, .external_lex_state = 2}, - [382] = {.lex_state = 337, .external_lex_state = 2}, - [383] = {.lex_state = 337, .external_lex_state = 2}, - [384] = {.lex_state = 337, .external_lex_state = 2}, - [385] = {.lex_state = 337, .external_lex_state = 2}, - [386] = {.lex_state = 337, .external_lex_state = 2}, - [387] = {.lex_state = 337, .external_lex_state = 2}, - [388] = {.lex_state = 337, .external_lex_state = 2}, - [389] = {.lex_state = 337, .external_lex_state = 2}, - [390] = {.lex_state = 337, .external_lex_state = 2}, - [391] = {.lex_state = 337, .external_lex_state = 2}, - [392] = {.lex_state = 337, .external_lex_state = 2}, - [393] = {.lex_state = 337, .external_lex_state = 2}, - [394] = {.lex_state = 337, .external_lex_state = 2}, - [395] = {.lex_state = 337, .external_lex_state = 2}, - [396] = {.lex_state = 337, .external_lex_state = 2}, - [397] = {.lex_state = 337, .external_lex_state = 2}, - [398] = {.lex_state = 337, .external_lex_state = 2}, - [399] = {.lex_state = 337, .external_lex_state = 2}, - [400] = {.lex_state = 337, .external_lex_state = 2}, - [401] = {.lex_state = 337, .external_lex_state = 2}, - [402] = {.lex_state = 337, .external_lex_state = 2}, - [403] = {.lex_state = 337, .external_lex_state = 2}, - [404] = {.lex_state = 337, .external_lex_state = 3}, - [405] = {.lex_state = 136, .external_lex_state = 2}, + [266] = {.lex_state = 102, .external_lex_state = 3}, + [267] = {.lex_state = 101, .external_lex_state = 3}, + [268] = {.lex_state = 98, .external_lex_state = 3}, + [269] = {.lex_state = 329, .external_lex_state = 4}, + [270] = {.lex_state = 102, .external_lex_state = 3}, + [271] = {.lex_state = 90, .external_lex_state = 3}, + [272] = {.lex_state = 329, .external_lex_state = 4}, + [273] = {.lex_state = 329, .external_lex_state = 4}, + [274] = {.lex_state = 329, .external_lex_state = 4}, + [275] = {.lex_state = 98, .external_lex_state = 3}, + [276] = {.lex_state = 332, .external_lex_state = 3}, + [277] = {.lex_state = 329, .external_lex_state = 6}, + [278] = {.lex_state = 329, .external_lex_state = 3}, + [279] = {.lex_state = 329, .external_lex_state = 6}, + [280] = {.lex_state = 329, .external_lex_state = 4}, + [281] = {.lex_state = 102, .external_lex_state = 3}, + [282] = {.lex_state = 98, .external_lex_state = 3}, + [283] = {.lex_state = 90, .external_lex_state = 3}, + [284] = {.lex_state = 332, .external_lex_state = 3}, + [285] = {.lex_state = 329, .external_lex_state = 4}, + [286] = {.lex_state = 102, .external_lex_state = 3}, + [287] = {.lex_state = 332, .external_lex_state = 3}, + [288] = {.lex_state = 90, .external_lex_state = 3}, + [289] = {.lex_state = 329, .external_lex_state = 6}, + [290] = {.lex_state = 329, .external_lex_state = 4}, + [291] = {.lex_state = 329, .external_lex_state = 4}, + [292] = {.lex_state = 329, .external_lex_state = 4}, + [293] = {.lex_state = 329, .external_lex_state = 4}, + [294] = {.lex_state = 98, .external_lex_state = 3}, + [295] = {.lex_state = 329, .external_lex_state = 6}, + [296] = {.lex_state = 329, .external_lex_state = 4}, + [297] = {.lex_state = 102, .external_lex_state = 3}, + [298] = {.lex_state = 98, .external_lex_state = 3}, + [299] = {.lex_state = 98, .external_lex_state = 3}, + [300] = {.lex_state = 102, .external_lex_state = 3}, + [301] = {.lex_state = 90, .external_lex_state = 3}, + [302] = {.lex_state = 332, .external_lex_state = 3}, + [303] = {.lex_state = 329, .external_lex_state = 4}, + [304] = {.lex_state = 329, .external_lex_state = 4}, + [305] = {.lex_state = 332, .external_lex_state = 3}, + [306] = {.lex_state = 329, .external_lex_state = 4}, + [307] = {.lex_state = 98, .external_lex_state = 3}, + [308] = {.lex_state = 329, .external_lex_state = 3}, + [309] = {.lex_state = 332, .external_lex_state = 3}, + [310] = {.lex_state = 98, .external_lex_state = 3}, + [311] = {.lex_state = 98, .external_lex_state = 3}, + [312] = {.lex_state = 329, .external_lex_state = 4}, + [313] = {.lex_state = 90, .external_lex_state = 3}, + [314] = {.lex_state = 329, .external_lex_state = 3}, + [315] = {.lex_state = 329, .external_lex_state = 6}, + [316] = {.lex_state = 329, .external_lex_state = 4}, + [317] = {.lex_state = 101, .external_lex_state = 3}, + [318] = {.lex_state = 332, .external_lex_state = 3}, + [319] = {.lex_state = 332, .external_lex_state = 3}, + [320] = {.lex_state = 329, .external_lex_state = 3}, + [321] = {.lex_state = 332, .external_lex_state = 3}, + [322] = {.lex_state = 329, .external_lex_state = 4}, + [323] = {.lex_state = 101, .external_lex_state = 3}, + [324] = {.lex_state = 329, .external_lex_state = 4}, + [325] = {.lex_state = 102, .external_lex_state = 3}, + [326] = {.lex_state = 329, .external_lex_state = 4}, + [327] = {.lex_state = 329, .external_lex_state = 4}, + [328] = {.lex_state = 329, .external_lex_state = 3}, + [329] = {.lex_state = 329, .external_lex_state = 4}, + [330] = {.lex_state = 329, .external_lex_state = 4}, + [331] = {.lex_state = 329, .external_lex_state = 4}, + [332] = {.lex_state = 102, .external_lex_state = 3}, + [333] = {.lex_state = 102, .external_lex_state = 3}, + [334] = {.lex_state = 102, .external_lex_state = 3}, + [335] = {.lex_state = 102, .external_lex_state = 3}, + [336] = {.lex_state = 102, .external_lex_state = 3}, + [337] = {.lex_state = 332, .external_lex_state = 3}, + [338] = {.lex_state = 332, .external_lex_state = 3}, + [339] = {.lex_state = 329, .external_lex_state = 3}, + [340] = {.lex_state = 329, .external_lex_state = 4}, + [341] = {.lex_state = 329, .external_lex_state = 3}, + [342] = {.lex_state = 329, .external_lex_state = 3}, + [343] = {.lex_state = 329, .external_lex_state = 3}, + [344] = {.lex_state = 329, .external_lex_state = 3}, + [345] = {.lex_state = 329, .external_lex_state = 3}, + [346] = {.lex_state = 329, .external_lex_state = 3}, + [347] = {.lex_state = 329, .external_lex_state = 3}, + [348] = {.lex_state = 329, .external_lex_state = 3}, + [349] = {.lex_state = 329, .external_lex_state = 3}, + [350] = {.lex_state = 329, .external_lex_state = 3}, + [351] = {.lex_state = 329, .external_lex_state = 3}, + [352] = {.lex_state = 329, .external_lex_state = 3}, + [353] = {.lex_state = 329, .external_lex_state = 3}, + [354] = {.lex_state = 329, .external_lex_state = 3}, + [355] = {.lex_state = 329, .external_lex_state = 3}, + [356] = {.lex_state = 329, .external_lex_state = 3}, + [357] = {.lex_state = 329, .external_lex_state = 3}, + [358] = {.lex_state = 329, .external_lex_state = 3}, + [359] = {.lex_state = 329, .external_lex_state = 3}, + [360] = {.lex_state = 329, .external_lex_state = 3}, + [361] = {.lex_state = 329, .external_lex_state = 3}, + [362] = {.lex_state = 329, .external_lex_state = 3}, + [363] = {.lex_state = 329, .external_lex_state = 3}, + [364] = {.lex_state = 329, .external_lex_state = 3}, + [365] = {.lex_state = 329, .external_lex_state = 3}, + [366] = {.lex_state = 338, .external_lex_state = 5}, + [367] = {.lex_state = 338, .external_lex_state = 5}, + [368] = {.lex_state = 338, .external_lex_state = 5}, + [369] = {.lex_state = 338, .external_lex_state = 5}, + [370] = {.lex_state = 338, .external_lex_state = 2}, + [371] = {.lex_state = 338, .external_lex_state = 2}, + [372] = {.lex_state = 338, .external_lex_state = 2}, + [373] = {.lex_state = 338, .external_lex_state = 2}, + [374] = {.lex_state = 338, .external_lex_state = 2}, + [375] = {.lex_state = 338, .external_lex_state = 2}, + [376] = {.lex_state = 338, .external_lex_state = 2}, + [377] = {.lex_state = 338, .external_lex_state = 2}, + [378] = {.lex_state = 338, .external_lex_state = 2}, + [379] = {.lex_state = 338, .external_lex_state = 2}, + [380] = {.lex_state = 338, .external_lex_state = 2}, + [381] = {.lex_state = 338, .external_lex_state = 2}, + [382] = {.lex_state = 338, .external_lex_state = 2}, + [383] = {.lex_state = 338, .external_lex_state = 2}, + [384] = {.lex_state = 338, .external_lex_state = 2}, + [385] = {.lex_state = 338, .external_lex_state = 2}, + [386] = {.lex_state = 338, .external_lex_state = 2}, + [387] = {.lex_state = 338, .external_lex_state = 2}, + [388] = {.lex_state = 338, .external_lex_state = 2}, + [389] = {.lex_state = 338, .external_lex_state = 2}, + [390] = {.lex_state = 338, .external_lex_state = 2}, + [391] = {.lex_state = 338, .external_lex_state = 2}, + [392] = {.lex_state = 338, .external_lex_state = 2}, + [393] = {.lex_state = 338, .external_lex_state = 2}, + [394] = {.lex_state = 338, .external_lex_state = 2}, + [395] = {.lex_state = 338, .external_lex_state = 2}, + [396] = {.lex_state = 338, .external_lex_state = 2}, + [397] = {.lex_state = 338, .external_lex_state = 2}, + [398] = {.lex_state = 338, .external_lex_state = 2}, + [399] = {.lex_state = 338, .external_lex_state = 2}, + [400] = {.lex_state = 338, .external_lex_state = 2}, + [401] = {.lex_state = 338, .external_lex_state = 2}, + [402] = {.lex_state = 338, .external_lex_state = 2}, + [403] = {.lex_state = 338, .external_lex_state = 2}, + [404] = {.lex_state = 338, .external_lex_state = 3}, + [405] = {.lex_state = 339, .external_lex_state = 3}, [406] = {.lex_state = 136, .external_lex_state = 2}, - [407] = {.lex_state = 338, .external_lex_state = 3}, - [408] = {.lex_state = 337, .external_lex_state = 2}, - [409] = {.lex_state = 338, .external_lex_state = 7}, - [410] = {.lex_state = 338, .external_lex_state = 7}, - [411] = {.lex_state = 338, .external_lex_state = 7}, - [412] = {.lex_state = 338, .external_lex_state = 2}, + [407] = {.lex_state = 136, .external_lex_state = 2}, + [408] = {.lex_state = 339, .external_lex_state = 7}, + [409] = {.lex_state = 339, .external_lex_state = 7}, + [410] = {.lex_state = 339, .external_lex_state = 7}, + [411] = {.lex_state = 338, .external_lex_state = 2}, + [412] = {.lex_state = 339, .external_lex_state = 2}, [413] = {.lex_state = 338, .external_lex_state = 2}, - [414] = {.lex_state = 337, .external_lex_state = 2}, - [415] = {.lex_state = 337, .external_lex_state = 2}, - [416] = {.lex_state = 337, .external_lex_state = 2}, - [417] = {.lex_state = 338, .external_lex_state = 2}, - [418] = {.lex_state = 337, .external_lex_state = 2}, - [419] = {.lex_state = 338, .external_lex_state = 2}, - [420] = {.lex_state = 337, .external_lex_state = 2}, - [421] = {.lex_state = 338, .external_lex_state = 2}, - [422] = {.lex_state = 338, .external_lex_state = 2}, - [423] = {.lex_state = 338, .external_lex_state = 2}, - [424] = {.lex_state = 338, .external_lex_state = 2}, - [425] = {.lex_state = 337, .external_lex_state = 2}, - [426] = {.lex_state = 338, .external_lex_state = 2}, + [414] = {.lex_state = 339, .external_lex_state = 2}, + [415] = {.lex_state = 339, .external_lex_state = 2}, + [416] = {.lex_state = 339, .external_lex_state = 2}, + [417] = {.lex_state = 339, .external_lex_state = 2}, + [418] = {.lex_state = 338, .external_lex_state = 2}, + [419] = {.lex_state = 339, .external_lex_state = 2}, + [420] = {.lex_state = 338, .external_lex_state = 2}, + [421] = {.lex_state = 339, .external_lex_state = 2}, + [422] = {.lex_state = 339, .external_lex_state = 2}, + [423] = {.lex_state = 339, .external_lex_state = 2}, + [424] = {.lex_state = 339, .external_lex_state = 2}, + [425] = {.lex_state = 338, .external_lex_state = 2}, + [426] = {.lex_state = 339, .external_lex_state = 2}, [427] = {.lex_state = 338, .external_lex_state = 2}, - [428] = {.lex_state = 337, .external_lex_state = 2}, - [429] = {.lex_state = 337, .external_lex_state = 2}, - [430] = {.lex_state = 337, .external_lex_state = 2}, + [428] = {.lex_state = 339, .external_lex_state = 2}, + [429] = {.lex_state = 338, .external_lex_state = 2}, + [430] = {.lex_state = 338, .external_lex_state = 2}, [431] = {.lex_state = 338, .external_lex_state = 2}, - [432] = {.lex_state = 337, .external_lex_state = 2}, - [433] = {.lex_state = 338, .external_lex_state = 2}, + [432] = {.lex_state = 338, .external_lex_state = 2}, + [433] = {.lex_state = 339, .external_lex_state = 2}, [434] = {.lex_state = 338, .external_lex_state = 2}, - [435] = {.lex_state = 337, .external_lex_state = 2}, + [435] = {.lex_state = 338, .external_lex_state = 2}, [436] = {.lex_state = 338, .external_lex_state = 2}, - [437] = {.lex_state = 337, .external_lex_state = 2}, + [437] = {.lex_state = 339, .external_lex_state = 2}, [438] = {.lex_state = 338, .external_lex_state = 2}, - [439] = {.lex_state = 338, .external_lex_state = 2}, - [440] = {.lex_state = 337, .external_lex_state = 2}, - [441] = {.lex_state = 337, .external_lex_state = 4}, - [442] = {.lex_state = 337, .external_lex_state = 4}, - [443] = {.lex_state = 337, .external_lex_state = 4}, - [444] = {.lex_state = 337, .external_lex_state = 4}, - [445] = {.lex_state = 337, .external_lex_state = 2}, - [446] = {.lex_state = 337, .external_lex_state = 4}, - [447] = {.lex_state = 337, .external_lex_state = 2}, - [448] = {.lex_state = 337, .external_lex_state = 4}, - [449] = {.lex_state = 337, .external_lex_state = 4}, - [450] = {.lex_state = 337, .external_lex_state = 4}, - [451] = {.lex_state = 337, .external_lex_state = 2}, - [452] = {.lex_state = 337, .external_lex_state = 4}, - [453] = {.lex_state = 337, .external_lex_state = 4}, - [454] = {.lex_state = 337, .external_lex_state = 2}, - [455] = {.lex_state = 337, .external_lex_state = 2}, - [456] = {.lex_state = 337, .external_lex_state = 4}, - [457] = {.lex_state = 337, .external_lex_state = 4}, - [458] = {.lex_state = 337, .external_lex_state = 4}, - [459] = {.lex_state = 337, .external_lex_state = 4}, - [460] = {.lex_state = 337, .external_lex_state = 4}, - [461] = {.lex_state = 337, .external_lex_state = 4}, - [462] = {.lex_state = 337, .external_lex_state = 2}, - [463] = {.lex_state = 337, .external_lex_state = 4}, - [464] = {.lex_state = 337, .external_lex_state = 2}, - [465] = {.lex_state = 337, .external_lex_state = 2}, - [466] = {.lex_state = 337, .external_lex_state = 4}, - [467] = {.lex_state = 337, .external_lex_state = 2}, - [468] = {.lex_state = 337, .external_lex_state = 4}, - [469] = {.lex_state = 337, .external_lex_state = 4}, - [470] = {.lex_state = 337, .external_lex_state = 4}, - [471] = {.lex_state = 337, .external_lex_state = 4}, - [472] = {.lex_state = 337, .external_lex_state = 4}, - [473] = {.lex_state = 337, .external_lex_state = 2}, - [474] = {.lex_state = 337, .external_lex_state = 2}, - [475] = {.lex_state = 337, .external_lex_state = 4}, - [476] = {.lex_state = 337, .external_lex_state = 2}, - [477] = {.lex_state = 337, .external_lex_state = 4}, - [478] = {.lex_state = 337, .external_lex_state = 2}, - [479] = {.lex_state = 337, .external_lex_state = 2}, - [480] = {.lex_state = 337, .external_lex_state = 2}, - [481] = {.lex_state = 337, .external_lex_state = 2}, - [482] = {.lex_state = 337, .external_lex_state = 2}, - [483] = {.lex_state = 337, .external_lex_state = 2}, - [484] = {.lex_state = 337, .external_lex_state = 2}, - [485] = {.lex_state = 337, .external_lex_state = 2}, - [486] = {.lex_state = 337, .external_lex_state = 2}, - [487] = {.lex_state = 337, .external_lex_state = 2}, - [488] = {.lex_state = 337, .external_lex_state = 2}, - [489] = {.lex_state = 337, .external_lex_state = 2}, - [490] = {.lex_state = 337, .external_lex_state = 2}, - [491] = {.lex_state = 337, .external_lex_state = 2}, - [492] = {.lex_state = 337, .external_lex_state = 6}, - [493] = {.lex_state = 337, .external_lex_state = 6}, - [494] = {.lex_state = 337, .external_lex_state = 6}, - [495] = {.lex_state = 337, .external_lex_state = 7}, - [496] = {.lex_state = 337, .external_lex_state = 2}, - [497] = {.lex_state = 337, .external_lex_state = 2}, - [498] = {.lex_state = 337, .external_lex_state = 5}, - [499] = {.lex_state = 337, .external_lex_state = 8}, - [500] = {.lex_state = 337, .external_lex_state = 2}, - [501] = {.lex_state = 337, .external_lex_state = 2}, - [502] = {.lex_state = 337, .external_lex_state = 2}, - [503] = {.lex_state = 337, .external_lex_state = 2}, - [504] = {.lex_state = 337, .external_lex_state = 2}, - [505] = {.lex_state = 337, .external_lex_state = 2}, - [506] = {.lex_state = 337, .external_lex_state = 2}, - [507] = {.lex_state = 337, .external_lex_state = 2}, - [508] = {.lex_state = 337, .external_lex_state = 2}, - [509] = {.lex_state = 337, .external_lex_state = 2}, - [510] = {.lex_state = 337, .external_lex_state = 2}, - [511] = {.lex_state = 337, .external_lex_state = 9}, - [512] = {.lex_state = 337, .external_lex_state = 2}, - [513] = {.lex_state = 337, .external_lex_state = 2}, - [514] = {.lex_state = 337, .external_lex_state = 2}, - [515] = {.lex_state = 337, .external_lex_state = 2}, - [516] = {.lex_state = 337, .external_lex_state = 2}, - [517] = {.lex_state = 337, .external_lex_state = 2}, - [518] = {.lex_state = 337, .external_lex_state = 2}, - [519] = {.lex_state = 337, .external_lex_state = 2}, - [520] = {.lex_state = 337, .external_lex_state = 2}, - [521] = {.lex_state = 337, .external_lex_state = 2}, - [522] = {.lex_state = 337, .external_lex_state = 2}, - [523] = {.lex_state = 337, .external_lex_state = 2}, - [524] = {.lex_state = 337, .external_lex_state = 2}, - [525] = {.lex_state = 337, .external_lex_state = 2}, - [526] = {.lex_state = 337, .external_lex_state = 2}, - [527] = {.lex_state = 337, .external_lex_state = 2}, - [528] = {.lex_state = 337, .external_lex_state = 2}, - [529] = {.lex_state = 337, .external_lex_state = 2}, - [530] = {.lex_state = 337, .external_lex_state = 2}, - [531] = {.lex_state = 337, .external_lex_state = 2}, - [532] = {.lex_state = 337, .external_lex_state = 2}, - [533] = {.lex_state = 337, .external_lex_state = 2}, - [534] = {.lex_state = 337, .external_lex_state = 2}, - [535] = {.lex_state = 337, .external_lex_state = 2}, - [536] = {.lex_state = 337, .external_lex_state = 2}, - [537] = {.lex_state = 337, .external_lex_state = 2}, - [538] = {.lex_state = 337, .external_lex_state = 2}, - [539] = {.lex_state = 337, .external_lex_state = 2}, - [540] = {.lex_state = 337, .external_lex_state = 2}, - [541] = {.lex_state = 337, .external_lex_state = 2}, - [542] = {.lex_state = 337, .external_lex_state = 2}, - [543] = {.lex_state = 337, .external_lex_state = 2}, - [544] = {.lex_state = 337, .external_lex_state = 2}, - [545] = {.lex_state = 337, .external_lex_state = 2}, - [546] = {.lex_state = 337, .external_lex_state = 2}, - [547] = {.lex_state = 337, .external_lex_state = 2}, - [548] = {.lex_state = 337, .external_lex_state = 2}, - [549] = {.lex_state = 337, .external_lex_state = 2}, - [550] = {.lex_state = 337, .external_lex_state = 2}, - [551] = {.lex_state = 337, .external_lex_state = 2}, - [552] = {.lex_state = 337, .external_lex_state = 2}, - [553] = {.lex_state = 337, .external_lex_state = 2}, - [554] = {.lex_state = 337, .external_lex_state = 2}, - [555] = {.lex_state = 337, .external_lex_state = 2}, - [556] = {.lex_state = 337, .external_lex_state = 2}, - [557] = {.lex_state = 337, .external_lex_state = 2}, - [558] = {.lex_state = 337, .external_lex_state = 2}, - [559] = {.lex_state = 337, .external_lex_state = 2}, - [560] = {.lex_state = 337, .external_lex_state = 2}, - [561] = {.lex_state = 337, .external_lex_state = 2}, - [562] = {.lex_state = 337, .external_lex_state = 2}, - [563] = {.lex_state = 337, .external_lex_state = 2}, - [564] = {.lex_state = 337, .external_lex_state = 2}, - [565] = {.lex_state = 337, .external_lex_state = 2}, - [566] = {.lex_state = 337, .external_lex_state = 2}, - [567] = {.lex_state = 337, .external_lex_state = 2}, - [568] = {.lex_state = 337, .external_lex_state = 2}, - [569] = {.lex_state = 337, .external_lex_state = 2}, - [570] = {.lex_state = 337, .external_lex_state = 2}, - [571] = {.lex_state = 337, .external_lex_state = 2}, - [572] = {.lex_state = 337, .external_lex_state = 2}, - [573] = {.lex_state = 337, .external_lex_state = 2}, - [574] = {.lex_state = 337, .external_lex_state = 2}, - [575] = {.lex_state = 337, .external_lex_state = 2}, - [576] = {.lex_state = 337, .external_lex_state = 2}, - [577] = {.lex_state = 337, .external_lex_state = 2}, - [578] = {.lex_state = 337, .external_lex_state = 2}, - [579] = {.lex_state = 337, .external_lex_state = 2}, - [580] = {.lex_state = 337, .external_lex_state = 2}, - [581] = {.lex_state = 337, .external_lex_state = 2}, - [582] = {.lex_state = 337, .external_lex_state = 2}, - [583] = {.lex_state = 337, .external_lex_state = 2}, - [584] = {.lex_state = 337, .external_lex_state = 2}, - [585] = {.lex_state = 337, .external_lex_state = 2}, - [586] = {.lex_state = 337, .external_lex_state = 2}, - [587] = {.lex_state = 337, .external_lex_state = 2}, - [588] = {.lex_state = 337, .external_lex_state = 2}, - [589] = {.lex_state = 337, .external_lex_state = 2}, - [590] = {.lex_state = 337, .external_lex_state = 2}, - [591] = {.lex_state = 337, .external_lex_state = 2}, - [592] = {.lex_state = 337, .external_lex_state = 2}, - [593] = {.lex_state = 337, .external_lex_state = 2}, - [594] = {.lex_state = 337, .external_lex_state = 2}, - [595] = {.lex_state = 337, .external_lex_state = 2}, - [596] = {.lex_state = 337, .external_lex_state = 2}, - [597] = {.lex_state = 337, .external_lex_state = 2}, - [598] = {.lex_state = 337, .external_lex_state = 2}, - [599] = {.lex_state = 337, .external_lex_state = 2}, - [600] = {.lex_state = 337, .external_lex_state = 2}, - [601] = {.lex_state = 337, .external_lex_state = 2}, - [602] = {.lex_state = 337, .external_lex_state = 2}, - [603] = {.lex_state = 337, .external_lex_state = 2}, - [604] = {.lex_state = 337, .external_lex_state = 2}, - [605] = {.lex_state = 337, .external_lex_state = 2}, - [606] = {.lex_state = 337, .external_lex_state = 2}, - [607] = {.lex_state = 337, .external_lex_state = 2}, - [608] = {.lex_state = 337, .external_lex_state = 2}, - [609] = {.lex_state = 337, .external_lex_state = 2}, - [610] = {.lex_state = 337, .external_lex_state = 2}, - [611] = {.lex_state = 337, .external_lex_state = 2}, - [612] = {.lex_state = 337, .external_lex_state = 2}, - [613] = {.lex_state = 337, .external_lex_state = 2}, - [614] = {.lex_state = 337, .external_lex_state = 2}, - [615] = {.lex_state = 337, .external_lex_state = 2}, - [616] = {.lex_state = 337, .external_lex_state = 2}, - [617] = {.lex_state = 337, .external_lex_state = 2}, - [618] = {.lex_state = 337, .external_lex_state = 2}, - [619] = {.lex_state = 337, .external_lex_state = 2}, - [620] = {.lex_state = 337, .external_lex_state = 2}, - [621] = {.lex_state = 337, .external_lex_state = 2}, - [622] = {.lex_state = 337, .external_lex_state = 2}, - [623] = {.lex_state = 337, .external_lex_state = 2}, - [624] = {.lex_state = 337, .external_lex_state = 2}, - [625] = {.lex_state = 337, .external_lex_state = 2}, - [626] = {.lex_state = 337, .external_lex_state = 2}, - [627] = {.lex_state = 337, .external_lex_state = 2}, - [628] = {.lex_state = 337, .external_lex_state = 2}, - [629] = {.lex_state = 337, .external_lex_state = 2}, - [630] = {.lex_state = 337, .external_lex_state = 2}, - [631] = {.lex_state = 337, .external_lex_state = 2}, - [632] = {.lex_state = 337, .external_lex_state = 2}, - [633] = {.lex_state = 337, .external_lex_state = 2}, - [634] = {.lex_state = 337, .external_lex_state = 2}, - [635] = {.lex_state = 337, .external_lex_state = 2}, - [636] = {.lex_state = 337, .external_lex_state = 2}, - [637] = {.lex_state = 337, .external_lex_state = 2}, - [638] = {.lex_state = 337, .external_lex_state = 2}, - [639] = {.lex_state = 337, .external_lex_state = 2}, - [640] = {.lex_state = 337, .external_lex_state = 2}, - [641] = {.lex_state = 337, .external_lex_state = 2}, - [642] = {.lex_state = 337, .external_lex_state = 2}, - [643] = {.lex_state = 337, .external_lex_state = 2}, - [644] = {.lex_state = 337, .external_lex_state = 2}, - [645] = {.lex_state = 337, .external_lex_state = 2}, - [646] = {.lex_state = 337, .external_lex_state = 2}, - [647] = {.lex_state = 337, .external_lex_state = 2}, - [648] = {.lex_state = 337, .external_lex_state = 2}, - [649] = {.lex_state = 337, .external_lex_state = 2}, - [650] = {.lex_state = 337, .external_lex_state = 2}, - [651] = {.lex_state = 337, .external_lex_state = 2}, - [652] = {.lex_state = 337, .external_lex_state = 2}, - [653] = {.lex_state = 337, .external_lex_state = 2}, - [654] = {.lex_state = 337, .external_lex_state = 2}, - [655] = {.lex_state = 337, .external_lex_state = 2}, - [656] = {.lex_state = 337, .external_lex_state = 2}, - [657] = {.lex_state = 337, .external_lex_state = 2}, - [658] = {.lex_state = 337, .external_lex_state = 2}, - [659] = {.lex_state = 337, .external_lex_state = 2}, - [660] = {.lex_state = 337, .external_lex_state = 2}, - [661] = {.lex_state = 337, .external_lex_state = 2}, - [662] = {.lex_state = 337, .external_lex_state = 2}, - [663] = {.lex_state = 337, .external_lex_state = 2}, - [664] = {.lex_state = 337, .external_lex_state = 2}, - [665] = {.lex_state = 337, .external_lex_state = 2}, - [666] = {.lex_state = 337, .external_lex_state = 2}, - [667] = {.lex_state = 337, .external_lex_state = 2}, - [668] = {.lex_state = 337, .external_lex_state = 2}, - [669] = {.lex_state = 337, .external_lex_state = 2}, - [670] = {.lex_state = 337, .external_lex_state = 2}, - [671] = {.lex_state = 337, .external_lex_state = 2}, - [672] = {.lex_state = 337, .external_lex_state = 2}, - [673] = {.lex_state = 337, .external_lex_state = 2}, - [674] = {.lex_state = 337, .external_lex_state = 2}, - [675] = {.lex_state = 337, .external_lex_state = 2}, - [676] = {.lex_state = 337, .external_lex_state = 2}, - [677] = {.lex_state = 337, .external_lex_state = 2}, - [678] = {.lex_state = 337, .external_lex_state = 2}, - [679] = {.lex_state = 337, .external_lex_state = 2}, - [680] = {.lex_state = 337, .external_lex_state = 2}, - [681] = {.lex_state = 337, .external_lex_state = 2}, - [682] = {.lex_state = 337, .external_lex_state = 2}, - [683] = {.lex_state = 337, .external_lex_state = 2}, - [684] = {.lex_state = 337, .external_lex_state = 2}, - [685] = {.lex_state = 337, .external_lex_state = 2}, - [686] = {.lex_state = 337, .external_lex_state = 2}, - [687] = {.lex_state = 337, .external_lex_state = 2}, - [688] = {.lex_state = 337, .external_lex_state = 2}, - [689] = {.lex_state = 337, .external_lex_state = 2}, - [690] = {.lex_state = 337, .external_lex_state = 2}, - [691] = {.lex_state = 337, .external_lex_state = 2}, - [692] = {.lex_state = 337, .external_lex_state = 2}, - [693] = {.lex_state = 337, .external_lex_state = 2}, - [694] = {.lex_state = 337, .external_lex_state = 2}, - [695] = {.lex_state = 337, .external_lex_state = 2}, - [696] = {.lex_state = 337, .external_lex_state = 2}, - [697] = {.lex_state = 337, .external_lex_state = 2}, - [698] = {.lex_state = 337, .external_lex_state = 2}, - [699] = {.lex_state = 337, .external_lex_state = 2}, - [700] = {.lex_state = 337, .external_lex_state = 2}, - [701] = {.lex_state = 337, .external_lex_state = 2}, - [702] = {.lex_state = 337, .external_lex_state = 2}, - [703] = {.lex_state = 337, .external_lex_state = 2}, - [704] = {.lex_state = 337, .external_lex_state = 2}, - [705] = {.lex_state = 337, .external_lex_state = 2}, - [706] = {.lex_state = 337, .external_lex_state = 2}, - [707] = {.lex_state = 337, .external_lex_state = 2}, - [708] = {.lex_state = 337, .external_lex_state = 2}, - [709] = {.lex_state = 337, .external_lex_state = 2}, - [710] = {.lex_state = 337, .external_lex_state = 2}, - [711] = {.lex_state = 337, .external_lex_state = 2}, - [712] = {.lex_state = 337, .external_lex_state = 2}, - [713] = {.lex_state = 337, .external_lex_state = 2}, - [714] = {.lex_state = 337, .external_lex_state = 2}, - [715] = {.lex_state = 337, .external_lex_state = 2}, - [716] = {.lex_state = 337, .external_lex_state = 2}, - [717] = {.lex_state = 337, .external_lex_state = 2}, - [718] = {.lex_state = 337, .external_lex_state = 2}, - [719] = {.lex_state = 337, .external_lex_state = 2}, - [720] = {.lex_state = 337, .external_lex_state = 2}, - [721] = {.lex_state = 337, .external_lex_state = 2}, - [722] = {.lex_state = 337, .external_lex_state = 2}, - [723] = {.lex_state = 337, .external_lex_state = 2}, - [724] = {.lex_state = 337, .external_lex_state = 2}, - [725] = {.lex_state = 337, .external_lex_state = 2}, - [726] = {.lex_state = 337, .external_lex_state = 2}, - [727] = {.lex_state = 337, .external_lex_state = 2}, - [728] = {.lex_state = 337, .external_lex_state = 2}, - [729] = {.lex_state = 337, .external_lex_state = 2}, - [730] = {.lex_state = 337, .external_lex_state = 2}, - [731] = {.lex_state = 337, .external_lex_state = 2}, - [732] = {.lex_state = 337, .external_lex_state = 2}, - [733] = {.lex_state = 337, .external_lex_state = 2}, - [734] = {.lex_state = 337, .external_lex_state = 2}, - [735] = {.lex_state = 337, .external_lex_state = 2}, - [736] = {.lex_state = 337, .external_lex_state = 2}, - [737] = {.lex_state = 337, .external_lex_state = 2}, - [738] = {.lex_state = 337, .external_lex_state = 2}, - [739] = {.lex_state = 337, .external_lex_state = 2}, - [740] = {.lex_state = 337, .external_lex_state = 2}, - [741] = {.lex_state = 337, .external_lex_state = 2}, - [742] = {.lex_state = 337, .external_lex_state = 2}, - [743] = {.lex_state = 337, .external_lex_state = 2}, - [744] = {.lex_state = 337, .external_lex_state = 2}, - [745] = {.lex_state = 337, .external_lex_state = 2}, - [746] = {.lex_state = 337, .external_lex_state = 2}, - [747] = {.lex_state = 337, .external_lex_state = 2}, - [748] = {.lex_state = 337, .external_lex_state = 2}, - [749] = {.lex_state = 337, .external_lex_state = 2}, - [750] = {.lex_state = 337, .external_lex_state = 2}, - [751] = {.lex_state = 337, .external_lex_state = 2}, - [752] = {.lex_state = 337, .external_lex_state = 2}, - [753] = {.lex_state = 337, .external_lex_state = 2}, - [754] = {.lex_state = 337, .external_lex_state = 2}, - [755] = {.lex_state = 337, .external_lex_state = 2}, - [756] = {.lex_state = 337, .external_lex_state = 2}, - [757] = {.lex_state = 337, .external_lex_state = 2}, - [758] = {.lex_state = 337, .external_lex_state = 2}, - [759] = {.lex_state = 337, .external_lex_state = 2}, - [760] = {.lex_state = 337, .external_lex_state = 2}, - [761] = {.lex_state = 337, .external_lex_state = 2}, - [762] = {.lex_state = 337, .external_lex_state = 2}, - [763] = {.lex_state = 337, .external_lex_state = 2}, - [764] = {.lex_state = 337, .external_lex_state = 2}, - [765] = {.lex_state = 337, .external_lex_state = 2}, - [766] = {.lex_state = 337, .external_lex_state = 2}, - [767] = {.lex_state = 337, .external_lex_state = 2}, - [768] = {.lex_state = 337, .external_lex_state = 2}, - [769] = {.lex_state = 337, .external_lex_state = 2}, - [770] = {.lex_state = 337, .external_lex_state = 2}, - [771] = {.lex_state = 337, .external_lex_state = 2}, - [772] = {.lex_state = 337, .external_lex_state = 2}, - [773] = {.lex_state = 337, .external_lex_state = 2}, - [774] = {.lex_state = 337, .external_lex_state = 2}, - [775] = {.lex_state = 337, .external_lex_state = 2}, - [776] = {.lex_state = 337, .external_lex_state = 2}, - [777] = {.lex_state = 337, .external_lex_state = 2}, - [778] = {.lex_state = 337, .external_lex_state = 2}, - [779] = {.lex_state = 337, .external_lex_state = 2}, - [780] = {.lex_state = 337, .external_lex_state = 2}, - [781] = {.lex_state = 337, .external_lex_state = 2}, - [782] = {.lex_state = 337, .external_lex_state = 2}, - [783] = {.lex_state = 337, .external_lex_state = 2}, - [784] = {.lex_state = 337, .external_lex_state = 2}, - [785] = {.lex_state = 337, .external_lex_state = 2}, - [786] = {.lex_state = 337, .external_lex_state = 2}, - [787] = {.lex_state = 337, .external_lex_state = 2}, - [788] = {.lex_state = 337, .external_lex_state = 2}, - [789] = {.lex_state = 337, .external_lex_state = 2}, - [790] = {.lex_state = 337, .external_lex_state = 2}, - [791] = {.lex_state = 337, .external_lex_state = 2}, - [792] = {.lex_state = 337, .external_lex_state = 2}, - [793] = {.lex_state = 337, .external_lex_state = 2}, - [794] = {.lex_state = 337, .external_lex_state = 2}, - [795] = {.lex_state = 337, .external_lex_state = 2}, - [796] = {.lex_state = 337, .external_lex_state = 2}, - [797] = {.lex_state = 337, .external_lex_state = 2}, - [798] = {.lex_state = 337, .external_lex_state = 2}, - [799] = {.lex_state = 337, .external_lex_state = 2}, - [800] = {.lex_state = 337, .external_lex_state = 2}, - [801] = {.lex_state = 337, .external_lex_state = 2}, - [802] = {.lex_state = 337, .external_lex_state = 2}, - [803] = {.lex_state = 337, .external_lex_state = 2}, - [804] = {.lex_state = 337, .external_lex_state = 2}, - [805] = {.lex_state = 337, .external_lex_state = 2}, - [806] = {.lex_state = 337, .external_lex_state = 2}, - [807] = {.lex_state = 330, .external_lex_state = 3}, - [808] = {.lex_state = 330, .external_lex_state = 3}, - [809] = {.lex_state = 330, .external_lex_state = 3}, - [810] = {.lex_state = 325, .external_lex_state = 3}, - [811] = {.lex_state = 325, .external_lex_state = 3}, - [812] = {.lex_state = 325, .external_lex_state = 3}, - [813] = {.lex_state = 67, .external_lex_state = 5}, + [439] = {.lex_state = 339, .external_lex_state = 2}, + [440] = {.lex_state = 339, .external_lex_state = 2}, + [441] = {.lex_state = 338, .external_lex_state = 2}, + [442] = {.lex_state = 338, .external_lex_state = 5}, + [443] = {.lex_state = 338, .external_lex_state = 2}, + [444] = {.lex_state = 338, .external_lex_state = 5}, + [445] = {.lex_state = 338, .external_lex_state = 2}, + [446] = {.lex_state = 338, .external_lex_state = 5}, + [447] = {.lex_state = 338, .external_lex_state = 5}, + [448] = {.lex_state = 338, .external_lex_state = 5}, + [449] = {.lex_state = 338, .external_lex_state = 5}, + [450] = {.lex_state = 338, .external_lex_state = 5}, + [451] = {.lex_state = 338, .external_lex_state = 5}, + [452] = {.lex_state = 338, .external_lex_state = 5}, + [453] = {.lex_state = 338, .external_lex_state = 5}, + [454] = {.lex_state = 338, .external_lex_state = 5}, + [455] = {.lex_state = 338, .external_lex_state = 5}, + [456] = {.lex_state = 338, .external_lex_state = 5}, + [457] = {.lex_state = 338, .external_lex_state = 5}, + [458] = {.lex_state = 338, .external_lex_state = 5}, + [459] = {.lex_state = 338, .external_lex_state = 5}, + [460] = {.lex_state = 338, .external_lex_state = 2}, + [461] = {.lex_state = 338, .external_lex_state = 5}, + [462] = {.lex_state = 338, .external_lex_state = 5}, + [463] = {.lex_state = 338, .external_lex_state = 2}, + [464] = {.lex_state = 338, .external_lex_state = 2}, + [465] = {.lex_state = 338, .external_lex_state = 2}, + [466] = {.lex_state = 338, .external_lex_state = 5}, + [467] = {.lex_state = 338, .external_lex_state = 5}, + [468] = {.lex_state = 338, .external_lex_state = 5}, + [469] = {.lex_state = 338, .external_lex_state = 2}, + [470] = {.lex_state = 338, .external_lex_state = 5}, + [471] = {.lex_state = 338, .external_lex_state = 5}, + [472] = {.lex_state = 338, .external_lex_state = 5}, + [473] = {.lex_state = 338, .external_lex_state = 2}, + [474] = {.lex_state = 338, .external_lex_state = 2}, + [475] = {.lex_state = 338, .external_lex_state = 2}, + [476] = {.lex_state = 338, .external_lex_state = 2}, + [477] = {.lex_state = 338, .external_lex_state = 2}, + [478] = {.lex_state = 338, .external_lex_state = 2}, + [479] = {.lex_state = 338, .external_lex_state = 2}, + [480] = {.lex_state = 338, .external_lex_state = 2}, + [481] = {.lex_state = 338, .external_lex_state = 5}, + [482] = {.lex_state = 338, .external_lex_state = 2}, + [483] = {.lex_state = 338, .external_lex_state = 2}, + [484] = {.lex_state = 338, .external_lex_state = 2}, + [485] = {.lex_state = 338, .external_lex_state = 2}, + [486] = {.lex_state = 338, .external_lex_state = 2}, + [487] = {.lex_state = 338, .external_lex_state = 2}, + [488] = {.lex_state = 338, .external_lex_state = 2}, + [489] = {.lex_state = 338, .external_lex_state = 2}, + [490] = {.lex_state = 338, .external_lex_state = 2}, + [491] = {.lex_state = 338, .external_lex_state = 2}, + [492] = {.lex_state = 338, .external_lex_state = 6}, + [493] = {.lex_state = 338, .external_lex_state = 6}, + [494] = {.lex_state = 338, .external_lex_state = 6}, + [495] = {.lex_state = 338, .external_lex_state = 2}, + [496] = {.lex_state = 338, .external_lex_state = 2}, + [497] = {.lex_state = 338, .external_lex_state = 7}, + [498] = {.lex_state = 338, .external_lex_state = 4}, + [499] = {.lex_state = 338, .external_lex_state = 8}, + [500] = {.lex_state = 338, .external_lex_state = 2}, + [501] = {.lex_state = 338, .external_lex_state = 2}, + [502] = {.lex_state = 338, .external_lex_state = 2}, + [503] = {.lex_state = 338, .external_lex_state = 2}, + [504] = {.lex_state = 338, .external_lex_state = 2}, + [505] = {.lex_state = 338, .external_lex_state = 2}, + [506] = {.lex_state = 338, .external_lex_state = 2}, + [507] = {.lex_state = 338, .external_lex_state = 2}, + [508] = {.lex_state = 338, .external_lex_state = 2}, + [509] = {.lex_state = 338, .external_lex_state = 2}, + [510] = {.lex_state = 338, .external_lex_state = 2}, + [511] = {.lex_state = 338, .external_lex_state = 2}, + [512] = {.lex_state = 338, .external_lex_state = 2}, + [513] = {.lex_state = 338, .external_lex_state = 2}, + [514] = {.lex_state = 338, .external_lex_state = 2}, + [515] = {.lex_state = 338, .external_lex_state = 2}, + [516] = {.lex_state = 338, .external_lex_state = 2}, + [517] = {.lex_state = 338, .external_lex_state = 2}, + [518] = {.lex_state = 338, .external_lex_state = 2}, + [519] = {.lex_state = 338, .external_lex_state = 2}, + [520] = {.lex_state = 338, .external_lex_state = 2}, + [521] = {.lex_state = 338, .external_lex_state = 2}, + [522] = {.lex_state = 338, .external_lex_state = 2}, + [523] = {.lex_state = 338, .external_lex_state = 2}, + [524] = {.lex_state = 338, .external_lex_state = 2}, + [525] = {.lex_state = 338, .external_lex_state = 2}, + [526] = {.lex_state = 338, .external_lex_state = 2}, + [527] = {.lex_state = 338, .external_lex_state = 9}, + [528] = {.lex_state = 338, .external_lex_state = 2}, + [529] = {.lex_state = 338, .external_lex_state = 2}, + [530] = {.lex_state = 338, .external_lex_state = 2}, + [531] = {.lex_state = 338, .external_lex_state = 2}, + [532] = {.lex_state = 338, .external_lex_state = 2}, + [533] = {.lex_state = 338, .external_lex_state = 2}, + [534] = {.lex_state = 338, .external_lex_state = 2}, + [535] = {.lex_state = 338, .external_lex_state = 2}, + [536] = {.lex_state = 338, .external_lex_state = 2}, + [537] = {.lex_state = 338, .external_lex_state = 2}, + [538] = {.lex_state = 338, .external_lex_state = 2}, + [539] = {.lex_state = 338, .external_lex_state = 2}, + [540] = {.lex_state = 338, .external_lex_state = 2}, + [541] = {.lex_state = 338, .external_lex_state = 2}, + [542] = {.lex_state = 338, .external_lex_state = 2}, + [543] = {.lex_state = 338, .external_lex_state = 2}, + [544] = {.lex_state = 338, .external_lex_state = 2}, + [545] = {.lex_state = 338, .external_lex_state = 2}, + [546] = {.lex_state = 338, .external_lex_state = 2}, + [547] = {.lex_state = 338, .external_lex_state = 2}, + [548] = {.lex_state = 338, .external_lex_state = 2}, + [549] = {.lex_state = 338, .external_lex_state = 2}, + [550] = {.lex_state = 338, .external_lex_state = 2}, + [551] = {.lex_state = 338, .external_lex_state = 2}, + [552] = {.lex_state = 338, .external_lex_state = 2}, + [553] = {.lex_state = 338, .external_lex_state = 2}, + [554] = {.lex_state = 338, .external_lex_state = 2}, + [555] = {.lex_state = 338, .external_lex_state = 2}, + [556] = {.lex_state = 338, .external_lex_state = 2}, + [557] = {.lex_state = 338, .external_lex_state = 2}, + [558] = {.lex_state = 338, .external_lex_state = 2}, + [559] = {.lex_state = 338, .external_lex_state = 2}, + [560] = {.lex_state = 338, .external_lex_state = 2}, + [561] = {.lex_state = 338, .external_lex_state = 2}, + [562] = {.lex_state = 338, .external_lex_state = 2}, + [563] = {.lex_state = 338, .external_lex_state = 2}, + [564] = {.lex_state = 338, .external_lex_state = 2}, + [565] = {.lex_state = 338, .external_lex_state = 2}, + [566] = {.lex_state = 338, .external_lex_state = 2}, + [567] = {.lex_state = 338, .external_lex_state = 2}, + [568] = {.lex_state = 338, .external_lex_state = 2}, + [569] = {.lex_state = 338, .external_lex_state = 2}, + [570] = {.lex_state = 338, .external_lex_state = 2}, + [571] = {.lex_state = 338, .external_lex_state = 2}, + [572] = {.lex_state = 338, .external_lex_state = 2}, + [573] = {.lex_state = 338, .external_lex_state = 2}, + [574] = {.lex_state = 338, .external_lex_state = 2}, + [575] = {.lex_state = 338, .external_lex_state = 2}, + [576] = {.lex_state = 338, .external_lex_state = 2}, + [577] = {.lex_state = 338, .external_lex_state = 2}, + [578] = {.lex_state = 338, .external_lex_state = 2}, + [579] = {.lex_state = 338, .external_lex_state = 2}, + [580] = {.lex_state = 338, .external_lex_state = 2}, + [581] = {.lex_state = 338, .external_lex_state = 2}, + [582] = {.lex_state = 338, .external_lex_state = 2}, + [583] = {.lex_state = 338, .external_lex_state = 2}, + [584] = {.lex_state = 338, .external_lex_state = 2}, + [585] = {.lex_state = 338, .external_lex_state = 2}, + [586] = {.lex_state = 338, .external_lex_state = 2}, + [587] = {.lex_state = 338, .external_lex_state = 2}, + [588] = {.lex_state = 338, .external_lex_state = 2}, + [589] = {.lex_state = 338, .external_lex_state = 2}, + [590] = {.lex_state = 338, .external_lex_state = 2}, + [591] = {.lex_state = 338, .external_lex_state = 2}, + [592] = {.lex_state = 338, .external_lex_state = 2}, + [593] = {.lex_state = 338, .external_lex_state = 2}, + [594] = {.lex_state = 338, .external_lex_state = 2}, + [595] = {.lex_state = 338, .external_lex_state = 2}, + [596] = {.lex_state = 338, .external_lex_state = 2}, + [597] = {.lex_state = 338, .external_lex_state = 2}, + [598] = {.lex_state = 338, .external_lex_state = 2}, + [599] = {.lex_state = 338, .external_lex_state = 2}, + [600] = {.lex_state = 338, .external_lex_state = 2}, + [601] = {.lex_state = 338, .external_lex_state = 2}, + [602] = {.lex_state = 338, .external_lex_state = 2}, + [603] = {.lex_state = 338, .external_lex_state = 2}, + [604] = {.lex_state = 338, .external_lex_state = 2}, + [605] = {.lex_state = 338, .external_lex_state = 2}, + [606] = {.lex_state = 338, .external_lex_state = 2}, + [607] = {.lex_state = 338, .external_lex_state = 2}, + [608] = {.lex_state = 338, .external_lex_state = 2}, + [609] = {.lex_state = 338, .external_lex_state = 2}, + [610] = {.lex_state = 338, .external_lex_state = 2}, + [611] = {.lex_state = 338, .external_lex_state = 2}, + [612] = {.lex_state = 338, .external_lex_state = 2}, + [613] = {.lex_state = 338, .external_lex_state = 2}, + [614] = {.lex_state = 338, .external_lex_state = 2}, + [615] = {.lex_state = 338, .external_lex_state = 2}, + [616] = {.lex_state = 338, .external_lex_state = 2}, + [617] = {.lex_state = 338, .external_lex_state = 2}, + [618] = {.lex_state = 338, .external_lex_state = 2}, + [619] = {.lex_state = 338, .external_lex_state = 2}, + [620] = {.lex_state = 338, .external_lex_state = 2}, + [621] = {.lex_state = 338, .external_lex_state = 2}, + [622] = {.lex_state = 338, .external_lex_state = 2}, + [623] = {.lex_state = 338, .external_lex_state = 2}, + [624] = {.lex_state = 338, .external_lex_state = 2}, + [625] = {.lex_state = 338, .external_lex_state = 2}, + [626] = {.lex_state = 338, .external_lex_state = 2}, + [627] = {.lex_state = 338, .external_lex_state = 2}, + [628] = {.lex_state = 338, .external_lex_state = 2}, + [629] = {.lex_state = 338, .external_lex_state = 2}, + [630] = {.lex_state = 338, .external_lex_state = 2}, + [631] = {.lex_state = 338, .external_lex_state = 2}, + [632] = {.lex_state = 338, .external_lex_state = 2}, + [633] = {.lex_state = 338, .external_lex_state = 2}, + [634] = {.lex_state = 338, .external_lex_state = 2}, + [635] = {.lex_state = 338, .external_lex_state = 2}, + [636] = {.lex_state = 338, .external_lex_state = 2}, + [637] = {.lex_state = 338, .external_lex_state = 2}, + [638] = {.lex_state = 338, .external_lex_state = 2}, + [639] = {.lex_state = 338, .external_lex_state = 2}, + [640] = {.lex_state = 338, .external_lex_state = 2}, + [641] = {.lex_state = 338, .external_lex_state = 2}, + [642] = {.lex_state = 338, .external_lex_state = 2}, + [643] = {.lex_state = 338, .external_lex_state = 2}, + [644] = {.lex_state = 338, .external_lex_state = 2}, + [645] = {.lex_state = 338, .external_lex_state = 2}, + [646] = {.lex_state = 338, .external_lex_state = 2}, + [647] = {.lex_state = 338, .external_lex_state = 2}, + [648] = {.lex_state = 338, .external_lex_state = 2}, + [649] = {.lex_state = 338, .external_lex_state = 2}, + [650] = {.lex_state = 338, .external_lex_state = 2}, + [651] = {.lex_state = 338, .external_lex_state = 2}, + [652] = {.lex_state = 338, .external_lex_state = 2}, + [653] = {.lex_state = 338, .external_lex_state = 2}, + [654] = {.lex_state = 338, .external_lex_state = 2}, + [655] = {.lex_state = 338, .external_lex_state = 2}, + [656] = {.lex_state = 338, .external_lex_state = 2}, + [657] = {.lex_state = 338, .external_lex_state = 2}, + [658] = {.lex_state = 338, .external_lex_state = 2}, + [659] = {.lex_state = 338, .external_lex_state = 2}, + [660] = {.lex_state = 338, .external_lex_state = 2}, + [661] = {.lex_state = 338, .external_lex_state = 2}, + [662] = {.lex_state = 338, .external_lex_state = 2}, + [663] = {.lex_state = 338, .external_lex_state = 2}, + [664] = {.lex_state = 338, .external_lex_state = 2}, + [665] = {.lex_state = 338, .external_lex_state = 2}, + [666] = {.lex_state = 338, .external_lex_state = 2}, + [667] = {.lex_state = 338, .external_lex_state = 2}, + [668] = {.lex_state = 338, .external_lex_state = 2}, + [669] = {.lex_state = 338, .external_lex_state = 2}, + [670] = {.lex_state = 338, .external_lex_state = 2}, + [671] = {.lex_state = 338, .external_lex_state = 2}, + [672] = {.lex_state = 338, .external_lex_state = 2}, + [673] = {.lex_state = 338, .external_lex_state = 2}, + [674] = {.lex_state = 338, .external_lex_state = 2}, + [675] = {.lex_state = 338, .external_lex_state = 2}, + [676] = {.lex_state = 338, .external_lex_state = 2}, + [677] = {.lex_state = 338, .external_lex_state = 2}, + [678] = {.lex_state = 338, .external_lex_state = 2}, + [679] = {.lex_state = 338, .external_lex_state = 2}, + [680] = {.lex_state = 338, .external_lex_state = 2}, + [681] = {.lex_state = 338, .external_lex_state = 2}, + [682] = {.lex_state = 338, .external_lex_state = 2}, + [683] = {.lex_state = 338, .external_lex_state = 2}, + [684] = {.lex_state = 338, .external_lex_state = 2}, + [685] = {.lex_state = 338, .external_lex_state = 2}, + [686] = {.lex_state = 338, .external_lex_state = 2}, + [687] = {.lex_state = 338, .external_lex_state = 2}, + [688] = {.lex_state = 338, .external_lex_state = 2}, + [689] = {.lex_state = 338, .external_lex_state = 2}, + [690] = {.lex_state = 338, .external_lex_state = 2}, + [691] = {.lex_state = 338, .external_lex_state = 2}, + [692] = {.lex_state = 338, .external_lex_state = 2}, + [693] = {.lex_state = 338, .external_lex_state = 2}, + [694] = {.lex_state = 338, .external_lex_state = 2}, + [695] = {.lex_state = 338, .external_lex_state = 2}, + [696] = {.lex_state = 338, .external_lex_state = 2}, + [697] = {.lex_state = 338, .external_lex_state = 2}, + [698] = {.lex_state = 338, .external_lex_state = 2}, + [699] = {.lex_state = 338, .external_lex_state = 2}, + [700] = {.lex_state = 338, .external_lex_state = 2}, + [701] = {.lex_state = 338, .external_lex_state = 2}, + [702] = {.lex_state = 338, .external_lex_state = 2}, + [703] = {.lex_state = 338, .external_lex_state = 2}, + [704] = {.lex_state = 338, .external_lex_state = 2}, + [705] = {.lex_state = 338, .external_lex_state = 2}, + [706] = {.lex_state = 338, .external_lex_state = 2}, + [707] = {.lex_state = 338, .external_lex_state = 2}, + [708] = {.lex_state = 338, .external_lex_state = 2}, + [709] = {.lex_state = 338, .external_lex_state = 2}, + [710] = {.lex_state = 338, .external_lex_state = 2}, + [711] = {.lex_state = 338, .external_lex_state = 2}, + [712] = {.lex_state = 338, .external_lex_state = 2}, + [713] = {.lex_state = 338, .external_lex_state = 2}, + [714] = {.lex_state = 338, .external_lex_state = 2}, + [715] = {.lex_state = 338, .external_lex_state = 2}, + [716] = {.lex_state = 338, .external_lex_state = 2}, + [717] = {.lex_state = 338, .external_lex_state = 2}, + [718] = {.lex_state = 338, .external_lex_state = 2}, + [719] = {.lex_state = 338, .external_lex_state = 2}, + [720] = {.lex_state = 338, .external_lex_state = 2}, + [721] = {.lex_state = 338, .external_lex_state = 2}, + [722] = {.lex_state = 338, .external_lex_state = 2}, + [723] = {.lex_state = 338, .external_lex_state = 2}, + [724] = {.lex_state = 338, .external_lex_state = 2}, + [725] = {.lex_state = 338, .external_lex_state = 2}, + [726] = {.lex_state = 338, .external_lex_state = 2}, + [727] = {.lex_state = 338, .external_lex_state = 2}, + [728] = {.lex_state = 338, .external_lex_state = 2}, + [729] = {.lex_state = 338, .external_lex_state = 2}, + [730] = {.lex_state = 338, .external_lex_state = 2}, + [731] = {.lex_state = 338, .external_lex_state = 2}, + [732] = {.lex_state = 338, .external_lex_state = 2}, + [733] = {.lex_state = 338, .external_lex_state = 2}, + [734] = {.lex_state = 338, .external_lex_state = 2}, + [735] = {.lex_state = 338, .external_lex_state = 2}, + [736] = {.lex_state = 338, .external_lex_state = 2}, + [737] = {.lex_state = 338, .external_lex_state = 2}, + [738] = {.lex_state = 338, .external_lex_state = 2}, + [739] = {.lex_state = 338, .external_lex_state = 2}, + [740] = {.lex_state = 338, .external_lex_state = 2}, + [741] = {.lex_state = 338, .external_lex_state = 2}, + [742] = {.lex_state = 338, .external_lex_state = 2}, + [743] = {.lex_state = 338, .external_lex_state = 2}, + [744] = {.lex_state = 338, .external_lex_state = 2}, + [745] = {.lex_state = 338, .external_lex_state = 2}, + [746] = {.lex_state = 338, .external_lex_state = 2}, + [747] = {.lex_state = 338, .external_lex_state = 2}, + [748] = {.lex_state = 338, .external_lex_state = 2}, + [749] = {.lex_state = 338, .external_lex_state = 2}, + [750] = {.lex_state = 338, .external_lex_state = 2}, + [751] = {.lex_state = 338, .external_lex_state = 2}, + [752] = {.lex_state = 338, .external_lex_state = 2}, + [753] = {.lex_state = 338, .external_lex_state = 2}, + [754] = {.lex_state = 338, .external_lex_state = 2}, + [755] = {.lex_state = 338, .external_lex_state = 2}, + [756] = {.lex_state = 338, .external_lex_state = 2}, + [757] = {.lex_state = 338, .external_lex_state = 2}, + [758] = {.lex_state = 338, .external_lex_state = 2}, + [759] = {.lex_state = 338, .external_lex_state = 2}, + [760] = {.lex_state = 338, .external_lex_state = 2}, + [761] = {.lex_state = 338, .external_lex_state = 2}, + [762] = {.lex_state = 338, .external_lex_state = 2}, + [763] = {.lex_state = 338, .external_lex_state = 2}, + [764] = {.lex_state = 338, .external_lex_state = 2}, + [765] = {.lex_state = 338, .external_lex_state = 2}, + [766] = {.lex_state = 338, .external_lex_state = 2}, + [767] = {.lex_state = 338, .external_lex_state = 2}, + [768] = {.lex_state = 338, .external_lex_state = 2}, + [769] = {.lex_state = 338, .external_lex_state = 2}, + [770] = {.lex_state = 338, .external_lex_state = 2}, + [771] = {.lex_state = 338, .external_lex_state = 2}, + [772] = {.lex_state = 338, .external_lex_state = 2}, + [773] = {.lex_state = 338, .external_lex_state = 2}, + [774] = {.lex_state = 338, .external_lex_state = 2}, + [775] = {.lex_state = 338, .external_lex_state = 2}, + [776] = {.lex_state = 338, .external_lex_state = 2}, + [777] = {.lex_state = 338, .external_lex_state = 2}, + [778] = {.lex_state = 338, .external_lex_state = 2}, + [779] = {.lex_state = 338, .external_lex_state = 2}, + [780] = {.lex_state = 338, .external_lex_state = 2}, + [781] = {.lex_state = 338, .external_lex_state = 2}, + [782] = {.lex_state = 338, .external_lex_state = 2}, + [783] = {.lex_state = 338, .external_lex_state = 2}, + [784] = {.lex_state = 338, .external_lex_state = 2}, + [785] = {.lex_state = 338, .external_lex_state = 2}, + [786] = {.lex_state = 338, .external_lex_state = 2}, + [787] = {.lex_state = 338, .external_lex_state = 2}, + [788] = {.lex_state = 338, .external_lex_state = 2}, + [789] = {.lex_state = 338, .external_lex_state = 2}, + [790] = {.lex_state = 338, .external_lex_state = 2}, + [791] = {.lex_state = 338, .external_lex_state = 2}, + [792] = {.lex_state = 338, .external_lex_state = 2}, + [793] = {.lex_state = 338, .external_lex_state = 2}, + [794] = {.lex_state = 338, .external_lex_state = 2}, + [795] = {.lex_state = 338, .external_lex_state = 2}, + [796] = {.lex_state = 338, .external_lex_state = 2}, + [797] = {.lex_state = 338, .external_lex_state = 2}, + [798] = {.lex_state = 338, .external_lex_state = 2}, + [799] = {.lex_state = 338, .external_lex_state = 2}, + [800] = {.lex_state = 338, .external_lex_state = 2}, + [801] = {.lex_state = 338, .external_lex_state = 2}, + [802] = {.lex_state = 338, .external_lex_state = 2}, + [803] = {.lex_state = 338, .external_lex_state = 2}, + [804] = {.lex_state = 338, .external_lex_state = 2}, + [805] = {.lex_state = 338, .external_lex_state = 2}, + [806] = {.lex_state = 338, .external_lex_state = 2}, + [807] = {.lex_state = 331, .external_lex_state = 3}, + [808] = {.lex_state = 331, .external_lex_state = 3}, + [809] = {.lex_state = 331, .external_lex_state = 3}, + [810] = {.lex_state = 326, .external_lex_state = 3}, + [811] = {.lex_state = 326, .external_lex_state = 3}, + [812] = {.lex_state = 326, .external_lex_state = 3}, + [813] = {.lex_state = 67, .external_lex_state = 4}, [814] = {.lex_state = 88, .external_lex_state = 3}, - [815] = {.lex_state = 64, .external_lex_state = 3}, - [816] = {.lex_state = 330, .external_lex_state = 4}, - [817] = {.lex_state = 64, .external_lex_state = 5}, - [818] = {.lex_state = 330, .external_lex_state = 5}, + [815] = {.lex_state = 64, .external_lex_state = 4}, + [816] = {.lex_state = 331, .external_lex_state = 5}, + [817] = {.lex_state = 331, .external_lex_state = 4}, + [818] = {.lex_state = 64, .external_lex_state = 3}, [819] = {.lex_state = 67, .external_lex_state = 3}, [820] = {.lex_state = 68, .external_lex_state = 3}, - [821] = {.lex_state = 76, .external_lex_state = 5}, - [822] = {.lex_state = 325, .external_lex_state = 5}, + [821] = {.lex_state = 331, .external_lex_state = 6}, + [822] = {.lex_state = 69, .external_lex_state = 3}, [823] = {.lex_state = 89, .external_lex_state = 3}, - [824] = {.lex_state = 69, .external_lex_state = 3}, - [825] = {.lex_state = 70, .external_lex_state = 3}, - [826] = {.lex_state = 330, .external_lex_state = 6}, - [827] = {.lex_state = 66, .external_lex_state = 3}, - [828] = {.lex_state = 324, .external_lex_state = 3}, - [829] = {.lex_state = 324, .external_lex_state = 3}, - [830] = {.lex_state = 324, .external_lex_state = 3}, - [831] = {.lex_state = 324, .external_lex_state = 3}, - [832] = {.lex_state = 324, .external_lex_state = 3}, - [833] = {.lex_state = 325, .external_lex_state = 4}, - [834] = {.lex_state = 91, .external_lex_state = 3}, - [835] = {.lex_state = 324, .external_lex_state = 3}, - [836] = {.lex_state = 324, .external_lex_state = 3}, - [837] = {.lex_state = 324, .external_lex_state = 3}, - [838] = {.lex_state = 76, .external_lex_state = 3}, - [839] = {.lex_state = 324, .external_lex_state = 3}, - [840] = {.lex_state = 324, .external_lex_state = 3}, - [841] = {.lex_state = 92, .external_lex_state = 3}, - [842] = {.lex_state = 84, .external_lex_state = 3}, - [843] = {.lex_state = 325, .external_lex_state = 6}, - [844] = {.lex_state = 80, .external_lex_state = 3}, - [845] = {.lex_state = 72, .external_lex_state = 3}, - [846] = {.lex_state = 324, .external_lex_state = 3}, - [847] = {.lex_state = 324, .external_lex_state = 3}, - [848] = {.lex_state = 328, .external_lex_state = 10}, - [849] = {.lex_state = 324, .external_lex_state = 3}, - [850] = {.lex_state = 324, .external_lex_state = 3}, - [851] = {.lex_state = 324, .external_lex_state = 3}, - [852] = {.lex_state = 324, .external_lex_state = 3}, - [853] = {.lex_state = 324, .external_lex_state = 3}, - [854] = {.lex_state = 324, .external_lex_state = 3}, - [855] = {.lex_state = 324, .external_lex_state = 3}, - [856] = {.lex_state = 324, .external_lex_state = 3}, - [857] = {.lex_state = 324, .external_lex_state = 3}, - [858] = {.lex_state = 324, .external_lex_state = 3}, - [859] = {.lex_state = 324, .external_lex_state = 3}, - [860] = {.lex_state = 328, .external_lex_state = 10}, - [861] = {.lex_state = 324, .external_lex_state = 3}, - [862] = {.lex_state = 324, .external_lex_state = 3}, - [863] = {.lex_state = 324, .external_lex_state = 3}, - [864] = {.lex_state = 324, .external_lex_state = 3}, - [865] = {.lex_state = 328, .external_lex_state = 10}, - [866] = {.lex_state = 324, .external_lex_state = 3}, - [867] = {.lex_state = 328, .external_lex_state = 10}, - [868] = {.lex_state = 324, .external_lex_state = 3}, - [869] = {.lex_state = 324, .external_lex_state = 3}, - [870] = {.lex_state = 324, .external_lex_state = 3}, - [871] = {.lex_state = 324, .external_lex_state = 3}, - [872] = {.lex_state = 324, .external_lex_state = 3}, - [873] = {.lex_state = 324, .external_lex_state = 3}, - [874] = {.lex_state = 324, .external_lex_state = 3}, - [875] = {.lex_state = 324, .external_lex_state = 3}, - [876] = {.lex_state = 324, .external_lex_state = 3}, - [877] = {.lex_state = 324, .external_lex_state = 3}, - [878] = {.lex_state = 324, .external_lex_state = 3}, - [879] = {.lex_state = 324, .external_lex_state = 3}, - [880] = {.lex_state = 324, .external_lex_state = 3}, - [881] = {.lex_state = 324, .external_lex_state = 3}, - [882] = {.lex_state = 324, .external_lex_state = 3}, - [883] = {.lex_state = 324, .external_lex_state = 3}, - [884] = {.lex_state = 328, .external_lex_state = 10}, - [885] = {.lex_state = 324, .external_lex_state = 3}, - [886] = {.lex_state = 324, .external_lex_state = 3}, - [887] = {.lex_state = 324, .external_lex_state = 3}, - [888] = {.lex_state = 324, .external_lex_state = 3}, - [889] = {.lex_state = 324, .external_lex_state = 3}, - [890] = {.lex_state = 324, .external_lex_state = 3}, - [891] = {.lex_state = 324, .external_lex_state = 3}, - [892] = {.lex_state = 324, .external_lex_state = 3}, - [893] = {.lex_state = 324, .external_lex_state = 3}, - [894] = {.lex_state = 328, .external_lex_state = 10}, - [895] = {.lex_state = 324, .external_lex_state = 3}, - [896] = {.lex_state = 324, .external_lex_state = 3}, - [897] = {.lex_state = 324, .external_lex_state = 3}, - [898] = {.lex_state = 324, .external_lex_state = 3}, - [899] = {.lex_state = 324, .external_lex_state = 3}, - [900] = {.lex_state = 324, .external_lex_state = 3}, - [901] = {.lex_state = 324, .external_lex_state = 3}, - [902] = {.lex_state = 324, .external_lex_state = 3}, - [903] = {.lex_state = 324, .external_lex_state = 3}, - [904] = {.lex_state = 60, .external_lex_state = 5}, - [905] = {.lex_state = 324, .external_lex_state = 5}, - [906] = {.lex_state = 60, .external_lex_state = 5}, - [907] = {.lex_state = 324, .external_lex_state = 5}, - [908] = {.lex_state = 60, .external_lex_state = 5}, - [909] = {.lex_state = 60, .external_lex_state = 5}, - [910] = {.lex_state = 60, .external_lex_state = 5}, - [911] = {.lex_state = 326, .external_lex_state = 3}, - [912] = {.lex_state = 326, .external_lex_state = 3}, - [913] = {.lex_state = 324, .external_lex_state = 5}, - [914] = {.lex_state = 324, .external_lex_state = 5}, - [915] = {.lex_state = 324, .external_lex_state = 5}, - [916] = {.lex_state = 331, .external_lex_state = 3}, - [917] = {.lex_state = 327, .external_lex_state = 3}, - [918] = {.lex_state = 329, .external_lex_state = 3}, - [919] = {.lex_state = 328, .external_lex_state = 10}, - [920] = {.lex_state = 328, .external_lex_state = 3}, - [921] = {.lex_state = 327, .external_lex_state = 3}, - [922] = {.lex_state = 324, .external_lex_state = 4}, - [923] = {.lex_state = 327, .external_lex_state = 3}, - [924] = {.lex_state = 329, .external_lex_state = 3}, - [925] = {.lex_state = 327, .external_lex_state = 3}, - [926] = {.lex_state = 60, .external_lex_state = 3}, - [927] = {.lex_state = 327, .external_lex_state = 3}, - [928] = {.lex_state = 324, .external_lex_state = 4}, - [929] = {.lex_state = 328, .external_lex_state = 10}, - [930] = {.lex_state = 327, .external_lex_state = 3}, - [931] = {.lex_state = 329, .external_lex_state = 3}, - [932] = {.lex_state = 331, .external_lex_state = 3}, - [933] = {.lex_state = 329, .external_lex_state = 3}, - [934] = {.lex_state = 329, .external_lex_state = 3}, - [935] = {.lex_state = 327, .external_lex_state = 3}, - [936] = {.lex_state = 329, .external_lex_state = 3}, - [937] = {.lex_state = 329, .external_lex_state = 3}, - [938] = {.lex_state = 328, .external_lex_state = 10}, - [939] = {.lex_state = 328, .external_lex_state = 10}, - [940] = {.lex_state = 328, .external_lex_state = 10}, - [941] = {.lex_state = 60, .external_lex_state = 3}, - [942] = {.lex_state = 60, .external_lex_state = 3}, - [943] = {.lex_state = 60, .external_lex_state = 3}, - [944] = {.lex_state = 329, .external_lex_state = 3}, - [945] = {.lex_state = 324, .external_lex_state = 4}, - [946] = {.lex_state = 329, .external_lex_state = 3}, - [947] = {.lex_state = 327, .external_lex_state = 3}, - [948] = {.lex_state = 328, .external_lex_state = 10}, - [949] = {.lex_state = 324, .external_lex_state = 4}, - [950] = {.lex_state = 60, .external_lex_state = 3}, - [951] = {.lex_state = 329, .external_lex_state = 3}, - [952] = {.lex_state = 324, .external_lex_state = 4}, - [953] = {.lex_state = 62, .external_lex_state = 3}, - [954] = {.lex_state = 324, .external_lex_state = 5}, - [955] = {.lex_state = 61, .external_lex_state = 3}, - [956] = {.lex_state = 328, .external_lex_state = 3}, - [957] = {.lex_state = 61, .external_lex_state = 3}, - [958] = {.lex_state = 328, .external_lex_state = 3}, - [959] = {.lex_state = 61, .external_lex_state = 3}, - [960] = {.lex_state = 62, .external_lex_state = 3}, - [961] = {.lex_state = 328, .external_lex_state = 3}, - [962] = {.lex_state = 324, .external_lex_state = 6}, + [824] = {.lex_state = 66, .external_lex_state = 3}, + [825] = {.lex_state = 76, .external_lex_state = 4}, + [826] = {.lex_state = 70, .external_lex_state = 3}, + [827] = {.lex_state = 326, .external_lex_state = 4}, + [828] = {.lex_state = 325, .external_lex_state = 3}, + [829] = {.lex_state = 91, .external_lex_state = 3}, + [830] = {.lex_state = 325, .external_lex_state = 3}, + [831] = {.lex_state = 325, .external_lex_state = 3}, + [832] = {.lex_state = 325, .external_lex_state = 3}, + [833] = {.lex_state = 325, .external_lex_state = 3}, + [834] = {.lex_state = 325, .external_lex_state = 3}, + [835] = {.lex_state = 325, .external_lex_state = 3}, + [836] = {.lex_state = 76, .external_lex_state = 3}, + [837] = {.lex_state = 325, .external_lex_state = 3}, + [838] = {.lex_state = 326, .external_lex_state = 5}, + [839] = {.lex_state = 325, .external_lex_state = 3}, + [840] = {.lex_state = 325, .external_lex_state = 3}, + [841] = {.lex_state = 326, .external_lex_state = 6}, + [842] = {.lex_state = 80, .external_lex_state = 3}, + [843] = {.lex_state = 72, .external_lex_state = 3}, + [844] = {.lex_state = 92, .external_lex_state = 3}, + [845] = {.lex_state = 84, .external_lex_state = 3}, + [846] = {.lex_state = 325, .external_lex_state = 3}, + [847] = {.lex_state = 325, .external_lex_state = 3}, + [848] = {.lex_state = 325, .external_lex_state = 3}, + [849] = {.lex_state = 329, .external_lex_state = 10}, + [850] = {.lex_state = 325, .external_lex_state = 3}, + [851] = {.lex_state = 325, .external_lex_state = 3}, + [852] = {.lex_state = 325, .external_lex_state = 3}, + [853] = {.lex_state = 325, .external_lex_state = 3}, + [854] = {.lex_state = 329, .external_lex_state = 10}, + [855] = {.lex_state = 325, .external_lex_state = 3}, + [856] = {.lex_state = 325, .external_lex_state = 3}, + [857] = {.lex_state = 325, .external_lex_state = 3}, + [858] = {.lex_state = 325, .external_lex_state = 3}, + [859] = {.lex_state = 325, .external_lex_state = 3}, + [860] = {.lex_state = 329, .external_lex_state = 10}, + [861] = {.lex_state = 329, .external_lex_state = 10}, + [862] = {.lex_state = 325, .external_lex_state = 3}, + [863] = {.lex_state = 325, .external_lex_state = 3}, + [864] = {.lex_state = 325, .external_lex_state = 3}, + [865] = {.lex_state = 325, .external_lex_state = 3}, + [866] = {.lex_state = 325, .external_lex_state = 3}, + [867] = {.lex_state = 325, .external_lex_state = 3}, + [868] = {.lex_state = 325, .external_lex_state = 3}, + [869] = {.lex_state = 325, .external_lex_state = 3}, + [870] = {.lex_state = 325, .external_lex_state = 3}, + [871] = {.lex_state = 325, .external_lex_state = 3}, + [872] = {.lex_state = 325, .external_lex_state = 3}, + [873] = {.lex_state = 325, .external_lex_state = 3}, + [874] = {.lex_state = 325, .external_lex_state = 3}, + [875] = {.lex_state = 325, .external_lex_state = 3}, + [876] = {.lex_state = 325, .external_lex_state = 3}, + [877] = {.lex_state = 325, .external_lex_state = 3}, + [878] = {.lex_state = 325, .external_lex_state = 3}, + [879] = {.lex_state = 325, .external_lex_state = 3}, + [880] = {.lex_state = 325, .external_lex_state = 3}, + [881] = {.lex_state = 325, .external_lex_state = 3}, + [882] = {.lex_state = 325, .external_lex_state = 3}, + [883] = {.lex_state = 325, .external_lex_state = 3}, + [884] = {.lex_state = 325, .external_lex_state = 3}, + [885] = {.lex_state = 325, .external_lex_state = 3}, + [886] = {.lex_state = 325, .external_lex_state = 3}, + [887] = {.lex_state = 325, .external_lex_state = 3}, + [888] = {.lex_state = 325, .external_lex_state = 3}, + [889] = {.lex_state = 325, .external_lex_state = 3}, + [890] = {.lex_state = 325, .external_lex_state = 3}, + [891] = {.lex_state = 329, .external_lex_state = 10}, + [892] = {.lex_state = 325, .external_lex_state = 3}, + [893] = {.lex_state = 325, .external_lex_state = 3}, + [894] = {.lex_state = 325, .external_lex_state = 3}, + [895] = {.lex_state = 325, .external_lex_state = 3}, + [896] = {.lex_state = 325, .external_lex_state = 3}, + [897] = {.lex_state = 329, .external_lex_state = 10}, + [898] = {.lex_state = 325, .external_lex_state = 3}, + [899] = {.lex_state = 325, .external_lex_state = 3}, + [900] = {.lex_state = 325, .external_lex_state = 3}, + [901] = {.lex_state = 325, .external_lex_state = 3}, + [902] = {.lex_state = 325, .external_lex_state = 3}, + [903] = {.lex_state = 325, .external_lex_state = 3}, + [904] = {.lex_state = 325, .external_lex_state = 3}, + [905] = {.lex_state = 325, .external_lex_state = 3}, + [906] = {.lex_state = 325, .external_lex_state = 4}, + [907] = {.lex_state = 60, .external_lex_state = 4}, + [908] = {.lex_state = 327, .external_lex_state = 3}, + [909] = {.lex_state = 325, .external_lex_state = 4}, + [910] = {.lex_state = 60, .external_lex_state = 4}, + [911] = {.lex_state = 60, .external_lex_state = 4}, + [912] = {.lex_state = 325, .external_lex_state = 4}, + [913] = {.lex_state = 325, .external_lex_state = 4}, + [914] = {.lex_state = 60, .external_lex_state = 4}, + [915] = {.lex_state = 60, .external_lex_state = 4}, + [916] = {.lex_state = 327, .external_lex_state = 3}, + [917] = {.lex_state = 325, .external_lex_state = 4}, + [918] = {.lex_state = 330, .external_lex_state = 3}, + [919] = {.lex_state = 328, .external_lex_state = 3}, + [920] = {.lex_state = 60, .external_lex_state = 3}, + [921] = {.lex_state = 330, .external_lex_state = 3}, + [922] = {.lex_state = 330, .external_lex_state = 3}, + [923] = {.lex_state = 328, .external_lex_state = 3}, + [924] = {.lex_state = 328, .external_lex_state = 3}, + [925] = {.lex_state = 330, .external_lex_state = 3}, + [926] = {.lex_state = 329, .external_lex_state = 10}, + [927] = {.lex_state = 325, .external_lex_state = 5}, + [928] = {.lex_state = 328, .external_lex_state = 3}, + [929] = {.lex_state = 325, .external_lex_state = 5}, + [930] = {.lex_state = 330, .external_lex_state = 3}, + [931] = {.lex_state = 328, .external_lex_state = 3}, + [932] = {.lex_state = 325, .external_lex_state = 5}, + [933] = {.lex_state = 328, .external_lex_state = 3}, + [934] = {.lex_state = 330, .external_lex_state = 3}, + [935] = {.lex_state = 329, .external_lex_state = 10}, + [936] = {.lex_state = 329, .external_lex_state = 10}, + [937] = {.lex_state = 328, .external_lex_state = 3}, + [938] = {.lex_state = 325, .external_lex_state = 5}, + [939] = {.lex_state = 332, .external_lex_state = 3}, + [940] = {.lex_state = 329, .external_lex_state = 10}, + [941] = {.lex_state = 330, .external_lex_state = 3}, + [942] = {.lex_state = 330, .external_lex_state = 3}, + [943] = {.lex_state = 329, .external_lex_state = 10}, + [944] = {.lex_state = 329, .external_lex_state = 10}, + [945] = {.lex_state = 60, .external_lex_state = 3}, + [946] = {.lex_state = 60, .external_lex_state = 3}, + [947] = {.lex_state = 60, .external_lex_state = 3}, + [948] = {.lex_state = 60, .external_lex_state = 3}, + [949] = {.lex_state = 330, .external_lex_state = 3}, + [950] = {.lex_state = 332, .external_lex_state = 3}, + [951] = {.lex_state = 328, .external_lex_state = 3}, + [952] = {.lex_state = 329, .external_lex_state = 3}, + [953] = {.lex_state = 325, .external_lex_state = 5}, + [954] = {.lex_state = 330, .external_lex_state = 3}, + [955] = {.lex_state = 330, .external_lex_state = 3}, + [956] = {.lex_state = 329, .external_lex_state = 3}, + [957] = {.lex_state = 60, .external_lex_state = 4}, + [958] = {.lex_state = 329, .external_lex_state = 11}, + [959] = {.lex_state = 62, .external_lex_state = 3}, + [960] = {.lex_state = 330, .external_lex_state = 3}, + [961] = {.lex_state = 330, .external_lex_state = 3}, + [962] = {.lex_state = 61, .external_lex_state = 3}, [963] = {.lex_state = 62, .external_lex_state = 3}, - [964] = {.lex_state = 62, .external_lex_state = 3}, - [965] = {.lex_state = 62, .external_lex_state = 3}, - [966] = {.lex_state = 329, .external_lex_state = 3}, - [967] = {.lex_state = 324, .external_lex_state = 6}, - [968] = {.lex_state = 61, .external_lex_state = 3}, - [969] = {.lex_state = 329, .external_lex_state = 3}, - [970] = {.lex_state = 60, .external_lex_state = 5}, - [971] = {.lex_state = 324, .external_lex_state = 5}, - [972] = {.lex_state = 63, .external_lex_state = 3}, - [973] = {.lex_state = 328, .external_lex_state = 3}, - [974] = {.lex_state = 60, .external_lex_state = 5}, - [975] = {.lex_state = 324, .external_lex_state = 5}, + [964] = {.lex_state = 325, .external_lex_state = 4}, + [965] = {.lex_state = 60, .external_lex_state = 4}, + [966] = {.lex_state = 330, .external_lex_state = 3}, + [967] = {.lex_state = 325, .external_lex_state = 6}, + [968] = {.lex_state = 325, .external_lex_state = 6}, + [969] = {.lex_state = 60, .external_lex_state = 4}, + [970] = {.lex_state = 325, .external_lex_state = 6}, + [971] = {.lex_state = 330, .external_lex_state = 3}, + [972] = {.lex_state = 325, .external_lex_state = 6}, + [973] = {.lex_state = 329, .external_lex_state = 11}, + [974] = {.lex_state = 329, .external_lex_state = 3}, + [975] = {.lex_state = 330, .external_lex_state = 3}, [976] = {.lex_state = 329, .external_lex_state = 3}, - [977] = {.lex_state = 329, .external_lex_state = 3}, - [978] = {.lex_state = 328, .external_lex_state = 3}, - [979] = {.lex_state = 97, .external_lex_state = 11}, - [980] = {.lex_state = 60, .external_lex_state = 5}, - [981] = {.lex_state = 324, .external_lex_state = 5}, - [982] = {.lex_state = 324, .external_lex_state = 6}, - [983] = {.lex_state = 324, .external_lex_state = 6}, - [984] = {.lex_state = 60, .external_lex_state = 5}, - [985] = {.lex_state = 324, .external_lex_state = 6}, - [986] = {.lex_state = 97, .external_lex_state = 11}, - [987] = {.lex_state = 329, .external_lex_state = 3}, - [988] = {.lex_state = 59, .external_lex_state = 3}, - [989] = {.lex_state = 59, .external_lex_state = 3}, - [990] = {.lex_state = 59, .external_lex_state = 3}, - [991] = {.lex_state = 63, .external_lex_state = 3}, - [992] = {.lex_state = 59, .external_lex_state = 3}, - [993] = {.lex_state = 61, .external_lex_state = 3}, - [994] = {.lex_state = 60, .external_lex_state = 5}, - [995] = {.lex_state = 63, .external_lex_state = 3}, - [996] = {.lex_state = 60, .external_lex_state = 5}, - [997] = {.lex_state = 60, .external_lex_state = 5}, - [998] = {.lex_state = 328, .external_lex_state = 3}, - [999] = {.lex_state = 60, .external_lex_state = 5}, - [1000] = {.lex_state = 60, .external_lex_state = 5}, - [1001] = {.lex_state = 328, .external_lex_state = 3}, - [1002] = {.lex_state = 328, .external_lex_state = 3}, - [1003] = {.lex_state = 329, .external_lex_state = 3}, - [1004] = {.lex_state = 59, .external_lex_state = 3}, - [1005] = {.lex_state = 324, .external_lex_state = 5}, - [1006] = {.lex_state = 328, .external_lex_state = 3}, - [1007] = {.lex_state = 331, .external_lex_state = 3}, - [1008] = {.lex_state = 63, .external_lex_state = 3}, - [1009] = {.lex_state = 329, .external_lex_state = 3}, + [977] = {.lex_state = 330, .external_lex_state = 3}, + [978] = {.lex_state = 329, .external_lex_state = 3}, + [979] = {.lex_state = 325, .external_lex_state = 4}, + [980] = {.lex_state = 62, .external_lex_state = 3}, + [981] = {.lex_state = 330, .external_lex_state = 3}, + [982] = {.lex_state = 97, .external_lex_state = 11}, + [983] = {.lex_state = 59, .external_lex_state = 3}, + [984] = {.lex_state = 330, .external_lex_state = 3}, + [985] = {.lex_state = 59, .external_lex_state = 3}, + [986] = {.lex_state = 61, .external_lex_state = 3}, + [987] = {.lex_state = 59, .external_lex_state = 3}, + [988] = {.lex_state = 63, .external_lex_state = 3}, + [989] = {.lex_state = 63, .external_lex_state = 3}, + [990] = {.lex_state = 60, .external_lex_state = 4}, + [991] = {.lex_state = 60, .external_lex_state = 4}, + [992] = {.lex_state = 325, .external_lex_state = 4}, + [993] = {.lex_state = 60, .external_lex_state = 4}, + [994] = {.lex_state = 325, .external_lex_state = 4}, + [995] = {.lex_state = 61, .external_lex_state = 3}, + [996] = {.lex_state = 325, .external_lex_state = 4}, + [997] = {.lex_state = 60, .external_lex_state = 4}, + [998] = {.lex_state = 329, .external_lex_state = 3}, + [999] = {.lex_state = 60, .external_lex_state = 4}, + [1000] = {.lex_state = 325, .external_lex_state = 4}, + [1001] = {.lex_state = 329, .external_lex_state = 3}, + [1002] = {.lex_state = 329, .external_lex_state = 3}, + [1003] = {.lex_state = 60, .external_lex_state = 4}, + [1004] = {.lex_state = 329, .external_lex_state = 3}, + [1005] = {.lex_state = 329, .external_lex_state = 3}, + [1006] = {.lex_state = 325, .external_lex_state = 6}, + [1007] = {.lex_state = 63, .external_lex_state = 3}, + [1008] = {.lex_state = 329, .external_lex_state = 3}, + [1009] = {.lex_state = 62, .external_lex_state = 3}, [1010] = {.lex_state = 63, .external_lex_state = 3}, - [1011] = {.lex_state = 329, .external_lex_state = 3}, - [1012] = {.lex_state = 328, .external_lex_state = 3}, + [1011] = {.lex_state = 332, .external_lex_state = 3}, + [1012] = {.lex_state = 330, .external_lex_state = 3}, [1013] = {.lex_state = 329, .external_lex_state = 3}, - [1014] = {.lex_state = 329, .external_lex_state = 3}, + [1014] = {.lex_state = 332, .external_lex_state = 3}, [1015] = {.lex_state = 63, .external_lex_state = 3}, - [1016] = {.lex_state = 328, .external_lex_state = 3}, - [1017] = {.lex_state = 324, .external_lex_state = 5}, - [1018] = {.lex_state = 328, .external_lex_state = 3}, - [1019] = {.lex_state = 324, .external_lex_state = 5}, - [1020] = {.lex_state = 331, .external_lex_state = 3}, - [1021] = {.lex_state = 328, .external_lex_state = 11}, - [1022] = {.lex_state = 324, .external_lex_state = 5}, - [1023] = {.lex_state = 328, .external_lex_state = 3}, - [1024] = {.lex_state = 328, .external_lex_state = 11}, - [1025] = {.lex_state = 328, .external_lex_state = 3}, - [1026] = {.lex_state = 324, .external_lex_state = 5}, - [1027] = {.lex_state = 328, .external_lex_state = 3}, - [1028] = {.lex_state = 60, .external_lex_state = 5}, - [1029] = {.lex_state = 328, .external_lex_state = 3}, - [1030] = {.lex_state = 328, .external_lex_state = 3}, - [1031] = {.lex_state = 328, .external_lex_state = 3}, - [1032] = {.lex_state = 328, .external_lex_state = 3}, - [1033] = {.lex_state = 328, .external_lex_state = 3}, - [1034] = {.lex_state = 328, .external_lex_state = 3}, - [1035] = {.lex_state = 328, .external_lex_state = 3}, - [1036] = {.lex_state = 324, .external_lex_state = 5}, - [1037] = {.lex_state = 328, .external_lex_state = 3}, - [1038] = {.lex_state = 328, .external_lex_state = 3}, - [1039] = {.lex_state = 328, .external_lex_state = 3}, - [1040] = {.lex_state = 328, .external_lex_state = 3}, - [1041] = {.lex_state = 324, .external_lex_state = 5}, - [1042] = {.lex_state = 328, .external_lex_state = 3}, - [1043] = {.lex_state = 328, .external_lex_state = 3}, - [1044] = {.lex_state = 60, .external_lex_state = 3}, - [1045] = {.lex_state = 324, .external_lex_state = 5}, - [1046] = {.lex_state = 328, .external_lex_state = 3}, - [1047] = {.lex_state = 328, .external_lex_state = 3}, - [1048] = {.lex_state = 328, .external_lex_state = 3}, - [1049] = {.lex_state = 98, .external_lex_state = 10}, - [1050] = {.lex_state = 324, .external_lex_state = 5}, - [1051] = {.lex_state = 328, .external_lex_state = 3}, - [1052] = {.lex_state = 324, .external_lex_state = 5}, - [1053] = {.lex_state = 328, .external_lex_state = 3}, - [1054] = {.lex_state = 328, .external_lex_state = 3}, - [1055] = {.lex_state = 324, .external_lex_state = 5}, - [1056] = {.lex_state = 324, .external_lex_state = 5}, - [1057] = {.lex_state = 328, .external_lex_state = 3}, - [1058] = {.lex_state = 60, .external_lex_state = 3}, - [1059] = {.lex_state = 328, .external_lex_state = 3}, - [1060] = {.lex_state = 324, .external_lex_state = 5}, - [1061] = {.lex_state = 328, .external_lex_state = 3}, - [1062] = {.lex_state = 328, .external_lex_state = 3}, - [1063] = {.lex_state = 60, .external_lex_state = 5}, - [1064] = {.lex_state = 324, .external_lex_state = 5}, - [1065] = {.lex_state = 324, .external_lex_state = 4}, - [1066] = {.lex_state = 328, .external_lex_state = 3}, - [1067] = {.lex_state = 328, .external_lex_state = 3}, - [1068] = {.lex_state = 328, .external_lex_state = 3}, - [1069] = {.lex_state = 328, .external_lex_state = 3}, - [1070] = {.lex_state = 328, .external_lex_state = 3}, - [1071] = {.lex_state = 328, .external_lex_state = 3}, - [1072] = {.lex_state = 324, .external_lex_state = 5}, - [1073] = {.lex_state = 324, .external_lex_state = 5}, - [1074] = {.lex_state = 328, .external_lex_state = 3}, - [1075] = {.lex_state = 328, .external_lex_state = 3}, - [1076] = {.lex_state = 328, .external_lex_state = 3}, - [1077] = {.lex_state = 324, .external_lex_state = 5}, - [1078] = {.lex_state = 324, .external_lex_state = 5}, - [1079] = {.lex_state = 324, .external_lex_state = 5}, - [1080] = {.lex_state = 328, .external_lex_state = 3}, - [1081] = {.lex_state = 328, .external_lex_state = 3}, - [1082] = {.lex_state = 328, .external_lex_state = 3}, - [1083] = {.lex_state = 60, .external_lex_state = 3}, - [1084] = {.lex_state = 328, .external_lex_state = 3}, - [1085] = {.lex_state = 328, .external_lex_state = 3}, - [1086] = {.lex_state = 328, .external_lex_state = 3}, - [1087] = {.lex_state = 324, .external_lex_state = 4}, - [1088] = {.lex_state = 324, .external_lex_state = 4}, - [1089] = {.lex_state = 328, .external_lex_state = 3}, - [1090] = {.lex_state = 324, .external_lex_state = 5}, - [1091] = {.lex_state = 328, .external_lex_state = 3}, - [1092] = {.lex_state = 328, .external_lex_state = 11}, - [1093] = {.lex_state = 328, .external_lex_state = 3}, - [1094] = {.lex_state = 328, .external_lex_state = 3}, - [1095] = {.lex_state = 328, .external_lex_state = 3}, - [1096] = {.lex_state = 328, .external_lex_state = 3}, - [1097] = {.lex_state = 328, .external_lex_state = 3}, - [1098] = {.lex_state = 328, .external_lex_state = 3}, - [1099] = {.lex_state = 60, .external_lex_state = 5}, - [1100] = {.lex_state = 328, .external_lex_state = 3}, - [1101] = {.lex_state = 328, .external_lex_state = 3}, - [1102] = {.lex_state = 328, .external_lex_state = 3}, - [1103] = {.lex_state = 328, .external_lex_state = 3}, - [1104] = {.lex_state = 98, .external_lex_state = 10}, - [1105] = {.lex_state = 328, .external_lex_state = 3}, - [1106] = {.lex_state = 328, .external_lex_state = 3}, - [1107] = {.lex_state = 328, .external_lex_state = 3}, - [1108] = {.lex_state = 328, .external_lex_state = 3}, - [1109] = {.lex_state = 328, .external_lex_state = 3}, - [1110] = {.lex_state = 328, .external_lex_state = 3}, - [1111] = {.lex_state = 328, .external_lex_state = 3}, - [1112] = {.lex_state = 328, .external_lex_state = 3}, - [1113] = {.lex_state = 324, .external_lex_state = 4}, - [1114] = {.lex_state = 328, .external_lex_state = 3}, - [1115] = {.lex_state = 328, .external_lex_state = 3}, - [1116] = {.lex_state = 328, .external_lex_state = 3}, - [1117] = {.lex_state = 328, .external_lex_state = 3}, - [1118] = {.lex_state = 328, .external_lex_state = 3}, - [1119] = {.lex_state = 328, .external_lex_state = 3}, - [1120] = {.lex_state = 328, .external_lex_state = 3}, - [1121] = {.lex_state = 328, .external_lex_state = 3}, - [1122] = {.lex_state = 328, .external_lex_state = 3}, - [1123] = {.lex_state = 328, .external_lex_state = 3}, - [1124] = {.lex_state = 328, .external_lex_state = 3}, - [1125] = {.lex_state = 328, .external_lex_state = 3}, - [1126] = {.lex_state = 328, .external_lex_state = 3}, - [1127] = {.lex_state = 328, .external_lex_state = 3}, - [1128] = {.lex_state = 324, .external_lex_state = 3}, - [1129] = {.lex_state = 60, .external_lex_state = 5}, - [1130] = {.lex_state = 328, .external_lex_state = 3}, - [1131] = {.lex_state = 328, .external_lex_state = 3}, - [1132] = {.lex_state = 328, .external_lex_state = 3}, - [1133] = {.lex_state = 328, .external_lex_state = 3}, - [1134] = {.lex_state = 328, .external_lex_state = 3}, - [1135] = {.lex_state = 328, .external_lex_state = 3}, - [1136] = {.lex_state = 60, .external_lex_state = 3}, - [1137] = {.lex_state = 328, .external_lex_state = 3}, - [1138] = {.lex_state = 328, .external_lex_state = 3}, - [1139] = {.lex_state = 328, .external_lex_state = 3}, - [1140] = {.lex_state = 328, .external_lex_state = 3}, - [1141] = {.lex_state = 328, .external_lex_state = 3}, - [1142] = {.lex_state = 328, .external_lex_state = 3}, - [1143] = {.lex_state = 328, .external_lex_state = 3}, - [1144] = {.lex_state = 328, .external_lex_state = 3}, - [1145] = {.lex_state = 328, .external_lex_state = 3}, - [1146] = {.lex_state = 328, .external_lex_state = 3}, - [1147] = {.lex_state = 328, .external_lex_state = 3}, - [1148] = {.lex_state = 328, .external_lex_state = 3}, - [1149] = {.lex_state = 328, .external_lex_state = 3}, - [1150] = {.lex_state = 328, .external_lex_state = 3}, - [1151] = {.lex_state = 328, .external_lex_state = 3}, - [1152] = {.lex_state = 324, .external_lex_state = 4}, - [1153] = {.lex_state = 60, .external_lex_state = 5}, - [1154] = {.lex_state = 60, .external_lex_state = 5}, - [1155] = {.lex_state = 328, .external_lex_state = 3}, - [1156] = {.lex_state = 328, .external_lex_state = 3}, - [1157] = {.lex_state = 328, .external_lex_state = 3}, - [1158] = {.lex_state = 324, .external_lex_state = 5}, - [1159] = {.lex_state = 324, .external_lex_state = 5}, - [1160] = {.lex_state = 324, .external_lex_state = 4}, - [1161] = {.lex_state = 97, .external_lex_state = 10}, - [1162] = {.lex_state = 328, .external_lex_state = 3}, - [1163] = {.lex_state = 328, .external_lex_state = 3}, - [1164] = {.lex_state = 328, .external_lex_state = 3}, - [1165] = {.lex_state = 328, .external_lex_state = 3}, - [1166] = {.lex_state = 328, .external_lex_state = 3}, - [1167] = {.lex_state = 328, .external_lex_state = 3}, - [1168] = {.lex_state = 328, .external_lex_state = 3}, - [1169] = {.lex_state = 328, .external_lex_state = 3}, - [1170] = {.lex_state = 328, .external_lex_state = 3}, - [1171] = {.lex_state = 328, .external_lex_state = 3}, - [1172] = {.lex_state = 328, .external_lex_state = 3}, - [1173] = {.lex_state = 97, .external_lex_state = 10}, - [1174] = {.lex_state = 60, .external_lex_state = 5}, - [1175] = {.lex_state = 328, .external_lex_state = 3}, - [1176] = {.lex_state = 328, .external_lex_state = 3}, - [1177] = {.lex_state = 328, .external_lex_state = 3}, - [1178] = {.lex_state = 328, .external_lex_state = 3}, - [1179] = {.lex_state = 60, .external_lex_state = 5}, - [1180] = {.lex_state = 328, .external_lex_state = 3}, - [1181] = {.lex_state = 328, .external_lex_state = 3}, - [1182] = {.lex_state = 328, .external_lex_state = 12}, - [1183] = {.lex_state = 328, .external_lex_state = 3}, - [1184] = {.lex_state = 60, .external_lex_state = 5}, - [1185] = {.lex_state = 328, .external_lex_state = 3}, - [1186] = {.lex_state = 328, .external_lex_state = 3}, - [1187] = {.lex_state = 328, .external_lex_state = 3}, - [1188] = {.lex_state = 328, .external_lex_state = 3}, - [1189] = {.lex_state = 328, .external_lex_state = 3}, - [1190] = {.lex_state = 328, .external_lex_state = 3}, - [1191] = {.lex_state = 328, .external_lex_state = 3}, - [1192] = {.lex_state = 328, .external_lex_state = 3}, - [1193] = {.lex_state = 328, .external_lex_state = 3}, - [1194] = {.lex_state = 328, .external_lex_state = 3}, - [1195] = {.lex_state = 324, .external_lex_state = 4}, - [1196] = {.lex_state = 328, .external_lex_state = 3}, - [1197] = {.lex_state = 328, .external_lex_state = 3}, - [1198] = {.lex_state = 60, .external_lex_state = 5}, - [1199] = {.lex_state = 328, .external_lex_state = 12}, - [1200] = {.lex_state = 60, .external_lex_state = 5}, - [1201] = {.lex_state = 328, .external_lex_state = 3}, - [1202] = {.lex_state = 328, .external_lex_state = 3}, - [1203] = {.lex_state = 328, .external_lex_state = 3}, - [1204] = {.lex_state = 328, .external_lex_state = 3}, - [1205] = {.lex_state = 328, .external_lex_state = 3}, - [1206] = {.lex_state = 328, .external_lex_state = 3}, - [1207] = {.lex_state = 60, .external_lex_state = 5}, - [1208] = {.lex_state = 328, .external_lex_state = 3}, - [1209] = {.lex_state = 60, .external_lex_state = 5}, - [1210] = {.lex_state = 328, .external_lex_state = 3}, - [1211] = {.lex_state = 328, .external_lex_state = 3}, - [1212] = {.lex_state = 60, .external_lex_state = 5}, - [1213] = {.lex_state = 328, .external_lex_state = 3}, - [1214] = {.lex_state = 60, .external_lex_state = 5}, - [1215] = {.lex_state = 328, .external_lex_state = 3}, - [1216] = {.lex_state = 328, .external_lex_state = 3}, - [1217] = {.lex_state = 328, .external_lex_state = 3}, - [1218] = {.lex_state = 328, .external_lex_state = 3}, - [1219] = {.lex_state = 328, .external_lex_state = 3}, - [1220] = {.lex_state = 324, .external_lex_state = 4}, - [1221] = {.lex_state = 60, .external_lex_state = 5}, - [1222] = {.lex_state = 328, .external_lex_state = 3}, - [1223] = {.lex_state = 328, .external_lex_state = 3}, - [1224] = {.lex_state = 328, .external_lex_state = 3}, - [1225] = {.lex_state = 328, .external_lex_state = 3}, - [1226] = {.lex_state = 324, .external_lex_state = 4}, - [1227] = {.lex_state = 60, .external_lex_state = 5}, - [1228] = {.lex_state = 328, .external_lex_state = 3}, - [1229] = {.lex_state = 328, .external_lex_state = 3}, - [1230] = {.lex_state = 328, .external_lex_state = 3}, - [1231] = {.lex_state = 328, .external_lex_state = 3}, - [1232] = {.lex_state = 60, .external_lex_state = 5}, - [1233] = {.lex_state = 60, .external_lex_state = 3}, - [1234] = {.lex_state = 60, .external_lex_state = 3}, + [1016] = {.lex_state = 61, .external_lex_state = 3}, + [1017] = {.lex_state = 62, .external_lex_state = 3}, + [1018] = {.lex_state = 63, .external_lex_state = 3}, + [1019] = {.lex_state = 59, .external_lex_state = 3}, + [1020] = {.lex_state = 97, .external_lex_state = 11}, + [1021] = {.lex_state = 329, .external_lex_state = 3}, + [1022] = {.lex_state = 325, .external_lex_state = 4}, + [1023] = {.lex_state = 61, .external_lex_state = 3}, + [1024] = {.lex_state = 325, .external_lex_state = 4}, + [1025] = {.lex_state = 329, .external_lex_state = 3}, + [1026] = {.lex_state = 329, .external_lex_state = 3}, + [1027] = {.lex_state = 59, .external_lex_state = 3}, + [1028] = {.lex_state = 325, .external_lex_state = 4}, + [1029] = {.lex_state = 60, .external_lex_state = 4}, + [1030] = {.lex_state = 329, .external_lex_state = 3}, + [1031] = {.lex_state = 329, .external_lex_state = 3}, + [1032] = {.lex_state = 325, .external_lex_state = 4}, + [1033] = {.lex_state = 329, .external_lex_state = 3}, + [1034] = {.lex_state = 329, .external_lex_state = 3}, + [1035] = {.lex_state = 329, .external_lex_state = 3}, + [1036] = {.lex_state = 329, .external_lex_state = 3}, + [1037] = {.lex_state = 325, .external_lex_state = 4}, + [1038] = {.lex_state = 325, .external_lex_state = 4}, + [1039] = {.lex_state = 329, .external_lex_state = 3}, + [1040] = {.lex_state = 329, .external_lex_state = 3}, + [1041] = {.lex_state = 329, .external_lex_state = 3}, + [1042] = {.lex_state = 329, .external_lex_state = 3}, + [1043] = {.lex_state = 329, .external_lex_state = 3}, + [1044] = {.lex_state = 329, .external_lex_state = 3}, + [1045] = {.lex_state = 329, .external_lex_state = 3}, + [1046] = {.lex_state = 329, .external_lex_state = 3}, + [1047] = {.lex_state = 329, .external_lex_state = 3}, + [1048] = {.lex_state = 329, .external_lex_state = 3}, + [1049] = {.lex_state = 329, .external_lex_state = 3}, + [1050] = {.lex_state = 60, .external_lex_state = 4}, + [1051] = {.lex_state = 60, .external_lex_state = 4}, + [1052] = {.lex_state = 329, .external_lex_state = 3}, + [1053] = {.lex_state = 60, .external_lex_state = 3}, + [1054] = {.lex_state = 329, .external_lex_state = 3}, + [1055] = {.lex_state = 325, .external_lex_state = 4}, + [1056] = {.lex_state = 97, .external_lex_state = 10}, + [1057] = {.lex_state = 325, .external_lex_state = 4}, + [1058] = {.lex_state = 329, .external_lex_state = 3}, + [1059] = {.lex_state = 329, .external_lex_state = 3}, + [1060] = {.lex_state = 329, .external_lex_state = 3}, + [1061] = {.lex_state = 329, .external_lex_state = 3}, + [1062] = {.lex_state = 329, .external_lex_state = 3}, + [1063] = {.lex_state = 329, .external_lex_state = 3}, + [1064] = {.lex_state = 329, .external_lex_state = 3}, + [1065] = {.lex_state = 329, .external_lex_state = 3}, + [1066] = {.lex_state = 329, .external_lex_state = 3}, + [1067] = {.lex_state = 329, .external_lex_state = 3}, + [1068] = {.lex_state = 329, .external_lex_state = 3}, + [1069] = {.lex_state = 60, .external_lex_state = 4}, + [1070] = {.lex_state = 329, .external_lex_state = 3}, + [1071] = {.lex_state = 329, .external_lex_state = 3}, + [1072] = {.lex_state = 329, .external_lex_state = 3}, + [1073] = {.lex_state = 329, .external_lex_state = 3}, + [1074] = {.lex_state = 329, .external_lex_state = 3}, + [1075] = {.lex_state = 329, .external_lex_state = 3}, + [1076] = {.lex_state = 60, .external_lex_state = 4}, + [1077] = {.lex_state = 325, .external_lex_state = 4}, + [1078] = {.lex_state = 329, .external_lex_state = 3}, + [1079] = {.lex_state = 329, .external_lex_state = 3}, + [1080] = {.lex_state = 325, .external_lex_state = 4}, + [1081] = {.lex_state = 60, .external_lex_state = 4}, + [1082] = {.lex_state = 329, .external_lex_state = 3}, + [1083] = {.lex_state = 329, .external_lex_state = 3}, + [1084] = {.lex_state = 329, .external_lex_state = 12}, + [1085] = {.lex_state = 60, .external_lex_state = 4}, + [1086] = {.lex_state = 329, .external_lex_state = 3}, + [1087] = {.lex_state = 325, .external_lex_state = 5}, + [1088] = {.lex_state = 329, .external_lex_state = 3}, + [1089] = {.lex_state = 329, .external_lex_state = 3}, + [1090] = {.lex_state = 325, .external_lex_state = 5}, + [1091] = {.lex_state = 329, .external_lex_state = 3}, + [1092] = {.lex_state = 329, .external_lex_state = 3}, + [1093] = {.lex_state = 329, .external_lex_state = 3}, + [1094] = {.lex_state = 98, .external_lex_state = 10}, + [1095] = {.lex_state = 329, .external_lex_state = 3}, + [1096] = {.lex_state = 329, .external_lex_state = 3}, + [1097] = {.lex_state = 329, .external_lex_state = 3}, + [1098] = {.lex_state = 329, .external_lex_state = 3}, + [1099] = {.lex_state = 329, .external_lex_state = 3}, + [1100] = {.lex_state = 329, .external_lex_state = 3}, + [1101] = {.lex_state = 325, .external_lex_state = 4}, + [1102] = {.lex_state = 60, .external_lex_state = 4}, + [1103] = {.lex_state = 329, .external_lex_state = 3}, + [1104] = {.lex_state = 60, .external_lex_state = 4}, + [1105] = {.lex_state = 325, .external_lex_state = 4}, + [1106] = {.lex_state = 325, .external_lex_state = 4}, + [1107] = {.lex_state = 329, .external_lex_state = 3}, + [1108] = {.lex_state = 329, .external_lex_state = 3}, + [1109] = {.lex_state = 60, .external_lex_state = 4}, + [1110] = {.lex_state = 329, .external_lex_state = 3}, + [1111] = {.lex_state = 325, .external_lex_state = 4}, + [1112] = {.lex_state = 325, .external_lex_state = 4}, + [1113] = {.lex_state = 325, .external_lex_state = 4}, + [1114] = {.lex_state = 329, .external_lex_state = 3}, + [1115] = {.lex_state = 329, .external_lex_state = 3}, + [1116] = {.lex_state = 329, .external_lex_state = 3}, + [1117] = {.lex_state = 325, .external_lex_state = 4}, + [1118] = {.lex_state = 329, .external_lex_state = 3}, + [1119] = {.lex_state = 329, .external_lex_state = 3}, + [1120] = {.lex_state = 329, .external_lex_state = 3}, + [1121] = {.lex_state = 329, .external_lex_state = 12}, + [1122] = {.lex_state = 329, .external_lex_state = 3}, + [1123] = {.lex_state = 329, .external_lex_state = 3}, + [1124] = {.lex_state = 329, .external_lex_state = 3}, + [1125] = {.lex_state = 329, .external_lex_state = 3}, + [1126] = {.lex_state = 329, .external_lex_state = 3}, + [1127] = {.lex_state = 329, .external_lex_state = 3}, + [1128] = {.lex_state = 329, .external_lex_state = 3}, + [1129] = {.lex_state = 329, .external_lex_state = 3}, + [1130] = {.lex_state = 329, .external_lex_state = 3}, + [1131] = {.lex_state = 329, .external_lex_state = 3}, + [1132] = {.lex_state = 329, .external_lex_state = 3}, + [1133] = {.lex_state = 325, .external_lex_state = 5}, + [1134] = {.lex_state = 329, .external_lex_state = 3}, + [1135] = {.lex_state = 329, .external_lex_state = 3}, + [1136] = {.lex_state = 329, .external_lex_state = 3}, + [1137] = {.lex_state = 329, .external_lex_state = 3}, + [1138] = {.lex_state = 329, .external_lex_state = 3}, + [1139] = {.lex_state = 60, .external_lex_state = 4}, + [1140] = {.lex_state = 329, .external_lex_state = 3}, + [1141] = {.lex_state = 60, .external_lex_state = 4}, + [1142] = {.lex_state = 329, .external_lex_state = 3}, + [1143] = {.lex_state = 329, .external_lex_state = 3}, + [1144] = {.lex_state = 325, .external_lex_state = 4}, + [1145] = {.lex_state = 329, .external_lex_state = 3}, + [1146] = {.lex_state = 329, .external_lex_state = 3}, + [1147] = {.lex_state = 329, .external_lex_state = 3}, + [1148] = {.lex_state = 329, .external_lex_state = 3}, + [1149] = {.lex_state = 325, .external_lex_state = 5}, + [1150] = {.lex_state = 329, .external_lex_state = 3}, + [1151] = {.lex_state = 329, .external_lex_state = 3}, + [1152] = {.lex_state = 329, .external_lex_state = 3}, + [1153] = {.lex_state = 329, .external_lex_state = 3}, + [1154] = {.lex_state = 329, .external_lex_state = 3}, + [1155] = {.lex_state = 329, .external_lex_state = 3}, + [1156] = {.lex_state = 325, .external_lex_state = 5}, + [1157] = {.lex_state = 329, .external_lex_state = 11}, + [1158] = {.lex_state = 329, .external_lex_state = 3}, + [1159] = {.lex_state = 325, .external_lex_state = 5}, + [1160] = {.lex_state = 329, .external_lex_state = 3}, + [1161] = {.lex_state = 325, .external_lex_state = 4}, + [1162] = {.lex_state = 329, .external_lex_state = 3}, + [1163] = {.lex_state = 329, .external_lex_state = 3}, + [1164] = {.lex_state = 329, .external_lex_state = 3}, + [1165] = {.lex_state = 329, .external_lex_state = 3}, + [1166] = {.lex_state = 329, .external_lex_state = 3}, + [1167] = {.lex_state = 329, .external_lex_state = 3}, + [1168] = {.lex_state = 60, .external_lex_state = 4}, + [1169] = {.lex_state = 329, .external_lex_state = 3}, + [1170] = {.lex_state = 329, .external_lex_state = 3}, + [1171] = {.lex_state = 329, .external_lex_state = 3}, + [1172] = {.lex_state = 329, .external_lex_state = 3}, + [1173] = {.lex_state = 325, .external_lex_state = 5}, + [1174] = {.lex_state = 325, .external_lex_state = 4}, + [1175] = {.lex_state = 329, .external_lex_state = 3}, + [1176] = {.lex_state = 329, .external_lex_state = 3}, + [1177] = {.lex_state = 329, .external_lex_state = 3}, + [1178] = {.lex_state = 60, .external_lex_state = 4}, + [1179] = {.lex_state = 329, .external_lex_state = 3}, + [1180] = {.lex_state = 329, .external_lex_state = 3}, + [1181] = {.lex_state = 60, .external_lex_state = 4}, + [1182] = {.lex_state = 325, .external_lex_state = 5}, + [1183] = {.lex_state = 329, .external_lex_state = 3}, + [1184] = {.lex_state = 329, .external_lex_state = 3}, + [1185] = {.lex_state = 98, .external_lex_state = 10}, + [1186] = {.lex_state = 329, .external_lex_state = 3}, + [1187] = {.lex_state = 329, .external_lex_state = 3}, + [1188] = {.lex_state = 325, .external_lex_state = 3}, + [1189] = {.lex_state = 329, .external_lex_state = 3}, + [1190] = {.lex_state = 329, .external_lex_state = 3}, + [1191] = {.lex_state = 60, .external_lex_state = 3}, + [1192] = {.lex_state = 329, .external_lex_state = 3}, + [1193] = {.lex_state = 60, .external_lex_state = 4}, + [1194] = {.lex_state = 329, .external_lex_state = 3}, + [1195] = {.lex_state = 325, .external_lex_state = 4}, + [1196] = {.lex_state = 329, .external_lex_state = 3}, + [1197] = {.lex_state = 329, .external_lex_state = 3}, + [1198] = {.lex_state = 329, .external_lex_state = 3}, + [1199] = {.lex_state = 329, .external_lex_state = 3}, + [1200] = {.lex_state = 60, .external_lex_state = 3}, + [1201] = {.lex_state = 329, .external_lex_state = 3}, + [1202] = {.lex_state = 329, .external_lex_state = 3}, + [1203] = {.lex_state = 329, .external_lex_state = 3}, + [1204] = {.lex_state = 329, .external_lex_state = 3}, + [1205] = {.lex_state = 329, .external_lex_state = 3}, + [1206] = {.lex_state = 329, .external_lex_state = 3}, + [1207] = {.lex_state = 329, .external_lex_state = 3}, + [1208] = {.lex_state = 329, .external_lex_state = 3}, + [1209] = {.lex_state = 329, .external_lex_state = 3}, + [1210] = {.lex_state = 329, .external_lex_state = 3}, + [1211] = {.lex_state = 60, .external_lex_state = 4}, + [1212] = {.lex_state = 60, .external_lex_state = 3}, + [1213] = {.lex_state = 329, .external_lex_state = 3}, + [1214] = {.lex_state = 329, .external_lex_state = 3}, + [1215] = {.lex_state = 329, .external_lex_state = 3}, + [1216] = {.lex_state = 329, .external_lex_state = 3}, + [1217] = {.lex_state = 329, .external_lex_state = 3}, + [1218] = {.lex_state = 329, .external_lex_state = 3}, + [1219] = {.lex_state = 329, .external_lex_state = 3}, + [1220] = {.lex_state = 329, .external_lex_state = 3}, + [1221] = {.lex_state = 329, .external_lex_state = 3}, + [1222] = {.lex_state = 329, .external_lex_state = 3}, + [1223] = {.lex_state = 329, .external_lex_state = 3}, + [1224] = {.lex_state = 329, .external_lex_state = 3}, + [1225] = {.lex_state = 329, .external_lex_state = 3}, + [1226] = {.lex_state = 329, .external_lex_state = 3}, + [1227] = {.lex_state = 329, .external_lex_state = 3}, + [1228] = {.lex_state = 329, .external_lex_state = 3}, + [1229] = {.lex_state = 97, .external_lex_state = 10}, + [1230] = {.lex_state = 329, .external_lex_state = 3}, + [1231] = {.lex_state = 329, .external_lex_state = 3}, + [1232] = {.lex_state = 329, .external_lex_state = 3}, + [1233] = {.lex_state = 329, .external_lex_state = 3}, + [1234] = {.lex_state = 329, .external_lex_state = 3}, [1235] = {.lex_state = 97, .external_lex_state = 11}, - [1236] = {.lex_state = 328, .external_lex_state = 3}, - [1237] = {.lex_state = 328, .external_lex_state = 3}, - [1238] = {.lex_state = 328, .external_lex_state = 3}, - [1239] = {.lex_state = 60, .external_lex_state = 3}, - [1240] = {.lex_state = 328, .external_lex_state = 3}, - [1241] = {.lex_state = 328, .external_lex_state = 3}, - [1242] = {.lex_state = 328, .external_lex_state = 3}, - [1243] = {.lex_state = 328, .external_lex_state = 3}, - [1244] = {.lex_state = 328, .external_lex_state = 3}, - [1245] = {.lex_state = 60, .external_lex_state = 3}, - [1246] = {.lex_state = 328, .external_lex_state = 3}, + [1236] = {.lex_state = 329, .external_lex_state = 3}, + [1237] = {.lex_state = 60, .external_lex_state = 4}, + [1238] = {.lex_state = 329, .external_lex_state = 3}, + [1239] = {.lex_state = 329, .external_lex_state = 3}, + [1240] = {.lex_state = 329, .external_lex_state = 3}, + [1241] = {.lex_state = 325, .external_lex_state = 5}, + [1242] = {.lex_state = 60, .external_lex_state = 3}, + [1243] = {.lex_state = 329, .external_lex_state = 3}, + [1244] = {.lex_state = 60, .external_lex_state = 3}, + [1245] = {.lex_state = 60, .external_lex_state = 4}, + [1246] = {.lex_state = 60, .external_lex_state = 3}, [1247] = {.lex_state = 60, .external_lex_state = 3}, - [1248] = {.lex_state = 59, .external_lex_state = 3}, - [1249] = {.lex_state = 61, .external_lex_state = 3}, + [1248] = {.lex_state = 329, .external_lex_state = 3}, + [1249] = {.lex_state = 329, .external_lex_state = 3}, [1250] = {.lex_state = 60, .external_lex_state = 3}, - [1251] = {.lex_state = 63, .external_lex_state = 3}, - [1252] = {.lex_state = 98, .external_lex_state = 10}, + [1251] = {.lex_state = 329, .external_lex_state = 3}, + [1252] = {.lex_state = 63, .external_lex_state = 3}, [1253] = {.lex_state = 60, .external_lex_state = 3}, - [1254] = {.lex_state = 331, .external_lex_state = 10}, - [1255] = {.lex_state = 326, .external_lex_state = 5}, - [1256] = {.lex_state = 101, .external_lex_state = 10}, - [1257] = {.lex_state = 60, .external_lex_state = 3}, - [1258] = {.lex_state = 324, .external_lex_state = 4}, - [1259] = {.lex_state = 77, .external_lex_state = 5}, - [1260] = {.lex_state = 324, .external_lex_state = 4}, - [1261] = {.lex_state = 60, .external_lex_state = 3}, - [1262] = {.lex_state = 61, .external_lex_state = 3}, - [1263] = {.lex_state = 61, .external_lex_state = 3}, - [1264] = {.lex_state = 59, .external_lex_state = 3}, - [1265] = {.lex_state = 324, .external_lex_state = 6}, + [1254] = {.lex_state = 98, .external_lex_state = 10}, + [1255] = {.lex_state = 329, .external_lex_state = 13}, + [1256] = {.lex_state = 60, .external_lex_state = 3}, + [1257] = {.lex_state = 325, .external_lex_state = 6}, + [1258] = {.lex_state = 60, .external_lex_state = 3}, + [1259] = {.lex_state = 60, .external_lex_state = 3}, + [1260] = {.lex_state = 63, .external_lex_state = 3}, + [1261] = {.lex_state = 101, .external_lex_state = 10}, + [1262] = {.lex_state = 60, .external_lex_state = 3}, + [1263] = {.lex_state = 59, .external_lex_state = 3}, + [1264] = {.lex_state = 62, .external_lex_state = 3}, + [1265] = {.lex_state = 60, .external_lex_state = 3}, [1266] = {.lex_state = 60, .external_lex_state = 3}, - [1267] = {.lex_state = 324, .external_lex_state = 4}, - [1268] = {.lex_state = 61, .external_lex_state = 3}, - [1269] = {.lex_state = 62, .external_lex_state = 3}, - [1270] = {.lex_state = 60, .external_lex_state = 3}, + [1267] = {.lex_state = 60, .external_lex_state = 3}, + [1268] = {.lex_state = 332, .external_lex_state = 10}, + [1269] = {.lex_state = 325, .external_lex_state = 6}, + [1270] = {.lex_state = 325, .external_lex_state = 6}, [1271] = {.lex_state = 63, .external_lex_state = 3}, - [1272] = {.lex_state = 90, .external_lex_state = 10}, - [1273] = {.lex_state = 60, .external_lex_state = 3}, - [1274] = {.lex_state = 324, .external_lex_state = 4}, - [1275] = {.lex_state = 324, .external_lex_state = 4}, - [1276] = {.lex_state = 324, .external_lex_state = 6}, + [1272] = {.lex_state = 60, .external_lex_state = 3}, + [1273] = {.lex_state = 63, .external_lex_state = 3}, + [1274] = {.lex_state = 60, .external_lex_state = 3}, + [1275] = {.lex_state = 63, .external_lex_state = 3}, + [1276] = {.lex_state = 60, .external_lex_state = 3}, [1277] = {.lex_state = 60, .external_lex_state = 3}, - [1278] = {.lex_state = 62, .external_lex_state = 3}, - [1279] = {.lex_state = 63, .external_lex_state = 3}, - [1280] = {.lex_state = 60, .external_lex_state = 3}, - [1281] = {.lex_state = 90, .external_lex_state = 10}, + [1278] = {.lex_state = 63, .external_lex_state = 3}, + [1279] = {.lex_state = 62, .external_lex_state = 3}, + [1280] = {.lex_state = 62, .external_lex_state = 3}, + [1281] = {.lex_state = 97, .external_lex_state = 10}, [1282] = {.lex_state = 60, .external_lex_state = 3}, [1283] = {.lex_state = 61, .external_lex_state = 3}, - [1284] = {.lex_state = 63, .external_lex_state = 3}, - [1285] = {.lex_state = 324, .external_lex_state = 4}, - [1286] = {.lex_state = 331, .external_lex_state = 10}, - [1287] = {.lex_state = 59, .external_lex_state = 3}, - [1288] = {.lex_state = 324, .external_lex_state = 6}, - [1289] = {.lex_state = 324, .external_lex_state = 4}, - [1290] = {.lex_state = 62, .external_lex_state = 3}, + [1284] = {.lex_state = 325, .external_lex_state = 6}, + [1285] = {.lex_state = 60, .external_lex_state = 3}, + [1286] = {.lex_state = 60, .external_lex_state = 3}, + [1287] = {.lex_state = 325, .external_lex_state = 5}, + [1288] = {.lex_state = 77, .external_lex_state = 4}, + [1289] = {.lex_state = 59, .external_lex_state = 3}, + [1290] = {.lex_state = 332, .external_lex_state = 10}, [1291] = {.lex_state = 60, .external_lex_state = 3}, - [1292] = {.lex_state = 63, .external_lex_state = 3}, - [1293] = {.lex_state = 324, .external_lex_state = 6}, - [1294] = {.lex_state = 328, .external_lex_state = 13}, - [1295] = {.lex_state = 324, .external_lex_state = 4}, - [1296] = {.lex_state = 62, .external_lex_state = 3}, - [1297] = {.lex_state = 63, .external_lex_state = 3}, - [1298] = {.lex_state = 63, .external_lex_state = 3}, - [1299] = {.lex_state = 60, .external_lex_state = 3}, - [1300] = {.lex_state = 324, .external_lex_state = 6}, + [1292] = {.lex_state = 60, .external_lex_state = 3}, + [1293] = {.lex_state = 61, .external_lex_state = 3}, + [1294] = {.lex_state = 59, .external_lex_state = 3}, + [1295] = {.lex_state = 325, .external_lex_state = 5}, + [1296] = {.lex_state = 325, .external_lex_state = 5}, + [1297] = {.lex_state = 61, .external_lex_state = 3}, + [1298] = {.lex_state = 59, .external_lex_state = 3}, + [1299] = {.lex_state = 63, .external_lex_state = 3}, + [1300] = {.lex_state = 59, .external_lex_state = 3}, [1301] = {.lex_state = 60, .external_lex_state = 3}, - [1302] = {.lex_state = 324, .external_lex_state = 6}, - [1303] = {.lex_state = 328, .external_lex_state = 13}, - [1304] = {.lex_state = 60, .external_lex_state = 3}, - [1305] = {.lex_state = 60, .external_lex_state = 3}, + [1302] = {.lex_state = 59, .external_lex_state = 3}, + [1303] = {.lex_state = 325, .external_lex_state = 5}, + [1304] = {.lex_state = 62, .external_lex_state = 3}, + [1305] = {.lex_state = 325, .external_lex_state = 6}, [1306] = {.lex_state = 61, .external_lex_state = 3}, - [1307] = {.lex_state = 324, .external_lex_state = 4}, - [1308] = {.lex_state = 63, .external_lex_state = 3}, - [1309] = {.lex_state = 324, .external_lex_state = 6}, - [1310] = {.lex_state = 61, .external_lex_state = 3}, - [1311] = {.lex_state = 60, .external_lex_state = 3}, - [1312] = {.lex_state = 63, .external_lex_state = 3}, - [1313] = {.lex_state = 101, .external_lex_state = 10}, - [1314] = {.lex_state = 61, .external_lex_state = 3}, - [1315] = {.lex_state = 324, .external_lex_state = 6}, - [1316] = {.lex_state = 328, .external_lex_state = 12}, - [1317] = {.lex_state = 60, .external_lex_state = 3}, - [1318] = {.lex_state = 324, .external_lex_state = 4}, - [1319] = {.lex_state = 324, .external_lex_state = 4}, - [1320] = {.lex_state = 102, .external_lex_state = 10}, - [1321] = {.lex_state = 62, .external_lex_state = 3}, - [1322] = {.lex_state = 324, .external_lex_state = 4}, - [1323] = {.lex_state = 63, .external_lex_state = 3}, - [1324] = {.lex_state = 324, .external_lex_state = 4}, - [1325] = {.lex_state = 324, .external_lex_state = 6}, - [1326] = {.lex_state = 59, .external_lex_state = 3}, - [1327] = {.lex_state = 62, .external_lex_state = 3}, - [1328] = {.lex_state = 62, .external_lex_state = 3}, - [1329] = {.lex_state = 59, .external_lex_state = 3}, - [1330] = {.lex_state = 324, .external_lex_state = 4}, - [1331] = {.lex_state = 61, .external_lex_state = 3}, - [1332] = {.lex_state = 60, .external_lex_state = 3}, - [1333] = {.lex_state = 59, .external_lex_state = 3}, - [1334] = {.lex_state = 62, .external_lex_state = 3}, - [1335] = {.lex_state = 97, .external_lex_state = 10}, - [1336] = {.lex_state = 59, .external_lex_state = 3}, - [1337] = {.lex_state = 62, .external_lex_state = 3}, - [1338] = {.lex_state = 324, .external_lex_state = 4}, - [1339] = {.lex_state = 59, .external_lex_state = 3}, - [1340] = {.lex_state = 102, .external_lex_state = 10}, - [1341] = {.lex_state = 324, .external_lex_state = 4}, - [1342] = {.lex_state = 59, .external_lex_state = 3}, - [1343] = {.lex_state = 324, .external_lex_state = 4}, - [1344] = {.lex_state = 63, .external_lex_state = 3}, - [1345] = {.lex_state = 93, .external_lex_state = 3}, + [1307] = {.lex_state = 62, .external_lex_state = 3}, + [1308] = {.lex_state = 325, .external_lex_state = 5}, + [1309] = {.lex_state = 59, .external_lex_state = 3}, + [1310] = {.lex_state = 325, .external_lex_state = 6}, + [1311] = {.lex_state = 325, .external_lex_state = 5}, + [1312] = {.lex_state = 325, .external_lex_state = 5}, + [1313] = {.lex_state = 325, .external_lex_state = 6}, + [1314] = {.lex_state = 62, .external_lex_state = 3}, + [1315] = {.lex_state = 59, .external_lex_state = 3}, + [1316] = {.lex_state = 325, .external_lex_state = 5}, + [1317] = {.lex_state = 325, .external_lex_state = 5}, + [1318] = {.lex_state = 101, .external_lex_state = 10}, + [1319] = {.lex_state = 62, .external_lex_state = 3}, + [1320] = {.lex_state = 90, .external_lex_state = 10}, + [1321] = {.lex_state = 325, .external_lex_state = 6}, + [1322] = {.lex_state = 327, .external_lex_state = 4}, + [1323] = {.lex_state = 325, .external_lex_state = 6}, + [1324] = {.lex_state = 90, .external_lex_state = 10}, + [1325] = {.lex_state = 102, .external_lex_state = 10}, + [1326] = {.lex_state = 63, .external_lex_state = 3}, + [1327] = {.lex_state = 325, .external_lex_state = 5}, + [1328] = {.lex_state = 60, .external_lex_state = 3}, + [1329] = {.lex_state = 325, .external_lex_state = 5}, + [1330] = {.lex_state = 325, .external_lex_state = 5}, + [1331] = {.lex_state = 325, .external_lex_state = 5}, + [1332] = {.lex_state = 62, .external_lex_state = 3}, + [1333] = {.lex_state = 325, .external_lex_state = 5}, + [1334] = {.lex_state = 329, .external_lex_state = 13}, + [1335] = {.lex_state = 325, .external_lex_state = 5}, + [1336] = {.lex_state = 61, .external_lex_state = 3}, + [1337] = {.lex_state = 63, .external_lex_state = 3}, + [1338] = {.lex_state = 63, .external_lex_state = 3}, + [1339] = {.lex_state = 325, .external_lex_state = 5}, + [1340] = {.lex_state = 325, .external_lex_state = 5}, + [1341] = {.lex_state = 62, .external_lex_state = 3}, + [1342] = {.lex_state = 61, .external_lex_state = 3}, + [1343] = {.lex_state = 61, .external_lex_state = 3}, + [1344] = {.lex_state = 329, .external_lex_state = 12}, + [1345] = {.lex_state = 61, .external_lex_state = 3}, [1346] = {.lex_state = 59, .external_lex_state = 3}, - [1347] = {.lex_state = 329, .external_lex_state = 5}, - [1348] = {.lex_state = 59, .external_lex_state = 3}, - [1349] = {.lex_state = 324, .external_lex_state = 5}, - [1350] = {.lex_state = 59, .external_lex_state = 3}, - [1351] = {.lex_state = 59, .external_lex_state = 3}, - [1352] = {.lex_state = 77, .external_lex_state = 3}, - [1353] = {.lex_state = 97, .external_lex_state = 5}, - [1354] = {.lex_state = 61, .external_lex_state = 3}, - [1355] = {.lex_state = 59, .external_lex_state = 3}, - [1356] = {.lex_state = 62, .external_lex_state = 3}, - [1357] = {.lex_state = 101, .external_lex_state = 10}, - [1358] = {.lex_state = 59, .external_lex_state = 3}, - [1359] = {.lex_state = 324, .external_lex_state = 6}, - [1360] = {.lex_state = 326, .external_lex_state = 4}, - [1361] = {.lex_state = 324, .external_lex_state = 6}, - [1362] = {.lex_state = 324, .external_lex_state = 6}, - [1363] = {.lex_state = 63, .external_lex_state = 3}, - [1364] = {.lex_state = 98, .external_lex_state = 5}, - [1365] = {.lex_state = 329, .external_lex_state = 5}, - [1366] = {.lex_state = 61, .external_lex_state = 3}, - [1367] = {.lex_state = 329, .external_lex_state = 5}, - [1368] = {.lex_state = 62, .external_lex_state = 3}, + [1347] = {.lex_state = 61, .external_lex_state = 3}, + [1348] = {.lex_state = 102, .external_lex_state = 10}, + [1349] = {.lex_state = 325, .external_lex_state = 5}, + [1350] = {.lex_state = 63, .external_lex_state = 3}, + [1351] = {.lex_state = 79, .external_lex_state = 4}, + [1352] = {.lex_state = 332, .external_lex_state = 10}, + [1353] = {.lex_state = 62, .external_lex_state = 3}, + [1354] = {.lex_state = 78, .external_lex_state = 4}, + [1355] = {.lex_state = 325, .external_lex_state = 3}, + [1356] = {.lex_state = 329, .external_lex_state = 11}, + [1357] = {.lex_state = 61, .external_lex_state = 3}, + [1358] = {.lex_state = 78, .external_lex_state = 4}, + [1359] = {.lex_state = 61, .external_lex_state = 3}, + [1360] = {.lex_state = 61, .external_lex_state = 3}, + [1361] = {.lex_state = 328, .external_lex_state = 4}, + [1362] = {.lex_state = 101, .external_lex_state = 10}, + [1363] = {.lex_state = 62, .external_lex_state = 3}, + [1364] = {.lex_state = 61, .external_lex_state = 3}, + [1365] = {.lex_state = 61, .external_lex_state = 3}, + [1366] = {.lex_state = 97, .external_lex_state = 11}, + [1367] = {.lex_state = 62, .external_lex_state = 3}, + [1368] = {.lex_state = 78, .external_lex_state = 4}, [1369] = {.lex_state = 62, .external_lex_state = 3}, - [1370] = {.lex_state = 59, .external_lex_state = 3}, - [1371] = {.lex_state = 61, .external_lex_state = 3}, - [1372] = {.lex_state = 59, .external_lex_state = 3}, - [1373] = {.lex_state = 62, .external_lex_state = 3}, + [1370] = {.lex_state = 79, .external_lex_state = 4}, + [1371] = {.lex_state = 78, .external_lex_state = 4}, + [1372] = {.lex_state = 62, .external_lex_state = 3}, + [1373] = {.lex_state = 329, .external_lex_state = 13}, [1374] = {.lex_state = 61, .external_lex_state = 3}, - [1375] = {.lex_state = 59, .external_lex_state = 3}, - [1376] = {.lex_state = 324, .external_lex_state = 6}, - [1377] = {.lex_state = 59, .external_lex_state = 3}, - [1378] = {.lex_state = 62, .external_lex_state = 3}, - [1379] = {.lex_state = 324, .external_lex_state = 6}, - [1380] = {.lex_state = 59, .external_lex_state = 3}, - [1381] = {.lex_state = 59, .external_lex_state = 3}, - [1382] = {.lex_state = 78, .external_lex_state = 5}, - [1383] = {.lex_state = 63, .external_lex_state = 3}, - [1384] = {.lex_state = 324, .external_lex_state = 6}, + [1375] = {.lex_state = 61, .external_lex_state = 3}, + [1376] = {.lex_state = 325, .external_lex_state = 6}, + [1377] = {.lex_state = 325, .external_lex_state = 6}, + [1378] = {.lex_state = 325, .external_lex_state = 6}, + [1379] = {.lex_state = 59, .external_lex_state = 3}, + [1380] = {.lex_state = 325, .external_lex_state = 6}, + [1381] = {.lex_state = 325, .external_lex_state = 6}, + [1382] = {.lex_state = 59, .external_lex_state = 3}, + [1383] = {.lex_state = 59, .external_lex_state = 3}, + [1384] = {.lex_state = 325, .external_lex_state = 6}, [1385] = {.lex_state = 59, .external_lex_state = 3}, - [1386] = {.lex_state = 97, .external_lex_state = 11}, - [1387] = {.lex_state = 329, .external_lex_state = 5}, + [1386] = {.lex_state = 328, .external_lex_state = 4}, + [1387] = {.lex_state = 62, .external_lex_state = 3}, [1388] = {.lex_state = 62, .external_lex_state = 3}, - [1389] = {.lex_state = 329, .external_lex_state = 5}, - [1390] = {.lex_state = 61, .external_lex_state = 3}, - [1391] = {.lex_state = 324, .external_lex_state = 6}, - [1392] = {.lex_state = 61, .external_lex_state = 3}, - [1393] = {.lex_state = 62, .external_lex_state = 3}, - [1394] = {.lex_state = 328, .external_lex_state = 13}, - [1395] = {.lex_state = 65, .external_lex_state = 5}, - [1396] = {.lex_state = 65, .external_lex_state = 5}, - [1397] = {.lex_state = 63, .external_lex_state = 3}, - [1398] = {.lex_state = 61, .external_lex_state = 3}, - [1399] = {.lex_state = 97, .external_lex_state = 11}, - [1400] = {.lex_state = 324, .external_lex_state = 6}, - [1401] = {.lex_state = 59, .external_lex_state = 3}, + [1389] = {.lex_state = 59, .external_lex_state = 3}, + [1390] = {.lex_state = 59, .external_lex_state = 3}, + [1391] = {.lex_state = 59, .external_lex_state = 3}, + [1392] = {.lex_state = 102, .external_lex_state = 10}, + [1393] = {.lex_state = 59, .external_lex_state = 3}, + [1394] = {.lex_state = 62, .external_lex_state = 3}, + [1395] = {.lex_state = 59, .external_lex_state = 3}, + [1396] = {.lex_state = 62, .external_lex_state = 3}, + [1397] = {.lex_state = 59, .external_lex_state = 3}, + [1398] = {.lex_state = 325, .external_lex_state = 6}, + [1399] = {.lex_state = 62, .external_lex_state = 3}, + [1400] = {.lex_state = 325, .external_lex_state = 6}, + [1401] = {.lex_state = 325, .external_lex_state = 6}, [1402] = {.lex_state = 62, .external_lex_state = 3}, - [1403] = {.lex_state = 62, .external_lex_state = 3}, - [1404] = {.lex_state = 79, .external_lex_state = 5}, - [1405] = {.lex_state = 324, .external_lex_state = 6}, - [1406] = {.lex_state = 59, .external_lex_state = 3}, - [1407] = {.lex_state = 324, .external_lex_state = 6}, - [1408] = {.lex_state = 59, .external_lex_state = 3}, - [1409] = {.lex_state = 324, .external_lex_state = 6}, - [1410] = {.lex_state = 102, .external_lex_state = 10}, - [1411] = {.lex_state = 328, .external_lex_state = 5}, - [1412] = {.lex_state = 62, .external_lex_state = 3}, - [1413] = {.lex_state = 63, .external_lex_state = 3}, - [1414] = {.lex_state = 97, .external_lex_state = 5}, - [1415] = {.lex_state = 61, .external_lex_state = 3}, - [1416] = {.lex_state = 324, .external_lex_state = 6}, - [1417] = {.lex_state = 78, .external_lex_state = 5}, - [1418] = {.lex_state = 328, .external_lex_state = 11}, - [1419] = {.lex_state = 62, .external_lex_state = 3}, - [1420] = {.lex_state = 324, .external_lex_state = 6}, - [1421] = {.lex_state = 79, .external_lex_state = 5}, - [1422] = {.lex_state = 63, .external_lex_state = 3}, - [1423] = {.lex_state = 324, .external_lex_state = 6}, - [1424] = {.lex_state = 63, .external_lex_state = 3}, - [1425] = {.lex_state = 78, .external_lex_state = 5}, - [1426] = {.lex_state = 324, .external_lex_state = 6}, - [1427] = {.lex_state = 327, .external_lex_state = 5}, - [1428] = {.lex_state = 63, .external_lex_state = 3}, - [1429] = {.lex_state = 90, .external_lex_state = 10}, - [1430] = {.lex_state = 61, .external_lex_state = 3}, - [1431] = {.lex_state = 63, .external_lex_state = 3}, - [1432] = {.lex_state = 327, .external_lex_state = 5}, - [1433] = {.lex_state = 62, .external_lex_state = 3}, - [1434] = {.lex_state = 63, .external_lex_state = 3}, - [1435] = {.lex_state = 98, .external_lex_state = 5}, - [1436] = {.lex_state = 331, .external_lex_state = 10}, - [1437] = {.lex_state = 324, .external_lex_state = 6}, - [1438] = {.lex_state = 59, .external_lex_state = 3}, - [1439] = {.lex_state = 62, .external_lex_state = 3}, - [1440] = {.lex_state = 62, .external_lex_state = 3}, - [1441] = {.lex_state = 61, .external_lex_state = 3}, - [1442] = {.lex_state = 79, .external_lex_state = 5}, - [1443] = {.lex_state = 79, .external_lex_state = 5}, - [1444] = {.lex_state = 63, .external_lex_state = 3}, - [1445] = {.lex_state = 324, .external_lex_state = 3}, + [1403] = {.lex_state = 329, .external_lex_state = 4}, + [1404] = {.lex_state = 61, .external_lex_state = 3}, + [1405] = {.lex_state = 325, .external_lex_state = 6}, + [1406] = {.lex_state = 325, .external_lex_state = 6}, + [1407] = {.lex_state = 65, .external_lex_state = 4}, + [1408] = {.lex_state = 325, .external_lex_state = 6}, + [1409] = {.lex_state = 59, .external_lex_state = 3}, + [1410] = {.lex_state = 62, .external_lex_state = 3}, + [1411] = {.lex_state = 59, .external_lex_state = 3}, + [1412] = {.lex_state = 59, .external_lex_state = 3}, + [1413] = {.lex_state = 62, .external_lex_state = 3}, + [1414] = {.lex_state = 63, .external_lex_state = 3}, + [1415] = {.lex_state = 62, .external_lex_state = 3}, + [1416] = {.lex_state = 330, .external_lex_state = 4}, + [1417] = {.lex_state = 62, .external_lex_state = 3}, + [1418] = {.lex_state = 330, .external_lex_state = 4}, + [1419] = {.lex_state = 61, .external_lex_state = 3}, + [1420] = {.lex_state = 63, .external_lex_state = 3}, + [1421] = {.lex_state = 328, .external_lex_state = 4}, + [1422] = {.lex_state = 328, .external_lex_state = 4}, + [1423] = {.lex_state = 325, .external_lex_state = 6}, + [1424] = {.lex_state = 330, .external_lex_state = 4}, + [1425] = {.lex_state = 330, .external_lex_state = 4}, + [1426] = {.lex_state = 325, .external_lex_state = 6}, + [1427] = {.lex_state = 329, .external_lex_state = 11}, + [1428] = {.lex_state = 61, .external_lex_state = 3}, + [1429] = {.lex_state = 63, .external_lex_state = 3}, + [1430] = {.lex_state = 327, .external_lex_state = 5}, + [1431] = {.lex_state = 98, .external_lex_state = 4}, + [1432] = {.lex_state = 325, .external_lex_state = 3}, + [1433] = {.lex_state = 90, .external_lex_state = 10}, + [1434] = {.lex_state = 59, .external_lex_state = 3}, + [1435] = {.lex_state = 330, .external_lex_state = 4}, + [1436] = {.lex_state = 325, .external_lex_state = 6}, + [1437] = {.lex_state = 325, .external_lex_state = 4}, + [1438] = {.lex_state = 325, .external_lex_state = 6}, + [1439] = {.lex_state = 97, .external_lex_state = 11}, + [1440] = {.lex_state = 65, .external_lex_state = 4}, + [1441] = {.lex_state = 63, .external_lex_state = 3}, + [1442] = {.lex_state = 63, .external_lex_state = 3}, + [1443] = {.lex_state = 329, .external_lex_state = 11}, + [1444] = {.lex_state = 97, .external_lex_state = 4}, + [1445] = {.lex_state = 63, .external_lex_state = 3}, [1446] = {.lex_state = 63, .external_lex_state = 3}, - [1447] = {.lex_state = 63, .external_lex_state = 3}, - [1448] = {.lex_state = 62, .external_lex_state = 3}, - [1449] = {.lex_state = 62, .external_lex_state = 3}, - [1450] = {.lex_state = 63, .external_lex_state = 3}, - [1451] = {.lex_state = 62, .external_lex_state = 3}, - [1452] = {.lex_state = 61, .external_lex_state = 3}, - [1453] = {.lex_state = 97, .external_lex_state = 11}, - [1454] = {.lex_state = 63, .external_lex_state = 3}, - [1455] = {.lex_state = 63, .external_lex_state = 3}, - [1456] = {.lex_state = 61, .external_lex_state = 3}, - [1457] = {.lex_state = 63, .external_lex_state = 3}, - [1458] = {.lex_state = 324, .external_lex_state = 3}, - [1459] = {.lex_state = 61, .external_lex_state = 3}, - [1460] = {.lex_state = 78, .external_lex_state = 5}, - [1461] = {.lex_state = 327, .external_lex_state = 5}, - [1462] = {.lex_state = 328, .external_lex_state = 11}, - [1463] = {.lex_state = 61, .external_lex_state = 3}, - [1464] = {.lex_state = 61, .external_lex_state = 3}, - [1465] = {.lex_state = 61, .external_lex_state = 3}, - [1466] = {.lex_state = 327, .external_lex_state = 5}, - [1467] = {.lex_state = 324, .external_lex_state = 6}, - [1468] = {.lex_state = 61, .external_lex_state = 3}, - [1469] = {.lex_state = 63, .external_lex_state = 3}, - [1470] = {.lex_state = 328, .external_lex_state = 11}, - [1471] = {.lex_state = 79, .external_lex_state = 5}, - [1472] = {.lex_state = 79, .external_lex_state = 3}, - [1473] = {.lex_state = 81, .external_lex_state = 3}, - [1474] = {.lex_state = 94, .external_lex_state = 3}, - [1475] = {.lex_state = 71, .external_lex_state = 5}, - [1476] = {.lex_state = 78, .external_lex_state = 3}, - [1477] = {.lex_state = 331, .external_lex_state = 4}, - [1478] = {.lex_state = 78, .external_lex_state = 3}, - [1479] = {.lex_state = 94, .external_lex_state = 3}, - [1480] = {.lex_state = 78, .external_lex_state = 3}, - [1481] = {.lex_state = 78, .external_lex_state = 3}, - [1482] = {.lex_state = 324, .external_lex_state = 3}, - [1483] = {.lex_state = 94, .external_lex_state = 3}, - [1484] = {.lex_state = 328, .external_lex_state = 5}, - [1485] = {.lex_state = 79, .external_lex_state = 3}, - [1486] = {.lex_state = 71, .external_lex_state = 5}, - [1487] = {.lex_state = 94, .external_lex_state = 3}, - [1488] = {.lex_state = 326, .external_lex_state = 6}, - [1489] = {.lex_state = 73, .external_lex_state = 3}, - [1490] = {.lex_state = 79, .external_lex_state = 3}, - [1491] = {.lex_state = 331, .external_lex_state = 5}, - [1492] = {.lex_state = 328, .external_lex_state = 5}, - [1493] = {.lex_state = 331, .external_lex_state = 5}, - [1494] = {.lex_state = 97, .external_lex_state = 3}, - [1495] = {.lex_state = 327, .external_lex_state = 4}, - [1496] = {.lex_state = 328, .external_lex_state = 5}, - [1497] = {.lex_state = 97, .external_lex_state = 5}, - [1498] = {.lex_state = 97, .external_lex_state = 5}, - [1499] = {.lex_state = 98, .external_lex_state = 10}, - [1500] = {.lex_state = 79, .external_lex_state = 5}, - [1501] = {.lex_state = 97, .external_lex_state = 3}, - [1502] = {.lex_state = 97, .external_lex_state = 5}, - [1503] = {.lex_state = 328, .external_lex_state = 5}, - [1504] = {.lex_state = 327, .external_lex_state = 4}, - [1505] = {.lex_state = 85, .external_lex_state = 3}, - [1506] = {.lex_state = 328, .external_lex_state = 5}, - [1507] = {.lex_state = 327, .external_lex_state = 4}, - [1508] = {.lex_state = 328, .external_lex_state = 12}, - [1509] = {.lex_state = 98, .external_lex_state = 10}, - [1510] = {.lex_state = 327, .external_lex_state = 4}, - [1511] = {.lex_state = 79, .external_lex_state = 3}, - [1512] = {.lex_state = 79, .external_lex_state = 3}, - [1513] = {.lex_state = 329, .external_lex_state = 5}, - [1514] = {.lex_state = 329, .external_lex_state = 5}, - [1515] = {.lex_state = 79, .external_lex_state = 5}, - [1516] = {.lex_state = 329, .external_lex_state = 5}, - [1517] = {.lex_state = 79, .external_lex_state = 5}, - [1518] = {.lex_state = 329, .external_lex_state = 5}, - [1519] = {.lex_state = 329, .external_lex_state = 5}, - [1520] = {.lex_state = 328, .external_lex_state = 12}, - [1521] = {.lex_state = 71, .external_lex_state = 5}, - [1522] = {.lex_state = 79, .external_lex_state = 5}, - [1523] = {.lex_state = 79, .external_lex_state = 5}, - [1524] = {.lex_state = 328, .external_lex_state = 5}, - [1525] = {.lex_state = 99, .external_lex_state = 3}, - [1526] = {.lex_state = 329, .external_lex_state = 4}, - [1527] = {.lex_state = 97, .external_lex_state = 5}, - [1528] = {.lex_state = 329, .external_lex_state = 4}, - [1529] = {.lex_state = 329, .external_lex_state = 4}, - [1530] = {.lex_state = 97, .external_lex_state = 10}, - [1531] = {.lex_state = 97, .external_lex_state = 5}, + [1447] = {.lex_state = 59, .external_lex_state = 3}, + [1448] = {.lex_state = 63, .external_lex_state = 3}, + [1449] = {.lex_state = 61, .external_lex_state = 3}, + [1450] = {.lex_state = 325, .external_lex_state = 6}, + [1451] = {.lex_state = 63, .external_lex_state = 3}, + [1452] = {.lex_state = 59, .external_lex_state = 3}, + [1453] = {.lex_state = 325, .external_lex_state = 6}, + [1454] = {.lex_state = 61, .external_lex_state = 3}, + [1455] = {.lex_state = 59, .external_lex_state = 3}, + [1456] = {.lex_state = 97, .external_lex_state = 11}, + [1457] = {.lex_state = 61, .external_lex_state = 3}, + [1458] = {.lex_state = 61, .external_lex_state = 3}, + [1459] = {.lex_state = 77, .external_lex_state = 3}, + [1460] = {.lex_state = 97, .external_lex_state = 4}, + [1461] = {.lex_state = 63, .external_lex_state = 3}, + [1462] = {.lex_state = 63, .external_lex_state = 3}, + [1463] = {.lex_state = 62, .external_lex_state = 3}, + [1464] = {.lex_state = 63, .external_lex_state = 3}, + [1465] = {.lex_state = 63, .external_lex_state = 3}, + [1466] = {.lex_state = 63, .external_lex_state = 3}, + [1467] = {.lex_state = 63, .external_lex_state = 3}, + [1468] = {.lex_state = 63, .external_lex_state = 3}, + [1469] = {.lex_state = 59, .external_lex_state = 3}, + [1470] = {.lex_state = 61, .external_lex_state = 3}, + [1471] = {.lex_state = 93, .external_lex_state = 3}, + [1472] = {.lex_state = 62, .external_lex_state = 3}, + [1473] = {.lex_state = 63, .external_lex_state = 3}, + [1474] = {.lex_state = 61, .external_lex_state = 3}, + [1475] = {.lex_state = 79, .external_lex_state = 4}, + [1476] = {.lex_state = 98, .external_lex_state = 4}, + [1477] = {.lex_state = 79, .external_lex_state = 4}, + [1478] = {.lex_state = 61, .external_lex_state = 3}, + [1479] = {.lex_state = 63, .external_lex_state = 3}, + [1480] = {.lex_state = 62, .external_lex_state = 3}, + [1481] = {.lex_state = 61, .external_lex_state = 3}, + [1482] = {.lex_state = 79, .external_lex_state = 4}, + [1483] = {.lex_state = 327, .external_lex_state = 6}, + [1484] = {.lex_state = 330, .external_lex_state = 4}, + [1485] = {.lex_state = 97, .external_lex_state = 4}, + [1486] = {.lex_state = 99, .external_lex_state = 3}, + [1487] = {.lex_state = 330, .external_lex_state = 5}, + [1488] = {.lex_state = 97, .external_lex_state = 3}, + [1489] = {.lex_state = 330, .external_lex_state = 5}, + [1490] = {.lex_state = 94, .external_lex_state = 3}, + [1491] = {.lex_state = 99, .external_lex_state = 3}, + [1492] = {.lex_state = 79, .external_lex_state = 4}, + [1493] = {.lex_state = 79, .external_lex_state = 3}, + [1494] = {.lex_state = 79, .external_lex_state = 4}, + [1495] = {.lex_state = 97, .external_lex_state = 10}, + [1496] = {.lex_state = 329, .external_lex_state = 4}, + [1497] = {.lex_state = 328, .external_lex_state = 5}, + [1498] = {.lex_state = 79, .external_lex_state = 4}, + [1499] = {.lex_state = 79, .external_lex_state = 3}, + [1500] = {.lex_state = 99, .external_lex_state = 3}, + [1501] = {.lex_state = 78, .external_lex_state = 3}, + [1502] = {.lex_state = 79, .external_lex_state = 3}, + [1503] = {.lex_state = 329, .external_lex_state = 4}, + [1504] = {.lex_state = 99, .external_lex_state = 3}, + [1505] = {.lex_state = 97, .external_lex_state = 4}, + [1506] = {.lex_state = 85, .external_lex_state = 3}, + [1507] = {.lex_state = 73, .external_lex_state = 3}, + [1508] = {.lex_state = 97, .external_lex_state = 4}, + [1509] = {.lex_state = 329, .external_lex_state = 4}, + [1510] = {.lex_state = 94, .external_lex_state = 3}, + [1511] = {.lex_state = 325, .external_lex_state = 3}, + [1512] = {.lex_state = 328, .external_lex_state = 5}, + [1513] = {.lex_state = 98, .external_lex_state = 10}, + [1514] = {.lex_state = 94, .external_lex_state = 3}, + [1515] = {.lex_state = 329, .external_lex_state = 3}, + [1516] = {.lex_state = 329, .external_lex_state = 12}, + [1517] = {.lex_state = 78, .external_lex_state = 3}, + [1518] = {.lex_state = 330, .external_lex_state = 4}, + [1519] = {.lex_state = 332, .external_lex_state = 5}, + [1520] = {.lex_state = 330, .external_lex_state = 4}, + [1521] = {.lex_state = 79, .external_lex_state = 3}, + [1522] = {.lex_state = 330, .external_lex_state = 5}, + [1523] = {.lex_state = 97, .external_lex_state = 4}, + [1524] = {.lex_state = 94, .external_lex_state = 3}, + [1525] = {.lex_state = 97, .external_lex_state = 4}, + [1526] = {.lex_state = 97, .external_lex_state = 10}, + [1527] = {.lex_state = 98, .external_lex_state = 10}, + [1528] = {.lex_state = 330, .external_lex_state = 4}, + [1529] = {.lex_state = 330, .external_lex_state = 4}, + [1530] = {.lex_state = 332, .external_lex_state = 4}, + [1531] = {.lex_state = 329, .external_lex_state = 4}, [1532] = {.lex_state = 329, .external_lex_state = 4}, - [1533] = {.lex_state = 329, .external_lex_state = 4}, - [1534] = {.lex_state = 328, .external_lex_state = 3}, - [1535] = {.lex_state = 98, .external_lex_state = 10}, - [1536] = {.lex_state = 97, .external_lex_state = 5}, - [1537] = {.lex_state = 99, .external_lex_state = 3}, - [1538] = {.lex_state = 97, .external_lex_state = 10}, - [1539] = {.lex_state = 99, .external_lex_state = 3}, - [1540] = {.lex_state = 95, .external_lex_state = 3}, - [1541] = {.lex_state = 99, .external_lex_state = 3}, + [1533] = {.lex_state = 329, .external_lex_state = 12}, + [1534] = {.lex_state = 97, .external_lex_state = 10}, + [1535] = {.lex_state = 329, .external_lex_state = 4}, + [1536] = {.lex_state = 97, .external_lex_state = 3}, + [1537] = {.lex_state = 78, .external_lex_state = 3}, + [1538] = {.lex_state = 332, .external_lex_state = 4}, + [1539] = {.lex_state = 97, .external_lex_state = 4}, + [1540] = {.lex_state = 328, .external_lex_state = 5}, + [1541] = {.lex_state = 79, .external_lex_state = 4}, [1542] = {.lex_state = 328, .external_lex_state = 5}, - [1543] = {.lex_state = 97, .external_lex_state = 10}, - [1544] = {.lex_state = 99, .external_lex_state = 3}, - [1545] = {.lex_state = 331, .external_lex_state = 4}, - [1546] = {.lex_state = 328, .external_lex_state = 12}, - [1547] = {.lex_state = 97, .external_lex_state = 5}, - [1548] = {.lex_state = 97, .external_lex_state = 5}, - [1549] = {.lex_state = 97, .external_lex_state = 5}, - [1550] = {.lex_state = 328, .external_lex_state = 5}, - [1551] = {.lex_state = 328, .external_lex_state = 5}, - [1552] = {.lex_state = 99, .external_lex_state = 3}, - [1553] = {.lex_state = 328, .external_lex_state = 5}, - [1554] = {.lex_state = 328, .external_lex_state = 5}, - [1555] = {.lex_state = 99, .external_lex_state = 3}, - [1556] = {.lex_state = 328, .external_lex_state = 5}, - [1557] = {.lex_state = 97, .external_lex_state = 5}, - [1558] = {.lex_state = 328, .external_lex_state = 5}, - [1559] = {.lex_state = 328, .external_lex_state = 4}, - [1560] = {.lex_state = 82, .external_lex_state = 3}, - [1561] = {.lex_state = 328, .external_lex_state = 5}, - [1562] = {.lex_state = 99, .external_lex_state = 3}, - [1563] = {.lex_state = 99, .external_lex_state = 3}, - [1564] = {.lex_state = 328, .external_lex_state = 5}, - [1565] = {.lex_state = 328, .external_lex_state = 13}, - [1566] = {.lex_state = 328, .external_lex_state = 5}, - [1567] = {.lex_state = 328, .external_lex_state = 5}, - [1568] = {.lex_state = 101, .external_lex_state = 3}, - [1569] = {.lex_state = 328, .external_lex_state = 5}, - [1570] = {.lex_state = 97, .external_lex_state = 5}, - [1571] = {.lex_state = 328, .external_lex_state = 5}, - [1572] = {.lex_state = 328, .external_lex_state = 5}, - [1573] = {.lex_state = 328, .external_lex_state = 5}, - [1574] = {.lex_state = 98, .external_lex_state = 3}, - [1575] = {.lex_state = 97, .external_lex_state = 5}, - [1576] = {.lex_state = 97, .external_lex_state = 5}, - [1577] = {.lex_state = 97, .external_lex_state = 5}, - [1578] = {.lex_state = 97, .external_lex_state = 5}, - [1579] = {.lex_state = 97, .external_lex_state = 5}, - [1580] = {.lex_state = 328, .external_lex_state = 5}, - [1581] = {.lex_state = 328, .external_lex_state = 3}, - [1582] = {.lex_state = 328, .external_lex_state = 5}, - [1583] = {.lex_state = 97, .external_lex_state = 5}, - [1584] = {.lex_state = 97, .external_lex_state = 3}, - [1585] = {.lex_state = 328, .external_lex_state = 5}, - [1586] = {.lex_state = 83, .external_lex_state = 3}, - [1587] = {.lex_state = 101, .external_lex_state = 3}, - [1588] = {.lex_state = 79, .external_lex_state = 3}, - [1589] = {.lex_state = 97, .external_lex_state = 5}, - [1590] = {.lex_state = 90, .external_lex_state = 3}, - [1591] = {.lex_state = 97, .external_lex_state = 5}, - [1592] = {.lex_state = 97, .external_lex_state = 5}, - [1593] = {.lex_state = 328, .external_lex_state = 5}, - [1594] = {.lex_state = 82, .external_lex_state = 3}, - [1595] = {.lex_state = 328, .external_lex_state = 5}, - [1596] = {.lex_state = 97, .external_lex_state = 3}, - [1597] = {.lex_state = 97, .external_lex_state = 5}, - [1598] = {.lex_state = 97, .external_lex_state = 5}, - [1599] = {.lex_state = 97, .external_lex_state = 5}, - [1600] = {.lex_state = 96, .external_lex_state = 3}, - [1601] = {.lex_state = 97, .external_lex_state = 5}, - [1602] = {.lex_state = 79, .external_lex_state = 3}, - [1603] = {.lex_state = 329, .external_lex_state = 6}, - [1604] = {.lex_state = 328, .external_lex_state = 5}, + [1543] = {.lex_state = 330, .external_lex_state = 5}, + [1544] = {.lex_state = 71, .external_lex_state = 4}, + [1545] = {.lex_state = 97, .external_lex_state = 4}, + [1546] = {.lex_state = 71, .external_lex_state = 4}, + [1547] = {.lex_state = 329, .external_lex_state = 12}, + [1548] = {.lex_state = 79, .external_lex_state = 3}, + [1549] = {.lex_state = 99, .external_lex_state = 3}, + [1550] = {.lex_state = 329, .external_lex_state = 4}, + [1551] = {.lex_state = 81, .external_lex_state = 3}, + [1552] = {.lex_state = 98, .external_lex_state = 10}, + [1553] = {.lex_state = 332, .external_lex_state = 5}, + [1554] = {.lex_state = 95, .external_lex_state = 3}, + [1555] = {.lex_state = 97, .external_lex_state = 4}, + [1556] = {.lex_state = 78, .external_lex_state = 3}, + [1557] = {.lex_state = 79, .external_lex_state = 4}, + [1558] = {.lex_state = 330, .external_lex_state = 5}, + [1559] = {.lex_state = 71, .external_lex_state = 4}, + [1560] = {.lex_state = 97, .external_lex_state = 3}, + [1561] = {.lex_state = 329, .external_lex_state = 5}, + [1562] = {.lex_state = 71, .external_lex_state = 3}, + [1563] = {.lex_state = 329, .external_lex_state = 4}, + [1564] = {.lex_state = 97, .external_lex_state = 4}, + [1565] = {.lex_state = 97, .external_lex_state = 4}, + [1566] = {.lex_state = 97, .external_lex_state = 3}, + [1567] = {.lex_state = 97, .external_lex_state = 4}, + [1568] = {.lex_state = 329, .external_lex_state = 4}, + [1569] = {.lex_state = 71, .external_lex_state = 4}, + [1570] = {.lex_state = 329, .external_lex_state = 4}, + [1571] = {.lex_state = 96, .external_lex_state = 3}, + [1572] = {.lex_state = 330, .external_lex_state = 5}, + [1573] = {.lex_state = 97, .external_lex_state = 4}, + [1574] = {.lex_state = 329, .external_lex_state = 4}, + [1575] = {.lex_state = 329, .external_lex_state = 4}, + [1576] = {.lex_state = 329, .external_lex_state = 4}, + [1577] = {.lex_state = 101, .external_lex_state = 3}, + [1578] = {.lex_state = 97, .external_lex_state = 3}, + [1579] = {.lex_state = 82, .external_lex_state = 3}, + [1580] = {.lex_state = 74, .external_lex_state = 3}, + [1581] = {.lex_state = 330, .external_lex_state = 5}, + [1582] = {.lex_state = 98, .external_lex_state = 3}, + [1583] = {.lex_state = 328, .external_lex_state = 6}, + [1584] = {.lex_state = 97, .external_lex_state = 4}, + [1585] = {.lex_state = 329, .external_lex_state = 4}, + [1586] = {.lex_state = 97, .external_lex_state = 4}, + [1587] = {.lex_state = 329, .external_lex_state = 4}, + [1588] = {.lex_state = 329, .external_lex_state = 3}, + [1589] = {.lex_state = 329, .external_lex_state = 4}, + [1590] = {.lex_state = 100, .external_lex_state = 3}, + [1591] = {.lex_state = 330, .external_lex_state = 5}, + [1592] = {.lex_state = 75, .external_lex_state = 3}, + [1593] = {.lex_state = 83, .external_lex_state = 3}, + [1594] = {.lex_state = 329, .external_lex_state = 4}, + [1595] = {.lex_state = 329, .external_lex_state = 4}, + [1596] = {.lex_state = 97, .external_lex_state = 4}, + [1597] = {.lex_state = 329, .external_lex_state = 4}, + [1598] = {.lex_state = 328, .external_lex_state = 6}, + [1599] = {.lex_state = 329, .external_lex_state = 4}, + [1600] = {.lex_state = 329, .external_lex_state = 4}, + [1601] = {.lex_state = 332, .external_lex_state = 6}, + [1602] = {.lex_state = 82, .external_lex_state = 3}, + [1603] = {.lex_state = 98, .external_lex_state = 3}, + [1604] = {.lex_state = 329, .external_lex_state = 4}, [1605] = {.lex_state = 96, .external_lex_state = 3}, - [1606] = {.lex_state = 97, .external_lex_state = 5}, - [1607] = {.lex_state = 328, .external_lex_state = 5}, - [1608] = {.lex_state = 328, .external_lex_state = 5}, - [1609] = {.lex_state = 328, .external_lex_state = 5}, - [1610] = {.lex_state = 328, .external_lex_state = 5}, - [1611] = {.lex_state = 75, .external_lex_state = 3}, - [1612] = {.lex_state = 328, .external_lex_state = 5}, - [1613] = {.lex_state = 328, .external_lex_state = 5}, - [1614] = {.lex_state = 75, .external_lex_state = 3}, - [1615] = {.lex_state = 331, .external_lex_state = 6}, - [1616] = {.lex_state = 97, .external_lex_state = 5}, - [1617] = {.lex_state = 71, .external_lex_state = 5}, - [1618] = {.lex_state = 331, .external_lex_state = 6}, - [1619] = {.lex_state = 328, .external_lex_state = 5}, - [1620] = {.lex_state = 328, .external_lex_state = 3}, - [1621] = {.lex_state = 98, .external_lex_state = 3}, - [1622] = {.lex_state = 328, .external_lex_state = 13}, - [1623] = {.lex_state = 328, .external_lex_state = 5}, - [1624] = {.lex_state = 97, .external_lex_state = 5}, - [1625] = {.lex_state = 96, .external_lex_state = 3}, - [1626] = {.lex_state = 328, .external_lex_state = 5}, - [1627] = {.lex_state = 327, .external_lex_state = 6}, - [1628] = {.lex_state = 328, .external_lex_state = 5}, - [1629] = {.lex_state = 86, .external_lex_state = 3}, - [1630] = {.lex_state = 97, .external_lex_state = 5}, - [1631] = {.lex_state = 96, .external_lex_state = 3}, + [1606] = {.lex_state = 102, .external_lex_state = 3}, + [1607] = {.lex_state = 79, .external_lex_state = 3}, + [1608] = {.lex_state = 99, .external_lex_state = 3}, + [1609] = {.lex_state = 97, .external_lex_state = 4}, + [1610] = {.lex_state = 332, .external_lex_state = 10}, + [1611] = {.lex_state = 97, .external_lex_state = 4}, + [1612] = {.lex_state = 329, .external_lex_state = 5}, + [1613] = {.lex_state = 75, .external_lex_state = 3}, + [1614] = {.lex_state = 97, .external_lex_state = 4}, + [1615] = {.lex_state = 79, .external_lex_state = 3}, + [1616] = {.lex_state = 97, .external_lex_state = 4}, + [1617] = {.lex_state = 98, .external_lex_state = 3}, + [1618] = {.lex_state = 97, .external_lex_state = 4}, + [1619] = {.lex_state = 329, .external_lex_state = 4}, + [1620] = {.lex_state = 330, .external_lex_state = 6}, + [1621] = {.lex_state = 332, .external_lex_state = 10}, + [1622] = {.lex_state = 332, .external_lex_state = 10}, + [1623] = {.lex_state = 329, .external_lex_state = 4}, + [1624] = {.lex_state = 329, .external_lex_state = 4}, + [1625] = {.lex_state = 329, .external_lex_state = 4}, + [1626] = {.lex_state = 102, .external_lex_state = 10}, + [1627] = {.lex_state = 328, .external_lex_state = 6}, + [1628] = {.lex_state = 97, .external_lex_state = 4}, + [1629] = {.lex_state = 97, .external_lex_state = 4}, + [1630] = {.lex_state = 329, .external_lex_state = 4}, + [1631] = {.lex_state = 97, .external_lex_state = 4}, [1632] = {.lex_state = 97, .external_lex_state = 3}, - [1633] = {.lex_state = 328, .external_lex_state = 5}, - [1634] = {.lex_state = 75, .external_lex_state = 3}, - [1635] = {.lex_state = 75, .external_lex_state = 3}, - [1636] = {.lex_state = 87, .external_lex_state = 3}, - [1637] = {.lex_state = 87, .external_lex_state = 3}, - [1638] = {.lex_state = 97, .external_lex_state = 3}, - [1639] = {.lex_state = 98, .external_lex_state = 3}, - [1640] = {.lex_state = 327, .external_lex_state = 6}, - [1641] = {.lex_state = 328, .external_lex_state = 4}, - [1642] = {.lex_state = 328, .external_lex_state = 4}, - [1643] = {.lex_state = 97, .external_lex_state = 5}, - [1644] = {.lex_state = 83, .external_lex_state = 3}, - [1645] = {.lex_state = 83, .external_lex_state = 3}, - [1646] = {.lex_state = 98, .external_lex_state = 3}, - [1647] = {.lex_state = 74, .external_lex_state = 3}, - [1648] = {.lex_state = 97, .external_lex_state = 5}, - [1649] = {.lex_state = 328, .external_lex_state = 5}, - [1650] = {.lex_state = 101, .external_lex_state = 10}, - [1651] = {.lex_state = 98, .external_lex_state = 3}, - [1652] = {.lex_state = 328, .external_lex_state = 5}, - [1653] = {.lex_state = 97, .external_lex_state = 5}, - [1654] = {.lex_state = 328, .external_lex_state = 5}, - [1655] = {.lex_state = 75, .external_lex_state = 3}, - [1656] = {.lex_state = 97, .external_lex_state = 5}, - [1657] = {.lex_state = 102, .external_lex_state = 10}, - [1658] = {.lex_state = 329, .external_lex_state = 6}, - [1659] = {.lex_state = 328, .external_lex_state = 5}, - [1660] = {.lex_state = 328, .external_lex_state = 5}, - [1661] = {.lex_state = 329, .external_lex_state = 6}, - [1662] = {.lex_state = 328, .external_lex_state = 5}, - [1663] = {.lex_state = 71, .external_lex_state = 3}, - [1664] = {.lex_state = 97, .external_lex_state = 5}, - [1665] = {.lex_state = 97, .external_lex_state = 3}, - [1666] = {.lex_state = 97, .external_lex_state = 5}, - [1667] = {.lex_state = 97, .external_lex_state = 5}, - [1668] = {.lex_state = 74, .external_lex_state = 3}, - [1669] = {.lex_state = 97, .external_lex_state = 5}, - [1670] = {.lex_state = 97, .external_lex_state = 5}, - [1671] = {.lex_state = 327, .external_lex_state = 6}, - [1672] = {.lex_state = 101, .external_lex_state = 10}, - [1673] = {.lex_state = 97, .external_lex_state = 5}, - [1674] = {.lex_state = 328, .external_lex_state = 5}, - [1675] = {.lex_state = 71, .external_lex_state = 3}, - [1676] = {.lex_state = 97, .external_lex_state = 5}, - [1677] = {.lex_state = 74, .external_lex_state = 3}, - [1678] = {.lex_state = 331, .external_lex_state = 10}, - [1679] = {.lex_state = 97, .external_lex_state = 5}, - [1680] = {.lex_state = 83, .external_lex_state = 3}, - [1681] = {.lex_state = 87, .external_lex_state = 3}, + [1633] = {.lex_state = 96, .external_lex_state = 3}, + [1634] = {.lex_state = 97, .external_lex_state = 4}, + [1635] = {.lex_state = 329, .external_lex_state = 3}, + [1636] = {.lex_state = 329, .external_lex_state = 4}, + [1637] = {.lex_state = 97, .external_lex_state = 4}, + [1638] = {.lex_state = 329, .external_lex_state = 4}, + [1639] = {.lex_state = 328, .external_lex_state = 6}, + [1640] = {.lex_state = 329, .external_lex_state = 4}, + [1641] = {.lex_state = 329, .external_lex_state = 4}, + [1642] = {.lex_state = 86, .external_lex_state = 3}, + [1643] = {.lex_state = 82, .external_lex_state = 3}, + [1644] = {.lex_state = 329, .external_lex_state = 4}, + [1645] = {.lex_state = 87, .external_lex_state = 3}, + [1646] = {.lex_state = 87, .external_lex_state = 3}, + [1647] = {.lex_state = 97, .external_lex_state = 4}, + [1648] = {.lex_state = 97, .external_lex_state = 4}, + [1649] = {.lex_state = 90, .external_lex_state = 10}, + [1650] = {.lex_state = 83, .external_lex_state = 3}, + [1651] = {.lex_state = 83, .external_lex_state = 3}, + [1652] = {.lex_state = 330, .external_lex_state = 5}, + [1653] = {.lex_state = 101, .external_lex_state = 10}, + [1654] = {.lex_state = 329, .external_lex_state = 4}, + [1655] = {.lex_state = 100, .external_lex_state = 3}, + [1656] = {.lex_state = 329, .external_lex_state = 4}, + [1657] = {.lex_state = 98, .external_lex_state = 3}, + [1658] = {.lex_state = 329, .external_lex_state = 4}, + [1659] = {.lex_state = 97, .external_lex_state = 4}, + [1660] = {.lex_state = 329, .external_lex_state = 4}, + [1661] = {.lex_state = 97, .external_lex_state = 4}, + [1662] = {.lex_state = 97, .external_lex_state = 4}, + [1663] = {.lex_state = 102, .external_lex_state = 10}, + [1664] = {.lex_state = 329, .external_lex_state = 4}, + [1665] = {.lex_state = 329, .external_lex_state = 4}, + [1666] = {.lex_state = 329, .external_lex_state = 13}, + [1667] = {.lex_state = 329, .external_lex_state = 4}, + [1668] = {.lex_state = 97, .external_lex_state = 4}, + [1669] = {.lex_state = 98, .external_lex_state = 3}, + [1670] = {.lex_state = 99, .external_lex_state = 3}, + [1671] = {.lex_state = 329, .external_lex_state = 5}, + [1672] = {.lex_state = 329, .external_lex_state = 4}, + [1673] = {.lex_state = 79, .external_lex_state = 3}, + [1674] = {.lex_state = 329, .external_lex_state = 4}, + [1675] = {.lex_state = 329, .external_lex_state = 4}, + [1676] = {.lex_state = 97, .external_lex_state = 4}, + [1677] = {.lex_state = 96, .external_lex_state = 3}, + [1678] = {.lex_state = 99, .external_lex_state = 3}, + [1679] = {.lex_state = 329, .external_lex_state = 13}, + [1680] = {.lex_state = 97, .external_lex_state = 3}, + [1681] = {.lex_state = 329, .external_lex_state = 4}, [1682] = {.lex_state = 87, .external_lex_state = 3}, - [1683] = {.lex_state = 83, .external_lex_state = 3}, - [1684] = {.lex_state = 74, .external_lex_state = 3}, - [1685] = {.lex_state = 97, .external_lex_state = 5}, - [1686] = {.lex_state = 97, .external_lex_state = 5}, - [1687] = {.lex_state = 82, .external_lex_state = 3}, - [1688] = {.lex_state = 97, .external_lex_state = 5}, - [1689] = {.lex_state = 71, .external_lex_state = 3}, - [1690] = {.lex_state = 97, .external_lex_state = 5}, - [1691] = {.lex_state = 97, .external_lex_state = 5}, - [1692] = {.lex_state = 328, .external_lex_state = 5}, - [1693] = {.lex_state = 328, .external_lex_state = 5}, - [1694] = {.lex_state = 329, .external_lex_state = 6}, - [1695] = {.lex_state = 97, .external_lex_state = 5}, - [1696] = {.lex_state = 328, .external_lex_state = 5}, - [1697] = {.lex_state = 90, .external_lex_state = 10}, + [1683] = {.lex_state = 87, .external_lex_state = 3}, + [1684] = {.lex_state = 329, .external_lex_state = 4}, + [1685] = {.lex_state = 330, .external_lex_state = 5}, + [1686] = {.lex_state = 83, .external_lex_state = 3}, + [1687] = {.lex_state = 330, .external_lex_state = 6}, + [1688] = {.lex_state = 90, .external_lex_state = 10}, + [1689] = {.lex_state = 83, .external_lex_state = 3}, + [1690] = {.lex_state = 100, .external_lex_state = 3}, + [1691] = {.lex_state = 97, .external_lex_state = 4}, + [1692] = {.lex_state = 97, .external_lex_state = 4}, + [1693] = {.lex_state = 82, .external_lex_state = 3}, + [1694] = {.lex_state = 329, .external_lex_state = 4}, + [1695] = {.lex_state = 75, .external_lex_state = 3}, + [1696] = {.lex_state = 329, .external_lex_state = 4}, + [1697] = {.lex_state = 329, .external_lex_state = 5}, [1698] = {.lex_state = 329, .external_lex_state = 4}, - [1699] = {.lex_state = 328, .external_lex_state = 5}, + [1699] = {.lex_state = 329, .external_lex_state = 4}, [1700] = {.lex_state = 329, .external_lex_state = 4}, - [1701] = {.lex_state = 328, .external_lex_state = 5}, - [1702] = {.lex_state = 328, .external_lex_state = 5}, - [1703] = {.lex_state = 328, .external_lex_state = 5}, - [1704] = {.lex_state = 97, .external_lex_state = 5}, - [1705] = {.lex_state = 329, .external_lex_state = 6}, - [1706] = {.lex_state = 98, .external_lex_state = 3}, - [1707] = {.lex_state = 100, .external_lex_state = 3}, - [1708] = {.lex_state = 328, .external_lex_state = 5}, - [1709] = {.lex_state = 97, .external_lex_state = 5}, - [1710] = {.lex_state = 97, .external_lex_state = 5}, - [1711] = {.lex_state = 328, .external_lex_state = 5}, - [1712] = {.lex_state = 97, .external_lex_state = 5}, - [1713] = {.lex_state = 101, .external_lex_state = 10}, + [1701] = {.lex_state = 329, .external_lex_state = 4}, + [1702] = {.lex_state = 329, .external_lex_state = 4}, + [1703] = {.lex_state = 98, .external_lex_state = 3}, + [1704] = {.lex_state = 74, .external_lex_state = 3}, + [1705] = {.lex_state = 97, .external_lex_state = 4}, + [1706] = {.lex_state = 329, .external_lex_state = 5}, + [1707] = {.lex_state = 79, .external_lex_state = 3}, + [1708] = {.lex_state = 329, .external_lex_state = 4}, + [1709] = {.lex_state = 330, .external_lex_state = 6}, + [1710] = {.lex_state = 329, .external_lex_state = 4}, + [1711] = {.lex_state = 101, .external_lex_state = 10}, + [1712] = {.lex_state = 332, .external_lex_state = 6}, + [1713] = {.lex_state = 90, .external_lex_state = 10}, [1714] = {.lex_state = 329, .external_lex_state = 4}, [1715] = {.lex_state = 329, .external_lex_state = 4}, - [1716] = {.lex_state = 102, .external_lex_state = 3}, - [1717] = {.lex_state = 328, .external_lex_state = 5}, - [1718] = {.lex_state = 97, .external_lex_state = 5}, - [1719] = {.lex_state = 97, .external_lex_state = 5}, - [1720] = {.lex_state = 100, .external_lex_state = 3}, - [1721] = {.lex_state = 90, .external_lex_state = 10}, - [1722] = {.lex_state = 97, .external_lex_state = 5}, - [1723] = {.lex_state = 328, .external_lex_state = 5}, - [1724] = {.lex_state = 97, .external_lex_state = 3}, - [1725] = {.lex_state = 97, .external_lex_state = 5}, - [1726] = {.lex_state = 328, .external_lex_state = 4}, - [1727] = {.lex_state = 90, .external_lex_state = 10}, - [1728] = {.lex_state = 100, .external_lex_state = 3}, - [1729] = {.lex_state = 97, .external_lex_state = 5}, - [1730] = {.lex_state = 328, .external_lex_state = 5}, - [1731] = {.lex_state = 100, .external_lex_state = 3}, - [1732] = {.lex_state = 97, .external_lex_state = 5}, - [1733] = {.lex_state = 97, .external_lex_state = 5}, - [1734] = {.lex_state = 327, .external_lex_state = 6}, - [1735] = {.lex_state = 97, .external_lex_state = 5}, - [1736] = {.lex_state = 97, .external_lex_state = 5}, - [1737] = {.lex_state = 99, .external_lex_state = 3}, - [1738] = {.lex_state = 79, .external_lex_state = 3}, - [1739] = {.lex_state = 98, .external_lex_state = 3}, - [1740] = {.lex_state = 97, .external_lex_state = 5}, - [1741] = {.lex_state = 328, .external_lex_state = 5}, - [1742] = {.lex_state = 86, .external_lex_state = 3}, - [1743] = {.lex_state = 328, .external_lex_state = 4}, - [1744] = {.lex_state = 102, .external_lex_state = 10}, - [1745] = {.lex_state = 97, .external_lex_state = 5}, - [1746] = {.lex_state = 331, .external_lex_state = 10}, - [1747] = {.lex_state = 328, .external_lex_state = 5}, - [1748] = {.lex_state = 328, .external_lex_state = 5}, - [1749] = {.lex_state = 328, .external_lex_state = 5}, - [1750] = {.lex_state = 328, .external_lex_state = 5}, - [1751] = {.lex_state = 100, .external_lex_state = 3}, - [1752] = {.lex_state = 97, .external_lex_state = 5}, - [1753] = {.lex_state = 328, .external_lex_state = 5}, - [1754] = {.lex_state = 97, .external_lex_state = 5}, - [1755] = {.lex_state = 97, .external_lex_state = 5}, - [1756] = {.lex_state = 328, .external_lex_state = 5}, - [1757] = {.lex_state = 87, .external_lex_state = 3}, - [1758] = {.lex_state = 97, .external_lex_state = 5}, - [1759] = {.lex_state = 79, .external_lex_state = 3}, - [1760] = {.lex_state = 79, .external_lex_state = 3}, - [1761] = {.lex_state = 97, .external_lex_state = 5}, - [1762] = {.lex_state = 98, .external_lex_state = 3}, - [1763] = {.lex_state = 97, .external_lex_state = 5}, - [1764] = {.lex_state = 97, .external_lex_state = 5}, - [1765] = {.lex_state = 97, .external_lex_state = 5}, - [1766] = {.lex_state = 97, .external_lex_state = 5}, - [1767] = {.lex_state = 97, .external_lex_state = 5}, - [1768] = {.lex_state = 98, .external_lex_state = 3}, - [1769] = {.lex_state = 328, .external_lex_state = 5}, - [1770] = {.lex_state = 328, .external_lex_state = 5}, - [1771] = {.lex_state = 97, .external_lex_state = 5}, - [1772] = {.lex_state = 328, .external_lex_state = 5}, - [1773] = {.lex_state = 328, .external_lex_state = 5}, - [1774] = {.lex_state = 328, .external_lex_state = 5}, - [1775] = {.lex_state = 328, .external_lex_state = 5}, - [1776] = {.lex_state = 328, .external_lex_state = 5}, - [1777] = {.lex_state = 328, .external_lex_state = 5}, - [1778] = {.lex_state = 328, .external_lex_state = 5}, - [1779] = {.lex_state = 328, .external_lex_state = 5}, - [1780] = {.lex_state = 328, .external_lex_state = 5}, - [1781] = {.lex_state = 328, .external_lex_state = 5}, - [1782] = {.lex_state = 328, .external_lex_state = 5}, - [1783] = {.lex_state = 328, .external_lex_state = 5}, - [1784] = {.lex_state = 328, .external_lex_state = 5}, - [1785] = {.lex_state = 328, .external_lex_state = 5}, - [1786] = {.lex_state = 97, .external_lex_state = 5}, - [1787] = {.lex_state = 102, .external_lex_state = 10}, - [1788] = {.lex_state = 328, .external_lex_state = 5}, - [1789] = {.lex_state = 328, .external_lex_state = 5}, - [1790] = {.lex_state = 328, .external_lex_state = 13}, - [1791] = {.lex_state = 97, .external_lex_state = 5}, - [1792] = {.lex_state = 97, .external_lex_state = 5}, - [1793] = {.lex_state = 102, .external_lex_state = 3}, - [1794] = {.lex_state = 71, .external_lex_state = 5}, - [1795] = {.lex_state = 328, .external_lex_state = 5}, - [1796] = {.lex_state = 328, .external_lex_state = 5}, - [1797] = {.lex_state = 331, .external_lex_state = 10}, - [1798] = {.lex_state = 328, .external_lex_state = 4}, - [1799] = {.lex_state = 329, .external_lex_state = 4}, - [1800] = {.lex_state = 328, .external_lex_state = 5}, - [1801] = {.lex_state = 97, .external_lex_state = 5}, - [1802] = {.lex_state = 97, .external_lex_state = 5}, - [1803] = {.lex_state = 97, .external_lex_state = 5}, - [1804] = {.lex_state = 82, .external_lex_state = 3}, - [1805] = {.lex_state = 97, .external_lex_state = 5}, - [1806] = {.lex_state = 328, .external_lex_state = 5}, - [1807] = {.lex_state = 328, .external_lex_state = 5}, - [1808] = {.lex_state = 86, .external_lex_state = 3}, - [1809] = {.lex_state = 328, .external_lex_state = 5}, - [1810] = {.lex_state = 97, .external_lex_state = 3}, - [1811] = {.lex_state = 328, .external_lex_state = 4}, - [1812] = {.lex_state = 97, .external_lex_state = 5}, - [1813] = {.lex_state = 97, .external_lex_state = 3}, - [1814] = {.lex_state = 97, .external_lex_state = 5}, - [1815] = {.lex_state = 97, .external_lex_state = 5}, - [1816] = {.lex_state = 97, .external_lex_state = 5}, - [1817] = {.lex_state = 90, .external_lex_state = 3}, - [1818] = {.lex_state = 97, .external_lex_state = 5}, - [1819] = {.lex_state = 97, .external_lex_state = 5}, - [1820] = {.lex_state = 86, .external_lex_state = 3}, - [1821] = {.lex_state = 98, .external_lex_state = 3}, - [1822] = {.lex_state = 328, .external_lex_state = 4}, - [1823] = {.lex_state = 98, .external_lex_state = 3}, - [1824] = {.lex_state = 329, .external_lex_state = 6}, - [1825] = {.lex_state = 328, .external_lex_state = 4}, - [1826] = {.lex_state = 328, .external_lex_state = 4}, - [1827] = {.lex_state = 328, .external_lex_state = 4}, - [1828] = {.lex_state = 328, .external_lex_state = 4}, - [1829] = {.lex_state = 90, .external_lex_state = 3}, - [1830] = {.lex_state = 328, .external_lex_state = 4}, - [1831] = {.lex_state = 331, .external_lex_state = 3}, - [1832] = {.lex_state = 328, .external_lex_state = 4}, - [1833] = {.lex_state = 328, .external_lex_state = 4}, - [1834] = {.lex_state = 328, .external_lex_state = 4}, - [1835] = {.lex_state = 328, .external_lex_state = 4}, - [1836] = {.lex_state = 328, .external_lex_state = 4}, - [1837] = {.lex_state = 328, .external_lex_state = 4}, - [1838] = {.lex_state = 328, .external_lex_state = 4}, - [1839] = {.lex_state = 328, .external_lex_state = 4}, - [1840] = {.lex_state = 328, .external_lex_state = 4}, - [1841] = {.lex_state = 97, .external_lex_state = 3}, - [1842] = {.lex_state = 98, .external_lex_state = 3}, - [1843] = {.lex_state = 97, .external_lex_state = 3}, - [1844] = {.lex_state = 328, .external_lex_state = 4}, - [1845] = {.lex_state = 98, .external_lex_state = 3}, - [1846] = {.lex_state = 98, .external_lex_state = 3}, - [1847] = {.lex_state = 328, .external_lex_state = 4}, - [1848] = {.lex_state = 328, .external_lex_state = 4}, - [1849] = {.lex_state = 328, .external_lex_state = 4}, - [1850] = {.lex_state = 328, .external_lex_state = 4}, - [1851] = {.lex_state = 328, .external_lex_state = 4}, - [1852] = {.lex_state = 328, .external_lex_state = 4}, - [1853] = {.lex_state = 328, .external_lex_state = 4}, - [1854] = {.lex_state = 98, .external_lex_state = 3}, - [1855] = {.lex_state = 328, .external_lex_state = 4}, - [1856] = {.lex_state = 328, .external_lex_state = 4}, - [1857] = {.lex_state = 331, .external_lex_state = 3}, - [1858] = {.lex_state = 328, .external_lex_state = 4}, - [1859] = {.lex_state = 328, .external_lex_state = 4}, - [1860] = {.lex_state = 97, .external_lex_state = 3}, - [1861] = {.lex_state = 328, .external_lex_state = 6}, - [1862] = {.lex_state = 328, .external_lex_state = 4}, - [1863] = {.lex_state = 101, .external_lex_state = 3}, - [1864] = {.lex_state = 328, .external_lex_state = 6}, - [1865] = {.lex_state = 328, .external_lex_state = 4}, - [1866] = {.lex_state = 328, .external_lex_state = 4}, - [1867] = {.lex_state = 328, .external_lex_state = 4}, - [1868] = {.lex_state = 328, .external_lex_state = 4}, - [1869] = {.lex_state = 328, .external_lex_state = 4}, - [1870] = {.lex_state = 90, .external_lex_state = 3}, - [1871] = {.lex_state = 97, .external_lex_state = 3}, - [1872] = {.lex_state = 328, .external_lex_state = 4}, - [1873] = {.lex_state = 328, .external_lex_state = 4}, - [1874] = {.lex_state = 102, .external_lex_state = 3}, - [1875] = {.lex_state = 97, .external_lex_state = 3}, - [1876] = {.lex_state = 328, .external_lex_state = 4}, - [1877] = {.lex_state = 328, .external_lex_state = 4}, - [1878] = {.lex_state = 328, .external_lex_state = 4}, - [1879] = {.lex_state = 98, .external_lex_state = 3}, - [1880] = {.lex_state = 328, .external_lex_state = 4}, - [1881] = {.lex_state = 328, .external_lex_state = 4}, - [1882] = {.lex_state = 328, .external_lex_state = 6}, - [1883] = {.lex_state = 328, .external_lex_state = 4}, - [1884] = {.lex_state = 338, .external_lex_state = 2}, - [1885] = {.lex_state = 328, .external_lex_state = 4}, - [1886] = {.lex_state = 328, .external_lex_state = 4}, - [1887] = {.lex_state = 331, .external_lex_state = 3}, - [1888] = {.lex_state = 328, .external_lex_state = 6}, - [1889] = {.lex_state = 328, .external_lex_state = 4}, - [1890] = {.lex_state = 328, .external_lex_state = 4}, - [1891] = {.lex_state = 101, .external_lex_state = 3}, - [1892] = {.lex_state = 328, .external_lex_state = 4}, - [1893] = {.lex_state = 102, .external_lex_state = 3}, - [1894] = {.lex_state = 102, .external_lex_state = 3}, - [1895] = {.lex_state = 328, .external_lex_state = 4}, - [1896] = {.lex_state = 101, .external_lex_state = 3}, - [1897] = {.lex_state = 98, .external_lex_state = 3}, - [1898] = {.lex_state = 328, .external_lex_state = 4}, - [1899] = {.lex_state = 328, .external_lex_state = 4}, - [1900] = {.lex_state = 328, .external_lex_state = 4}, - [1901] = {.lex_state = 328, .external_lex_state = 4}, - [1902] = {.lex_state = 328, .external_lex_state = 4}, - [1903] = {.lex_state = 90, .external_lex_state = 3}, - [1904] = {.lex_state = 328, .external_lex_state = 4}, - [1905] = {.lex_state = 328, .external_lex_state = 4}, - [1906] = {.lex_state = 328, .external_lex_state = 4}, - [1907] = {.lex_state = 90, .external_lex_state = 3}, - [1908] = {.lex_state = 328, .external_lex_state = 4}, - [1909] = {.lex_state = 328, .external_lex_state = 4}, - [1910] = {.lex_state = 338, .external_lex_state = 2}, - [1911] = {.lex_state = 101, .external_lex_state = 3}, - [1912] = {.lex_state = 328, .external_lex_state = 4}, - [1913] = {.lex_state = 328, .external_lex_state = 4}, - [1914] = {.lex_state = 328, .external_lex_state = 4}, - [1915] = {.lex_state = 328, .external_lex_state = 4}, - [1916] = {.lex_state = 98, .external_lex_state = 3}, - [1917] = {.lex_state = 83, .external_lex_state = 3}, - [1918] = {.lex_state = 328, .external_lex_state = 4}, - [1919] = {.lex_state = 328, .external_lex_state = 4}, - [1920] = {.lex_state = 328, .external_lex_state = 4}, - [1921] = {.lex_state = 98, .external_lex_state = 3}, - [1922] = {.lex_state = 98, .external_lex_state = 3}, - [1923] = {.lex_state = 102, .external_lex_state = 3}, - [1924] = {.lex_state = 98, .external_lex_state = 3}, - [1925] = {.lex_state = 98, .external_lex_state = 3}, - [1926] = {.lex_state = 75, .external_lex_state = 3}, - [1927] = {.lex_state = 98, .external_lex_state = 3}, - [1928] = {.lex_state = 97, .external_lex_state = 3}, - [1929] = {.lex_state = 328, .external_lex_state = 4}, - [1930] = {.lex_state = 98, .external_lex_state = 3}, - [1931] = {.lex_state = 329, .external_lex_state = 6}, - [1932] = {.lex_state = 329, .external_lex_state = 6}, - [1933] = {.lex_state = 331, .external_lex_state = 3}, - [1934] = {.lex_state = 101, .external_lex_state = 3}, - [1935] = {.lex_state = 328, .external_lex_state = 4}, - [1936] = {.lex_state = 98, .external_lex_state = 3}, - [1937] = {.lex_state = 98, .external_lex_state = 3}, - [1938] = {.lex_state = 328, .external_lex_state = 4}, - [1939] = {.lex_state = 90, .external_lex_state = 3}, - [1940] = {.lex_state = 98, .external_lex_state = 3}, - [1941] = {.lex_state = 83, .external_lex_state = 3}, - [1942] = {.lex_state = 328, .external_lex_state = 4}, - [1943] = {.lex_state = 87, .external_lex_state = 3}, - [1944] = {.lex_state = 71, .external_lex_state = 3}, - [1945] = {.lex_state = 328, .external_lex_state = 4}, - [1946] = {.lex_state = 102, .external_lex_state = 3}, - [1947] = {.lex_state = 100, .external_lex_state = 3}, - [1948] = {.lex_state = 328, .external_lex_state = 4}, - [1949] = {.lex_state = 98, .external_lex_state = 3}, - [1950] = {.lex_state = 100, .external_lex_state = 3}, - [1951] = {.lex_state = 328, .external_lex_state = 4}, - [1952] = {.lex_state = 328, .external_lex_state = 6}, - [1953] = {.lex_state = 98, .external_lex_state = 3}, - [1954] = {.lex_state = 90, .external_lex_state = 3}, - [1955] = {.lex_state = 101, .external_lex_state = 3}, - [1956] = {.lex_state = 329, .external_lex_state = 6}, - [1957] = {.lex_state = 102, .external_lex_state = 3}, - [1958] = {.lex_state = 98, .external_lex_state = 3}, - [1959] = {.lex_state = 97, .external_lex_state = 3}, - [1960] = {.lex_state = 329, .external_lex_state = 6}, - [1961] = {.lex_state = 328, .external_lex_state = 6}, - [1962] = {.lex_state = 100, .external_lex_state = 3}, - [1963] = {.lex_state = 90, .external_lex_state = 3}, - [1964] = {.lex_state = 98, .external_lex_state = 3}, + [1716] = {.lex_state = 329, .external_lex_state = 4}, + [1717] = {.lex_state = 79, .external_lex_state = 3}, + [1718] = {.lex_state = 329, .external_lex_state = 4}, + [1719] = {.lex_state = 74, .external_lex_state = 3}, + [1720] = {.lex_state = 71, .external_lex_state = 3}, + [1721] = {.lex_state = 74, .external_lex_state = 3}, + [1722] = {.lex_state = 75, .external_lex_state = 3}, + [1723] = {.lex_state = 102, .external_lex_state = 3}, + [1724] = {.lex_state = 329, .external_lex_state = 4}, + [1725] = {.lex_state = 329, .external_lex_state = 4}, + [1726] = {.lex_state = 97, .external_lex_state = 4}, + [1727] = {.lex_state = 97, .external_lex_state = 4}, + [1728] = {.lex_state = 329, .external_lex_state = 4}, + [1729] = {.lex_state = 97, .external_lex_state = 3}, + [1730] = {.lex_state = 97, .external_lex_state = 4}, + [1731] = {.lex_state = 101, .external_lex_state = 3}, + [1732] = {.lex_state = 98, .external_lex_state = 3}, + [1733] = {.lex_state = 329, .external_lex_state = 4}, + [1734] = {.lex_state = 329, .external_lex_state = 4}, + [1735] = {.lex_state = 97, .external_lex_state = 4}, + [1736] = {.lex_state = 86, .external_lex_state = 3}, + [1737] = {.lex_state = 98, .external_lex_state = 3}, + [1738] = {.lex_state = 329, .external_lex_state = 4}, + [1739] = {.lex_state = 330, .external_lex_state = 6}, + [1740] = {.lex_state = 101, .external_lex_state = 10}, + [1741] = {.lex_state = 87, .external_lex_state = 3}, + [1742] = {.lex_state = 329, .external_lex_state = 4}, + [1743] = {.lex_state = 330, .external_lex_state = 6}, + [1744] = {.lex_state = 97, .external_lex_state = 4}, + [1745] = {.lex_state = 90, .external_lex_state = 3}, + [1746] = {.lex_state = 97, .external_lex_state = 4}, + [1747] = {.lex_state = 97, .external_lex_state = 4}, + [1748] = {.lex_state = 97, .external_lex_state = 4}, + [1749] = {.lex_state = 329, .external_lex_state = 4}, + [1750] = {.lex_state = 329, .external_lex_state = 4}, + [1751] = {.lex_state = 102, .external_lex_state = 10}, + [1752] = {.lex_state = 97, .external_lex_state = 4}, + [1753] = {.lex_state = 97, .external_lex_state = 4}, + [1754] = {.lex_state = 97, .external_lex_state = 4}, + [1755] = {.lex_state = 97, .external_lex_state = 4}, + [1756] = {.lex_state = 97, .external_lex_state = 4}, + [1757] = {.lex_state = 97, .external_lex_state = 4}, + [1758] = {.lex_state = 329, .external_lex_state = 4}, + [1759] = {.lex_state = 98, .external_lex_state = 3}, + [1760] = {.lex_state = 97, .external_lex_state = 4}, + [1761] = {.lex_state = 97, .external_lex_state = 4}, + [1762] = {.lex_state = 99, .external_lex_state = 3}, + [1763] = {.lex_state = 97, .external_lex_state = 4}, + [1764] = {.lex_state = 99, .external_lex_state = 3}, + [1765] = {.lex_state = 329, .external_lex_state = 4}, + [1766] = {.lex_state = 329, .external_lex_state = 4}, + [1767] = {.lex_state = 97, .external_lex_state = 4}, + [1768] = {.lex_state = 97, .external_lex_state = 4}, + [1769] = {.lex_state = 329, .external_lex_state = 4}, + [1770] = {.lex_state = 97, .external_lex_state = 4}, + [1771] = {.lex_state = 329, .external_lex_state = 4}, + [1772] = {.lex_state = 329, .external_lex_state = 5}, + [1773] = {.lex_state = 97, .external_lex_state = 4}, + [1774] = {.lex_state = 329, .external_lex_state = 4}, + [1775] = {.lex_state = 97, .external_lex_state = 4}, + [1776] = {.lex_state = 98, .external_lex_state = 3}, + [1777] = {.lex_state = 97, .external_lex_state = 4}, + [1778] = {.lex_state = 329, .external_lex_state = 4}, + [1779] = {.lex_state = 329, .external_lex_state = 4}, + [1780] = {.lex_state = 329, .external_lex_state = 4}, + [1781] = {.lex_state = 329, .external_lex_state = 4}, + [1782] = {.lex_state = 329, .external_lex_state = 4}, + [1783] = {.lex_state = 329, .external_lex_state = 4}, + [1784] = {.lex_state = 97, .external_lex_state = 4}, + [1785] = {.lex_state = 97, .external_lex_state = 4}, + [1786] = {.lex_state = 329, .external_lex_state = 4}, + [1787] = {.lex_state = 329, .external_lex_state = 4}, + [1788] = {.lex_state = 329, .external_lex_state = 4}, + [1789] = {.lex_state = 98, .external_lex_state = 3}, + [1790] = {.lex_state = 97, .external_lex_state = 4}, + [1791] = {.lex_state = 97, .external_lex_state = 4}, + [1792] = {.lex_state = 97, .external_lex_state = 4}, + [1793] = {.lex_state = 97, .external_lex_state = 4}, + [1794] = {.lex_state = 97, .external_lex_state = 3}, + [1795] = {.lex_state = 329, .external_lex_state = 4}, + [1796] = {.lex_state = 329, .external_lex_state = 5}, + [1797] = {.lex_state = 97, .external_lex_state = 4}, + [1798] = {.lex_state = 97, .external_lex_state = 3}, + [1799] = {.lex_state = 97, .external_lex_state = 4}, + [1800] = {.lex_state = 97, .external_lex_state = 4}, + [1801] = {.lex_state = 329, .external_lex_state = 13}, + [1802] = {.lex_state = 97, .external_lex_state = 4}, + [1803] = {.lex_state = 71, .external_lex_state = 3}, + [1804] = {.lex_state = 97, .external_lex_state = 4}, + [1805] = {.lex_state = 329, .external_lex_state = 4}, + [1806] = {.lex_state = 90, .external_lex_state = 3}, + [1807] = {.lex_state = 97, .external_lex_state = 4}, + [1808] = {.lex_state = 97, .external_lex_state = 4}, + [1809] = {.lex_state = 97, .external_lex_state = 4}, + [1810] = {.lex_state = 97, .external_lex_state = 4}, + [1811] = {.lex_state = 97, .external_lex_state = 4}, + [1812] = {.lex_state = 97, .external_lex_state = 4}, + [1813] = {.lex_state = 86, .external_lex_state = 3}, + [1814] = {.lex_state = 329, .external_lex_state = 4}, + [1815] = {.lex_state = 86, .external_lex_state = 3}, + [1816] = {.lex_state = 97, .external_lex_state = 4}, + [1817] = {.lex_state = 97, .external_lex_state = 4}, + [1818] = {.lex_state = 97, .external_lex_state = 4}, + [1819] = {.lex_state = 329, .external_lex_state = 4}, + [1820] = {.lex_state = 329, .external_lex_state = 4}, + [1821] = {.lex_state = 100, .external_lex_state = 3}, + [1822] = {.lex_state = 329, .external_lex_state = 5}, + [1823] = {.lex_state = 329, .external_lex_state = 4}, + [1824] = {.lex_state = 75, .external_lex_state = 3}, + [1825] = {.lex_state = 97, .external_lex_state = 4}, + [1826] = {.lex_state = 97, .external_lex_state = 4}, + [1827] = {.lex_state = 97, .external_lex_state = 4}, + [1828] = {.lex_state = 97, .external_lex_state = 4}, + [1829] = {.lex_state = 71, .external_lex_state = 4}, + [1830] = {.lex_state = 97, .external_lex_state = 4}, + [1831] = {.lex_state = 97, .external_lex_state = 4}, + [1832] = {.lex_state = 100, .external_lex_state = 3}, + [1833] = {.lex_state = 97, .external_lex_state = 4}, + [1834] = {.lex_state = 329, .external_lex_state = 4}, + [1835] = {.lex_state = 83, .external_lex_state = 3}, + [1836] = {.lex_state = 329, .external_lex_state = 5}, + [1837] = {.lex_state = 330, .external_lex_state = 6}, + [1838] = {.lex_state = 330, .external_lex_state = 6}, + [1839] = {.lex_state = 90, .external_lex_state = 3}, + [1840] = {.lex_state = 102, .external_lex_state = 3}, + [1841] = {.lex_state = 102, .external_lex_state = 3}, + [1842] = {.lex_state = 329, .external_lex_state = 5}, + [1843] = {.lex_state = 332, .external_lex_state = 3}, + [1844] = {.lex_state = 98, .external_lex_state = 3}, + [1845] = {.lex_state = 100, .external_lex_state = 3}, + [1846] = {.lex_state = 100, .external_lex_state = 3}, + [1847] = {.lex_state = 90, .external_lex_state = 3}, + [1848] = {.lex_state = 329, .external_lex_state = 5}, + [1849] = {.lex_state = 71, .external_lex_state = 3}, + [1850] = {.lex_state = 329, .external_lex_state = 5}, + [1851] = {.lex_state = 98, .external_lex_state = 3}, + [1852] = {.lex_state = 100, .external_lex_state = 3}, + [1853] = {.lex_state = 100, .external_lex_state = 3}, + [1854] = {.lex_state = 97, .external_lex_state = 3}, + [1855] = {.lex_state = 97, .external_lex_state = 3}, + [1856] = {.lex_state = 329, .external_lex_state = 5}, + [1857] = {.lex_state = 329, .external_lex_state = 5}, + [1858] = {.lex_state = 329, .external_lex_state = 5}, + [1859] = {.lex_state = 329, .external_lex_state = 5}, + [1860] = {.lex_state = 329, .external_lex_state = 5}, + [1861] = {.lex_state = 329, .external_lex_state = 5}, + [1862] = {.lex_state = 329, .external_lex_state = 5}, + [1863] = {.lex_state = 90, .external_lex_state = 3}, + [1864] = {.lex_state = 329, .external_lex_state = 5}, + [1865] = {.lex_state = 98, .external_lex_state = 3}, + [1866] = {.lex_state = 102, .external_lex_state = 3}, + [1867] = {.lex_state = 97, .external_lex_state = 3}, + [1868] = {.lex_state = 97, .external_lex_state = 3}, + [1869] = {.lex_state = 329, .external_lex_state = 5}, + [1870] = {.lex_state = 329, .external_lex_state = 5}, + [1871] = {.lex_state = 329, .external_lex_state = 5}, + [1872] = {.lex_state = 329, .external_lex_state = 5}, + [1873] = {.lex_state = 330, .external_lex_state = 6}, + [1874] = {.lex_state = 329, .external_lex_state = 5}, + [1875] = {.lex_state = 329, .external_lex_state = 5}, + [1876] = {.lex_state = 329, .external_lex_state = 5}, + [1877] = {.lex_state = 90, .external_lex_state = 3}, + [1878] = {.lex_state = 330, .external_lex_state = 6}, + [1879] = {.lex_state = 329, .external_lex_state = 5}, + [1880] = {.lex_state = 102, .external_lex_state = 3}, + [1881] = {.lex_state = 329, .external_lex_state = 5}, + [1882] = {.lex_state = 329, .external_lex_state = 5}, + [1883] = {.lex_state = 329, .external_lex_state = 5}, + [1884] = {.lex_state = 329, .external_lex_state = 5}, + [1885] = {.lex_state = 329, .external_lex_state = 5}, + [1886] = {.lex_state = 332, .external_lex_state = 3}, + [1887] = {.lex_state = 329, .external_lex_state = 5}, + [1888] = {.lex_state = 329, .external_lex_state = 5}, + [1889] = {.lex_state = 329, .external_lex_state = 6}, + [1890] = {.lex_state = 329, .external_lex_state = 5}, + [1891] = {.lex_state = 97, .external_lex_state = 3}, + [1892] = {.lex_state = 332, .external_lex_state = 3}, + [1893] = {.lex_state = 100, .external_lex_state = 3}, + [1894] = {.lex_state = 329, .external_lex_state = 5}, + [1895] = {.lex_state = 329, .external_lex_state = 5}, + [1896] = {.lex_state = 329, .external_lex_state = 6}, + [1897] = {.lex_state = 329, .external_lex_state = 5}, + [1898] = {.lex_state = 329, .external_lex_state = 5}, + [1899] = {.lex_state = 329, .external_lex_state = 5}, + [1900] = {.lex_state = 329, .external_lex_state = 5}, + [1901] = {.lex_state = 329, .external_lex_state = 6}, + [1902] = {.lex_state = 329, .external_lex_state = 5}, + [1903] = {.lex_state = 329, .external_lex_state = 5}, + [1904] = {.lex_state = 97, .external_lex_state = 3}, + [1905] = {.lex_state = 329, .external_lex_state = 5}, + [1906] = {.lex_state = 329, .external_lex_state = 5}, + [1907] = {.lex_state = 329, .external_lex_state = 5}, + [1908] = {.lex_state = 329, .external_lex_state = 5}, + [1909] = {.lex_state = 330, .external_lex_state = 6}, + [1910] = {.lex_state = 83, .external_lex_state = 3}, + [1911] = {.lex_state = 97, .external_lex_state = 3}, + [1912] = {.lex_state = 329, .external_lex_state = 5}, + [1913] = {.lex_state = 329, .external_lex_state = 5}, + [1914] = {.lex_state = 97, .external_lex_state = 3}, + [1915] = {.lex_state = 97, .external_lex_state = 3}, + [1916] = {.lex_state = 97, .external_lex_state = 3}, + [1917] = {.lex_state = 97, .external_lex_state = 3}, + [1918] = {.lex_state = 97, .external_lex_state = 3}, + [1919] = {.lex_state = 339, .external_lex_state = 2}, + [1920] = {.lex_state = 329, .external_lex_state = 5}, + [1921] = {.lex_state = 75, .external_lex_state = 3}, + [1922] = {.lex_state = 329, .external_lex_state = 5}, + [1923] = {.lex_state = 98, .external_lex_state = 3}, + [1924] = {.lex_state = 329, .external_lex_state = 5}, + [1925] = {.lex_state = 329, .external_lex_state = 5}, + [1926] = {.lex_state = 329, .external_lex_state = 5}, + [1927] = {.lex_state = 329, .external_lex_state = 5}, + [1928] = {.lex_state = 329, .external_lex_state = 5}, + [1929] = {.lex_state = 329, .external_lex_state = 5}, + [1930] = {.lex_state = 329, .external_lex_state = 5}, + [1931] = {.lex_state = 329, .external_lex_state = 5}, + [1932] = {.lex_state = 83, .external_lex_state = 3}, + [1933] = {.lex_state = 329, .external_lex_state = 5}, + [1934] = {.lex_state = 329, .external_lex_state = 5}, + [1935] = {.lex_state = 102, .external_lex_state = 3}, + [1936] = {.lex_state = 329, .external_lex_state = 5}, + [1937] = {.lex_state = 101, .external_lex_state = 3}, + [1938] = {.lex_state = 329, .external_lex_state = 5}, + [1939] = {.lex_state = 329, .external_lex_state = 5}, + [1940] = {.lex_state = 97, .external_lex_state = 3}, + [1941] = {.lex_state = 97, .external_lex_state = 3}, + [1942] = {.lex_state = 329, .external_lex_state = 5}, + [1943] = {.lex_state = 329, .external_lex_state = 5}, + [1944] = {.lex_state = 329, .external_lex_state = 6}, + [1945] = {.lex_state = 329, .external_lex_state = 5}, + [1946] = {.lex_state = 329, .external_lex_state = 5}, + [1947] = {.lex_state = 98, .external_lex_state = 3}, + [1948] = {.lex_state = 329, .external_lex_state = 5}, + [1949] = {.lex_state = 97, .external_lex_state = 3}, + [1950] = {.lex_state = 97, .external_lex_state = 3}, + [1951] = {.lex_state = 97, .external_lex_state = 3}, + [1952] = {.lex_state = 97, .external_lex_state = 3}, + [1953] = {.lex_state = 339, .external_lex_state = 2}, + [1954] = {.lex_state = 97, .external_lex_state = 3}, + [1955] = {.lex_state = 329, .external_lex_state = 5}, + [1956] = {.lex_state = 101, .external_lex_state = 3}, + [1957] = {.lex_state = 332, .external_lex_state = 3}, + [1958] = {.lex_state = 329, .external_lex_state = 5}, + [1959] = {.lex_state = 329, .external_lex_state = 5}, + [1960] = {.lex_state = 329, .external_lex_state = 5}, + [1961] = {.lex_state = 97, .external_lex_state = 3}, + [1962] = {.lex_state = 98, .external_lex_state = 3}, + [1963] = {.lex_state = 329, .external_lex_state = 6}, + [1964] = {.lex_state = 329, .external_lex_state = 6}, [1965] = {.lex_state = 97, .external_lex_state = 3}, - [1966] = {.lex_state = 97, .external_lex_state = 3}, - [1967] = {.lex_state = 98, .external_lex_state = 3}, - [1968] = {.lex_state = 331, .external_lex_state = 3}, - [1969] = {.lex_state = 83, .external_lex_state = 3}, - [1970] = {.lex_state = 83, .external_lex_state = 3}, - [1971] = {.lex_state = 328, .external_lex_state = 4}, - [1972] = {.lex_state = 97, .external_lex_state = 3}, + [1966] = {.lex_state = 98, .external_lex_state = 3}, + [1967] = {.lex_state = 101, .external_lex_state = 3}, + [1968] = {.lex_state = 329, .external_lex_state = 5}, + [1969] = {.lex_state = 98, .external_lex_state = 3}, + [1970] = {.lex_state = 98, .external_lex_state = 3}, + [1971] = {.lex_state = 332, .external_lex_state = 3}, + [1972] = {.lex_state = 329, .external_lex_state = 6}, [1973] = {.lex_state = 98, .external_lex_state = 3}, - [1974] = {.lex_state = 98, .external_lex_state = 3}, + [1974] = {.lex_state = 83, .external_lex_state = 3}, [1975] = {.lex_state = 97, .external_lex_state = 3}, [1976] = {.lex_state = 97, .external_lex_state = 3}, - [1977] = {.lex_state = 328, .external_lex_state = 4}, - [1978] = {.lex_state = 328, .external_lex_state = 4}, - [1979] = {.lex_state = 328, .external_lex_state = 4}, - [1980] = {.lex_state = 100, .external_lex_state = 3}, - [1981] = {.lex_state = 71, .external_lex_state = 3}, - [1982] = {.lex_state = 100, .external_lex_state = 3}, - [1983] = {.lex_state = 331, .external_lex_state = 3}, - [1984] = {.lex_state = 97, .external_lex_state = 3}, - [1985] = {.lex_state = 331, .external_lex_state = 3}, - [1986] = {.lex_state = 97, .external_lex_state = 3}, - [1987] = {.lex_state = 97, .external_lex_state = 3}, + [1977] = {.lex_state = 97, .external_lex_state = 3}, + [1978] = {.lex_state = 90, .external_lex_state = 3}, + [1979] = {.lex_state = 97, .external_lex_state = 3}, + [1980] = {.lex_state = 97, .external_lex_state = 3}, + [1981] = {.lex_state = 97, .external_lex_state = 3}, + [1982] = {.lex_state = 97, .external_lex_state = 3}, + [1983] = {.lex_state = 97, .external_lex_state = 3}, + [1984] = {.lex_state = 329, .external_lex_state = 5}, + [1985] = {.lex_state = 97, .external_lex_state = 3}, + [1986] = {.lex_state = 329, .external_lex_state = 5}, + [1987] = {.lex_state = 329, .external_lex_state = 5}, [1988] = {.lex_state = 97, .external_lex_state = 3}, - [1989] = {.lex_state = 98, .external_lex_state = 3}, - [1990] = {.lex_state = 331, .external_lex_state = 3}, + [1989] = {.lex_state = 97, .external_lex_state = 3}, + [1990] = {.lex_state = 97, .external_lex_state = 3}, [1991] = {.lex_state = 97, .external_lex_state = 3}, - [1992] = {.lex_state = 98, .external_lex_state = 3}, - [1993] = {.lex_state = 98, .external_lex_state = 3}, + [1992] = {.lex_state = 97, .external_lex_state = 3}, + [1993] = {.lex_state = 329, .external_lex_state = 5}, [1994] = {.lex_state = 97, .external_lex_state = 3}, [1995] = {.lex_state = 98, .external_lex_state = 3}, [1996] = {.lex_state = 97, .external_lex_state = 3}, - [1997] = {.lex_state = 98, .external_lex_state = 3}, - [1998] = {.lex_state = 102, .external_lex_state = 3}, - [1999] = {.lex_state = 98, .external_lex_state = 3}, - [2000] = {.lex_state = 328, .external_lex_state = 4}, - [2001] = {.lex_state = 331, .external_lex_state = 3}, - [2002] = {.lex_state = 98, .external_lex_state = 3}, - [2003] = {.lex_state = 97, .external_lex_state = 3}, - [2004] = {.lex_state = 87, .external_lex_state = 3}, - [2005] = {.lex_state = 87, .external_lex_state = 3}, + [1997] = {.lex_state = 97, .external_lex_state = 3}, + [1998] = {.lex_state = 97, .external_lex_state = 3}, + [1999] = {.lex_state = 329, .external_lex_state = 5}, + [2000] = {.lex_state = 98, .external_lex_state = 3}, + [2001] = {.lex_state = 97, .external_lex_state = 3}, + [2002] = {.lex_state = 97, .external_lex_state = 3}, + [2003] = {.lex_state = 329, .external_lex_state = 5}, + [2004] = {.lex_state = 97, .external_lex_state = 3}, + [2005] = {.lex_state = 97, .external_lex_state = 3}, [2006] = {.lex_state = 97, .external_lex_state = 3}, [2007] = {.lex_state = 97, .external_lex_state = 3}, - [2008] = {.lex_state = 328, .external_lex_state = 4}, + [2008] = {.lex_state = 97, .external_lex_state = 3}, [2009] = {.lex_state = 97, .external_lex_state = 3}, - [2010] = {.lex_state = 97, .external_lex_state = 3}, - [2011] = {.lex_state = 97, .external_lex_state = 3}, - [2012] = {.lex_state = 97, .external_lex_state = 3}, - [2013] = {.lex_state = 97, .external_lex_state = 3}, + [2010] = {.lex_state = 102, .external_lex_state = 3}, + [2011] = {.lex_state = 87, .external_lex_state = 3}, + [2012] = {.lex_state = 87, .external_lex_state = 3}, + [2013] = {.lex_state = 329, .external_lex_state = 5}, [2014] = {.lex_state = 97, .external_lex_state = 3}, [2015] = {.lex_state = 97, .external_lex_state = 3}, [2016] = {.lex_state = 97, .external_lex_state = 3}, @@ -23434,615 +23611,615 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2022] = {.lex_state = 97, .external_lex_state = 3}, [2023] = {.lex_state = 97, .external_lex_state = 3}, [2024] = {.lex_state = 97, .external_lex_state = 3}, - [2025] = {.lex_state = 75, .external_lex_state = 3}, - [2026] = {.lex_state = 75, .external_lex_state = 3}, - [2027] = {.lex_state = 98, .external_lex_state = 3}, - [2028] = {.lex_state = 97, .external_lex_state = 3}, - [2029] = {.lex_state = 97, .external_lex_state = 3}, - [2030] = {.lex_state = 97, .external_lex_state = 3}, - [2031] = {.lex_state = 97, .external_lex_state = 3}, - [2032] = {.lex_state = 102, .external_lex_state = 3}, + [2025] = {.lex_state = 97, .external_lex_state = 3}, + [2026] = {.lex_state = 97, .external_lex_state = 3}, + [2027] = {.lex_state = 97, .external_lex_state = 3}, + [2028] = {.lex_state = 101, .external_lex_state = 3}, + [2029] = {.lex_state = 98, .external_lex_state = 3}, + [2030] = {.lex_state = 98, .external_lex_state = 3}, + [2031] = {.lex_state = 75, .external_lex_state = 3}, + [2032] = {.lex_state = 98, .external_lex_state = 3}, [2033] = {.lex_state = 98, .external_lex_state = 3}, - [2034] = {.lex_state = 328, .external_lex_state = 4}, - [2035] = {.lex_state = 97, .external_lex_state = 3}, - [2036] = {.lex_state = 97, .external_lex_state = 3}, - [2037] = {.lex_state = 75, .external_lex_state = 3}, + [2034] = {.lex_state = 98, .external_lex_state = 3}, + [2035] = {.lex_state = 75, .external_lex_state = 3}, + [2036] = {.lex_state = 329, .external_lex_state = 5}, + [2037] = {.lex_state = 97, .external_lex_state = 3}, [2038] = {.lex_state = 97, .external_lex_state = 3}, - [2039] = {.lex_state = 97, .external_lex_state = 3}, - [2040] = {.lex_state = 97, .external_lex_state = 3}, - [2041] = {.lex_state = 87, .external_lex_state = 3}, - [2042] = {.lex_state = 97, .external_lex_state = 3}, - [2043] = {.lex_state = 75, .external_lex_state = 3}, + [2039] = {.lex_state = 98, .external_lex_state = 3}, + [2040] = {.lex_state = 98, .external_lex_state = 3}, + [2041] = {.lex_state = 98, .external_lex_state = 3}, + [2042] = {.lex_state = 98, .external_lex_state = 3}, + [2043] = {.lex_state = 332, .external_lex_state = 3}, [2044] = {.lex_state = 98, .external_lex_state = 3}, - [2045] = {.lex_state = 98, .external_lex_state = 3}, - [2046] = {.lex_state = 338, .external_lex_state = 2}, - [2047] = {.lex_state = 98, .external_lex_state = 3}, - [2048] = {.lex_state = 97, .external_lex_state = 3}, - [2049] = {.lex_state = 98, .external_lex_state = 3}, - [2050] = {.lex_state = 338, .external_lex_state = 2}, - [2051] = {.lex_state = 338, .external_lex_state = 2}, - [2052] = {.lex_state = 98, .external_lex_state = 3}, - [2053] = {.lex_state = 98, .external_lex_state = 3}, - [2054] = {.lex_state = 97, .external_lex_state = 3}, - [2055] = {.lex_state = 98, .external_lex_state = 3}, + [2045] = {.lex_state = 97, .external_lex_state = 3}, + [2046] = {.lex_state = 97, .external_lex_state = 3}, + [2047] = {.lex_state = 97, .external_lex_state = 3}, + [2048] = {.lex_state = 98, .external_lex_state = 3}, + [2049] = {.lex_state = 87, .external_lex_state = 3}, + [2050] = {.lex_state = 97, .external_lex_state = 3}, + [2051] = {.lex_state = 97, .external_lex_state = 3}, + [2052] = {.lex_state = 75, .external_lex_state = 3}, + [2053] = {.lex_state = 102, .external_lex_state = 3}, + [2054] = {.lex_state = 98, .external_lex_state = 3}, + [2055] = {.lex_state = 332, .external_lex_state = 3}, [2056] = {.lex_state = 98, .external_lex_state = 3}, - [2057] = {.lex_state = 98, .external_lex_state = 3}, + [2057] = {.lex_state = 101, .external_lex_state = 3}, [2058] = {.lex_state = 98, .external_lex_state = 3}, - [2059] = {.lex_state = 98, .external_lex_state = 3}, - [2060] = {.lex_state = 87, .external_lex_state = 3}, + [2059] = {.lex_state = 71, .external_lex_state = 3}, + [2060] = {.lex_state = 98, .external_lex_state = 3}, [2061] = {.lex_state = 98, .external_lex_state = 3}, - [2062] = {.lex_state = 97, .external_lex_state = 3}, + [2062] = {.lex_state = 98, .external_lex_state = 3}, [2063] = {.lex_state = 98, .external_lex_state = 3}, - [2064] = {.lex_state = 98, .external_lex_state = 3}, + [2064] = {.lex_state = 97, .external_lex_state = 3}, [2065] = {.lex_state = 98, .external_lex_state = 3}, - [2066] = {.lex_state = 98, .external_lex_state = 3}, - [2067] = {.lex_state = 97, .external_lex_state = 3}, - [2068] = {.lex_state = 98, .external_lex_state = 3}, + [2066] = {.lex_state = 97, .external_lex_state = 3}, + [2067] = {.lex_state = 98, .external_lex_state = 3}, + [2068] = {.lex_state = 87, .external_lex_state = 3}, [2069] = {.lex_state = 98, .external_lex_state = 3}, - [2070] = {.lex_state = 90, .external_lex_state = 3}, + [2070] = {.lex_state = 98, .external_lex_state = 3}, [2071] = {.lex_state = 98, .external_lex_state = 3}, [2072] = {.lex_state = 97, .external_lex_state = 3}, - [2073] = {.lex_state = 97, .external_lex_state = 3}, - [2074] = {.lex_state = 98, .external_lex_state = 3}, + [2073] = {.lex_state = 87, .external_lex_state = 3}, + [2074] = {.lex_state = 97, .external_lex_state = 3}, [2075] = {.lex_state = 97, .external_lex_state = 3}, - [2076] = {.lex_state = 98, .external_lex_state = 3}, - [2077] = {.lex_state = 83, .external_lex_state = 3}, + [2076] = {.lex_state = 75, .external_lex_state = 3}, + [2077] = {.lex_state = 98, .external_lex_state = 3}, [2078] = {.lex_state = 98, .external_lex_state = 3}, - [2079] = {.lex_state = 101, .external_lex_state = 3}, - [2080] = {.lex_state = 328, .external_lex_state = 6}, + [2079] = {.lex_state = 98, .external_lex_state = 3}, + [2080] = {.lex_state = 97, .external_lex_state = 3}, [2081] = {.lex_state = 98, .external_lex_state = 3}, - [2082] = {.lex_state = 97, .external_lex_state = 3}, - [2083] = {.lex_state = 97, .external_lex_state = 3}, - [2084] = {.lex_state = 97, .external_lex_state = 3}, - [2085] = {.lex_state = 97, .external_lex_state = 3}, - [2086] = {.lex_state = 97, .external_lex_state = 3}, - [2087] = {.lex_state = 97, .external_lex_state = 3}, - [2088] = {.lex_state = 97, .external_lex_state = 3}, - [2089] = {.lex_state = 97, .external_lex_state = 3}, - [2090] = {.lex_state = 97, .external_lex_state = 3}, - [2091] = {.lex_state = 97, .external_lex_state = 3}, + [2082] = {.lex_state = 98, .external_lex_state = 3}, + [2083] = {.lex_state = 98, .external_lex_state = 3}, + [2084] = {.lex_state = 98, .external_lex_state = 3}, + [2085] = {.lex_state = 98, .external_lex_state = 3}, + [2086] = {.lex_state = 98, .external_lex_state = 3}, + [2087] = {.lex_state = 98, .external_lex_state = 3}, + [2088] = {.lex_state = 98, .external_lex_state = 3}, + [2089] = {.lex_state = 98, .external_lex_state = 3}, + [2090] = {.lex_state = 98, .external_lex_state = 3}, + [2091] = {.lex_state = 329, .external_lex_state = 5}, [2092] = {.lex_state = 97, .external_lex_state = 3}, - [2093] = {.lex_state = 97, .external_lex_state = 3}, - [2094] = {.lex_state = 97, .external_lex_state = 3}, - [2095] = {.lex_state = 97, .external_lex_state = 3}, + [2093] = {.lex_state = 98, .external_lex_state = 3}, + [2094] = {.lex_state = 83, .external_lex_state = 3}, + [2095] = {.lex_state = 98, .external_lex_state = 3}, [2096] = {.lex_state = 98, .external_lex_state = 3}, - [2097] = {.lex_state = 97, .external_lex_state = 3}, - [2098] = {.lex_state = 97, .external_lex_state = 3}, - [2099] = {.lex_state = 97, .external_lex_state = 3}, - [2100] = {.lex_state = 97, .external_lex_state = 3}, - [2101] = {.lex_state = 97, .external_lex_state = 3}, - [2102] = {.lex_state = 98, .external_lex_state = 3}, + [2097] = {.lex_state = 101, .external_lex_state = 3}, + [2098] = {.lex_state = 98, .external_lex_state = 3}, + [2099] = {.lex_state = 98, .external_lex_state = 3}, + [2100] = {.lex_state = 98, .external_lex_state = 3}, + [2101] = {.lex_state = 98, .external_lex_state = 3}, + [2102] = {.lex_state = 332, .external_lex_state = 3}, [2103] = {.lex_state = 98, .external_lex_state = 3}, [2104] = {.lex_state = 98, .external_lex_state = 3}, - [2105] = {.lex_state = 97, .external_lex_state = 3}, - [2106] = {.lex_state = 97, .external_lex_state = 3}, + [2105] = {.lex_state = 98, .external_lex_state = 3}, + [2106] = {.lex_state = 98, .external_lex_state = 3}, [2107] = {.lex_state = 98, .external_lex_state = 3}, - [2108] = {.lex_state = 328, .external_lex_state = 6}, - [2109] = {.lex_state = 98, .external_lex_state = 3}, + [2108] = {.lex_state = 98, .external_lex_state = 3}, + [2109] = {.lex_state = 97, .external_lex_state = 3}, [2110] = {.lex_state = 98, .external_lex_state = 3}, [2111] = {.lex_state = 98, .external_lex_state = 3}, - [2112] = {.lex_state = 338, .external_lex_state = 2}, - [2113] = {.lex_state = 328, .external_lex_state = 4}, - [2114] = {.lex_state = 98, .external_lex_state = 3}, - [2115] = {.lex_state = 98, .external_lex_state = 3}, - [2116] = {.lex_state = 98, .external_lex_state = 3}, - [2117] = {.lex_state = 101, .external_lex_state = 3}, - [2118] = {.lex_state = 98, .external_lex_state = 3}, - [2119] = {.lex_state = 98, .external_lex_state = 3}, - [2120] = {.lex_state = 97, .external_lex_state = 3}, + [2112] = {.lex_state = 98, .external_lex_state = 3}, + [2113] = {.lex_state = 98, .external_lex_state = 3}, + [2114] = {.lex_state = 339, .external_lex_state = 2}, + [2115] = {.lex_state = 339, .external_lex_state = 2}, + [2116] = {.lex_state = 339, .external_lex_state = 2}, + [2117] = {.lex_state = 98, .external_lex_state = 3}, + [2118] = {.lex_state = 90, .external_lex_state = 3}, + [2119] = {.lex_state = 97, .external_lex_state = 3}, + [2120] = {.lex_state = 98, .external_lex_state = 3}, [2121] = {.lex_state = 98, .external_lex_state = 3}, [2122] = {.lex_state = 98, .external_lex_state = 3}, - [2123] = {.lex_state = 338, .external_lex_state = 2}, + [2123] = {.lex_state = 90, .external_lex_state = 3}, [2124] = {.lex_state = 98, .external_lex_state = 3}, - [2125] = {.lex_state = 98, .external_lex_state = 3}, + [2125] = {.lex_state = 329, .external_lex_state = 6}, [2126] = {.lex_state = 98, .external_lex_state = 3}, - [2127] = {.lex_state = 98, .external_lex_state = 3}, + [2127] = {.lex_state = 329, .external_lex_state = 5}, [2128] = {.lex_state = 98, .external_lex_state = 3}, - [2129] = {.lex_state = 98, .external_lex_state = 3}, + [2129] = {.lex_state = 332, .external_lex_state = 3}, [2130] = {.lex_state = 98, .external_lex_state = 3}, - [2131] = {.lex_state = 98, .external_lex_state = 3}, + [2131] = {.lex_state = 339, .external_lex_state = 2}, [2132] = {.lex_state = 98, .external_lex_state = 3}, - [2133] = {.lex_state = 101, .external_lex_state = 3}, - [2134] = {.lex_state = 328, .external_lex_state = 6}, - [2135] = {.lex_state = 101, .external_lex_state = 3}, + [2133] = {.lex_state = 329, .external_lex_state = 5}, + [2134] = {.lex_state = 102, .external_lex_state = 3}, + [2135] = {.lex_state = 98, .external_lex_state = 3}, [2136] = {.lex_state = 101, .external_lex_state = 3}, - [2137] = {.lex_state = 101, .external_lex_state = 3}, - [2138] = {.lex_state = 90, .external_lex_state = 3}, + [2137] = {.lex_state = 98, .external_lex_state = 3}, + [2138] = {.lex_state = 98, .external_lex_state = 3}, [2139] = {.lex_state = 101, .external_lex_state = 3}, - [2140] = {.lex_state = 101, .external_lex_state = 3}, - [2141] = {.lex_state = 90, .external_lex_state = 3}, - [2142] = {.lex_state = 101, .external_lex_state = 3}, - [2143] = {.lex_state = 101, .external_lex_state = 3}, - [2144] = {.lex_state = 101, .external_lex_state = 3}, - [2145] = {.lex_state = 101, .external_lex_state = 3}, - [2146] = {.lex_state = 331, .external_lex_state = 3}, - [2147] = {.lex_state = 101, .external_lex_state = 3}, - [2148] = {.lex_state = 101, .external_lex_state = 3}, - [2149] = {.lex_state = 328, .external_lex_state = 5}, - [2150] = {.lex_state = 101, .external_lex_state = 3}, - [2151] = {.lex_state = 101, .external_lex_state = 3}, - [2152] = {.lex_state = 101, .external_lex_state = 3}, - [2153] = {.lex_state = 90, .external_lex_state = 3}, - [2154] = {.lex_state = 101, .external_lex_state = 3}, - [2155] = {.lex_state = 328, .external_lex_state = 5}, + [2140] = {.lex_state = 98, .external_lex_state = 3}, + [2141] = {.lex_state = 98, .external_lex_state = 3}, + [2142] = {.lex_state = 90, .external_lex_state = 3}, + [2143] = {.lex_state = 339, .external_lex_state = 2}, + [2144] = {.lex_state = 332, .external_lex_state = 3}, + [2145] = {.lex_state = 102, .external_lex_state = 3}, + [2146] = {.lex_state = 332, .external_lex_state = 3}, + [2147] = {.lex_state = 332, .external_lex_state = 3}, + [2148] = {.lex_state = 329, .external_lex_state = 4}, + [2149] = {.lex_state = 90, .external_lex_state = 3}, + [2150] = {.lex_state = 90, .external_lex_state = 3}, + [2151] = {.lex_state = 90, .external_lex_state = 3}, + [2152] = {.lex_state = 90, .external_lex_state = 3}, + [2153] = {.lex_state = 332, .external_lex_state = 3}, + [2154] = {.lex_state = 332, .external_lex_state = 3}, + [2155] = {.lex_state = 90, .external_lex_state = 3}, [2156] = {.lex_state = 90, .external_lex_state = 3}, [2157] = {.lex_state = 101, .external_lex_state = 3}, - [2158] = {.lex_state = 331, .external_lex_state = 3}, - [2159] = {.lex_state = 331, .external_lex_state = 3}, + [2158] = {.lex_state = 101, .external_lex_state = 3}, + [2159] = {.lex_state = 101, .external_lex_state = 3}, [2160] = {.lex_state = 101, .external_lex_state = 3}, - [2161] = {.lex_state = 331, .external_lex_state = 3}, - [2162] = {.lex_state = 90, .external_lex_state = 3}, - [2163] = {.lex_state = 331, .external_lex_state = 3}, - [2164] = {.lex_state = 331, .external_lex_state = 3}, - [2165] = {.lex_state = 331, .external_lex_state = 3}, - [2166] = {.lex_state = 331, .external_lex_state = 3}, - [2167] = {.lex_state = 331, .external_lex_state = 3}, + [2161] = {.lex_state = 90, .external_lex_state = 3}, + [2162] = {.lex_state = 101, .external_lex_state = 3}, + [2163] = {.lex_state = 101, .external_lex_state = 3}, + [2164] = {.lex_state = 101, .external_lex_state = 3}, + [2165] = {.lex_state = 101, .external_lex_state = 3}, + [2166] = {.lex_state = 101, .external_lex_state = 3}, + [2167] = {.lex_state = 101, .external_lex_state = 3}, [2168] = {.lex_state = 101, .external_lex_state = 3}, - [2169] = {.lex_state = 331, .external_lex_state = 3}, - [2170] = {.lex_state = 331, .external_lex_state = 3}, - [2171] = {.lex_state = 331, .external_lex_state = 3}, - [2172] = {.lex_state = 331, .external_lex_state = 3}, + [2169] = {.lex_state = 101, .external_lex_state = 3}, + [2170] = {.lex_state = 101, .external_lex_state = 3}, + [2171] = {.lex_state = 101, .external_lex_state = 3}, + [2172] = {.lex_state = 101, .external_lex_state = 3}, [2173] = {.lex_state = 101, .external_lex_state = 3}, - [2174] = {.lex_state = 331, .external_lex_state = 3}, - [2175] = {.lex_state = 331, .external_lex_state = 3}, - [2176] = {.lex_state = 331, .external_lex_state = 3}, - [2177] = {.lex_state = 331, .external_lex_state = 3}, - [2178] = {.lex_state = 331, .external_lex_state = 3}, - [2179] = {.lex_state = 331, .external_lex_state = 3}, - [2180] = {.lex_state = 331, .external_lex_state = 3}, - [2181] = {.lex_state = 331, .external_lex_state = 3}, - [2182] = {.lex_state = 331, .external_lex_state = 3}, - [2183] = {.lex_state = 331, .external_lex_state = 3}, - [2184] = {.lex_state = 90, .external_lex_state = 3}, - [2185] = {.lex_state = 142}, - [2186] = {.lex_state = 331, .external_lex_state = 3}, - [2187] = {.lex_state = 331, .external_lex_state = 3}, - [2188] = {.lex_state = 331, .external_lex_state = 3}, - [2189] = {.lex_state = 101, .external_lex_state = 3}, - [2190] = {.lex_state = 101, .external_lex_state = 3}, - [2191] = {.lex_state = 331, .external_lex_state = 3}, - [2192] = {.lex_state = 331, .external_lex_state = 3}, - [2193] = {.lex_state = 331, .external_lex_state = 3}, - [2194] = {.lex_state = 328, .external_lex_state = 5}, - [2195] = {.lex_state = 331, .external_lex_state = 3}, - [2196] = {.lex_state = 331, .external_lex_state = 3}, - [2197] = {.lex_state = 331, .external_lex_state = 3}, + [2174] = {.lex_state = 101, .external_lex_state = 3}, + [2175] = {.lex_state = 101, .external_lex_state = 3}, + [2176] = {.lex_state = 101, .external_lex_state = 3}, + [2177] = {.lex_state = 102, .external_lex_state = 3}, + [2178] = {.lex_state = 102, .external_lex_state = 3}, + [2179] = {.lex_state = 102, .external_lex_state = 3}, + [2180] = {.lex_state = 150}, + [2181] = {.lex_state = 329, .external_lex_state = 6}, + [2182] = {.lex_state = 329, .external_lex_state = 6}, + [2183] = {.lex_state = 332, .external_lex_state = 3}, + [2184] = {.lex_state = 329, .external_lex_state = 4}, + [2185] = {.lex_state = 332, .external_lex_state = 3}, + [2186] = {.lex_state = 332, .external_lex_state = 3}, + [2187] = {.lex_state = 332, .external_lex_state = 3}, + [2188] = {.lex_state = 332, .external_lex_state = 3}, + [2189] = {.lex_state = 329, .external_lex_state = 6}, + [2190] = {.lex_state = 90, .external_lex_state = 3}, + [2191] = {.lex_state = 90, .external_lex_state = 3}, + [2192] = {.lex_state = 90, .external_lex_state = 3}, + [2193] = {.lex_state = 90, .external_lex_state = 3}, + [2194] = {.lex_state = 90, .external_lex_state = 3}, + [2195] = {.lex_state = 329, .external_lex_state = 6}, + [2196] = {.lex_state = 102, .external_lex_state = 3}, + [2197] = {.lex_state = 101, .external_lex_state = 3}, [2198] = {.lex_state = 101, .external_lex_state = 3}, [2199] = {.lex_state = 101, .external_lex_state = 3}, - [2200] = {.lex_state = 90, .external_lex_state = 3}, - [2201] = {.lex_state = 90, .external_lex_state = 3}, - [2202] = {.lex_state = 101, .external_lex_state = 3}, - [2203] = {.lex_state = 331, .external_lex_state = 3}, - [2204] = {.lex_state = 101, .external_lex_state = 3}, - [2205] = {.lex_state = 328, .external_lex_state = 6}, + [2200] = {.lex_state = 102, .external_lex_state = 3}, + [2201] = {.lex_state = 339, .external_lex_state = 2}, + [2202] = {.lex_state = 90, .external_lex_state = 3}, + [2203] = {.lex_state = 332, .external_lex_state = 3}, + [2204] = {.lex_state = 332, .external_lex_state = 3}, + [2205] = {.lex_state = 90, .external_lex_state = 3}, [2206] = {.lex_state = 101, .external_lex_state = 3}, - [2207] = {.lex_state = 331, .external_lex_state = 3}, - [2208] = {.lex_state = 331, .external_lex_state = 3}, - [2209] = {.lex_state = 328, .external_lex_state = 6}, - [2210] = {.lex_state = 328, .external_lex_state = 6}, - [2211] = {.lex_state = 101, .external_lex_state = 3}, - [2212] = {.lex_state = 328, .external_lex_state = 6}, - [2213] = {.lex_state = 328, .external_lex_state = 6}, - [2214] = {.lex_state = 331, .external_lex_state = 3}, - [2215] = {.lex_state = 101, .external_lex_state = 3}, - [2216] = {.lex_state = 90, .external_lex_state = 3}, - [2217] = {.lex_state = 328, .external_lex_state = 5}, - [2218] = {.lex_state = 328, .external_lex_state = 6}, - [2219] = {.lex_state = 90, .external_lex_state = 3}, - [2220] = {.lex_state = 328, .external_lex_state = 6}, - [2221] = {.lex_state = 331, .external_lex_state = 3}, - [2222] = {.lex_state = 331, .external_lex_state = 3}, - [2223] = {.lex_state = 331, .external_lex_state = 3}, - [2224] = {.lex_state = 328, .external_lex_state = 6}, - [2225] = {.lex_state = 331, .external_lex_state = 3}, - [2226] = {.lex_state = 328, .external_lex_state = 6}, - [2227] = {.lex_state = 328, .external_lex_state = 6}, - [2228] = {.lex_state = 328, .external_lex_state = 6}, - [2229] = {.lex_state = 328, .external_lex_state = 6}, - [2230] = {.lex_state = 331, .external_lex_state = 3}, - [2231] = {.lex_state = 331, .external_lex_state = 3}, - [2232] = {.lex_state = 331, .external_lex_state = 3}, - [2233] = {.lex_state = 331, .external_lex_state = 3}, - [2234] = {.lex_state = 328, .external_lex_state = 6}, - [2235] = {.lex_state = 328, .external_lex_state = 6}, - [2236] = {.lex_state = 331, .external_lex_state = 3}, - [2237] = {.lex_state = 331, .external_lex_state = 3}, - [2238] = {.lex_state = 328, .external_lex_state = 6}, - [2239] = {.lex_state = 328, .external_lex_state = 6}, - [2240] = {.lex_state = 328, .external_lex_state = 6}, - [2241] = {.lex_state = 331, .external_lex_state = 3}, - [2242] = {.lex_state = 90, .external_lex_state = 3}, - [2243] = {.lex_state = 101, .external_lex_state = 3}, - [2244] = {.lex_state = 328, .external_lex_state = 6}, - [2245] = {.lex_state = 102, .external_lex_state = 3}, - [2246] = {.lex_state = 328, .external_lex_state = 6}, - [2247] = {.lex_state = 328, .external_lex_state = 6}, - [2248] = {.lex_state = 328, .external_lex_state = 6}, - [2249] = {.lex_state = 328, .external_lex_state = 6}, - [2250] = {.lex_state = 328, .external_lex_state = 6}, - [2251] = {.lex_state = 328, .external_lex_state = 6}, - [2252] = {.lex_state = 101, .external_lex_state = 3}, - [2253] = {.lex_state = 331, .external_lex_state = 3}, - [2254] = {.lex_state = 328, .external_lex_state = 6}, - [2255] = {.lex_state = 328, .external_lex_state = 6}, - [2256] = {.lex_state = 101, .external_lex_state = 3}, - [2257] = {.lex_state = 331, .external_lex_state = 3}, - [2258] = {.lex_state = 101, .external_lex_state = 3}, - [2259] = {.lex_state = 90, .external_lex_state = 3}, - [2260] = {.lex_state = 328, .external_lex_state = 6}, - [2261] = {.lex_state = 328, .external_lex_state = 6}, - [2262] = {.lex_state = 101, .external_lex_state = 3}, - [2263] = {.lex_state = 101, .external_lex_state = 3}, + [2207] = {.lex_state = 101, .external_lex_state = 3}, + [2208] = {.lex_state = 101, .external_lex_state = 3}, + [2209] = {.lex_state = 102, .external_lex_state = 3}, + [2210] = {.lex_state = 332, .external_lex_state = 3}, + [2211] = {.lex_state = 332, .external_lex_state = 3}, + [2212] = {.lex_state = 332, .external_lex_state = 3}, + [2213] = {.lex_state = 101, .external_lex_state = 3}, + [2214] = {.lex_state = 101, .external_lex_state = 3}, + [2215] = {.lex_state = 332, .external_lex_state = 3}, + [2216] = {.lex_state = 332, .external_lex_state = 3}, + [2217] = {.lex_state = 332, .external_lex_state = 3}, + [2218] = {.lex_state = 332, .external_lex_state = 3}, + [2219] = {.lex_state = 332, .external_lex_state = 3}, + [2220] = {.lex_state = 90, .external_lex_state = 3}, + [2221] = {.lex_state = 332, .external_lex_state = 3}, + [2222] = {.lex_state = 90, .external_lex_state = 3}, + [2223] = {.lex_state = 101, .external_lex_state = 3}, + [2224] = {.lex_state = 101, .external_lex_state = 3}, + [2225] = {.lex_state = 332, .external_lex_state = 3}, + [2226] = {.lex_state = 332, .external_lex_state = 3}, + [2227] = {.lex_state = 90, .external_lex_state = 3}, + [2228] = {.lex_state = 142, .external_lex_state = 14}, + [2229] = {.lex_state = 90, .external_lex_state = 3}, + [2230] = {.lex_state = 329, .external_lex_state = 6}, + [2231] = {.lex_state = 332, .external_lex_state = 3}, + [2232] = {.lex_state = 329, .external_lex_state = 6}, + [2233] = {.lex_state = 329, .external_lex_state = 4}, + [2234] = {.lex_state = 332, .external_lex_state = 3}, + [2235] = {.lex_state = 102, .external_lex_state = 3}, + [2236] = {.lex_state = 329, .external_lex_state = 6}, + [2237] = {.lex_state = 90, .external_lex_state = 3}, + [2238] = {.lex_state = 332, .external_lex_state = 3}, + [2239] = {.lex_state = 329, .external_lex_state = 6}, + [2240] = {.lex_state = 329, .external_lex_state = 6}, + [2241] = {.lex_state = 339, .external_lex_state = 2}, + [2242] = {.lex_state = 329, .external_lex_state = 6}, + [2243] = {.lex_state = 102, .external_lex_state = 3}, + [2244] = {.lex_state = 101, .external_lex_state = 3}, + [2245] = {.lex_state = 101, .external_lex_state = 3}, + [2246] = {.lex_state = 329, .external_lex_state = 4}, + [2247] = {.lex_state = 329, .external_lex_state = 6}, + [2248] = {.lex_state = 329, .external_lex_state = 6}, + [2249] = {.lex_state = 329, .external_lex_state = 6}, + [2250] = {.lex_state = 329, .external_lex_state = 6}, + [2251] = {.lex_state = 329, .external_lex_state = 6}, + [2252] = {.lex_state = 102, .external_lex_state = 3}, + [2253] = {.lex_state = 101, .external_lex_state = 3}, + [2254] = {.lex_state = 101, .external_lex_state = 3}, + [2255] = {.lex_state = 329, .external_lex_state = 6}, + [2256] = {.lex_state = 332, .external_lex_state = 3}, + [2257] = {.lex_state = 339, .external_lex_state = 2}, + [2258] = {.lex_state = 332, .external_lex_state = 3}, + [2259] = {.lex_state = 102, .external_lex_state = 3}, + [2260] = {.lex_state = 102, .external_lex_state = 3}, + [2261] = {.lex_state = 329, .external_lex_state = 6}, + [2262] = {.lex_state = 329, .external_lex_state = 6}, + [2263] = {.lex_state = 329, .external_lex_state = 6}, [2264] = {.lex_state = 101, .external_lex_state = 3}, - [2265] = {.lex_state = 331, .external_lex_state = 3}, - [2266] = {.lex_state = 331, .external_lex_state = 3}, - [2267] = {.lex_state = 90, .external_lex_state = 3}, - [2268] = {.lex_state = 331, .external_lex_state = 3}, - [2269] = {.lex_state = 328, .external_lex_state = 6}, - [2270] = {.lex_state = 328, .external_lex_state = 6}, - [2271] = {.lex_state = 328, .external_lex_state = 6}, - [2272] = {.lex_state = 328, .external_lex_state = 6}, - [2273] = {.lex_state = 90, .external_lex_state = 3}, - [2274] = {.lex_state = 102, .external_lex_state = 3}, - [2275] = {.lex_state = 102, .external_lex_state = 3}, - [2276] = {.lex_state = 101, .external_lex_state = 3}, - [2277] = {.lex_state = 102, .external_lex_state = 3}, - [2278] = {.lex_state = 90, .external_lex_state = 3}, - [2279] = {.lex_state = 90, .external_lex_state = 3}, - [2280] = {.lex_state = 90, .external_lex_state = 3}, - [2281] = {.lex_state = 328, .external_lex_state = 6}, + [2265] = {.lex_state = 101, .external_lex_state = 3}, + [2266] = {.lex_state = 101, .external_lex_state = 3}, + [2267] = {.lex_state = 101, .external_lex_state = 3}, + [2268] = {.lex_state = 101, .external_lex_state = 3}, + [2269] = {.lex_state = 90, .external_lex_state = 3}, + [2270] = {.lex_state = 329, .external_lex_state = 6}, + [2271] = {.lex_state = 329, .external_lex_state = 6}, + [2272] = {.lex_state = 329, .external_lex_state = 6}, + [2273] = {.lex_state = 329, .external_lex_state = 6}, + [2274] = {.lex_state = 339, .external_lex_state = 2}, + [2275] = {.lex_state = 329, .external_lex_state = 6}, + [2276] = {.lex_state = 329, .external_lex_state = 6}, + [2277] = {.lex_state = 332, .external_lex_state = 3}, + [2278] = {.lex_state = 101, .external_lex_state = 3}, + [2279] = {.lex_state = 101, .external_lex_state = 3}, + [2280] = {.lex_state = 101, .external_lex_state = 3}, + [2281] = {.lex_state = 101, .external_lex_state = 3}, [2282] = {.lex_state = 101, .external_lex_state = 3}, - [2283] = {.lex_state = 90, .external_lex_state = 3}, - [2284] = {.lex_state = 101, .external_lex_state = 3}, - [2285] = {.lex_state = 90, .external_lex_state = 3}, - [2286] = {.lex_state = 328, .external_lex_state = 6}, - [2287] = {.lex_state = 328, .external_lex_state = 6}, - [2288] = {.lex_state = 328, .external_lex_state = 6}, - [2289] = {.lex_state = 90, .external_lex_state = 3}, - [2290] = {.lex_state = 328, .external_lex_state = 6}, - [2291] = {.lex_state = 90, .external_lex_state = 3}, - [2292] = {.lex_state = 142}, - [2293] = {.lex_state = 90, .external_lex_state = 3}, - [2294] = {.lex_state = 90, .external_lex_state = 3}, - [2295] = {.lex_state = 90, .external_lex_state = 3}, + [2283] = {.lex_state = 329, .external_lex_state = 6}, + [2284] = {.lex_state = 329, .external_lex_state = 6}, + [2285] = {.lex_state = 102, .external_lex_state = 3}, + [2286] = {.lex_state = 329, .external_lex_state = 6}, + [2287] = {.lex_state = 102, .external_lex_state = 3}, + [2288] = {.lex_state = 101, .external_lex_state = 3}, + [2289] = {.lex_state = 332, .external_lex_state = 3}, + [2290] = {.lex_state = 101, .external_lex_state = 3}, + [2291] = {.lex_state = 101, .external_lex_state = 3}, + [2292] = {.lex_state = 101, .external_lex_state = 3}, + [2293] = {.lex_state = 101, .external_lex_state = 3}, + [2294] = {.lex_state = 101, .external_lex_state = 3}, + [2295] = {.lex_state = 101, .external_lex_state = 3}, [2296] = {.lex_state = 90, .external_lex_state = 3}, - [2297] = {.lex_state = 90, .external_lex_state = 3}, - [2298] = {.lex_state = 328, .external_lex_state = 6}, + [2297] = {.lex_state = 101, .external_lex_state = 3}, + [2298] = {.lex_state = 102, .external_lex_state = 3}, [2299] = {.lex_state = 102, .external_lex_state = 3}, - [2300] = {.lex_state = 90, .external_lex_state = 3}, - [2301] = {.lex_state = 90, .external_lex_state = 3}, - [2302] = {.lex_state = 328, .external_lex_state = 6}, - [2303] = {.lex_state = 90, .external_lex_state = 3}, - [2304] = {.lex_state = 90, .external_lex_state = 3}, - [2305] = {.lex_state = 90, .external_lex_state = 3}, - [2306] = {.lex_state = 90, .external_lex_state = 3}, - [2307] = {.lex_state = 102, .external_lex_state = 3}, - [2308] = {.lex_state = 101, .external_lex_state = 3}, - [2309] = {.lex_state = 101, .external_lex_state = 3}, - [2310] = {.lex_state = 101, .external_lex_state = 3}, - [2311] = {.lex_state = 90, .external_lex_state = 3}, - [2312] = {.lex_state = 90, .external_lex_state = 3}, - [2313] = {.lex_state = 102, .external_lex_state = 3}, - [2314] = {.lex_state = 90, .external_lex_state = 3}, - [2315] = {.lex_state = 102, .external_lex_state = 3}, + [2300] = {.lex_state = 101, .external_lex_state = 3}, + [2301] = {.lex_state = 101, .external_lex_state = 3}, + [2302] = {.lex_state = 101, .external_lex_state = 3}, + [2303] = {.lex_state = 101, .external_lex_state = 3}, + [2304] = {.lex_state = 101, .external_lex_state = 3}, + [2305] = {.lex_state = 101, .external_lex_state = 3}, + [2306] = {.lex_state = 101, .external_lex_state = 3}, + [2307] = {.lex_state = 101, .external_lex_state = 3}, + [2308] = {.lex_state = 332, .external_lex_state = 3}, + [2309] = {.lex_state = 102, .external_lex_state = 3}, + [2310] = {.lex_state = 102, .external_lex_state = 3}, + [2311] = {.lex_state = 101, .external_lex_state = 3}, + [2312] = {.lex_state = 332, .external_lex_state = 3}, + [2313] = {.lex_state = 332, .external_lex_state = 3}, + [2314] = {.lex_state = 101, .external_lex_state = 3}, + [2315] = {.lex_state = 339, .external_lex_state = 2}, [2316] = {.lex_state = 102, .external_lex_state = 3}, - [2317] = {.lex_state = 101, .external_lex_state = 3}, - [2318] = {.lex_state = 101, .external_lex_state = 3}, - [2319] = {.lex_state = 90, .external_lex_state = 3}, - [2320] = {.lex_state = 101, .external_lex_state = 3}, - [2321] = {.lex_state = 102, .external_lex_state = 3}, - [2322] = {.lex_state = 90, .external_lex_state = 3}, - [2323] = {.lex_state = 101, .external_lex_state = 3}, - [2324] = {.lex_state = 90, .external_lex_state = 3}, - [2325] = {.lex_state = 331, .external_lex_state = 3}, - [2326] = {.lex_state = 102, .external_lex_state = 3}, - [2327] = {.lex_state = 90, .external_lex_state = 3}, - [2328] = {.lex_state = 90, .external_lex_state = 3}, - [2329] = {.lex_state = 90, .external_lex_state = 3}, - [2330] = {.lex_state = 90, .external_lex_state = 3}, - [2331] = {.lex_state = 328, .external_lex_state = 5}, - [2332] = {.lex_state = 328, .external_lex_state = 5}, - [2333] = {.lex_state = 150}, - [2334] = {.lex_state = 102, .external_lex_state = 3}, - [2335] = {.lex_state = 102, .external_lex_state = 3}, - [2336] = {.lex_state = 102, .external_lex_state = 3}, - [2337] = {.lex_state = 101, .external_lex_state = 3}, - [2338] = {.lex_state = 101, .external_lex_state = 3}, - [2339] = {.lex_state = 101, .external_lex_state = 3}, - [2340] = {.lex_state = 328, .external_lex_state = 6}, - [2341] = {.lex_state = 101, .external_lex_state = 3}, + [2317] = {.lex_state = 332, .external_lex_state = 3}, + [2318] = {.lex_state = 332, .external_lex_state = 3}, + [2319] = {.lex_state = 332, .external_lex_state = 3}, + [2320] = {.lex_state = 332, .external_lex_state = 3}, + [2321] = {.lex_state = 329, .external_lex_state = 6}, + [2322] = {.lex_state = 102, .external_lex_state = 3}, + [2323] = {.lex_state = 332, .external_lex_state = 3}, + [2324] = {.lex_state = 332, .external_lex_state = 3}, + [2325] = {.lex_state = 90, .external_lex_state = 3}, + [2326] = {.lex_state = 332, .external_lex_state = 3}, + [2327] = {.lex_state = 332, .external_lex_state = 3}, + [2328] = {.lex_state = 329, .external_lex_state = 6}, + [2329] = {.lex_state = 329, .external_lex_state = 6}, + [2330] = {.lex_state = 101, .external_lex_state = 3}, + [2331] = {.lex_state = 332, .external_lex_state = 3}, + [2332] = {.lex_state = 332, .external_lex_state = 3}, + [2333] = {.lex_state = 101, .external_lex_state = 3}, + [2334] = {.lex_state = 329, .external_lex_state = 6}, + [2335] = {.lex_state = 329, .external_lex_state = 6}, + [2336] = {.lex_state = 332, .external_lex_state = 3}, + [2337] = {.lex_state = 332, .external_lex_state = 3}, + [2338] = {.lex_state = 332, .external_lex_state = 3}, + [2339] = {.lex_state = 90, .external_lex_state = 3}, + [2340] = {.lex_state = 332, .external_lex_state = 3}, + [2341] = {.lex_state = 332, .external_lex_state = 3}, [2342] = {.lex_state = 101, .external_lex_state = 3}, - [2343] = {.lex_state = 101, .external_lex_state = 3}, - [2344] = {.lex_state = 101, .external_lex_state = 3}, - [2345] = {.lex_state = 101, .external_lex_state = 3}, - [2346] = {.lex_state = 101, .external_lex_state = 3}, - [2347] = {.lex_state = 90, .external_lex_state = 3}, + [2343] = {.lex_state = 332, .external_lex_state = 3}, + [2344] = {.lex_state = 332, .external_lex_state = 3}, + [2345] = {.lex_state = 332, .external_lex_state = 3}, + [2346] = {.lex_state = 332, .external_lex_state = 3}, + [2347] = {.lex_state = 101, .external_lex_state = 3}, [2348] = {.lex_state = 102, .external_lex_state = 3}, - [2349] = {.lex_state = 101, .external_lex_state = 3}, - [2350] = {.lex_state = 101, .external_lex_state = 3}, - [2351] = {.lex_state = 102, .external_lex_state = 3}, - [2352] = {.lex_state = 101, .external_lex_state = 3}, - [2353] = {.lex_state = 101, .external_lex_state = 3}, - [2354] = {.lex_state = 101, .external_lex_state = 3}, - [2355] = {.lex_state = 328, .external_lex_state = 5}, - [2356] = {.lex_state = 102, .external_lex_state = 3}, + [2349] = {.lex_state = 332, .external_lex_state = 3}, + [2350] = {.lex_state = 332, .external_lex_state = 3}, + [2351] = {.lex_state = 332, .external_lex_state = 3}, + [2352] = {.lex_state = 102, .external_lex_state = 3}, + [2353] = {.lex_state = 102, .external_lex_state = 3}, + [2354] = {.lex_state = 102, .external_lex_state = 3}, + [2355] = {.lex_state = 332, .external_lex_state = 3}, + [2356] = {.lex_state = 101, .external_lex_state = 3}, [2357] = {.lex_state = 101, .external_lex_state = 3}, - [2358] = {.lex_state = 101, .external_lex_state = 3}, - [2359] = {.lex_state = 101, .external_lex_state = 3}, - [2360] = {.lex_state = 101, .external_lex_state = 3}, + [2358] = {.lex_state = 102, .external_lex_state = 3}, + [2359] = {.lex_state = 102, .external_lex_state = 3}, + [2360] = {.lex_state = 332, .external_lex_state = 3}, [2361] = {.lex_state = 90, .external_lex_state = 3}, [2362] = {.lex_state = 102, .external_lex_state = 3}, - [2363] = {.lex_state = 90, .external_lex_state = 3}, + [2363] = {.lex_state = 329, .external_lex_state = 6}, [2364] = {.lex_state = 102, .external_lex_state = 3}, - [2365] = {.lex_state = 331, .external_lex_state = 3}, - [2366] = {.lex_state = 331, .external_lex_state = 3}, - [2367] = {.lex_state = 90, .external_lex_state = 3}, - [2368] = {.lex_state = 90, .external_lex_state = 3}, - [2369] = {.lex_state = 90, .external_lex_state = 3}, - [2370] = {.lex_state = 102, .external_lex_state = 3}, - [2371] = {.lex_state = 328, .external_lex_state = 6}, - [2372] = {.lex_state = 331, .external_lex_state = 3}, - [2373] = {.lex_state = 331, .external_lex_state = 3}, - [2374] = {.lex_state = 90, .external_lex_state = 3}, - [2375] = {.lex_state = 331, .external_lex_state = 3}, - [2376] = {.lex_state = 331, .external_lex_state = 3}, - [2377] = {.lex_state = 102, .external_lex_state = 3}, - [2378] = {.lex_state = 331, .external_lex_state = 3}, - [2379] = {.lex_state = 331, .external_lex_state = 3}, - [2380] = {.lex_state = 328, .external_lex_state = 6}, - [2381] = {.lex_state = 328, .external_lex_state = 5}, - [2382] = {.lex_state = 331, .external_lex_state = 3}, - [2383] = {.lex_state = 328, .external_lex_state = 6}, - [2384] = {.lex_state = 328, .external_lex_state = 6}, - [2385] = {.lex_state = 328, .external_lex_state = 6}, + [2365] = {.lex_state = 90, .external_lex_state = 3}, + [2366] = {.lex_state = 102, .external_lex_state = 3}, + [2367] = {.lex_state = 332, .external_lex_state = 3}, + [2368] = {.lex_state = 329, .external_lex_state = 6}, + [2369] = {.lex_state = 102, .external_lex_state = 3}, + [2370] = {.lex_state = 90, .external_lex_state = 3}, + [2371] = {.lex_state = 332, .external_lex_state = 3}, + [2372] = {.lex_state = 329, .external_lex_state = 6}, + [2373] = {.lex_state = 90, .external_lex_state = 3}, + [2374] = {.lex_state = 329, .external_lex_state = 6}, + [2375] = {.lex_state = 329, .external_lex_state = 6}, + [2376] = {.lex_state = 332, .external_lex_state = 3}, + [2377] = {.lex_state = 332, .external_lex_state = 3}, + [2378] = {.lex_state = 90, .external_lex_state = 3}, + [2379] = {.lex_state = 102, .external_lex_state = 3}, + [2380] = {.lex_state = 332, .external_lex_state = 3}, + [2381] = {.lex_state = 332, .external_lex_state = 3}, + [2382] = {.lex_state = 332, .external_lex_state = 3}, + [2383] = {.lex_state = 332, .external_lex_state = 3}, + [2384] = {.lex_state = 102, .external_lex_state = 3}, + [2385] = {.lex_state = 329, .external_lex_state = 6}, [2386] = {.lex_state = 102, .external_lex_state = 3}, [2387] = {.lex_state = 102, .external_lex_state = 3}, - [2388] = {.lex_state = 102, .external_lex_state = 3}, - [2389] = {.lex_state = 102, .external_lex_state = 3}, - [2390] = {.lex_state = 101, .external_lex_state = 3}, + [2388] = {.lex_state = 329, .external_lex_state = 6}, + [2389] = {.lex_state = 329, .external_lex_state = 6}, + [2390] = {.lex_state = 102, .external_lex_state = 3}, [2391] = {.lex_state = 102, .external_lex_state = 3}, - [2392] = {.lex_state = 101, .external_lex_state = 3}, + [2392] = {.lex_state = 102, .external_lex_state = 3}, [2393] = {.lex_state = 101, .external_lex_state = 3}, - [2394] = {.lex_state = 101, .external_lex_state = 3}, - [2395] = {.lex_state = 101, .external_lex_state = 3}, - [2396] = {.lex_state = 101, .external_lex_state = 3}, - [2397] = {.lex_state = 102, .external_lex_state = 3}, + [2394] = {.lex_state = 332, .external_lex_state = 3}, + [2395] = {.lex_state = 332, .external_lex_state = 3}, + [2396] = {.lex_state = 90, .external_lex_state = 3}, + [2397] = {.lex_state = 332, .external_lex_state = 3}, [2398] = {.lex_state = 102, .external_lex_state = 3}, - [2399] = {.lex_state = 102, .external_lex_state = 3}, - [2400] = {.lex_state = 101, .external_lex_state = 3}, + [2399] = {.lex_state = 90, .external_lex_state = 3}, + [2400] = {.lex_state = 102, .external_lex_state = 3}, [2401] = {.lex_state = 102, .external_lex_state = 3}, - [2402] = {.lex_state = 338, .external_lex_state = 2}, - [2403] = {.lex_state = 102, .external_lex_state = 3}, + [2402] = {.lex_state = 329, .external_lex_state = 6}, + [2403] = {.lex_state = 329, .external_lex_state = 6}, [2404] = {.lex_state = 102, .external_lex_state = 3}, - [2405] = {.lex_state = 102, .external_lex_state = 3}, - [2406] = {.lex_state = 101, .external_lex_state = 3}, - [2407] = {.lex_state = 102, .external_lex_state = 3}, - [2408] = {.lex_state = 331, .external_lex_state = 3}, - [2409] = {.lex_state = 338, .external_lex_state = 2}, - [2410] = {.lex_state = 90, .external_lex_state = 3}, - [2411] = {.lex_state = 338, .external_lex_state = 2}, - [2412] = {.lex_state = 331, .external_lex_state = 3}, + [2405] = {.lex_state = 329, .external_lex_state = 6}, + [2406] = {.lex_state = 329, .external_lex_state = 6}, + [2407] = {.lex_state = 90, .external_lex_state = 3}, + [2408] = {.lex_state = 329, .external_lex_state = 6}, + [2409] = {.lex_state = 90, .external_lex_state = 3}, + [2410] = {.lex_state = 329, .external_lex_state = 6}, + [2411] = {.lex_state = 339, .external_lex_state = 2}, + [2412] = {.lex_state = 101, .external_lex_state = 3}, [2413] = {.lex_state = 90, .external_lex_state = 3}, - [2414] = {.lex_state = 338, .external_lex_state = 2}, - [2415] = {.lex_state = 328, .external_lex_state = 6}, - [2416] = {.lex_state = 102, .external_lex_state = 3}, - [2417] = {.lex_state = 328, .external_lex_state = 6}, - [2418] = {.lex_state = 102, .external_lex_state = 3}, - [2419] = {.lex_state = 331, .external_lex_state = 3}, - [2420] = {.lex_state = 331, .external_lex_state = 3}, - [2421] = {.lex_state = 331, .external_lex_state = 3}, - [2422] = {.lex_state = 328, .external_lex_state = 6}, - [2423] = {.lex_state = 102, .external_lex_state = 3}, - [2424] = {.lex_state = 328, .external_lex_state = 6}, - [2425] = {.lex_state = 331, .external_lex_state = 3}, - [2426] = {.lex_state = 328, .external_lex_state = 6}, - [2427] = {.lex_state = 328, .external_lex_state = 6}, - [2428] = {.lex_state = 328, .external_lex_state = 6}, - [2429] = {.lex_state = 331, .external_lex_state = 3}, - [2430] = {.lex_state = 328, .external_lex_state = 6}, - [2431] = {.lex_state = 328, .external_lex_state = 6}, - [2432] = {.lex_state = 101, .external_lex_state = 3}, - [2433] = {.lex_state = 328, .external_lex_state = 6}, - [2434] = {.lex_state = 328, .external_lex_state = 6}, - [2435] = {.lex_state = 102, .external_lex_state = 3}, - [2436] = {.lex_state = 102, .external_lex_state = 3}, + [2414] = {.lex_state = 329, .external_lex_state = 4}, + [2415] = {.lex_state = 90, .external_lex_state = 3}, + [2416] = {.lex_state = 332, .external_lex_state = 3}, + [2417] = {.lex_state = 332, .external_lex_state = 3}, + [2418] = {.lex_state = 329, .external_lex_state = 6}, + [2419] = {.lex_state = 329, .external_lex_state = 6}, + [2420] = {.lex_state = 90, .external_lex_state = 3}, + [2421] = {.lex_state = 102, .external_lex_state = 3}, + [2422] = {.lex_state = 329, .external_lex_state = 4}, + [2423] = {.lex_state = 90, .external_lex_state = 3}, + [2424] = {.lex_state = 90, .external_lex_state = 3}, + [2425] = {.lex_state = 332, .external_lex_state = 3}, + [2426] = {.lex_state = 90, .external_lex_state = 3}, + [2427] = {.lex_state = 102, .external_lex_state = 3}, + [2428] = {.lex_state = 329, .external_lex_state = 6}, + [2429] = {.lex_state = 329, .external_lex_state = 6}, + [2430] = {.lex_state = 101, .external_lex_state = 3}, + [2431] = {.lex_state = 101, .external_lex_state = 3}, + [2432] = {.lex_state = 102, .external_lex_state = 3}, + [2433] = {.lex_state = 101, .external_lex_state = 3}, + [2434] = {.lex_state = 102, .external_lex_state = 3}, + [2435] = {.lex_state = 90, .external_lex_state = 3}, + [2436] = {.lex_state = 329, .external_lex_state = 4}, [2437] = {.lex_state = 102, .external_lex_state = 3}, - [2438] = {.lex_state = 328, .external_lex_state = 6}, - [2439] = {.lex_state = 331, .external_lex_state = 3}, - [2440] = {.lex_state = 101, .external_lex_state = 3}, - [2441] = {.lex_state = 331, .external_lex_state = 3}, + [2438] = {.lex_state = 329, .external_lex_state = 6}, + [2439] = {.lex_state = 329, .external_lex_state = 6}, + [2440] = {.lex_state = 329, .external_lex_state = 6}, + [2441] = {.lex_state = 101, .external_lex_state = 3}, [2442] = {.lex_state = 102, .external_lex_state = 3}, - [2443] = {.lex_state = 102, .external_lex_state = 3}, - [2444] = {.lex_state = 102, .external_lex_state = 3}, + [2443] = {.lex_state = 329, .external_lex_state = 6}, + [2444] = {.lex_state = 329, .external_lex_state = 6}, [2445] = {.lex_state = 102, .external_lex_state = 3}, - [2446] = {.lex_state = 328, .external_lex_state = 6}, - [2447] = {.lex_state = 328, .external_lex_state = 6}, - [2448] = {.lex_state = 328, .external_lex_state = 6}, - [2449] = {.lex_state = 328, .external_lex_state = 6}, - [2450] = {.lex_state = 338, .external_lex_state = 2}, - [2451] = {.lex_state = 102, .external_lex_state = 3}, - [2452] = {.lex_state = 328, .external_lex_state = 6}, - [2453] = {.lex_state = 328, .external_lex_state = 6}, - [2454] = {.lex_state = 328, .external_lex_state = 6}, - [2455] = {.lex_state = 102, .external_lex_state = 3}, - [2456] = {.lex_state = 328, .external_lex_state = 6}, - [2457] = {.lex_state = 328, .external_lex_state = 6}, - [2458] = {.lex_state = 328, .external_lex_state = 6}, - [2459] = {.lex_state = 328, .external_lex_state = 6}, - [2460] = {.lex_state = 328, .external_lex_state = 6}, - [2461] = {.lex_state = 328, .external_lex_state = 6}, - [2462] = {.lex_state = 328, .external_lex_state = 6}, - [2463] = {.lex_state = 331, .external_lex_state = 3}, - [2464] = {.lex_state = 328, .external_lex_state = 5}, - [2465] = {.lex_state = 331, .external_lex_state = 3}, - [2466] = {.lex_state = 331, .external_lex_state = 3}, - [2467] = {.lex_state = 331, .external_lex_state = 3}, - [2468] = {.lex_state = 328, .external_lex_state = 6}, - [2469] = {.lex_state = 102, .external_lex_state = 3}, - [2470] = {.lex_state = 338, .external_lex_state = 2}, - [2471] = {.lex_state = 328, .external_lex_state = 6}, - [2472] = {.lex_state = 102, .external_lex_state = 3}, + [2446] = {.lex_state = 102, .external_lex_state = 3}, + [2447] = {.lex_state = 101, .external_lex_state = 3}, + [2448] = {.lex_state = 102, .external_lex_state = 3}, + [2449] = {.lex_state = 102, .external_lex_state = 3}, + [2450] = {.lex_state = 329, .external_lex_state = 6}, + [2451] = {.lex_state = 329, .external_lex_state = 6}, + [2452] = {.lex_state = 329, .external_lex_state = 6}, + [2453] = {.lex_state = 101, .external_lex_state = 3}, + [2454] = {.lex_state = 329, .external_lex_state = 6}, + [2455] = {.lex_state = 329, .external_lex_state = 6}, + [2456] = {.lex_state = 329, .external_lex_state = 6}, + [2457] = {.lex_state = 102, .external_lex_state = 3}, + [2458] = {.lex_state = 102, .external_lex_state = 3}, + [2459] = {.lex_state = 339, .external_lex_state = 2}, + [2460] = {.lex_state = 102, .external_lex_state = 3}, + [2461] = {.lex_state = 102, .external_lex_state = 3}, + [2462] = {.lex_state = 101, .external_lex_state = 3}, + [2463] = {.lex_state = 102, .external_lex_state = 3}, + [2464] = {.lex_state = 102, .external_lex_state = 3}, + [2465] = {.lex_state = 329, .external_lex_state = 6}, + [2466] = {.lex_state = 102, .external_lex_state = 3}, + [2467] = {.lex_state = 90, .external_lex_state = 3}, + [2468] = {.lex_state = 329, .external_lex_state = 4}, + [2469] = {.lex_state = 339, .external_lex_state = 2}, + [2470] = {.lex_state = 329, .external_lex_state = 6}, + [2471] = {.lex_state = 102, .external_lex_state = 3}, + [2472] = {.lex_state = 101, .external_lex_state = 3}, [2473] = {.lex_state = 102, .external_lex_state = 3}, - [2474] = {.lex_state = 102, .external_lex_state = 3}, - [2475] = {.lex_state = 102, .external_lex_state = 3}, - [2476] = {.lex_state = 102, .external_lex_state = 3}, - [2477] = {.lex_state = 101, .external_lex_state = 3}, - [2478] = {.lex_state = 338, .external_lex_state = 2}, - [2479] = {.lex_state = 338, .external_lex_state = 2}, - [2480] = {.lex_state = 102, .external_lex_state = 3}, - [2481] = {.lex_state = 102, .external_lex_state = 3}, - [2482] = {.lex_state = 102, .external_lex_state = 3}, - [2483] = {.lex_state = 331, .external_lex_state = 3}, - [2484] = {.lex_state = 102, .external_lex_state = 3}, - [2485] = {.lex_state = 328, .external_lex_state = 6}, - [2486] = {.lex_state = 90, .external_lex_state = 3}, - [2487] = {.lex_state = 328, .external_lex_state = 6}, - [2488] = {.lex_state = 328, .external_lex_state = 6}, + [2474] = {.lex_state = 332, .external_lex_state = 3}, + [2475] = {.lex_state = 329, .external_lex_state = 6}, + [2476] = {.lex_state = 90, .external_lex_state = 3}, + [2477] = {.lex_state = 329, .external_lex_state = 6}, + [2478] = {.lex_state = 329, .external_lex_state = 6}, + [2479] = {.lex_state = 329, .external_lex_state = 6}, + [2480] = {.lex_state = 90, .external_lex_state = 3}, + [2481] = {.lex_state = 142}, + [2482] = {.lex_state = 332, .external_lex_state = 3}, + [2483] = {.lex_state = 329, .external_lex_state = 6}, + [2484] = {.lex_state = 329, .external_lex_state = 6}, + [2485] = {.lex_state = 332, .external_lex_state = 3}, + [2486] = {.lex_state = 329, .external_lex_state = 6}, + [2487] = {.lex_state = 329, .external_lex_state = 6}, + [2488] = {.lex_state = 90, .external_lex_state = 3}, [2489] = {.lex_state = 90, .external_lex_state = 3}, - [2490] = {.lex_state = 102, .external_lex_state = 3}, - [2491] = {.lex_state = 102, .external_lex_state = 3}, - [2492] = {.lex_state = 102, .external_lex_state = 3}, - [2493] = {.lex_state = 102, .external_lex_state = 3}, - [2494] = {.lex_state = 102, .external_lex_state = 3}, - [2495] = {.lex_state = 102, .external_lex_state = 3}, - [2496] = {.lex_state = 102, .external_lex_state = 3}, - [2497] = {.lex_state = 102, .external_lex_state = 3}, - [2498] = {.lex_state = 102, .external_lex_state = 3}, - [2499] = {.lex_state = 102, .external_lex_state = 3}, - [2500] = {.lex_state = 102, .external_lex_state = 3}, - [2501] = {.lex_state = 102, .external_lex_state = 3}, - [2502] = {.lex_state = 90, .external_lex_state = 3}, - [2503] = {.lex_state = 102, .external_lex_state = 3}, - [2504] = {.lex_state = 102, .external_lex_state = 3}, - [2505] = {.lex_state = 102, .external_lex_state = 3}, - [2506] = {.lex_state = 102, .external_lex_state = 3}, - [2507] = {.lex_state = 102, .external_lex_state = 3}, - [2508] = {.lex_state = 331, .external_lex_state = 3}, - [2509] = {.lex_state = 101, .external_lex_state = 3}, + [2490] = {.lex_state = 90, .external_lex_state = 3}, + [2491] = {.lex_state = 329, .external_lex_state = 6}, + [2492] = {.lex_state = 329, .external_lex_state = 6}, + [2493] = {.lex_state = 90, .external_lex_state = 3}, + [2494] = {.lex_state = 90, .external_lex_state = 3}, + [2495] = {.lex_state = 329, .external_lex_state = 6}, + [2496] = {.lex_state = 329, .external_lex_state = 6}, + [2497] = {.lex_state = 332, .external_lex_state = 3}, + [2498] = {.lex_state = 332, .external_lex_state = 3}, + [2499] = {.lex_state = 90, .external_lex_state = 3}, + [2500] = {.lex_state = 90, .external_lex_state = 3}, + [2501] = {.lex_state = 332, .external_lex_state = 3}, + [2502] = {.lex_state = 329, .external_lex_state = 6}, + [2503] = {.lex_state = 90, .external_lex_state = 3}, + [2504] = {.lex_state = 90, .external_lex_state = 3}, + [2505] = {.lex_state = 90, .external_lex_state = 3}, + [2506] = {.lex_state = 90, .external_lex_state = 3}, + [2507] = {.lex_state = 90, .external_lex_state = 3}, + [2508] = {.lex_state = 90, .external_lex_state = 3}, + [2509] = {.lex_state = 102, .external_lex_state = 3}, [2510] = {.lex_state = 90, .external_lex_state = 3}, [2511] = {.lex_state = 90, .external_lex_state = 3}, - [2512] = {.lex_state = 90, .external_lex_state = 3}, - [2513] = {.lex_state = 90, .external_lex_state = 3}, - [2514] = {.lex_state = 90, .external_lex_state = 3}, - [2515] = {.lex_state = 90, .external_lex_state = 3}, + [2512] = {.lex_state = 102, .external_lex_state = 3}, + [2513] = {.lex_state = 142}, + [2514] = {.lex_state = 102, .external_lex_state = 3}, + [2515] = {.lex_state = 102, .external_lex_state = 3}, [2516] = {.lex_state = 90, .external_lex_state = 3}, - [2517] = {.lex_state = 90, .external_lex_state = 3}, + [2517] = {.lex_state = 102, .external_lex_state = 3}, [2518] = {.lex_state = 102, .external_lex_state = 3}, [2519] = {.lex_state = 90, .external_lex_state = 3}, - [2520] = {.lex_state = 142, .external_lex_state = 14}, + [2520] = {.lex_state = 102, .external_lex_state = 3}, [2521] = {.lex_state = 90, .external_lex_state = 3}, [2522] = {.lex_state = 102, .external_lex_state = 3}, [2523] = {.lex_state = 90, .external_lex_state = 3}, [2524] = {.lex_state = 90, .external_lex_state = 3}, - [2525] = {.lex_state = 90, .external_lex_state = 3}, + [2525] = {.lex_state = 102, .external_lex_state = 3}, [2526] = {.lex_state = 90, .external_lex_state = 3}, [2527] = {.lex_state = 90, .external_lex_state = 3}, [2528] = {.lex_state = 90, .external_lex_state = 3}, - [2529] = {.lex_state = 101, .external_lex_state = 3}, + [2529] = {.lex_state = 102, .external_lex_state = 3}, [2530] = {.lex_state = 102, .external_lex_state = 3}, [2531] = {.lex_state = 90, .external_lex_state = 3}, - [2532] = {.lex_state = 328, .external_lex_state = 6}, - [2533] = {.lex_state = 90, .external_lex_state = 3}, - [2534] = {.lex_state = 90, .external_lex_state = 3}, - [2535] = {.lex_state = 90, .external_lex_state = 3}, + [2532] = {.lex_state = 90, .external_lex_state = 3}, + [2533] = {.lex_state = 102, .external_lex_state = 3}, + [2534] = {.lex_state = 102, .external_lex_state = 3}, + [2535] = {.lex_state = 102, .external_lex_state = 3}, [2536] = {.lex_state = 90, .external_lex_state = 3}, - [2537] = {.lex_state = 90, .external_lex_state = 3}, - [2538] = {.lex_state = 102, .external_lex_state = 3}, + [2537] = {.lex_state = 102, .external_lex_state = 3}, + [2538] = {.lex_state = 90, .external_lex_state = 3}, [2539] = {.lex_state = 90, .external_lex_state = 3}, - [2540] = {.lex_state = 337, .external_lex_state = 2}, - [2541] = {.lex_state = 337, .external_lex_state = 2}, - [2542] = {.lex_state = 162}, - [2543] = {.lex_state = 162}, - [2544] = {.lex_state = 142}, - [2545] = {.lex_state = 162}, - [2546] = {.lex_state = 338, .external_lex_state = 2}, - [2547] = {.lex_state = 142, .external_lex_state = 14}, - [2548] = {.lex_state = 162}, - [2549] = {.lex_state = 338, .external_lex_state = 2}, - [2550] = {.lex_state = 162}, - [2551] = {.lex_state = 338, .external_lex_state = 2}, - [2552] = {.lex_state = 162}, - [2553] = {.lex_state = 162}, - [2554] = {.lex_state = 162}, - [2555] = {.lex_state = 150}, - [2556] = {.lex_state = 338, .external_lex_state = 2}, + [2540] = {.lex_state = 90, .external_lex_state = 3}, + [2541] = {.lex_state = 329, .external_lex_state = 4}, + [2542] = {.lex_state = 90, .external_lex_state = 3}, + [2543] = {.lex_state = 102, .external_lex_state = 3}, + [2544] = {.lex_state = 90, .external_lex_state = 3}, + [2545] = {.lex_state = 90, .external_lex_state = 3}, + [2546] = {.lex_state = 90, .external_lex_state = 3}, + [2547] = {.lex_state = 329, .external_lex_state = 6}, + [2548] = {.lex_state = 102, .external_lex_state = 3}, + [2549] = {.lex_state = 90, .external_lex_state = 3}, + [2550] = {.lex_state = 90, .external_lex_state = 3}, + [2551] = {.lex_state = 162}, + [2552] = {.lex_state = 339, .external_lex_state = 2}, + [2553] = {.lex_state = 339, .external_lex_state = 2}, + [2554] = {.lex_state = 339, .external_lex_state = 2}, + [2555] = {.lex_state = 162}, + [2556] = {.lex_state = 162}, [2557] = {.lex_state = 162}, [2558] = {.lex_state = 162}, - [2559] = {.lex_state = 337, .external_lex_state = 2}, - [2560] = {.lex_state = 162}, - [2561] = {.lex_state = 162}, - [2562] = {.lex_state = 338, .external_lex_state = 2}, - [2563] = {.lex_state = 162}, - [2564] = {.lex_state = 142}, - [2565] = {.lex_state = 338, .external_lex_state = 2}, - [2566] = {.lex_state = 338, .external_lex_state = 2}, + [2559] = {.lex_state = 162}, + [2560] = {.lex_state = 339, .external_lex_state = 2}, + [2561] = {.lex_state = 339, .external_lex_state = 2}, + [2562] = {.lex_state = 162}, + [2563] = {.lex_state = 338, .external_lex_state = 2}, + [2564] = {.lex_state = 162}, + [2565] = {.lex_state = 162}, + [2566] = {.lex_state = 162}, [2567] = {.lex_state = 162}, [2568] = {.lex_state = 162}, [2569] = {.lex_state = 162}, [2570] = {.lex_state = 162}, - [2571] = {.lex_state = 162}, + [2571] = {.lex_state = 339, .external_lex_state = 2}, [2572] = {.lex_state = 162}, [2573] = {.lex_state = 162}, [2574] = {.lex_state = 162}, - [2575] = {.lex_state = 162}, - [2576] = {.lex_state = 162}, - [2577] = {.lex_state = 156}, + [2575] = {.lex_state = 142, .external_lex_state = 14}, + [2576] = {.lex_state = 142}, + [2577] = {.lex_state = 162}, [2578] = {.lex_state = 162}, - [2579] = {.lex_state = 162}, + [2579] = {.lex_state = 156}, [2580] = {.lex_state = 162}, [2581] = {.lex_state = 162}, - [2582] = {.lex_state = 338, .external_lex_state = 2}, + [2582] = {.lex_state = 162}, [2583] = {.lex_state = 162}, [2584] = {.lex_state = 162}, - [2585] = {.lex_state = 162}, + [2585] = {.lex_state = 338, .external_lex_state = 2}, [2586] = {.lex_state = 162}, - [2587] = {.lex_state = 162}, + [2587] = {.lex_state = 339, .external_lex_state = 2}, [2588] = {.lex_state = 338, .external_lex_state = 2}, - [2589] = {.lex_state = 142}, - [2590] = {.lex_state = 142}, - [2591] = {.lex_state = 338, .external_lex_state = 2}, - [2592] = {.lex_state = 162}, - [2593] = {.lex_state = 162}, + [2589] = {.lex_state = 339, .external_lex_state = 2}, + [2590] = {.lex_state = 162}, + [2591] = {.lex_state = 162}, + [2592] = {.lex_state = 142}, + [2593] = {.lex_state = 142}, [2594] = {.lex_state = 162}, [2595] = {.lex_state = 162}, - [2596] = {.lex_state = 338, .external_lex_state = 2}, - [2597] = {.lex_state = 338, .external_lex_state = 2}, - [2598] = {.lex_state = 338, .external_lex_state = 2}, - [2599] = {.lex_state = 338, .external_lex_state = 2}, - [2600] = {.lex_state = 162}, - [2601] = {.lex_state = 338, .external_lex_state = 2}, + [2596] = {.lex_state = 339, .external_lex_state = 2}, + [2597] = {.lex_state = 162}, + [2598] = {.lex_state = 162}, + [2599] = {.lex_state = 162}, + [2600] = {.lex_state = 142}, + [2601] = {.lex_state = 162}, [2602] = {.lex_state = 162}, [2603] = {.lex_state = 162}, - [2604] = {.lex_state = 162}, - [2605] = {.lex_state = 338, .external_lex_state = 2}, - [2606] = {.lex_state = 162}, + [2604] = {.lex_state = 150}, + [2605] = {.lex_state = 162}, + [2606] = {.lex_state = 339, .external_lex_state = 2}, [2607] = {.lex_state = 162}, - [2608] = {.lex_state = 162}, - [2609] = {.lex_state = 338, .external_lex_state = 2}, - [2610] = {.lex_state = 338, .external_lex_state = 2}, - [2611] = {.lex_state = 162}, - [2612] = {.lex_state = 162}, - [2613] = {.lex_state = 338, .external_lex_state = 2}, - [2614] = {.lex_state = 156}, - [2615] = {.lex_state = 162}, + [2608] = {.lex_state = 339, .external_lex_state = 2}, + [2609] = {.lex_state = 339, .external_lex_state = 2}, + [2610] = {.lex_state = 162}, + [2611] = {.lex_state = 142}, + [2612] = {.lex_state = 339, .external_lex_state = 2}, + [2613] = {.lex_state = 339, .external_lex_state = 2}, + [2614] = {.lex_state = 339, .external_lex_state = 2}, + [2615] = {.lex_state = 339, .external_lex_state = 2}, [2616] = {.lex_state = 162}, - [2617] = {.lex_state = 142}, - [2618] = {.lex_state = 338, .external_lex_state = 2}, - [2619] = {.lex_state = 142}, - [2620] = {.lex_state = 338, .external_lex_state = 2}, - [2621] = {.lex_state = 338, .external_lex_state = 2}, + [2617] = {.lex_state = 162}, + [2618] = {.lex_state = 162}, + [2619] = {.lex_state = 162}, + [2620] = {.lex_state = 162}, + [2621] = {.lex_state = 339, .external_lex_state = 2}, [2622] = {.lex_state = 162}, - [2623] = {.lex_state = 162}, - [2624] = {.lex_state = 162}, - [2625] = {.lex_state = 162}, + [2623] = {.lex_state = 339, .external_lex_state = 2}, + [2624] = {.lex_state = 339, .external_lex_state = 2}, + [2625] = {.lex_state = 142}, [2626] = {.lex_state = 162}, [2627] = {.lex_state = 162}, - [2628] = {.lex_state = 162}, + [2628] = {.lex_state = 339, .external_lex_state = 2}, [2629] = {.lex_state = 162}, - [2630] = {.lex_state = 162}, - [2631] = {.lex_state = 162}, - [2632] = {.lex_state = 162}, - [2633] = {.lex_state = 162}, + [2630] = {.lex_state = 339, .external_lex_state = 2}, + [2631] = {.lex_state = 156}, + [2632] = {.lex_state = 339, .external_lex_state = 2}, + [2633] = {.lex_state = 339, .external_lex_state = 2}, [2634] = {.lex_state = 162}, [2635] = {.lex_state = 162}, [2636] = {.lex_state = 162}, @@ -24116,118 +24293,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2704] = {.lex_state = 162}, [2705] = {.lex_state = 162}, [2706] = {.lex_state = 162}, - [2707] = {.lex_state = 337, .external_lex_state = 2}, - [2708] = {.lex_state = 337, .external_lex_state = 2}, + [2707] = {.lex_state = 162}, + [2708] = {.lex_state = 162}, [2709] = {.lex_state = 162}, - [2710] = {.lex_state = 137, .external_lex_state = 2}, + [2710] = {.lex_state = 162}, [2711] = {.lex_state = 162}, [2712] = {.lex_state = 162}, - [2713] = {.lex_state = 337, .external_lex_state = 2}, + [2713] = {.lex_state = 162}, [2714] = {.lex_state = 162}, - [2715] = {.lex_state = 337, .external_lex_state = 2}, - [2716] = {.lex_state = 337, .external_lex_state = 2}, + [2715] = {.lex_state = 162}, + [2716] = {.lex_state = 162}, [2717] = {.lex_state = 162}, - [2718] = {.lex_state = 162}, - [2719] = {.lex_state = 337, .external_lex_state = 2}, - [2720] = {.lex_state = 337, .external_lex_state = 2}, + [2718] = {.lex_state = 338, .external_lex_state = 2}, + [2719] = {.lex_state = 162}, + [2720] = {.lex_state = 162}, [2721] = {.lex_state = 162}, [2722] = {.lex_state = 162}, [2723] = {.lex_state = 162}, - [2724] = {.lex_state = 337, .external_lex_state = 2}, - [2725] = {.lex_state = 162}, - [2726] = {.lex_state = 337, .external_lex_state = 2}, - [2727] = {.lex_state = 337, .external_lex_state = 2}, - [2728] = {.lex_state = 337, .external_lex_state = 2}, - [2729] = {.lex_state = 337, .external_lex_state = 2}, - [2730] = {.lex_state = 337, .external_lex_state = 2}, - [2731] = {.lex_state = 337, .external_lex_state = 2}, - [2732] = {.lex_state = 337, .external_lex_state = 2}, - [2733] = {.lex_state = 162}, + [2724] = {.lex_state = 162}, + [2725] = {.lex_state = 137, .external_lex_state = 2}, + [2726] = {.lex_state = 162}, + [2727] = {.lex_state = 162}, + [2728] = {.lex_state = 338, .external_lex_state = 2}, + [2729] = {.lex_state = 338, .external_lex_state = 2}, + [2730] = {.lex_state = 162}, + [2731] = {.lex_state = 162}, + [2732] = {.lex_state = 338, .external_lex_state = 2}, + [2733] = {.lex_state = 338, .external_lex_state = 2}, [2734] = {.lex_state = 162}, - [2735] = {.lex_state = 337, .external_lex_state = 2}, - [2736] = {.lex_state = 162}, - [2737] = {.lex_state = 162}, - [2738] = {.lex_state = 162}, + [2735] = {.lex_state = 162}, + [2736] = {.lex_state = 338, .external_lex_state = 2}, + [2737] = {.lex_state = 338, .external_lex_state = 2}, + [2738] = {.lex_state = 338, .external_lex_state = 2}, [2739] = {.lex_state = 162}, - [2740] = {.lex_state = 337, .external_lex_state = 2}, - [2741] = {.lex_state = 162}, - [2742] = {.lex_state = 162}, + [2740] = {.lex_state = 338, .external_lex_state = 2}, + [2741] = {.lex_state = 338, .external_lex_state = 2}, + [2742] = {.lex_state = 338, .external_lex_state = 2}, [2743] = {.lex_state = 162}, - [2744] = {.lex_state = 162}, - [2745] = {.lex_state = 337, .external_lex_state = 2}, - [2746] = {.lex_state = 337, .external_lex_state = 2}, - [2747] = {.lex_state = 337, .external_lex_state = 2}, + [2744] = {.lex_state = 338, .external_lex_state = 2}, + [2745] = {.lex_state = 338, .external_lex_state = 2}, + [2746] = {.lex_state = 338, .external_lex_state = 2}, + [2747] = {.lex_state = 338, .external_lex_state = 2}, [2748] = {.lex_state = 162}, - [2749] = {.lex_state = 162}, + [2749] = {.lex_state = 338, .external_lex_state = 2}, [2750] = {.lex_state = 162}, - [2751] = {.lex_state = 337, .external_lex_state = 2}, - [2752] = {.lex_state = 337, .external_lex_state = 2}, - [2753] = {.lex_state = 337, .external_lex_state = 2}, + [2751] = {.lex_state = 338, .external_lex_state = 2}, + [2752] = {.lex_state = 338, .external_lex_state = 2}, + [2753] = {.lex_state = 162}, [2754] = {.lex_state = 162}, - [2755] = {.lex_state = 337, .external_lex_state = 2}, - [2756] = {.lex_state = 162}, - [2757] = {.lex_state = 162}, - [2758] = {.lex_state = 337, .external_lex_state = 2}, - [2759] = {.lex_state = 162}, + [2755] = {.lex_state = 162}, + [2756] = {.lex_state = 338, .external_lex_state = 2}, + [2757] = {.lex_state = 338, .external_lex_state = 2}, + [2758] = {.lex_state = 338, .external_lex_state = 2}, + [2759] = {.lex_state = 338, .external_lex_state = 2}, [2760] = {.lex_state = 162}, [2761] = {.lex_state = 162}, - [2762] = {.lex_state = 337, .external_lex_state = 2}, - [2763] = {.lex_state = 337, .external_lex_state = 2}, - [2764] = {.lex_state = 337, .external_lex_state = 2}, + [2762] = {.lex_state = 338, .external_lex_state = 2}, + [2763] = {.lex_state = 162}, + [2764] = {.lex_state = 162}, [2765] = {.lex_state = 162}, - [2766] = {.lex_state = 337, .external_lex_state = 2}, + [2766] = {.lex_state = 162}, [2767] = {.lex_state = 162}, [2768] = {.lex_state = 162}, [2769] = {.lex_state = 162}, - [2770] = {.lex_state = 337, .external_lex_state = 2}, + [2770] = {.lex_state = 162}, [2771] = {.lex_state = 162}, [2772] = {.lex_state = 162}, - [2773] = {.lex_state = 337, .external_lex_state = 2}, + [2773] = {.lex_state = 338, .external_lex_state = 2}, [2774] = {.lex_state = 162}, - [2775] = {.lex_state = 337, .external_lex_state = 2}, - [2776] = {.lex_state = 337, .external_lex_state = 2}, + [2775] = {.lex_state = 162}, + [2776] = {.lex_state = 338, .external_lex_state = 2}, [2777] = {.lex_state = 162}, - [2778] = {.lex_state = 162}, + [2778] = {.lex_state = 338, .external_lex_state = 2}, [2779] = {.lex_state = 162}, [2780] = {.lex_state = 162}, - [2781] = {.lex_state = 162}, - [2782] = {.lex_state = 162}, - [2783] = {.lex_state = 162}, - [2784] = {.lex_state = 337, .external_lex_state = 2}, - [2785] = {.lex_state = 337, .external_lex_state = 2}, - [2786] = {.lex_state = 337, .external_lex_state = 2}, - [2787] = {.lex_state = 337, .external_lex_state = 2}, - [2788] = {.lex_state = 337, .external_lex_state = 2}, - [2789] = {.lex_state = 162}, - [2790] = {.lex_state = 162}, + [2781] = {.lex_state = 162, .external_lex_state = 15}, + [2782] = {.lex_state = 338, .external_lex_state = 2}, + [2783] = {.lex_state = 338, .external_lex_state = 2}, + [2784] = {.lex_state = 162}, + [2785] = {.lex_state = 162}, + [2786] = {.lex_state = 162}, + [2787] = {.lex_state = 338, .external_lex_state = 2}, + [2788] = {.lex_state = 338, .external_lex_state = 2}, + [2789] = {.lex_state = 338, .external_lex_state = 2}, + [2790] = {.lex_state = 338, .external_lex_state = 2}, [2791] = {.lex_state = 162}, - [2792] = {.lex_state = 337, .external_lex_state = 2}, - [2793] = {.lex_state = 162}, - [2794] = {.lex_state = 162}, + [2792] = {.lex_state = 338, .external_lex_state = 2}, + [2793] = {.lex_state = 338, .external_lex_state = 2}, + [2794] = {.lex_state = 338, .external_lex_state = 2}, [2795] = {.lex_state = 162}, [2796] = {.lex_state = 162}, - [2797] = {.lex_state = 162}, - [2798] = {.lex_state = 162, .external_lex_state = 15}, - [2799] = {.lex_state = 162}, - [2800] = {.lex_state = 162}, - [2801] = {.lex_state = 337, .external_lex_state = 2}, + [2797] = {.lex_state = 338, .external_lex_state = 2}, + [2798] = {.lex_state = 162}, + [2799] = {.lex_state = 338, .external_lex_state = 2}, + [2800] = {.lex_state = 338, .external_lex_state = 2}, + [2801] = {.lex_state = 162}, [2802] = {.lex_state = 162}, - [2803] = {.lex_state = 337, .external_lex_state = 2}, + [2803] = {.lex_state = 162}, [2804] = {.lex_state = 162}, [2805] = {.lex_state = 162}, [2806] = {.lex_state = 162}, - [2807] = {.lex_state = 162}, + [2807] = {.lex_state = 338, .external_lex_state = 2}, [2808] = {.lex_state = 162}, [2809] = {.lex_state = 162}, - [2810] = {.lex_state = 162}, - [2811] = {.lex_state = 337, .external_lex_state = 2}, - [2812] = {.lex_state = 337, .external_lex_state = 2}, + [2810] = {.lex_state = 338, .external_lex_state = 2}, + [2811] = {.lex_state = 338, .external_lex_state = 2}, + [2812] = {.lex_state = 162}, [2813] = {.lex_state = 162}, - [2814] = {.lex_state = 337, .external_lex_state = 2}, + [2814] = {.lex_state = 162}, [2815] = {.lex_state = 162}, - [2816] = {.lex_state = 162}, + [2816] = {.lex_state = 338, .external_lex_state = 2}, [2817] = {.lex_state = 162}, - [2818] = {.lex_state = 162}, + [2818] = {.lex_state = 338, .external_lex_state = 2}, [2819] = {.lex_state = 162}, [2820] = {.lex_state = 162}, [2821] = {.lex_state = 162}, @@ -24236,8 +24413,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2824] = {.lex_state = 162}, [2825] = {.lex_state = 162}, [2826] = {.lex_state = 162}, - [2827] = {.lex_state = 162}, - [2828] = {.lex_state = 338, .external_lex_state = 2}, + [2827] = {.lex_state = 338, .external_lex_state = 2}, + [2828] = {.lex_state = 162}, [2829] = {.lex_state = 162}, [2830] = {.lex_state = 162}, [2831] = {.lex_state = 162}, @@ -24252,11 +24429,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2840] = {.lex_state = 162}, [2841] = {.lex_state = 162}, [2842] = {.lex_state = 162}, - [2843] = {.lex_state = 338, .external_lex_state = 2}, + [2843] = {.lex_state = 162}, [2844] = {.lex_state = 162}, [2845] = {.lex_state = 162}, [2846] = {.lex_state = 162}, - [2847] = {.lex_state = 162}, + [2847] = {.lex_state = 138, .external_lex_state = 2}, [2848] = {.lex_state = 162}, [2849] = {.lex_state = 162}, [2850] = {.lex_state = 162}, @@ -24284,7 +24461,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2872] = {.lex_state = 162}, [2873] = {.lex_state = 162}, [2874] = {.lex_state = 162}, - [2875] = {.lex_state = 162}, + [2875] = {.lex_state = 339, .external_lex_state = 2}, [2876] = {.lex_state = 162}, [2877] = {.lex_state = 162}, [2878] = {.lex_state = 162}, @@ -24304,1021 +24481,1021 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2892] = {.lex_state = 162}, [2893] = {.lex_state = 162}, [2894] = {.lex_state = 162}, - [2895] = {.lex_state = 162}, + [2895] = {.lex_state = 339, .external_lex_state = 2}, [2896] = {.lex_state = 162}, [2897] = {.lex_state = 162}, [2898] = {.lex_state = 162}, - [2899] = {.lex_state = 138, .external_lex_state = 2}, + [2899] = {.lex_state = 162}, [2900] = {.lex_state = 162}, [2901] = {.lex_state = 162}, [2902] = {.lex_state = 162}, - [2903] = {.lex_state = 337, .external_lex_state = 2}, - [2904] = {.lex_state = 337, .external_lex_state = 2}, - [2905] = {.lex_state = 337, .external_lex_state = 2}, - [2906] = {.lex_state = 337, .external_lex_state = 2}, - [2907] = {.lex_state = 337, .external_lex_state = 2}, - [2908] = {.lex_state = 337, .external_lex_state = 2}, - [2909] = {.lex_state = 337, .external_lex_state = 2}, - [2910] = {.lex_state = 339, .external_lex_state = 2}, - [2911] = {.lex_state = 136, .external_lex_state = 2}, - [2912] = {.lex_state = 136, .external_lex_state = 2}, - [2913] = {.lex_state = 136, .external_lex_state = 2}, - [2914] = {.lex_state = 337, .external_lex_state = 2}, - [2915] = {.lex_state = 136, .external_lex_state = 2}, - [2916] = {.lex_state = 337, .external_lex_state = 2}, - [2917] = {.lex_state = 136, .external_lex_state = 2}, - [2918] = {.lex_state = 136, .external_lex_state = 2}, - [2919] = {.lex_state = 338, .external_lex_state = 3}, - [2920] = {.lex_state = 338, .external_lex_state = 3}, - [2921] = {.lex_state = 338, .external_lex_state = 3}, - [2922] = {.lex_state = 136, .external_lex_state = 2}, - [2923] = {.lex_state = 338, .external_lex_state = 3}, - [2924] = {.lex_state = 338, .external_lex_state = 3}, - [2925] = {.lex_state = 338, .external_lex_state = 3}, - [2926] = {.lex_state = 337, .external_lex_state = 2}, - [2927] = {.lex_state = 338, .external_lex_state = 3}, - [2928] = {.lex_state = 339, .external_lex_state = 2}, - [2929] = {.lex_state = 339, .external_lex_state = 2}, - [2930] = {.lex_state = 339, .external_lex_state = 2}, - [2931] = {.lex_state = 339, .external_lex_state = 2}, - [2932] = {.lex_state = 339, .external_lex_state = 2}, - [2933] = {.lex_state = 339, .external_lex_state = 2}, - [2934] = {.lex_state = 337, .external_lex_state = 2}, - [2935] = {.lex_state = 337, .external_lex_state = 2}, - [2936] = {.lex_state = 338, .external_lex_state = 3}, - [2937] = {.lex_state = 337, .external_lex_state = 2}, - [2938] = {.lex_state = 337, .external_lex_state = 2}, - [2939] = {.lex_state = 142}, - [2940] = {.lex_state = 337, .external_lex_state = 2}, - [2941] = {.lex_state = 337, .external_lex_state = 2}, - [2942] = {.lex_state = 337, .external_lex_state = 2}, - [2943] = {.lex_state = 337, .external_lex_state = 2}, - [2944] = {.lex_state = 142}, - [2945] = {.lex_state = 337, .external_lex_state = 2}, - [2946] = {.lex_state = 337, .external_lex_state = 2}, - [2947] = {.lex_state = 337, .external_lex_state = 2}, - [2948] = {.lex_state = 136, .external_lex_state = 2}, - [2949] = {.lex_state = 337, .external_lex_state = 2}, - [2950] = {.lex_state = 338, .external_lex_state = 3}, - [2951] = {.lex_state = 136, .external_lex_state = 2}, - [2952] = {.lex_state = 337, .external_lex_state = 2}, - [2953] = {.lex_state = 337, .external_lex_state = 2}, - [2954] = {.lex_state = 338, .external_lex_state = 7}, - [2955] = {.lex_state = 338, .external_lex_state = 3}, - [2956] = {.lex_state = 338, .external_lex_state = 7}, - [2957] = {.lex_state = 338, .external_lex_state = 7}, - [2958] = {.lex_state = 338, .external_lex_state = 7}, - [2959] = {.lex_state = 338, .external_lex_state = 7}, - [2960] = {.lex_state = 338, .external_lex_state = 7}, - [2961] = {.lex_state = 337, .external_lex_state = 2}, - [2962] = {.lex_state = 337, .external_lex_state = 2}, - [2963] = {.lex_state = 338, .external_lex_state = 3}, - [2964] = {.lex_state = 337, .external_lex_state = 2}, - [2965] = {.lex_state = 338, .external_lex_state = 7}, - [2966] = {.lex_state = 337, .external_lex_state = 2}, - [2967] = {.lex_state = 337, .external_lex_state = 2}, - [2968] = {.lex_state = 337, .external_lex_state = 2}, - [2969] = {.lex_state = 337, .external_lex_state = 2}, - [2970] = {.lex_state = 337, .external_lex_state = 2}, - [2971] = {.lex_state = 337, .external_lex_state = 2}, - [2972] = {.lex_state = 339, .external_lex_state = 2}, - [2973] = {.lex_state = 136, .external_lex_state = 2}, - [2974] = {.lex_state = 136, .external_lex_state = 2}, - [2975] = {.lex_state = 338, .external_lex_state = 3}, - [2976] = {.lex_state = 136, .external_lex_state = 2}, + [2903] = {.lex_state = 162}, + [2904] = {.lex_state = 162}, + [2905] = {.lex_state = 162}, + [2906] = {.lex_state = 162}, + [2907] = {.lex_state = 162}, + [2908] = {.lex_state = 162}, + [2909] = {.lex_state = 162}, + [2910] = {.lex_state = 162}, + [2911] = {.lex_state = 162}, + [2912] = {.lex_state = 162}, + [2913] = {.lex_state = 162}, + [2914] = {.lex_state = 162}, + [2915] = {.lex_state = 338, .external_lex_state = 2}, + [2916] = {.lex_state = 338, .external_lex_state = 2}, + [2917] = {.lex_state = 338, .external_lex_state = 2}, + [2918] = {.lex_state = 338, .external_lex_state = 2}, + [2919] = {.lex_state = 338, .external_lex_state = 2}, + [2920] = {.lex_state = 338, .external_lex_state = 2}, + [2921] = {.lex_state = 338, .external_lex_state = 2}, + [2922] = {.lex_state = 340, .external_lex_state = 2}, + [2923] = {.lex_state = 136, .external_lex_state = 2}, + [2924] = {.lex_state = 338, .external_lex_state = 2}, + [2925] = {.lex_state = 340, .external_lex_state = 2}, + [2926] = {.lex_state = 340, .external_lex_state = 2}, + [2927] = {.lex_state = 340, .external_lex_state = 2}, + [2928] = {.lex_state = 136, .external_lex_state = 2}, + [2929] = {.lex_state = 136, .external_lex_state = 2}, + [2930] = {.lex_state = 136, .external_lex_state = 2}, + [2931] = {.lex_state = 340, .external_lex_state = 2}, + [2932] = {.lex_state = 338, .external_lex_state = 2}, + [2933] = {.lex_state = 338, .external_lex_state = 2}, + [2934] = {.lex_state = 339, .external_lex_state = 3}, + [2935] = {.lex_state = 339, .external_lex_state = 3}, + [2936] = {.lex_state = 339, .external_lex_state = 3}, + [2937] = {.lex_state = 340, .external_lex_state = 2}, + [2938] = {.lex_state = 136, .external_lex_state = 2}, + [2939] = {.lex_state = 340, .external_lex_state = 2}, + [2940] = {.lex_state = 339, .external_lex_state = 3}, + [2941] = {.lex_state = 339, .external_lex_state = 3}, + [2942] = {.lex_state = 136, .external_lex_state = 2}, + [2943] = {.lex_state = 339, .external_lex_state = 3}, + [2944] = {.lex_state = 136, .external_lex_state = 2}, + [2945] = {.lex_state = 339, .external_lex_state = 3}, + [2946] = {.lex_state = 338, .external_lex_state = 2}, + [2947] = {.lex_state = 169}, + [2948] = {.lex_state = 169}, + [2949] = {.lex_state = 340, .external_lex_state = 2}, + [2950] = {.lex_state = 169}, + [2951] = {.lex_state = 169}, + [2952] = {.lex_state = 338, .external_lex_state = 2}, + [2953] = {.lex_state = 136, .external_lex_state = 2}, + [2954] = {.lex_state = 169}, + [2955] = {.lex_state = 338, .external_lex_state = 2}, + [2956] = {.lex_state = 136, .external_lex_state = 2}, + [2957] = {.lex_state = 338, .external_lex_state = 2}, + [2958] = {.lex_state = 169}, + [2959] = {.lex_state = 169}, + [2960] = {.lex_state = 169}, + [2961] = {.lex_state = 169}, + [2962] = {.lex_state = 169}, + [2963] = {.lex_state = 338, .external_lex_state = 2}, + [2964] = {.lex_state = 339, .external_lex_state = 3}, + [2965] = {.lex_state = 169}, + [2966] = {.lex_state = 169}, + [2967] = {.lex_state = 339, .external_lex_state = 7}, + [2968] = {.lex_state = 338, .external_lex_state = 2}, + [2969] = {.lex_state = 339, .external_lex_state = 7}, + [2970] = {.lex_state = 339, .external_lex_state = 7}, + [2971] = {.lex_state = 339, .external_lex_state = 7}, + [2972] = {.lex_state = 339, .external_lex_state = 3}, + [2973] = {.lex_state = 169}, + [2974] = {.lex_state = 338, .external_lex_state = 2}, + [2975] = {.lex_state = 169}, + [2976] = {.lex_state = 169}, [2977] = {.lex_state = 338, .external_lex_state = 2}, - [2978] = {.lex_state = 337, .external_lex_state = 2}, - [2979] = {.lex_state = 136, .external_lex_state = 2}, - [2980] = {.lex_state = 337, .external_lex_state = 2}, - [2981] = {.lex_state = 337, .external_lex_state = 2}, - [2982] = {.lex_state = 337, .external_lex_state = 2}, - [2983] = {.lex_state = 338, .external_lex_state = 7}, - [2984] = {.lex_state = 338, .external_lex_state = 7}, - [2985] = {.lex_state = 337, .external_lex_state = 2}, - [2986] = {.lex_state = 338, .external_lex_state = 3}, - [2987] = {.lex_state = 338, .external_lex_state = 7}, - [2988] = {.lex_state = 136, .external_lex_state = 2}, - [2989] = {.lex_state = 338, .external_lex_state = 2}, - [2990] = {.lex_state = 337, .external_lex_state = 2}, + [2978] = {.lex_state = 142}, + [2979] = {.lex_state = 338, .external_lex_state = 2}, + [2980] = {.lex_state = 169}, + [2981] = {.lex_state = 169}, + [2982] = {.lex_state = 338, .external_lex_state = 2}, + [2983] = {.lex_state = 169}, + [2984] = {.lex_state = 169}, + [2985] = {.lex_state = 338, .external_lex_state = 2}, + [2986] = {.lex_state = 169}, + [2987] = {.lex_state = 169}, + [2988] = {.lex_state = 169}, + [2989] = {.lex_state = 169}, + [2990] = {.lex_state = 338, .external_lex_state = 2}, [2991] = {.lex_state = 136, .external_lex_state = 2}, - [2992] = {.lex_state = 338, .external_lex_state = 3}, - [2993] = {.lex_state = 136, .external_lex_state = 2}, + [2992] = {.lex_state = 338, .external_lex_state = 2}, + [2993] = {.lex_state = 169}, [2994] = {.lex_state = 338, .external_lex_state = 2}, - [2995] = {.lex_state = 136, .external_lex_state = 2}, - [2996] = {.lex_state = 337, .external_lex_state = 2}, - [2997] = {.lex_state = 338, .external_lex_state = 3}, - [2998] = {.lex_state = 338, .external_lex_state = 3}, - [2999] = {.lex_state = 337, .external_lex_state = 2}, - [3000] = {.lex_state = 337, .external_lex_state = 2}, - [3001] = {.lex_state = 338, .external_lex_state = 2}, - [3002] = {.lex_state = 338, .external_lex_state = 7}, - [3003] = {.lex_state = 338, .external_lex_state = 2}, - [3004] = {.lex_state = 337, .external_lex_state = 2}, - [3005] = {.lex_state = 338, .external_lex_state = 3}, - [3006] = {.lex_state = 338, .external_lex_state = 7}, - [3007] = {.lex_state = 338, .external_lex_state = 2}, - [3008] = {.lex_state = 338, .external_lex_state = 2}, - [3009] = {.lex_state = 169}, - [3010] = {.lex_state = 169}, - [3011] = {.lex_state = 136, .external_lex_state = 2}, - [3012] = {.lex_state = 169}, - [3013] = {.lex_state = 338, .external_lex_state = 7}, - [3014] = {.lex_state = 169}, - [3015] = {.lex_state = 169}, - [3016] = {.lex_state = 136, .external_lex_state = 2}, - [3017] = {.lex_state = 136, .external_lex_state = 2}, - [3018] = {.lex_state = 169}, - [3019] = {.lex_state = 338, .external_lex_state = 3}, + [2995] = {.lex_state = 339, .external_lex_state = 7}, + [2996] = {.lex_state = 339, .external_lex_state = 3}, + [2997] = {.lex_state = 169}, + [2998] = {.lex_state = 169}, + [2999] = {.lex_state = 339, .external_lex_state = 7}, + [3000] = {.lex_state = 339, .external_lex_state = 3}, + [3001] = {.lex_state = 136, .external_lex_state = 2}, + [3002] = {.lex_state = 338, .external_lex_state = 2}, + [3003] = {.lex_state = 169}, + [3004] = {.lex_state = 338, .external_lex_state = 2}, + [3005] = {.lex_state = 142}, + [3006] = {.lex_state = 338, .external_lex_state = 2}, + [3007] = {.lex_state = 169}, + [3008] = {.lex_state = 169}, + [3009] = {.lex_state = 136, .external_lex_state = 2}, + [3010] = {.lex_state = 338, .external_lex_state = 2}, + [3011] = {.lex_state = 338, .external_lex_state = 2}, + [3012] = {.lex_state = 338, .external_lex_state = 2}, + [3013] = {.lex_state = 169}, + [3014] = {.lex_state = 338, .external_lex_state = 2}, + [3015] = {.lex_state = 339, .external_lex_state = 7}, + [3016] = {.lex_state = 169}, + [3017] = {.lex_state = 339, .external_lex_state = 3}, + [3018] = {.lex_state = 338, .external_lex_state = 2}, + [3019] = {.lex_state = 169}, [3020] = {.lex_state = 338, .external_lex_state = 2}, [3021] = {.lex_state = 169}, - [3022] = {.lex_state = 169}, - [3023] = {.lex_state = 169}, - [3024] = {.lex_state = 338, .external_lex_state = 3}, - [3025] = {.lex_state = 338, .external_lex_state = 2}, - [3026] = {.lex_state = 169}, - [3027] = {.lex_state = 169}, + [3022] = {.lex_state = 339, .external_lex_state = 2}, + [3023] = {.lex_state = 339, .external_lex_state = 3}, + [3024] = {.lex_state = 339, .external_lex_state = 2}, + [3025] = {.lex_state = 136, .external_lex_state = 2}, + [3026] = {.lex_state = 338, .external_lex_state = 2}, + [3027] = {.lex_state = 339, .external_lex_state = 2}, [3028] = {.lex_state = 136, .external_lex_state = 2}, - [3029] = {.lex_state = 136, .external_lex_state = 2}, - [3030] = {.lex_state = 338, .external_lex_state = 3}, - [3031] = {.lex_state = 338, .external_lex_state = 7}, - [3032] = {.lex_state = 169}, - [3033] = {.lex_state = 169}, - [3034] = {.lex_state = 169}, - [3035] = {.lex_state = 338, .external_lex_state = 2}, - [3036] = {.lex_state = 338, .external_lex_state = 3}, - [3037] = {.lex_state = 338, .external_lex_state = 2}, - [3038] = {.lex_state = 338, .external_lex_state = 3}, - [3039] = {.lex_state = 169}, - [3040] = {.lex_state = 338, .external_lex_state = 7}, - [3041] = {.lex_state = 338, .external_lex_state = 3}, - [3042] = {.lex_state = 338, .external_lex_state = 2}, - [3043] = {.lex_state = 136, .external_lex_state = 2}, - [3044] = {.lex_state = 169}, - [3045] = {.lex_state = 169}, - [3046] = {.lex_state = 338, .external_lex_state = 3}, - [3047] = {.lex_state = 169}, - [3048] = {.lex_state = 338, .external_lex_state = 3}, - [3049] = {.lex_state = 136, .external_lex_state = 2}, + [3029] = {.lex_state = 338, .external_lex_state = 2}, + [3030] = {.lex_state = 339, .external_lex_state = 3}, + [3031] = {.lex_state = 338, .external_lex_state = 2}, + [3032] = {.lex_state = 136, .external_lex_state = 2}, + [3033] = {.lex_state = 338, .external_lex_state = 2}, + [3034] = {.lex_state = 339, .external_lex_state = 7}, + [3035] = {.lex_state = 339, .external_lex_state = 7}, + [3036] = {.lex_state = 338, .external_lex_state = 2}, + [3037] = {.lex_state = 169}, + [3038] = {.lex_state = 339, .external_lex_state = 2}, + [3039] = {.lex_state = 339, .external_lex_state = 2}, + [3040] = {.lex_state = 339, .external_lex_state = 2}, + [3041] = {.lex_state = 338, .external_lex_state = 2}, + [3042] = {.lex_state = 136, .external_lex_state = 2}, + [3043] = {.lex_state = 338, .external_lex_state = 2}, + [3044] = {.lex_state = 338, .external_lex_state = 2}, + [3045] = {.lex_state = 339, .external_lex_state = 3}, + [3046] = {.lex_state = 339, .external_lex_state = 2}, + [3047] = {.lex_state = 339, .external_lex_state = 7}, + [3048] = {.lex_state = 339, .external_lex_state = 7}, + [3049] = {.lex_state = 339, .external_lex_state = 3}, [3050] = {.lex_state = 169}, [3051] = {.lex_state = 169}, - [3052] = {.lex_state = 169}, + [3052] = {.lex_state = 339, .external_lex_state = 7}, [3053] = {.lex_state = 169}, - [3054] = {.lex_state = 169}, - [3055] = {.lex_state = 169}, - [3056] = {.lex_state = 169}, - [3057] = {.lex_state = 338, .external_lex_state = 3}, - [3058] = {.lex_state = 338, .external_lex_state = 7}, - [3059] = {.lex_state = 338, .external_lex_state = 3}, - [3060] = {.lex_state = 169}, - [3061] = {.lex_state = 169}, - [3062] = {.lex_state = 338, .external_lex_state = 7}, + [3054] = {.lex_state = 339, .external_lex_state = 3}, + [3055] = {.lex_state = 338, .external_lex_state = 2}, + [3056] = {.lex_state = 136, .external_lex_state = 2}, + [3057] = {.lex_state = 338, .external_lex_state = 2}, + [3058] = {.lex_state = 339, .external_lex_state = 3}, + [3059] = {.lex_state = 339, .external_lex_state = 2}, + [3060] = {.lex_state = 136, .external_lex_state = 2}, + [3061] = {.lex_state = 339, .external_lex_state = 7}, + [3062] = {.lex_state = 339, .external_lex_state = 3}, [3063] = {.lex_state = 136, .external_lex_state = 2}, - [3064] = {.lex_state = 136, .external_lex_state = 2}, - [3065] = {.lex_state = 169}, - [3066] = {.lex_state = 338, .external_lex_state = 3}, - [3067] = {.lex_state = 136, .external_lex_state = 2}, - [3068] = {.lex_state = 169}, - [3069] = {.lex_state = 169}, - [3070] = {.lex_state = 136, .external_lex_state = 2}, - [3071] = {.lex_state = 169}, - [3072] = {.lex_state = 169}, - [3073] = {.lex_state = 169}, - [3074] = {.lex_state = 338, .external_lex_state = 7}, - [3075] = {.lex_state = 338, .external_lex_state = 2}, - [3076] = {.lex_state = 169}, - [3077] = {.lex_state = 338, .external_lex_state = 7}, - [3078] = {.lex_state = 338, .external_lex_state = 7}, - [3079] = {.lex_state = 338, .external_lex_state = 2}, - [3080] = {.lex_state = 338, .external_lex_state = 7}, - [3081] = {.lex_state = 338, .external_lex_state = 2}, - [3082] = {.lex_state = 338, .external_lex_state = 7}, - [3083] = {.lex_state = 338, .external_lex_state = 2}, - [3084] = {.lex_state = 169}, - [3085] = {.lex_state = 338, .external_lex_state = 7}, - [3086] = {.lex_state = 139, .external_lex_state = 2}, - [3087] = {.lex_state = 338, .external_lex_state = 7}, - [3088] = {.lex_state = 338, .external_lex_state = 7}, - [3089] = {.lex_state = 338, .external_lex_state = 7}, - [3090] = {.lex_state = 338, .external_lex_state = 7}, - [3091] = {.lex_state = 338, .external_lex_state = 2}, - [3092] = {.lex_state = 169}, - [3093] = {.lex_state = 338, .external_lex_state = 7}, - [3094] = {.lex_state = 169}, - [3095] = {.lex_state = 337, .external_lex_state = 8}, - [3096] = {.lex_state = 140, .external_lex_state = 2}, - [3097] = {.lex_state = 140, .external_lex_state = 2}, - [3098] = {.lex_state = 176, .external_lex_state = 2}, - [3099] = {.lex_state = 176, .external_lex_state = 2}, - [3100] = {.lex_state = 337, .external_lex_state = 5}, - [3101] = {.lex_state = 337, .external_lex_state = 5}, - [3102] = {.lex_state = 338, .external_lex_state = 2}, - [3103] = {.lex_state = 140, .external_lex_state = 2}, - [3104] = {.lex_state = 338, .external_lex_state = 2}, - [3105] = {.lex_state = 338, .external_lex_state = 2}, - [3106] = {.lex_state = 338, .external_lex_state = 2}, - [3107] = {.lex_state = 338, .external_lex_state = 2}, - [3108] = {.lex_state = 337, .external_lex_state = 8}, - [3109] = {.lex_state = 338, .external_lex_state = 2}, - [3110] = {.lex_state = 169}, - [3111] = {.lex_state = 337, .external_lex_state = 8}, - [3112] = {.lex_state = 338, .external_lex_state = 2}, - [3113] = {.lex_state = 338, .external_lex_state = 2}, - [3114] = {.lex_state = 337, .external_lex_state = 5}, - [3115] = {.lex_state = 338, .external_lex_state = 2}, - [3116] = {.lex_state = 176, .external_lex_state = 2}, - [3117] = {.lex_state = 140, .external_lex_state = 2}, - [3118] = {.lex_state = 176, .external_lex_state = 2}, - [3119] = {.lex_state = 338, .external_lex_state = 2}, - [3120] = {.lex_state = 338, .external_lex_state = 2}, - [3121] = {.lex_state = 337, .external_lex_state = 8}, - [3122] = {.lex_state = 337, .external_lex_state = 9}, - [3123] = {.lex_state = 337, .external_lex_state = 8}, - [3124] = {.lex_state = 337, .external_lex_state = 9}, - [3125] = {.lex_state = 337, .external_lex_state = 5}, - [3126] = {.lex_state = 337, .external_lex_state = 5}, - [3127] = {.lex_state = 337, .external_lex_state = 8}, - [3128] = {.lex_state = 337, .external_lex_state = 8}, - [3129] = {.lex_state = 337, .external_lex_state = 5}, - [3130] = {.lex_state = 337, .external_lex_state = 5}, - [3131] = {.lex_state = 337, .external_lex_state = 9}, - [3132] = {.lex_state = 337, .external_lex_state = 8}, - [3133] = {.lex_state = 337, .external_lex_state = 2}, - [3134] = {.lex_state = 337, .external_lex_state = 2}, - [3135] = {.lex_state = 337, .external_lex_state = 2}, - [3136] = {.lex_state = 337, .external_lex_state = 2}, - [3137] = {.lex_state = 337, .external_lex_state = 2}, - [3138] = {.lex_state = 337, .external_lex_state = 2}, - [3139] = {.lex_state = 337, .external_lex_state = 2}, - [3140] = {.lex_state = 337, .external_lex_state = 2}, - [3141] = {.lex_state = 337, .external_lex_state = 2}, - [3142] = {.lex_state = 337, .external_lex_state = 2}, - [3143] = {.lex_state = 337, .external_lex_state = 2}, - [3144] = {.lex_state = 337, .external_lex_state = 2}, - [3145] = {.lex_state = 337, .external_lex_state = 2}, - [3146] = {.lex_state = 337, .external_lex_state = 2}, - [3147] = {.lex_state = 337, .external_lex_state = 2}, - [3148] = {.lex_state = 337, .external_lex_state = 2}, - [3149] = {.lex_state = 337, .external_lex_state = 9}, - [3150] = {.lex_state = 337, .external_lex_state = 2}, - [3151] = {.lex_state = 337, .external_lex_state = 5}, - [3152] = {.lex_state = 337, .external_lex_state = 2}, - [3153] = {.lex_state = 337, .external_lex_state = 2}, - [3154] = {.lex_state = 337, .external_lex_state = 8}, - [3155] = {.lex_state = 337, .external_lex_state = 9}, - [3156] = {.lex_state = 337, .external_lex_state = 2}, - [3157] = {.lex_state = 337, .external_lex_state = 5}, - [3158] = {.lex_state = 337, .external_lex_state = 2}, - [3159] = {.lex_state = 337, .external_lex_state = 2}, - [3160] = {.lex_state = 337, .external_lex_state = 2}, - [3161] = {.lex_state = 337, .external_lex_state = 2}, - [3162] = {.lex_state = 337, .external_lex_state = 2}, - [3163] = {.lex_state = 337, .external_lex_state = 2}, - [3164] = {.lex_state = 337, .external_lex_state = 2}, - [3165] = {.lex_state = 337, .external_lex_state = 9}, - [3166] = {.lex_state = 337, .external_lex_state = 2}, - [3167] = {.lex_state = 337, .external_lex_state = 9}, - [3168] = {.lex_state = 337, .external_lex_state = 2}, - [3169] = {.lex_state = 337, .external_lex_state = 2}, - [3170] = {.lex_state = 337, .external_lex_state = 2}, - [3171] = {.lex_state = 337, .external_lex_state = 2}, - [3172] = {.lex_state = 337, .external_lex_state = 2}, - [3173] = {.lex_state = 337, .external_lex_state = 2}, - [3174] = {.lex_state = 337, .external_lex_state = 2}, - [3175] = {.lex_state = 337, .external_lex_state = 2}, - [3176] = {.lex_state = 337, .external_lex_state = 9}, - [3177] = {.lex_state = 337, .external_lex_state = 2}, - [3178] = {.lex_state = 337, .external_lex_state = 9}, - [3179] = {.lex_state = 337, .external_lex_state = 2}, - [3180] = {.lex_state = 337, .external_lex_state = 2}, - [3181] = {.lex_state = 337, .external_lex_state = 2}, - [3182] = {.lex_state = 337, .external_lex_state = 2}, - [3183] = {.lex_state = 337, .external_lex_state = 2}, - [3184] = {.lex_state = 337, .external_lex_state = 2}, - [3185] = {.lex_state = 337, .external_lex_state = 2}, - [3186] = {.lex_state = 337, .external_lex_state = 2}, - [3187] = {.lex_state = 337, .external_lex_state = 2}, - [3188] = {.lex_state = 340}, - [3189] = {.lex_state = 340}, - [3190] = {.lex_state = 340}, - [3191] = {.lex_state = 340}, - [3192] = {.lex_state = 340}, - [3193] = {.lex_state = 340}, - [3194] = {.lex_state = 340}, - [3195] = {.lex_state = 340}, - [3196] = {.lex_state = 340}, - [3197] = {.lex_state = 340}, - [3198] = {.lex_state = 340}, - [3199] = {.lex_state = 340}, - [3200] = {.lex_state = 340}, - [3201] = {.lex_state = 340}, - [3202] = {.lex_state = 340}, - [3203] = {.lex_state = 340}, - [3204] = {.lex_state = 340}, - [3205] = {.lex_state = 340}, - [3206] = {.lex_state = 340}, - [3207] = {.lex_state = 143}, - [3208] = {.lex_state = 143, .external_lex_state = 14}, - [3209] = {.lex_state = 151}, - [3210] = {.lex_state = 143}, - [3211] = {.lex_state = 157}, - [3212] = {.lex_state = 144}, - [3213] = {.lex_state = 152}, - [3214] = {.lex_state = 144, .external_lex_state = 14}, - [3215] = {.lex_state = 144}, - [3216] = {.lex_state = 158}, - [3217] = {.lex_state = 148}, - [3218] = {.lex_state = 148}, - [3219] = {.lex_state = 149}, - [3220] = {.lex_state = 149}, - [3221] = {.lex_state = 148}, - [3222] = {.lex_state = 148}, - [3223] = {.lex_state = 148}, - [3224] = {.lex_state = 148}, - [3225] = {.lex_state = 148}, - [3226] = {.lex_state = 149}, - [3227] = {.lex_state = 149}, - [3228] = {.lex_state = 149}, - [3229] = {.lex_state = 148}, - [3230] = {.lex_state = 149}, - [3231] = {.lex_state = 149}, - [3232] = {.lex_state = 149}, - [3233] = {.lex_state = 149}, + [3064] = {.lex_state = 339, .external_lex_state = 3}, + [3065] = {.lex_state = 339, .external_lex_state = 3}, + [3066] = {.lex_state = 339, .external_lex_state = 3}, + [3067] = {.lex_state = 176, .external_lex_state = 2}, + [3068] = {.lex_state = 136, .external_lex_state = 2}, + [3069] = {.lex_state = 176, .external_lex_state = 2}, + [3070] = {.lex_state = 339, .external_lex_state = 7}, + [3071] = {.lex_state = 136, .external_lex_state = 2}, + [3072] = {.lex_state = 136, .external_lex_state = 2}, + [3073] = {.lex_state = 136, .external_lex_state = 2}, + [3074] = {.lex_state = 339, .external_lex_state = 2}, + [3075] = {.lex_state = 339, .external_lex_state = 3}, + [3076] = {.lex_state = 339, .external_lex_state = 3}, + [3077] = {.lex_state = 339, .external_lex_state = 7}, + [3078] = {.lex_state = 339, .external_lex_state = 3}, + [3079] = {.lex_state = 339, .external_lex_state = 3}, + [3080] = {.lex_state = 339, .external_lex_state = 2}, + [3081] = {.lex_state = 339, .external_lex_state = 3}, + [3082] = {.lex_state = 176, .external_lex_state = 2}, + [3083] = {.lex_state = 136, .external_lex_state = 2}, + [3084] = {.lex_state = 339, .external_lex_state = 2}, + [3085] = {.lex_state = 136, .external_lex_state = 2}, + [3086] = {.lex_state = 339, .external_lex_state = 3}, + [3087] = {.lex_state = 339, .external_lex_state = 7}, + [3088] = {.lex_state = 169}, + [3089] = {.lex_state = 339, .external_lex_state = 7}, + [3090] = {.lex_state = 339, .external_lex_state = 3}, + [3091] = {.lex_state = 136, .external_lex_state = 2}, + [3092] = {.lex_state = 136, .external_lex_state = 2}, + [3093] = {.lex_state = 136, .external_lex_state = 2}, + [3094] = {.lex_state = 136, .external_lex_state = 2}, + [3095] = {.lex_state = 176, .external_lex_state = 2}, + [3096] = {.lex_state = 339, .external_lex_state = 2}, + [3097] = {.lex_state = 339, .external_lex_state = 7}, + [3098] = {.lex_state = 139, .external_lex_state = 2}, + [3099] = {.lex_state = 339, .external_lex_state = 7}, + [3100] = {.lex_state = 339, .external_lex_state = 7}, + [3101] = {.lex_state = 339, .external_lex_state = 2}, + [3102] = {.lex_state = 339, .external_lex_state = 2}, + [3103] = {.lex_state = 339, .external_lex_state = 7}, + [3104] = {.lex_state = 339, .external_lex_state = 7}, + [3105] = {.lex_state = 339, .external_lex_state = 7}, + [3106] = {.lex_state = 339, .external_lex_state = 2}, + [3107] = {.lex_state = 339, .external_lex_state = 7}, + [3108] = {.lex_state = 339, .external_lex_state = 7}, + [3109] = {.lex_state = 339, .external_lex_state = 2}, + [3110] = {.lex_state = 339, .external_lex_state = 2}, + [3111] = {.lex_state = 339, .external_lex_state = 7}, + [3112] = {.lex_state = 339, .external_lex_state = 7}, + [3113] = {.lex_state = 339, .external_lex_state = 7}, + [3114] = {.lex_state = 339, .external_lex_state = 7}, + [3115] = {.lex_state = 140, .external_lex_state = 2}, + [3116] = {.lex_state = 339, .external_lex_state = 2}, + [3117] = {.lex_state = 338, .external_lex_state = 4}, + [3118] = {.lex_state = 140, .external_lex_state = 2}, + [3119] = {.lex_state = 338, .external_lex_state = 8}, + [3120] = {.lex_state = 339, .external_lex_state = 2}, + [3121] = {.lex_state = 338, .external_lex_state = 8}, + [3122] = {.lex_state = 140, .external_lex_state = 2}, + [3123] = {.lex_state = 338, .external_lex_state = 8}, + [3124] = {.lex_state = 339, .external_lex_state = 2}, + [3125] = {.lex_state = 339, .external_lex_state = 2}, + [3126] = {.lex_state = 339, .external_lex_state = 2}, + [3127] = {.lex_state = 339, .external_lex_state = 2}, + [3128] = {.lex_state = 339, .external_lex_state = 2}, + [3129] = {.lex_state = 338, .external_lex_state = 4}, + [3130] = {.lex_state = 339, .external_lex_state = 2}, + [3131] = {.lex_state = 338, .external_lex_state = 4}, + [3132] = {.lex_state = 339, .external_lex_state = 2}, + [3133] = {.lex_state = 140, .external_lex_state = 2}, + [3134] = {.lex_state = 339, .external_lex_state = 2}, + [3135] = {.lex_state = 339, .external_lex_state = 2}, + [3136] = {.lex_state = 339, .external_lex_state = 2}, + [3137] = {.lex_state = 338, .external_lex_state = 8}, + [3138] = {.lex_state = 338, .external_lex_state = 4}, + [3139] = {.lex_state = 338, .external_lex_state = 9}, + [3140] = {.lex_state = 338, .external_lex_state = 4}, + [3141] = {.lex_state = 338, .external_lex_state = 4}, + [3142] = {.lex_state = 338, .external_lex_state = 9}, + [3143] = {.lex_state = 338, .external_lex_state = 4}, + [3144] = {.lex_state = 338, .external_lex_state = 8}, + [3145] = {.lex_state = 338, .external_lex_state = 8}, + [3146] = {.lex_state = 338, .external_lex_state = 8}, + [3147] = {.lex_state = 338, .external_lex_state = 9}, + [3148] = {.lex_state = 338, .external_lex_state = 2}, + [3149] = {.lex_state = 338, .external_lex_state = 2}, + [3150] = {.lex_state = 338, .external_lex_state = 2}, + [3151] = {.lex_state = 338, .external_lex_state = 2}, + [3152] = {.lex_state = 338, .external_lex_state = 2}, + [3153] = {.lex_state = 338, .external_lex_state = 2}, + [3154] = {.lex_state = 338, .external_lex_state = 2}, + [3155] = {.lex_state = 338, .external_lex_state = 2}, + [3156] = {.lex_state = 338, .external_lex_state = 2}, + [3157] = {.lex_state = 338, .external_lex_state = 2}, + [3158] = {.lex_state = 338, .external_lex_state = 2}, + [3159] = {.lex_state = 338, .external_lex_state = 8}, + [3160] = {.lex_state = 338, .external_lex_state = 2}, + [3161] = {.lex_state = 338, .external_lex_state = 2}, + [3162] = {.lex_state = 338, .external_lex_state = 2}, + [3163] = {.lex_state = 338, .external_lex_state = 2}, + [3164] = {.lex_state = 338, .external_lex_state = 2}, + [3165] = {.lex_state = 338, .external_lex_state = 4}, + [3166] = {.lex_state = 338, .external_lex_state = 2}, + [3167] = {.lex_state = 338, .external_lex_state = 2}, + [3168] = {.lex_state = 338, .external_lex_state = 9}, + [3169] = {.lex_state = 338, .external_lex_state = 2}, + [3170] = {.lex_state = 338, .external_lex_state = 9}, + [3171] = {.lex_state = 338, .external_lex_state = 4}, + [3172] = {.lex_state = 338, .external_lex_state = 9}, + [3173] = {.lex_state = 338, .external_lex_state = 2}, + [3174] = {.lex_state = 338, .external_lex_state = 2}, + [3175] = {.lex_state = 338, .external_lex_state = 2}, + [3176] = {.lex_state = 338, .external_lex_state = 2}, + [3177] = {.lex_state = 338, .external_lex_state = 8}, + [3178] = {.lex_state = 338, .external_lex_state = 2}, + [3179] = {.lex_state = 338, .external_lex_state = 2}, + [3180] = {.lex_state = 338, .external_lex_state = 2}, + [3181] = {.lex_state = 338, .external_lex_state = 2}, + [3182] = {.lex_state = 338, .external_lex_state = 2}, + [3183] = {.lex_state = 338, .external_lex_state = 2}, + [3184] = {.lex_state = 338, .external_lex_state = 2}, + [3185] = {.lex_state = 338, .external_lex_state = 9}, + [3186] = {.lex_state = 338, .external_lex_state = 2}, + [3187] = {.lex_state = 338, .external_lex_state = 2}, + [3188] = {.lex_state = 338, .external_lex_state = 2}, + [3189] = {.lex_state = 338, .external_lex_state = 2}, + [3190] = {.lex_state = 338, .external_lex_state = 2}, + [3191] = {.lex_state = 338, .external_lex_state = 2}, + [3192] = {.lex_state = 338, .external_lex_state = 9}, + [3193] = {.lex_state = 338, .external_lex_state = 2}, + [3194] = {.lex_state = 338, .external_lex_state = 2}, + [3195] = {.lex_state = 338, .external_lex_state = 9}, + [3196] = {.lex_state = 338, .external_lex_state = 2}, + [3197] = {.lex_state = 338, .external_lex_state = 2}, + [3198] = {.lex_state = 338, .external_lex_state = 2}, + [3199] = {.lex_state = 338, .external_lex_state = 2}, + [3200] = {.lex_state = 338, .external_lex_state = 2}, + [3201] = {.lex_state = 338, .external_lex_state = 2}, + [3202] = {.lex_state = 338, .external_lex_state = 2}, + [3203] = {.lex_state = 338, .external_lex_state = 2}, + [3204] = {.lex_state = 341}, + [3205] = {.lex_state = 341}, + [3206] = {.lex_state = 341}, + [3207] = {.lex_state = 341}, + [3208] = {.lex_state = 341}, + [3209] = {.lex_state = 341}, + [3210] = {.lex_state = 341}, + [3211] = {.lex_state = 341}, + [3212] = {.lex_state = 341}, + [3213] = {.lex_state = 341}, + [3214] = {.lex_state = 341}, + [3215] = {.lex_state = 341}, + [3216] = {.lex_state = 341}, + [3217] = {.lex_state = 341}, + [3218] = {.lex_state = 341}, + [3219] = {.lex_state = 341}, + [3220] = {.lex_state = 341}, + [3221] = {.lex_state = 341}, + [3222] = {.lex_state = 341}, + [3223] = {.lex_state = 143}, + [3224] = {.lex_state = 143, .external_lex_state = 14}, + [3225] = {.lex_state = 151}, + [3226] = {.lex_state = 143}, + [3227] = {.lex_state = 157}, + [3228] = {.lex_state = 144}, + [3229] = {.lex_state = 152}, + [3230] = {.lex_state = 144, .external_lex_state = 14}, + [3231] = {.lex_state = 144}, + [3232] = {.lex_state = 158}, + [3233] = {.lex_state = 148}, [3234] = {.lex_state = 149}, [3235] = {.lex_state = 148}, [3236] = {.lex_state = 149}, [3237] = {.lex_state = 148}, [3238] = {.lex_state = 149}, - [3239] = {.lex_state = 149}, - [3240] = {.lex_state = 148}, - [3241] = {.lex_state = 148}, + [3239] = {.lex_state = 148}, + [3240] = {.lex_state = 149}, + [3241] = {.lex_state = 149}, [3242] = {.lex_state = 149}, - [3243] = {.lex_state = 149}, + [3243] = {.lex_state = 148}, [3244] = {.lex_state = 148}, - [3245] = {.lex_state = 340}, - [3246] = {.lex_state = 149}, - [3247] = {.lex_state = 131, .external_lex_state = 4}, - [3248] = {.lex_state = 131, .external_lex_state = 4}, + [3245] = {.lex_state = 149}, + [3246] = {.lex_state = 148}, + [3247] = {.lex_state = 149}, + [3248] = {.lex_state = 149}, [3249] = {.lex_state = 148}, - [3250] = {.lex_state = 131, .external_lex_state = 4}, + [3250] = {.lex_state = 148}, [3251] = {.lex_state = 148}, - [3252] = {.lex_state = 131, .external_lex_state = 4}, + [3252] = {.lex_state = 341}, [3253] = {.lex_state = 149}, - [3254] = {.lex_state = 340}, - [3255] = {.lex_state = 131, .external_lex_state = 4}, - [3256] = {.lex_state = 149}, - [3257] = {.lex_state = 148}, - [3258] = {.lex_state = 131, .external_lex_state = 4}, + [3254] = {.lex_state = 149}, + [3255] = {.lex_state = 149}, + [3256] = {.lex_state = 148}, + [3257] = {.lex_state = 149}, + [3258] = {.lex_state = 149}, [3259] = {.lex_state = 149}, [3260] = {.lex_state = 148}, - [3261] = {.lex_state = 149}, - [3262] = {.lex_state = 148}, - [3263] = {.lex_state = 148}, - [3264] = {.lex_state = 149}, - [3265] = {.lex_state = 149}, + [3261] = {.lex_state = 148}, + [3262] = {.lex_state = 149}, + [3263] = {.lex_state = 149}, + [3264] = {.lex_state = 131, .external_lex_state = 5}, + [3265] = {.lex_state = 148}, [3266] = {.lex_state = 148}, - [3267] = {.lex_state = 148}, - [3268] = {.lex_state = 148}, - [3269] = {.lex_state = 149}, - [3270] = {.lex_state = 148}, - [3271] = {.lex_state = 149}, - [3272] = {.lex_state = 149}, + [3267] = {.lex_state = 149}, + [3268] = {.lex_state = 131, .external_lex_state = 5}, + [3269] = {.lex_state = 148}, + [3270] = {.lex_state = 131, .external_lex_state = 5}, + [3271] = {.lex_state = 148}, + [3272] = {.lex_state = 131, .external_lex_state = 5}, [3273] = {.lex_state = 148}, - [3274] = {.lex_state = 148}, - [3275] = {.lex_state = 148}, - [3276] = {.lex_state = 148}, - [3277] = {.lex_state = 148}, - [3278] = {.lex_state = 149}, - [3279] = {.lex_state = 145}, - [3280] = {.lex_state = 131, .external_lex_state = 4}, - [3281] = {.lex_state = 149}, - [3282] = {.lex_state = 163}, - [3283] = {.lex_state = 149}, - [3284] = {.lex_state = 148}, - [3285] = {.lex_state = 149}, - [3286] = {.lex_state = 149}, - [3287] = {.lex_state = 149}, - [3288] = {.lex_state = 146}, - [3289] = {.lex_state = 142}, - [3290] = {.lex_state = 142}, - [3291] = {.lex_state = 146}, - [3292] = {.lex_state = 153}, - [3293] = {.lex_state = 145, .external_lex_state = 14}, - [3294] = {.lex_state = 131, .external_lex_state = 6}, - [3295] = {.lex_state = 146}, - [3296] = {.lex_state = 131, .external_lex_state = 6}, - [3297] = {.lex_state = 146}, - [3298] = {.lex_state = 142}, - [3299] = {.lex_state = 131, .external_lex_state = 6}, - [3300] = {.lex_state = 154}, - [3301] = {.lex_state = 156}, - [3302] = {.lex_state = 156}, - [3303] = {.lex_state = 150}, - [3304] = {.lex_state = 142}, - [3305] = {.lex_state = 131, .external_lex_state = 7}, - [3306] = {.lex_state = 156}, - [3307] = {.lex_state = 142}, - [3308] = {.lex_state = 154}, - [3309] = {.lex_state = 145}, - [3310] = {.lex_state = 154}, - [3311] = {.lex_state = 131, .external_lex_state = 7}, - [3312] = {.lex_state = 146, .external_lex_state = 14}, - [3313] = {.lex_state = 131, .external_lex_state = 7}, - [3314] = {.lex_state = 156}, - [3315] = {.lex_state = 150}, - [3316] = {.lex_state = 156}, - [3317] = {.lex_state = 188}, - [3318] = {.lex_state = 188}, - [3319] = {.lex_state = 154}, - [3320] = {.lex_state = 146, .external_lex_state = 14}, - [3321] = {.lex_state = 131, .external_lex_state = 7}, - [3322] = {.lex_state = 188}, - [3323] = {.lex_state = 164}, - [3324] = {.lex_state = 131, .external_lex_state = 7}, - [3325] = {.lex_state = 142, .external_lex_state = 14}, - [3326] = {.lex_state = 156}, - [3327] = {.lex_state = 142, .external_lex_state = 14}, - [3328] = {.lex_state = 131, .external_lex_state = 7}, - [3329] = {.lex_state = 142}, - [3330] = {.lex_state = 156}, - [3331] = {.lex_state = 156}, - [3332] = {.lex_state = 156}, - [3333] = {.lex_state = 146, .external_lex_state = 14}, - [3334] = {.lex_state = 188}, - [3335] = {.lex_state = 188}, - [3336] = {.lex_state = 156}, - [3337] = {.lex_state = 159}, - [3338] = {.lex_state = 146, .external_lex_state = 14}, - [3339] = {.lex_state = 156}, - [3340] = {.lex_state = 156}, - [3341] = {.lex_state = 142, .external_lex_state = 14}, - [3342] = {.lex_state = 131, .external_lex_state = 7}, - [3343] = {.lex_state = 150}, - [3344] = {.lex_state = 142}, - [3345] = {.lex_state = 188}, - [3346] = {.lex_state = 131, .external_lex_state = 7}, - [3347] = {.lex_state = 131, .external_lex_state = 2}, - [3348] = {.lex_state = 142}, - [3349] = {.lex_state = 142}, - [3350] = {.lex_state = 160}, - [3351] = {.lex_state = 156}, - [3352] = {.lex_state = 150}, - [3353] = {.lex_state = 160}, - [3354] = {.lex_state = 142, .external_lex_state = 14}, - [3355] = {.lex_state = 142}, - [3356] = {.lex_state = 142}, - [3357] = {.lex_state = 142}, - [3358] = {.lex_state = 142}, - [3359] = {.lex_state = 142}, - [3360] = {.lex_state = 142}, - [3361] = {.lex_state = 142}, - [3362] = {.lex_state = 142}, - [3363] = {.lex_state = 150}, - [3364] = {.lex_state = 142}, - [3365] = {.lex_state = 142, .external_lex_state = 14}, - [3366] = {.lex_state = 142}, - [3367] = {.lex_state = 142}, - [3368] = {.lex_state = 142}, - [3369] = {.lex_state = 142}, - [3370] = {.lex_state = 142}, - [3371] = {.lex_state = 142}, - [3372] = {.lex_state = 142}, - [3373] = {.lex_state = 142}, - [3374] = {.lex_state = 142}, - [3375] = {.lex_state = 142}, - [3376] = {.lex_state = 160}, - [3377] = {.lex_state = 156}, - [3378] = {.lex_state = 142}, - [3379] = {.lex_state = 146}, - [3380] = {.lex_state = 142}, - [3381] = {.lex_state = 146}, - [3382] = {.lex_state = 142}, - [3383] = {.lex_state = 142}, - [3384] = {.lex_state = 142}, + [3274] = {.lex_state = 149}, + [3275] = {.lex_state = 131, .external_lex_state = 5}, + [3276] = {.lex_state = 149}, + [3277] = {.lex_state = 131, .external_lex_state = 5}, + [3278] = {.lex_state = 341}, + [3279] = {.lex_state = 149}, + [3280] = {.lex_state = 149}, + [3281] = {.lex_state = 145}, + [3282] = {.lex_state = 148}, + [3283] = {.lex_state = 188}, + [3284] = {.lex_state = 149}, + [3285] = {.lex_state = 148}, + [3286] = {.lex_state = 148}, + [3287] = {.lex_state = 188}, + [3288] = {.lex_state = 149}, + [3289] = {.lex_state = 149}, + [3290] = {.lex_state = 188}, + [3291] = {.lex_state = 148}, + [3292] = {.lex_state = 148}, + [3293] = {.lex_state = 148}, + [3294] = {.lex_state = 148}, + [3295] = {.lex_state = 149}, + [3296] = {.lex_state = 149}, + [3297] = {.lex_state = 148}, + [3298] = {.lex_state = 188}, + [3299] = {.lex_state = 149}, + [3300] = {.lex_state = 149}, + [3301] = {.lex_state = 163}, + [3302] = {.lex_state = 188}, + [3303] = {.lex_state = 188}, + [3304] = {.lex_state = 149}, + [3305] = {.lex_state = 148}, + [3306] = {.lex_state = 131, .external_lex_state = 5}, + [3307] = {.lex_state = 148}, + [3308] = {.lex_state = 148}, + [3309] = {.lex_state = 149}, + [3310] = {.lex_state = 148}, + [3311] = {.lex_state = 149}, + [3312] = {.lex_state = 145, .external_lex_state = 14}, + [3313] = {.lex_state = 142}, + [3314] = {.lex_state = 142}, + [3315] = {.lex_state = 146}, + [3316] = {.lex_state = 146}, + [3317] = {.lex_state = 131, .external_lex_state = 6}, + [3318] = {.lex_state = 146}, + [3319] = {.lex_state = 131, .external_lex_state = 6}, + [3320] = {.lex_state = 153}, + [3321] = {.lex_state = 131, .external_lex_state = 6}, + [3322] = {.lex_state = 142}, + [3323] = {.lex_state = 146}, + [3324] = {.lex_state = 156}, + [3325] = {.lex_state = 131, .external_lex_state = 7}, + [3326] = {.lex_state = 188}, + [3327] = {.lex_state = 142}, + [3328] = {.lex_state = 150}, + [3329] = {.lex_state = 131, .external_lex_state = 7}, + [3330] = {.lex_state = 188}, + [3331] = {.lex_state = 142}, + [3332] = {.lex_state = 146, .external_lex_state = 14}, + [3333] = {.lex_state = 131, .external_lex_state = 7}, + [3334] = {.lex_state = 146, .external_lex_state = 14}, + [3335] = {.lex_state = 154}, + [3336] = {.lex_state = 164}, + [3337] = {.lex_state = 142, .external_lex_state = 14}, + [3338] = {.lex_state = 188}, + [3339] = {.lex_state = 142, .external_lex_state = 14}, + [3340] = {.lex_state = 154}, + [3341] = {.lex_state = 131, .external_lex_state = 7}, + [3342] = {.lex_state = 146, .external_lex_state = 14}, + [3343] = {.lex_state = 131, .external_lex_state = 7}, + [3344] = {.lex_state = 188}, + [3345] = {.lex_state = 150}, + [3346] = {.lex_state = 156}, + [3347] = {.lex_state = 142}, + [3348] = {.lex_state = 188}, + [3349] = {.lex_state = 131, .external_lex_state = 7}, + [3350] = {.lex_state = 142}, + [3351] = {.lex_state = 146, .external_lex_state = 14}, + [3352] = {.lex_state = 188}, + [3353] = {.lex_state = 154}, + [3354] = {.lex_state = 188}, + [3355] = {.lex_state = 131, .external_lex_state = 7}, + [3356] = {.lex_state = 131, .external_lex_state = 7}, + [3357] = {.lex_state = 142, .external_lex_state = 14}, + [3358] = {.lex_state = 188}, + [3359] = {.lex_state = 188}, + [3360] = {.lex_state = 150}, + [3361] = {.lex_state = 188}, + [3362] = {.lex_state = 156}, + [3363] = {.lex_state = 156}, + [3364] = {.lex_state = 188}, + [3365] = {.lex_state = 156}, + [3366] = {.lex_state = 154}, + [3367] = {.lex_state = 156}, + [3368] = {.lex_state = 188}, + [3369] = {.lex_state = 188}, + [3370] = {.lex_state = 156}, + [3371] = {.lex_state = 156}, + [3372] = {.lex_state = 156}, + [3373] = {.lex_state = 156}, + [3374] = {.lex_state = 156}, + [3375] = {.lex_state = 156}, + [3376] = {.lex_state = 159}, + [3377] = {.lex_state = 145}, + [3378] = {.lex_state = 188}, + [3379] = {.lex_state = 142}, + [3380] = {.lex_state = 142, .external_lex_state = 14}, + [3381] = {.lex_state = 131, .external_lex_state = 2}, + [3382] = {.lex_state = 188}, + [3383] = {.lex_state = 188}, + [3384] = {.lex_state = 150}, [3385] = {.lex_state = 142}, - [3386] = {.lex_state = 142}, - [3387] = {.lex_state = 160}, + [3386] = {.lex_state = 188}, + [3387] = {.lex_state = 131, .external_lex_state = 2}, [3388] = {.lex_state = 142}, - [3389] = {.lex_state = 146}, + [3389] = {.lex_state = 142}, [3390] = {.lex_state = 142}, - [3391] = {.lex_state = 142}, - [3392] = {.lex_state = 150}, + [3391] = {.lex_state = 150}, + [3392] = {.lex_state = 188}, [3393] = {.lex_state = 142}, - [3394] = {.lex_state = 142}, - [3395] = {.lex_state = 156}, + [3394] = {.lex_state = 146}, + [3395] = {.lex_state = 142}, [3396] = {.lex_state = 146}, [3397] = {.lex_state = 142}, [3398] = {.lex_state = 142}, [3399] = {.lex_state = 142}, - [3400] = {.lex_state = 131, .external_lex_state = 2}, - [3401] = {.lex_state = 142}, + [3400] = {.lex_state = 150}, + [3401] = {.lex_state = 146}, [3402] = {.lex_state = 142}, - [3403] = {.lex_state = 142}, + [3403] = {.lex_state = 188}, [3404] = {.lex_state = 142}, - [3405] = {.lex_state = 131, .external_lex_state = 2}, + [3405] = {.lex_state = 142}, [3406] = {.lex_state = 142}, [3407] = {.lex_state = 142}, [3408] = {.lex_state = 142}, - [3409] = {.lex_state = 142}, + [3409] = {.lex_state = 131, .external_lex_state = 2}, [3410] = {.lex_state = 142}, - [3411] = {.lex_state = 131, .external_lex_state = 2}, + [3411] = {.lex_state = 142}, [3412] = {.lex_state = 142}, [3413] = {.lex_state = 142}, - [3414] = {.lex_state = 142, .external_lex_state = 14}, - [3415] = {.lex_state = 142}, - [3416] = {.lex_state = 188}, + [3414] = {.lex_state = 142}, + [3415] = {.lex_state = 188}, + [3416] = {.lex_state = 142}, [3417] = {.lex_state = 142}, - [3418] = {.lex_state = 142, .external_lex_state = 14}, - [3419] = {.lex_state = 188}, - [3420] = {.lex_state = 150}, - [3421] = {.lex_state = 142, .external_lex_state = 14}, - [3422] = {.lex_state = 142, .external_lex_state = 14}, - [3423] = {.lex_state = 142, .external_lex_state = 14}, - [3424] = {.lex_state = 142, .external_lex_state = 14}, - [3425] = {.lex_state = 142, .external_lex_state = 14}, - [3426] = {.lex_state = 188}, - [3427] = {.lex_state = 188}, - [3428] = {.lex_state = 188}, - [3429] = {.lex_state = 150}, - [3430] = {.lex_state = 150}, - [3431] = {.lex_state = 150}, - [3432] = {.lex_state = 150}, - [3433] = {.lex_state = 150}, - [3434] = {.lex_state = 150}, - [3435] = {.lex_state = 150}, - [3436] = {.lex_state = 150}, - [3437] = {.lex_state = 150}, - [3438] = {.lex_state = 150}, - [3439] = {.lex_state = 150}, - [3440] = {.lex_state = 150}, - [3441] = {.lex_state = 150}, - [3442] = {.lex_state = 150}, - [3443] = {.lex_state = 150}, - [3444] = {.lex_state = 150}, - [3445] = {.lex_state = 150}, - [3446] = {.lex_state = 150}, - [3447] = {.lex_state = 142, .external_lex_state = 14}, - [3448] = {.lex_state = 150}, - [3449] = {.lex_state = 150}, - [3450] = {.lex_state = 188}, - [3451] = {.lex_state = 150}, - [3452] = {.lex_state = 142, .external_lex_state = 14}, - [3453] = {.lex_state = 131, .external_lex_state = 2}, - [3454] = {.lex_state = 142, .external_lex_state = 14}, - [3455] = {.lex_state = 188}, - [3456] = {.lex_state = 142, .external_lex_state = 14}, - [3457] = {.lex_state = 142, .external_lex_state = 14}, - [3458] = {.lex_state = 142, .external_lex_state = 14}, - [3459] = {.lex_state = 142, .external_lex_state = 14}, - [3460] = {.lex_state = 188}, - [3461] = {.lex_state = 188}, + [3418] = {.lex_state = 142}, + [3419] = {.lex_state = 142}, + [3420] = {.lex_state = 142}, + [3421] = {.lex_state = 142}, + [3422] = {.lex_state = 142}, + [3423] = {.lex_state = 142}, + [3424] = {.lex_state = 142}, + [3425] = {.lex_state = 142}, + [3426] = {.lex_state = 131, .external_lex_state = 2}, + [3427] = {.lex_state = 142}, + [3428] = {.lex_state = 142}, + [3429] = {.lex_state = 142}, + [3430] = {.lex_state = 142}, + [3431] = {.lex_state = 142}, + [3432] = {.lex_state = 146}, + [3433] = {.lex_state = 142, .external_lex_state = 14}, + [3434] = {.lex_state = 142}, + [3435] = {.lex_state = 142}, + [3436] = {.lex_state = 142, .external_lex_state = 14}, + [3437] = {.lex_state = 188}, + [3438] = {.lex_state = 142}, + [3439] = {.lex_state = 160}, + [3440] = {.lex_state = 142}, + [3441] = {.lex_state = 188}, + [3442] = {.lex_state = 160}, + [3443] = {.lex_state = 142}, + [3444] = {.lex_state = 156}, + [3445] = {.lex_state = 142}, + [3446] = {.lex_state = 142}, + [3447] = {.lex_state = 160}, + [3448] = {.lex_state = 156}, + [3449] = {.lex_state = 142}, + [3450] = {.lex_state = 160}, + [3451] = {.lex_state = 156}, + [3452] = {.lex_state = 142}, + [3453] = {.lex_state = 142}, + [3454] = {.lex_state = 142}, + [3455] = {.lex_state = 142}, + [3456] = {.lex_state = 150}, + [3457] = {.lex_state = 150}, + [3458] = {.lex_state = 150}, + [3459] = {.lex_state = 150}, + [3460] = {.lex_state = 150}, + [3461] = {.lex_state = 142, .external_lex_state = 14}, [3462] = {.lex_state = 150}, - [3463] = {.lex_state = 142, .external_lex_state = 14}, - [3464] = {.lex_state = 131, .external_lex_state = 2}, - [3465] = {.lex_state = 142, .external_lex_state = 14}, + [3463] = {.lex_state = 150}, + [3464] = {.lex_state = 142, .external_lex_state = 14}, + [3465] = {.lex_state = 150}, [3466] = {.lex_state = 142, .external_lex_state = 14}, - [3467] = {.lex_state = 150}, + [3467] = {.lex_state = 142, .external_lex_state = 14}, [3468] = {.lex_state = 142, .external_lex_state = 14}, - [3469] = {.lex_state = 150}, + [3469] = {.lex_state = 142, .external_lex_state = 14}, [3470] = {.lex_state = 142, .external_lex_state = 14}, - [3471] = {.lex_state = 150}, - [3472] = {.lex_state = 150}, - [3473] = {.lex_state = 150}, + [3471] = {.lex_state = 142, .external_lex_state = 14}, + [3472] = {.lex_state = 142, .external_lex_state = 14}, + [3473] = {.lex_state = 142, .external_lex_state = 14}, [3474] = {.lex_state = 142, .external_lex_state = 14}, - [3475] = {.lex_state = 150}, - [3476] = {.lex_state = 142}, + [3475] = {.lex_state = 142, .external_lex_state = 14}, + [3476] = {.lex_state = 150}, [3477] = {.lex_state = 142, .external_lex_state = 14}, - [3478] = {.lex_state = 142}, - [3479] = {.lex_state = 142}, - [3480] = {.lex_state = 142, .external_lex_state = 14}, - [3481] = {.lex_state = 142, .external_lex_state = 14}, - [3482] = {.lex_state = 142, .external_lex_state = 14}, - [3483] = {.lex_state = 150}, - [3484] = {.lex_state = 142, .external_lex_state = 14}, - [3485] = {.lex_state = 142}, - [3486] = {.lex_state = 142, .external_lex_state = 14}, - [3487] = {.lex_state = 142}, - [3488] = {.lex_state = 142, .external_lex_state = 14}, - [3489] = {.lex_state = 131, .external_lex_state = 2}, - [3490] = {.lex_state = 142}, - [3491] = {.lex_state = 188}, - [3492] = {.lex_state = 142}, - [3493] = {.lex_state = 142}, - [3494] = {.lex_state = 142}, - [3495] = {.lex_state = 142, .external_lex_state = 14}, - [3496] = {.lex_state = 142}, - [3497] = {.lex_state = 142}, - [3498] = {.lex_state = 188}, + [3478] = {.lex_state = 150}, + [3479] = {.lex_state = 142, .external_lex_state = 14}, + [3480] = {.lex_state = 150}, + [3481] = {.lex_state = 142}, + [3482] = {.lex_state = 150}, + [3483] = {.lex_state = 142}, + [3484] = {.lex_state = 150}, + [3485] = {.lex_state = 150}, + [3486] = {.lex_state = 150}, + [3487] = {.lex_state = 150}, + [3488] = {.lex_state = 150}, + [3489] = {.lex_state = 142, .external_lex_state = 14}, + [3490] = {.lex_state = 150}, + [3491] = {.lex_state = 142}, + [3492] = {.lex_state = 150}, + [3493] = {.lex_state = 150}, + [3494] = {.lex_state = 150}, + [3495] = {.lex_state = 142}, + [3496] = {.lex_state = 150}, + [3497] = {.lex_state = 142, .external_lex_state = 14}, + [3498] = {.lex_state = 142, .external_lex_state = 14}, [3499] = {.lex_state = 142, .external_lex_state = 14}, - [3500] = {.lex_state = 150}, - [3501] = {.lex_state = 142}, - [3502] = {.lex_state = 142, .external_lex_state = 14}, - [3503] = {.lex_state = 142, .external_lex_state = 14}, - [3504] = {.lex_state = 142, .external_lex_state = 14}, - [3505] = {.lex_state = 142, .external_lex_state = 14}, - [3506] = {.lex_state = 156}, - [3507] = {.lex_state = 142}, - [3508] = {.lex_state = 150}, - [3509] = {.lex_state = 150}, - [3510] = {.lex_state = 188}, - [3511] = {.lex_state = 142}, - [3512] = {.lex_state = 188}, - [3513] = {.lex_state = 142, .external_lex_state = 14}, + [3500] = {.lex_state = 142, .external_lex_state = 14}, + [3501] = {.lex_state = 150}, + [3502] = {.lex_state = 156}, + [3503] = {.lex_state = 142}, + [3504] = {.lex_state = 142}, + [3505] = {.lex_state = 142}, + [3506] = {.lex_state = 142, .external_lex_state = 14}, + [3507] = {.lex_state = 142, .external_lex_state = 14}, + [3508] = {.lex_state = 142}, + [3509] = {.lex_state = 142, .external_lex_state = 14}, + [3510] = {.lex_state = 142}, + [3511] = {.lex_state = 142, .external_lex_state = 14}, + [3512] = {.lex_state = 142, .external_lex_state = 14}, + [3513] = {.lex_state = 150}, [3514] = {.lex_state = 142, .external_lex_state = 14}, - [3515] = {.lex_state = 150}, - [3516] = {.lex_state = 150}, - [3517] = {.lex_state = 188}, - [3518] = {.lex_state = 142}, - [3519] = {.lex_state = 156}, - [3520] = {.lex_state = 142}, - [3521] = {.lex_state = 150}, + [3515] = {.lex_state = 142, .external_lex_state = 14}, + [3516] = {.lex_state = 142, .external_lex_state = 14}, + [3517] = {.lex_state = 150}, + [3518] = {.lex_state = 131, .external_lex_state = 2}, + [3519] = {.lex_state = 142, .external_lex_state = 14}, + [3520] = {.lex_state = 142, .external_lex_state = 14}, + [3521] = {.lex_state = 131, .external_lex_state = 2}, [3522] = {.lex_state = 142, .external_lex_state = 14}, - [3523] = {.lex_state = 142, .external_lex_state = 14}, - [3524] = {.lex_state = 150}, - [3525] = {.lex_state = 142}, + [3523] = {.lex_state = 150}, + [3524] = {.lex_state = 142}, + [3525] = {.lex_state = 150}, [3526] = {.lex_state = 142, .external_lex_state = 14}, - [3527] = {.lex_state = 156}, + [3527] = {.lex_state = 142}, [3528] = {.lex_state = 142}, - [3529] = {.lex_state = 142}, - [3530] = {.lex_state = 150}, - [3531] = {.lex_state = 142}, - [3532] = {.lex_state = 142, .external_lex_state = 14}, + [3529] = {.lex_state = 131, .external_lex_state = 2}, + [3530] = {.lex_state = 142}, + [3531] = {.lex_state = 156}, + [3532] = {.lex_state = 150}, [3533] = {.lex_state = 142}, - [3534] = {.lex_state = 142}, + [3534] = {.lex_state = 150}, [3535] = {.lex_state = 142}, - [3536] = {.lex_state = 142}, - [3537] = {.lex_state = 156}, - [3538] = {.lex_state = 142}, - [3539] = {.lex_state = 156}, - [3540] = {.lex_state = 188}, - [3541] = {.lex_state = 156}, + [3536] = {.lex_state = 142, .external_lex_state = 14}, + [3537] = {.lex_state = 142}, + [3538] = {.lex_state = 142, .external_lex_state = 14}, + [3539] = {.lex_state = 150}, + [3540] = {.lex_state = 150}, + [3541] = {.lex_state = 142}, [3542] = {.lex_state = 142}, [3543] = {.lex_state = 142}, - [3544] = {.lex_state = 142}, - [3545] = {.lex_state = 142}, + [3544] = {.lex_state = 150}, + [3545] = {.lex_state = 142, .external_lex_state = 14}, [3546] = {.lex_state = 142}, - [3547] = {.lex_state = 188}, - [3548] = {.lex_state = 156}, - [3549] = {.lex_state = 156}, - [3550] = {.lex_state = 156}, - [3551] = {.lex_state = 156}, - [3552] = {.lex_state = 142}, - [3553] = {.lex_state = 142}, - [3554] = {.lex_state = 142}, + [3547] = {.lex_state = 142}, + [3548] = {.lex_state = 142, .external_lex_state = 14}, + [3549] = {.lex_state = 142}, + [3550] = {.lex_state = 142}, + [3551] = {.lex_state = 142, .external_lex_state = 14}, + [3552] = {.lex_state = 150}, + [3553] = {.lex_state = 150}, + [3554] = {.lex_state = 150}, [3555] = {.lex_state = 156}, - [3556] = {.lex_state = 142}, - [3557] = {.lex_state = 156}, - [3558] = {.lex_state = 142}, - [3559] = {.lex_state = 142}, - [3560] = {.lex_state = 156}, + [3556] = {.lex_state = 150}, + [3557] = {.lex_state = 142, .external_lex_state = 14}, + [3558] = {.lex_state = 150}, + [3559] = {.lex_state = 150}, + [3560] = {.lex_state = 142, .external_lex_state = 14}, [3561] = {.lex_state = 142}, [3562] = {.lex_state = 142}, - [3563] = {.lex_state = 142}, + [3563] = {.lex_state = 156}, [3564] = {.lex_state = 142}, - [3565] = {.lex_state = 142}, - [3566] = {.lex_state = 142}, + [3565] = {.lex_state = 156}, + [3566] = {.lex_state = 156}, [3567] = {.lex_state = 142}, [3568] = {.lex_state = 142}, [3569] = {.lex_state = 156}, - [3570] = {.lex_state = 188}, - [3571] = {.lex_state = 156}, + [3570] = {.lex_state = 156}, + [3571] = {.lex_state = 142}, [3572] = {.lex_state = 142}, [3573] = {.lex_state = 142}, - [3574] = {.lex_state = 142}, + [3574] = {.lex_state = 156}, [3575] = {.lex_state = 142}, - [3576] = {.lex_state = 156}, - [3577] = {.lex_state = 188}, - [3578] = {.lex_state = 188}, - [3579] = {.lex_state = 156}, + [3576] = {.lex_state = 142}, + [3577] = {.lex_state = 156}, + [3578] = {.lex_state = 156}, + [3579] = {.lex_state = 142}, [3580] = {.lex_state = 156}, [3581] = {.lex_state = 142}, - [3582] = {.lex_state = 142}, + [3582] = {.lex_state = 156}, [3583] = {.lex_state = 156}, - [3584] = {.lex_state = 188}, + [3584] = {.lex_state = 156}, [3585] = {.lex_state = 142}, [3586] = {.lex_state = 142}, - [3587] = {.lex_state = 142}, - [3588] = {.lex_state = 188}, + [3587] = {.lex_state = 156}, + [3588] = {.lex_state = 142}, [3589] = {.lex_state = 142}, - [3590] = {.lex_state = 142}, - [3591] = {.lex_state = 156}, + [3590] = {.lex_state = 156}, + [3591] = {.lex_state = 142}, [3592] = {.lex_state = 156}, - [3593] = {.lex_state = 156}, + [3593] = {.lex_state = 142}, [3594] = {.lex_state = 142}, [3595] = {.lex_state = 142}, - [3596] = {.lex_state = 142}, - [3597] = {.lex_state = 142}, - [3598] = {.lex_state = 142}, - [3599] = {.lex_state = 142}, - [3600] = {.lex_state = 142}, + [3596] = {.lex_state = 156}, + [3597] = {.lex_state = 156}, + [3598] = {.lex_state = 156}, + [3599] = {.lex_state = 156}, + [3600] = {.lex_state = 188}, [3601] = {.lex_state = 156}, [3602] = {.lex_state = 156}, [3603] = {.lex_state = 142}, - [3604] = {.lex_state = 156}, + [3604] = {.lex_state = 142}, [3605] = {.lex_state = 156}, [3606] = {.lex_state = 142}, [3607] = {.lex_state = 156}, [3608] = {.lex_state = 142}, - [3609] = {.lex_state = 156}, + [3609] = {.lex_state = 142}, [3610] = {.lex_state = 156}, [3611] = {.lex_state = 142}, [3612] = {.lex_state = 142}, - [3613] = {.lex_state = 156}, - [3614] = {.lex_state = 188}, - [3615] = {.lex_state = 156}, + [3613] = {.lex_state = 142}, + [3614] = {.lex_state = 156}, + [3615] = {.lex_state = 142}, [3616] = {.lex_state = 156}, - [3617] = {.lex_state = 156}, + [3617] = {.lex_state = 142}, [3618] = {.lex_state = 156}, [3619] = {.lex_state = 156}, - [3620] = {.lex_state = 142}, - [3621] = {.lex_state = 156}, - [3622] = {.lex_state = 156}, - [3623] = {.lex_state = 156}, - [3624] = {.lex_state = 142}, - [3625] = {.lex_state = 156}, + [3620] = {.lex_state = 156}, + [3621] = {.lex_state = 142}, + [3622] = {.lex_state = 142}, + [3623] = {.lex_state = 142}, + [3624] = {.lex_state = 156}, + [3625] = {.lex_state = 142}, [3626] = {.lex_state = 142}, [3627] = {.lex_state = 142}, [3628] = {.lex_state = 142}, - [3629] = {.lex_state = 156}, + [3629] = {.lex_state = 142}, [3630] = {.lex_state = 142}, [3631] = {.lex_state = 142}, [3632] = {.lex_state = 142}, - [3633] = {.lex_state = 156}, - [3634] = {.lex_state = 142}, + [3633] = {.lex_state = 142}, + [3634] = {.lex_state = 156}, [3635] = {.lex_state = 142}, - [3636] = {.lex_state = 131, .external_lex_state = 4}, - [3637] = {.lex_state = 131, .external_lex_state = 6}, - [3638] = {.lex_state = 162}, - [3639] = {.lex_state = 131, .external_lex_state = 4}, - [3640] = {.lex_state = 131, .external_lex_state = 4}, - [3641] = {.lex_state = 131, .external_lex_state = 4}, - [3642] = {.lex_state = 131, .external_lex_state = 4}, - [3643] = {.lex_state = 131, .external_lex_state = 4}, - [3644] = {.lex_state = 131, .external_lex_state = 4}, - [3645] = {.lex_state = 131, .external_lex_state = 4}, - [3646] = {.lex_state = 188}, - [3647] = {.lex_state = 131, .external_lex_state = 4}, - [3648] = {.lex_state = 131, .external_lex_state = 4}, - [3649] = {.lex_state = 131, .external_lex_state = 4}, - [3650] = {.lex_state = 162}, - [3651] = {.lex_state = 162}, - [3652] = {.lex_state = 131, .external_lex_state = 6}, - [3653] = {.lex_state = 131, .external_lex_state = 4}, - [3654] = {.lex_state = 162}, - [3655] = {.lex_state = 180}, + [3636] = {.lex_state = 142}, + [3637] = {.lex_state = 142}, + [3638] = {.lex_state = 142}, + [3639] = {.lex_state = 156}, + [3640] = {.lex_state = 156}, + [3641] = {.lex_state = 142}, + [3642] = {.lex_state = 156}, + [3643] = {.lex_state = 142}, + [3644] = {.lex_state = 142}, + [3645] = {.lex_state = 156}, + [3646] = {.lex_state = 156}, + [3647] = {.lex_state = 156}, + [3648] = {.lex_state = 142}, + [3649] = {.lex_state = 142}, + [3650] = {.lex_state = 156}, + [3651] = {.lex_state = 142}, + [3652] = {.lex_state = 142}, + [3653] = {.lex_state = 142}, + [3654] = {.lex_state = 142}, + [3655] = {.lex_state = 131, .external_lex_state = 5}, [3656] = {.lex_state = 131, .external_lex_state = 6}, - [3657] = {.lex_state = 131, .external_lex_state = 6}, - [3658] = {.lex_state = 131, .external_lex_state = 6}, - [3659] = {.lex_state = 131, .external_lex_state = 6}, - [3660] = {.lex_state = 131, .external_lex_state = 4}, - [3661] = {.lex_state = 162}, - [3662] = {.lex_state = 131, .external_lex_state = 6}, - [3663] = {.lex_state = 131, .external_lex_state = 6}, - [3664] = {.lex_state = 131, .external_lex_state = 4}, - [3665] = {.lex_state = 162}, - [3666] = {.lex_state = 131, .external_lex_state = 4}, - [3667] = {.lex_state = 131, .external_lex_state = 4}, - [3668] = {.lex_state = 162}, - [3669] = {.lex_state = 131, .external_lex_state = 4}, + [3657] = {.lex_state = 162}, + [3658] = {.lex_state = 131, .external_lex_state = 5}, + [3659] = {.lex_state = 131, .external_lex_state = 5}, + [3660] = {.lex_state = 131, .external_lex_state = 5}, + [3661] = {.lex_state = 131, .external_lex_state = 5}, + [3662] = {.lex_state = 131, .external_lex_state = 5}, + [3663] = {.lex_state = 131, .external_lex_state = 5}, + [3664] = {.lex_state = 131, .external_lex_state = 5}, + [3665] = {.lex_state = 131, .external_lex_state = 5}, + [3666] = {.lex_state = 131, .external_lex_state = 5}, + [3667] = {.lex_state = 131, .external_lex_state = 5}, + [3668] = {.lex_state = 131, .external_lex_state = 6}, + [3669] = {.lex_state = 131, .external_lex_state = 6}, [3670] = {.lex_state = 162}, - [3671] = {.lex_state = 131, .external_lex_state = 6}, - [3672] = {.lex_state = 131, .external_lex_state = 4}, - [3673] = {.lex_state = 131, .external_lex_state = 4}, - [3674] = {.lex_state = 131, .external_lex_state = 6}, - [3675] = {.lex_state = 131, .external_lex_state = 4}, - [3676] = {.lex_state = 131, .external_lex_state = 4}, - [3677] = {.lex_state = 131, .external_lex_state = 6}, - [3678] = {.lex_state = 131, .external_lex_state = 6}, - [3679] = {.lex_state = 189}, - [3680] = {.lex_state = 189}, + [3671] = {.lex_state = 180}, + [3672] = {.lex_state = 131, .external_lex_state = 6}, + [3673] = {.lex_state = 131, .external_lex_state = 5}, + [3674] = {.lex_state = 162}, + [3675] = {.lex_state = 131, .external_lex_state = 5}, + [3676] = {.lex_state = 162}, + [3677] = {.lex_state = 131, .external_lex_state = 5}, + [3678] = {.lex_state = 131, .external_lex_state = 5}, + [3679] = {.lex_state = 162}, + [3680] = {.lex_state = 162}, [3681] = {.lex_state = 131, .external_lex_state = 6}, - [3682] = {.lex_state = 189}, - [3683] = {.lex_state = 131, .external_lex_state = 4}, + [3682] = {.lex_state = 131, .external_lex_state = 5}, + [3683] = {.lex_state = 131, .external_lex_state = 6}, [3684] = {.lex_state = 131, .external_lex_state = 6}, - [3685] = {.lex_state = 189}, + [3685] = {.lex_state = 131, .external_lex_state = 5}, [3686] = {.lex_state = 131, .external_lex_state = 6}, - [3687] = {.lex_state = 131, .external_lex_state = 4}, - [3688] = {.lex_state = 131, .external_lex_state = 4}, - [3689] = {.lex_state = 131, .external_lex_state = 6}, - [3690] = {.lex_state = 131, .external_lex_state = 4}, - [3691] = {.lex_state = 131, .external_lex_state = 4}, - [3692] = {.lex_state = 189}, - [3693] = {.lex_state = 131, .external_lex_state = 4}, - [3694] = {.lex_state = 131, .external_lex_state = 4}, - [3695] = {.lex_state = 131, .external_lex_state = 6}, + [3687] = {.lex_state = 162}, + [3688] = {.lex_state = 162}, + [3689] = {.lex_state = 131, .external_lex_state = 5}, + [3690] = {.lex_state = 131, .external_lex_state = 5}, + [3691] = {.lex_state = 131, .external_lex_state = 6}, + [3692] = {.lex_state = 131, .external_lex_state = 5}, + [3693] = {.lex_state = 131, .external_lex_state = 6}, + [3694] = {.lex_state = 131, .external_lex_state = 6}, + [3695] = {.lex_state = 131, .external_lex_state = 5}, [3696] = {.lex_state = 131, .external_lex_state = 6}, - [3697] = {.lex_state = 131, .external_lex_state = 6}, - [3698] = {.lex_state = 189}, - [3699] = {.lex_state = 131, .external_lex_state = 6}, - [3700] = {.lex_state = 131, .external_lex_state = 4}, - [3701] = {.lex_state = 131, .external_lex_state = 6}, - [3702] = {.lex_state = 131, .external_lex_state = 4}, - [3703] = {.lex_state = 131, .external_lex_state = 4}, - [3704] = {.lex_state = 131, .external_lex_state = 4}, - [3705] = {.lex_state = 131, .external_lex_state = 6}, - [3706] = {.lex_state = 131, .external_lex_state = 4}, - [3707] = {.lex_state = 131, .external_lex_state = 4}, - [3708] = {.lex_state = 131, .external_lex_state = 6}, - [3709] = {.lex_state = 131, .external_lex_state = 4}, + [3697] = {.lex_state = 189}, + [3698] = {.lex_state = 131, .external_lex_state = 6}, + [3699] = {.lex_state = 131, .external_lex_state = 5}, + [3700] = {.lex_state = 131, .external_lex_state = 5}, + [3701] = {.lex_state = 131, .external_lex_state = 5}, + [3702] = {.lex_state = 131, .external_lex_state = 6}, + [3703] = {.lex_state = 131, .external_lex_state = 6}, + [3704] = {.lex_state = 131, .external_lex_state = 6}, + [3705] = {.lex_state = 131, .external_lex_state = 5}, + [3706] = {.lex_state = 131, .external_lex_state = 6}, + [3707] = {.lex_state = 131, .external_lex_state = 5}, + [3708] = {.lex_state = 131, .external_lex_state = 5}, + [3709] = {.lex_state = 131, .external_lex_state = 6}, [3710] = {.lex_state = 189}, - [3711] = {.lex_state = 183}, + [3711] = {.lex_state = 189}, [3712] = {.lex_state = 131, .external_lex_state = 6}, - [3713] = {.lex_state = 131, .external_lex_state = 4}, - [3714] = {.lex_state = 131, .external_lex_state = 4}, - [3715] = {.lex_state = 131, .external_lex_state = 6}, - [3716] = {.lex_state = 131, .external_lex_state = 4}, - [3717] = {.lex_state = 131, .external_lex_state = 6}, - [3718] = {.lex_state = 131, .external_lex_state = 6}, - [3719] = {.lex_state = 162}, - [3720] = {.lex_state = 131, .external_lex_state = 6}, - [3721] = {.lex_state = 131, .external_lex_state = 6}, - [3722] = {.lex_state = 131, .external_lex_state = 4}, - [3723] = {.lex_state = 131, .external_lex_state = 4}, - [3724] = {.lex_state = 162}, - [3725] = {.lex_state = 189}, - [3726] = {.lex_state = 340, .external_lex_state = 16}, - [3727] = {.lex_state = 189}, - [3728] = {.lex_state = 340, .external_lex_state = 16}, - [3729] = {.lex_state = 340, .external_lex_state = 16}, - [3730] = {.lex_state = 340, .external_lex_state = 16}, - [3731] = {.lex_state = 340, .external_lex_state = 16}, - [3732] = {.lex_state = 189}, - [3733] = {.lex_state = 340, .external_lex_state = 16}, - [3734] = {.lex_state = 189}, - [3735] = {.lex_state = 340, .external_lex_state = 16}, - [3736] = {.lex_state = 189}, - [3737] = {.lex_state = 189}, - [3738] = {.lex_state = 189}, - [3739] = {.lex_state = 165}, - [3740] = {.lex_state = 189}, - [3741] = {.lex_state = 189}, - [3742] = {.lex_state = 189}, - [3743] = {.lex_state = 340, .external_lex_state = 16}, - [3744] = {.lex_state = 189}, - [3745] = {.lex_state = 189}, - [3746] = {.lex_state = 131, .external_lex_state = 6}, - [3747] = {.lex_state = 189}, - [3748] = {.lex_state = 340, .external_lex_state = 16}, - [3749] = {.lex_state = 131, .external_lex_state = 6}, - [3750] = {.lex_state = 131, .external_lex_state = 6}, - [3751] = {.lex_state = 131, .external_lex_state = 6}, - [3752] = {.lex_state = 131, .external_lex_state = 6}, - [3753] = {.lex_state = 189}, - [3754] = {.lex_state = 340, .external_lex_state = 16}, - [3755] = {.lex_state = 131, .external_lex_state = 6}, - [3756] = {.lex_state = 131, .external_lex_state = 6}, + [3713] = {.lex_state = 131, .external_lex_state = 6}, + [3714] = {.lex_state = 131, .external_lex_state = 6}, + [3715] = {.lex_state = 131, .external_lex_state = 5}, + [3716] = {.lex_state = 189}, + [3717] = {.lex_state = 131, .external_lex_state = 5}, + [3718] = {.lex_state = 189}, + [3719] = {.lex_state = 189}, + [3720] = {.lex_state = 131, .external_lex_state = 5}, + [3721] = {.lex_state = 188}, + [3722] = {.lex_state = 131, .external_lex_state = 5}, + [3723] = {.lex_state = 188}, + [3724] = {.lex_state = 188}, + [3725] = {.lex_state = 131, .external_lex_state = 5}, + [3726] = {.lex_state = 188}, + [3727] = {.lex_state = 188}, + [3728] = {.lex_state = 188}, + [3729] = {.lex_state = 183}, + [3730] = {.lex_state = 131, .external_lex_state = 6}, + [3731] = {.lex_state = 188}, + [3732] = {.lex_state = 188}, + [3733] = {.lex_state = 162}, + [3734] = {.lex_state = 188}, + [3735] = {.lex_state = 131, .external_lex_state = 6}, + [3736] = {.lex_state = 188}, + [3737] = {.lex_state = 131, .external_lex_state = 6}, + [3738] = {.lex_state = 188}, + [3739] = {.lex_state = 131, .external_lex_state = 5}, + [3740] = {.lex_state = 131, .external_lex_state = 5}, + [3741] = {.lex_state = 131, .external_lex_state = 6}, + [3742] = {.lex_state = 131, .external_lex_state = 5}, + [3743] = {.lex_state = 131, .external_lex_state = 6}, + [3744] = {.lex_state = 131, .external_lex_state = 6}, + [3745] = {.lex_state = 188}, + [3746] = {.lex_state = 188}, + [3747] = {.lex_state = 188}, + [3748] = {.lex_state = 189}, + [3749] = {.lex_state = 131, .external_lex_state = 5}, + [3750] = {.lex_state = 131, .external_lex_state = 5}, + [3751] = {.lex_state = 131, .external_lex_state = 5}, + [3752] = {.lex_state = 188}, + [3753] = {.lex_state = 131, .external_lex_state = 5}, + [3754] = {.lex_state = 188}, + [3755] = {.lex_state = 131, .external_lex_state = 5}, + [3756] = {.lex_state = 131, .external_lex_state = 5}, [3757] = {.lex_state = 131, .external_lex_state = 6}, - [3758] = {.lex_state = 340, .external_lex_state = 16}, - [3759] = {.lex_state = 340, .external_lex_state = 16}, - [3760] = {.lex_state = 189}, + [3758] = {.lex_state = 188}, + [3759] = {.lex_state = 162}, + [3760] = {.lex_state = 131, .external_lex_state = 6}, [3761] = {.lex_state = 189}, - [3762] = {.lex_state = 340, .external_lex_state = 16}, - [3763] = {.lex_state = 340, .external_lex_state = 16}, - [3764] = {.lex_state = 131, .external_lex_state = 6}, - [3765] = {.lex_state = 131, .external_lex_state = 6}, + [3762] = {.lex_state = 165}, + [3763] = {.lex_state = 189}, + [3764] = {.lex_state = 189}, + [3765] = {.lex_state = 189}, [3766] = {.lex_state = 189}, - [3767] = {.lex_state = 340, .external_lex_state = 16}, - [3768] = {.lex_state = 189}, - [3769] = {.lex_state = 189, .external_lex_state = 16}, - [3770] = {.lex_state = 189}, + [3767] = {.lex_state = 189}, + [3768] = {.lex_state = 341, .external_lex_state = 16}, + [3769] = {.lex_state = 131, .external_lex_state = 6}, + [3770] = {.lex_state = 341, .external_lex_state = 16}, [3771] = {.lex_state = 131, .external_lex_state = 6}, - [3772] = {.lex_state = 340, .external_lex_state = 16}, - [3773] = {.lex_state = 162}, - [3774] = {.lex_state = 189, .external_lex_state = 14}, - [3775] = {.lex_state = 340, .external_lex_state = 16}, - [3776] = {.lex_state = 188}, + [3772] = {.lex_state = 131, .external_lex_state = 6}, + [3773] = {.lex_state = 189}, + [3774] = {.lex_state = 131, .external_lex_state = 6}, + [3775] = {.lex_state = 131, .external_lex_state = 6}, + [3776] = {.lex_state = 131, .external_lex_state = 6}, [3777] = {.lex_state = 188}, - [3778] = {.lex_state = 189, .external_lex_state = 17}, - [3779] = {.lex_state = 189, .external_lex_state = 17}, - [3780] = {.lex_state = 340}, - [3781] = {.lex_state = 189, .external_lex_state = 17}, - [3782] = {.lex_state = 189, .external_lex_state = 17}, - [3783] = {.lex_state = 189, .external_lex_state = 17}, - [3784] = {.lex_state = 188}, - [3785] = {.lex_state = 340, .external_lex_state = 16}, - [3786] = {.lex_state = 131}, - [3787] = {.lex_state = 340, .external_lex_state = 16}, - [3788] = {.lex_state = 188}, - [3789] = {.lex_state = 340, .external_lex_state = 16}, - [3790] = {.lex_state = 340, .external_lex_state = 16}, - [3791] = {.lex_state = 188}, - [3792] = {.lex_state = 188}, - [3793] = {.lex_state = 340, .external_lex_state = 16}, - [3794] = {.lex_state = 340, .external_lex_state = 16}, - [3795] = {.lex_state = 340}, - [3796] = {.lex_state = 189, .external_lex_state = 17}, - [3797] = {.lex_state = 188}, - [3798] = {.lex_state = 189, .external_lex_state = 17}, - [3799] = {.lex_state = 340, .external_lex_state = 16}, - [3800] = {.lex_state = 340, .external_lex_state = 16}, - [3801] = {.lex_state = 340, .external_lex_state = 16}, - [3802] = {.lex_state = 166}, - [3803] = {.lex_state = 340}, - [3804] = {.lex_state = 131}, - [3805] = {.lex_state = 188}, - [3806] = {.lex_state = 166}, - [3807] = {.lex_state = 340, .external_lex_state = 16}, - [3808] = {.lex_state = 340, .external_lex_state = 16}, - [3809] = {.lex_state = 340, .external_lex_state = 16}, - [3810] = {.lex_state = 162}, - [3811] = {.lex_state = 189, .external_lex_state = 14}, - [3812] = {.lex_state = 188}, + [3778] = {.lex_state = 131, .external_lex_state = 6}, + [3779] = {.lex_state = 131, .external_lex_state = 6}, + [3780] = {.lex_state = 131, .external_lex_state = 6}, + [3781] = {.lex_state = 131, .external_lex_state = 6}, + [3782] = {.lex_state = 131, .external_lex_state = 6}, + [3783] = {.lex_state = 131, .external_lex_state = 6}, + [3784] = {.lex_state = 341, .external_lex_state = 16}, + [3785] = {.lex_state = 189}, + [3786] = {.lex_state = 341, .external_lex_state = 16}, + [3787] = {.lex_state = 341, .external_lex_state = 16}, + [3788] = {.lex_state = 189}, + [3789] = {.lex_state = 189}, + [3790] = {.lex_state = 189}, + [3791] = {.lex_state = 189}, + [3792] = {.lex_state = 341, .external_lex_state = 16}, + [3793] = {.lex_state = 341, .external_lex_state = 16}, + [3794] = {.lex_state = 341, .external_lex_state = 16}, + [3795] = {.lex_state = 189}, + [3796] = {.lex_state = 189, .external_lex_state = 16}, + [3797] = {.lex_state = 189}, + [3798] = {.lex_state = 341, .external_lex_state = 16}, + [3799] = {.lex_state = 189}, + [3800] = {.lex_state = 189}, + [3801] = {.lex_state = 189}, + [3802] = {.lex_state = 188}, + [3803] = {.lex_state = 189}, + [3804] = {.lex_state = 341, .external_lex_state = 16}, + [3805] = {.lex_state = 341, .external_lex_state = 16}, + [3806] = {.lex_state = 341, .external_lex_state = 16}, + [3807] = {.lex_state = 341, .external_lex_state = 16}, + [3808] = {.lex_state = 341, .external_lex_state = 16}, + [3809] = {.lex_state = 341, .external_lex_state = 16}, + [3810] = {.lex_state = 189}, + [3811] = {.lex_state = 341, .external_lex_state = 16}, + [3812] = {.lex_state = 189, .external_lex_state = 17}, [3813] = {.lex_state = 188}, [3814] = {.lex_state = 188}, - [3815] = {.lex_state = 340, .external_lex_state = 16}, + [3815] = {.lex_state = 188}, [3816] = {.lex_state = 188}, - [3817] = {.lex_state = 188}, - [3818] = {.lex_state = 162}, - [3819] = {.lex_state = 166}, - [3820] = {.lex_state = 162}, - [3821] = {.lex_state = 189, .external_lex_state = 14}, - [3822] = {.lex_state = 340, .external_lex_state = 16}, - [3823] = {.lex_state = 180, .external_lex_state = 14}, - [3824] = {.lex_state = 188}, + [3817] = {.lex_state = 341, .external_lex_state = 16}, + [3818] = {.lex_state = 188}, + [3819] = {.lex_state = 188}, + [3820] = {.lex_state = 188}, + [3821] = {.lex_state = 188}, + [3822] = {.lex_state = 188}, + [3823] = {.lex_state = 188}, + [3824] = {.lex_state = 166}, [3825] = {.lex_state = 188}, - [3826] = {.lex_state = 189, .external_lex_state = 14}, - [3827] = {.lex_state = 340, .external_lex_state = 16}, + [3826] = {.lex_state = 188}, + [3827] = {.lex_state = 188}, [3828] = {.lex_state = 188}, - [3829] = {.lex_state = 340, .external_lex_state = 16}, - [3830] = {.lex_state = 189, .external_lex_state = 14}, + [3829] = {.lex_state = 188}, + [3830] = {.lex_state = 188}, [3831] = {.lex_state = 189, .external_lex_state = 14}, [3832] = {.lex_state = 188}, - [3833] = {.lex_state = 162}, - [3834] = {.lex_state = 162}, - [3835] = {.lex_state = 189, .external_lex_state = 14}, - [3836] = {.lex_state = 340, .external_lex_state = 16}, - [3837] = {.lex_state = 340, .external_lex_state = 16}, - [3838] = {.lex_state = 340, .external_lex_state = 16}, - [3839] = {.lex_state = 162}, - [3840] = {.lex_state = 166}, - [3841] = {.lex_state = 340, .external_lex_state = 16}, - [3842] = {.lex_state = 189, .external_lex_state = 18}, - [3843] = {.lex_state = 189, .external_lex_state = 17}, - [3844] = {.lex_state = 189, .external_lex_state = 17}, - [3845] = {.lex_state = 189, .external_lex_state = 16}, - [3846] = {.lex_state = 189, .external_lex_state = 18}, - [3847] = {.lex_state = 189, .external_lex_state = 18}, - [3848] = {.lex_state = 189, .external_lex_state = 14}, - [3849] = {.lex_state = 189, .external_lex_state = 14}, - [3850] = {.lex_state = 189, .external_lex_state = 14}, - [3851] = {.lex_state = 189, .external_lex_state = 17}, + [3833] = {.lex_state = 188}, + [3834] = {.lex_state = 188}, + [3835] = {.lex_state = 188}, + [3836] = {.lex_state = 188}, + [3837] = {.lex_state = 188}, + [3838] = {.lex_state = 188}, + [3839] = {.lex_state = 188}, + [3840] = {.lex_state = 341, .external_lex_state = 16}, + [3841] = {.lex_state = 188}, + [3842] = {.lex_state = 188}, + [3843] = {.lex_state = 188}, + [3844] = {.lex_state = 188}, + [3845] = {.lex_state = 188}, + [3846] = {.lex_state = 188}, + [3847] = {.lex_state = 188}, + [3848] = {.lex_state = 188}, + [3849] = {.lex_state = 188}, + [3850] = {.lex_state = 188}, + [3851] = {.lex_state = 188}, [3852] = {.lex_state = 188}, - [3853] = {.lex_state = 340}, + [3853] = {.lex_state = 341, .external_lex_state = 16}, [3854] = {.lex_state = 189, .external_lex_state = 14}, - [3855] = {.lex_state = 189, .external_lex_state = 17}, - [3856] = {.lex_state = 180}, - [3857] = {.lex_state = 189, .external_lex_state = 16}, - [3858] = {.lex_state = 189, .external_lex_state = 14}, - [3859] = {.lex_state = 189, .external_lex_state = 14}, - [3860] = {.lex_state = 189, .external_lex_state = 16}, - [3861] = {.lex_state = 189, .external_lex_state = 17}, - [3862] = {.lex_state = 189, .external_lex_state = 16}, - [3863] = {.lex_state = 189, .external_lex_state = 14}, - [3864] = {.lex_state = 189, .external_lex_state = 18}, - [3865] = {.lex_state = 340}, - [3866] = {.lex_state = 189, .external_lex_state = 16}, - [3867] = {.lex_state = 189, .external_lex_state = 18}, - [3868] = {.lex_state = 189, .external_lex_state = 16}, - [3869] = {.lex_state = 189, .external_lex_state = 16}, - [3870] = {.lex_state = 189, .external_lex_state = 16}, - [3871] = {.lex_state = 340}, - [3872] = {.lex_state = 189, .external_lex_state = 16}, - [3873] = {.lex_state = 189, .external_lex_state = 16}, - [3874] = {.lex_state = 189, .external_lex_state = 17}, - [3875] = {.lex_state = 189, .external_lex_state = 17}, - [3876] = {.lex_state = 189, .external_lex_state = 18}, - [3877] = {.lex_state = 189, .external_lex_state = 14}, - [3878] = {.lex_state = 189, .external_lex_state = 16}, - [3879] = {.lex_state = 189, .external_lex_state = 18}, - [3880] = {.lex_state = 189, .external_lex_state = 17}, - [3881] = {.lex_state = 189, .external_lex_state = 16}, + [3855] = {.lex_state = 341, .external_lex_state = 16}, + [3856] = {.lex_state = 162}, + [3857] = {.lex_state = 188}, + [3858] = {.lex_state = 131}, + [3859] = {.lex_state = 188}, + [3860] = {.lex_state = 188}, + [3861] = {.lex_state = 188}, + [3862] = {.lex_state = 188}, + [3863] = {.lex_state = 188}, + [3864] = {.lex_state = 188}, + [3865] = {.lex_state = 188}, + [3866] = {.lex_state = 188}, + [3867] = {.lex_state = 188}, + [3868] = {.lex_state = 188}, + [3869] = {.lex_state = 162}, + [3870] = {.lex_state = 188}, + [3871] = {.lex_state = 188}, + [3872] = {.lex_state = 341, .external_lex_state = 16}, + [3873] = {.lex_state = 188}, + [3874] = {.lex_state = 341}, + [3875] = {.lex_state = 189, .external_lex_state = 14}, + [3876] = {.lex_state = 189, .external_lex_state = 14}, + [3877] = {.lex_state = 188}, + [3878] = {.lex_state = 162}, + [3879] = {.lex_state = 189, .external_lex_state = 17}, + [3880] = {.lex_state = 189, .external_lex_state = 14}, + [3881] = {.lex_state = 189, .external_lex_state = 17}, [3882] = {.lex_state = 188}, - [3883] = {.lex_state = 340}, - [3884] = {.lex_state = 340}, - [3885] = {.lex_state = 189, .external_lex_state = 16}, - [3886] = {.lex_state = 188}, + [3883] = {.lex_state = 166}, + [3884] = {.lex_state = 188}, + [3885] = {.lex_state = 341, .external_lex_state = 16}, + [3886] = {.lex_state = 341, .external_lex_state = 16}, [3887] = {.lex_state = 188}, [3888] = {.lex_state = 188}, - [3889] = {.lex_state = 189, .external_lex_state = 17}, + [3889] = {.lex_state = 188}, [3890] = {.lex_state = 188}, [3891] = {.lex_state = 188}, [3892] = {.lex_state = 188}, [3893] = {.lex_state = 188}, [3894] = {.lex_state = 188}, - [3895] = {.lex_state = 189, .external_lex_state = 17}, - [3896] = {.lex_state = 188}, - [3897] = {.lex_state = 188}, - [3898] = {.lex_state = 340}, - [3899] = {.lex_state = 188}, - [3900] = {.lex_state = 188}, + [3895] = {.lex_state = 188}, + [3896] = {.lex_state = 341, .external_lex_state = 16}, + [3897] = {.lex_state = 341}, + [3898] = {.lex_state = 188}, + [3899] = {.lex_state = 189, .external_lex_state = 17}, + [3900] = {.lex_state = 189, .external_lex_state = 17}, [3901] = {.lex_state = 188}, - [3902] = {.lex_state = 188}, + [3902] = {.lex_state = 189, .external_lex_state = 17}, [3903] = {.lex_state = 188}, [3904] = {.lex_state = 188}, [3905] = {.lex_state = 188}, [3906] = {.lex_state = 188}, [3907] = {.lex_state = 188}, [3908] = {.lex_state = 188}, - [3909] = {.lex_state = 340}, + [3909] = {.lex_state = 188}, [3910] = {.lex_state = 188}, [3911] = {.lex_state = 188}, [3912] = {.lex_state = 188}, @@ -25329,8 +25506,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3917] = {.lex_state = 188}, [3918] = {.lex_state = 188}, [3919] = {.lex_state = 188}, - [3920] = {.lex_state = 189, .external_lex_state = 14}, - [3921] = {.lex_state = 340}, + [3920] = {.lex_state = 166}, + [3921] = {.lex_state = 188}, [3922] = {.lex_state = 188}, [3923] = {.lex_state = 188}, [3924] = {.lex_state = 188}, @@ -25351,7 +25528,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3939] = {.lex_state = 188}, [3940] = {.lex_state = 188}, [3941] = {.lex_state = 188}, - [3942] = {.lex_state = 189, .external_lex_state = 17}, + [3942] = {.lex_state = 188}, [3943] = {.lex_state = 188}, [3944] = {.lex_state = 188}, [3945] = {.lex_state = 188}, @@ -25368,22 +25545,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3956] = {.lex_state = 188}, [3957] = {.lex_state = 188}, [3958] = {.lex_state = 188}, - [3959] = {.lex_state = 189, .external_lex_state = 14}, + [3959] = {.lex_state = 188}, [3960] = {.lex_state = 188}, [3961] = {.lex_state = 188}, - [3962] = {.lex_state = 131}, + [3962] = {.lex_state = 188}, [3963] = {.lex_state = 188}, [3964] = {.lex_state = 188}, - [3965] = {.lex_state = 189, .external_lex_state = 17}, + [3965] = {.lex_state = 188}, [3966] = {.lex_state = 188}, [3967] = {.lex_state = 188}, [3968] = {.lex_state = 188}, [3969] = {.lex_state = 188}, [3970] = {.lex_state = 188}, [3971] = {.lex_state = 188}, - [3972] = {.lex_state = 189, .external_lex_state = 14}, + [3972] = {.lex_state = 188}, [3973] = {.lex_state = 188}, - [3974] = {.lex_state = 131, .external_lex_state = 4}, + [3974] = {.lex_state = 188}, [3975] = {.lex_state = 188}, [3976] = {.lex_state = 188}, [3977] = {.lex_state = 188}, @@ -25391,16 +25568,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3979] = {.lex_state = 188}, [3980] = {.lex_state = 188}, [3981] = {.lex_state = 188}, - [3982] = {.lex_state = 188}, + [3982] = {.lex_state = 341, .external_lex_state = 16}, [3983] = {.lex_state = 188}, - [3984] = {.lex_state = 189, .external_lex_state = 17}, - [3985] = {.lex_state = 340}, + [3984] = {.lex_state = 188}, + [3985] = {.lex_state = 188}, [3986] = {.lex_state = 188}, [3987] = {.lex_state = 188}, - [3988] = {.lex_state = 189, .external_lex_state = 16}, + [3988] = {.lex_state = 188}, [3989] = {.lex_state = 188}, [3990] = {.lex_state = 188}, - [3991] = {.lex_state = 188}, + [3991] = {.lex_state = 341, .external_lex_state = 16}, [3992] = {.lex_state = 188}, [3993] = {.lex_state = 188}, [3994] = {.lex_state = 188}, @@ -25412,34 +25589,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4000] = {.lex_state = 188}, [4001] = {.lex_state = 188}, [4002] = {.lex_state = 188}, - [4003] = {.lex_state = 188}, + [4003] = {.lex_state = 341, .external_lex_state = 16}, [4004] = {.lex_state = 188}, - [4005] = {.lex_state = 340}, + [4005] = {.lex_state = 188}, [4006] = {.lex_state = 188}, [4007] = {.lex_state = 188}, [4008] = {.lex_state = 188}, [4009] = {.lex_state = 188}, - [4010] = {.lex_state = 340}, - [4011] = {.lex_state = 188}, + [4010] = {.lex_state = 188}, + [4011] = {.lex_state = 189, .external_lex_state = 14}, [4012] = {.lex_state = 188}, [4013] = {.lex_state = 188}, [4014] = {.lex_state = 188}, - [4015] = {.lex_state = 188}, + [4015] = {.lex_state = 162}, [4016] = {.lex_state = 188}, [4017] = {.lex_state = 188}, [4018] = {.lex_state = 188}, [4019] = {.lex_state = 188}, - [4020] = {.lex_state = 186, .external_lex_state = 14}, + [4020] = {.lex_state = 188}, [4021] = {.lex_state = 188}, [4022] = {.lex_state = 188}, [4023] = {.lex_state = 188}, [4024] = {.lex_state = 188}, [4025] = {.lex_state = 188}, [4026] = {.lex_state = 188}, - [4027] = {.lex_state = 340}, - [4028] = {.lex_state = 340}, + [4027] = {.lex_state = 188}, + [4028] = {.lex_state = 188}, [4029] = {.lex_state = 188}, - [4030] = {.lex_state = 188}, + [4030] = {.lex_state = 189, .external_lex_state = 14}, [4031] = {.lex_state = 188}, [4032] = {.lex_state = 188}, [4033] = {.lex_state = 188}, @@ -25453,15 +25630,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4041] = {.lex_state = 188}, [4042] = {.lex_state = 188}, [4043] = {.lex_state = 188}, - [4044] = {.lex_state = 189, .external_lex_state = 14}, + [4044] = {.lex_state = 341, .external_lex_state = 16}, [4045] = {.lex_state = 188}, - [4046] = {.lex_state = 188}, + [4046] = {.lex_state = 341, .external_lex_state = 16}, [4047] = {.lex_state = 188}, - [4048] = {.lex_state = 131}, - [4049] = {.lex_state = 188}, + [4048] = {.lex_state = 188}, + [4049] = {.lex_state = 131}, [4050] = {.lex_state = 188}, [4051] = {.lex_state = 188}, - [4052] = {.lex_state = 340}, + [4052] = {.lex_state = 188}, [4053] = {.lex_state = 188}, [4054] = {.lex_state = 188}, [4055] = {.lex_state = 188}, @@ -25473,7 +25650,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4061] = {.lex_state = 188}, [4062] = {.lex_state = 188}, [4063] = {.lex_state = 188}, - [4064] = {.lex_state = 188}, + [4064] = {.lex_state = 341, .external_lex_state = 16}, [4065] = {.lex_state = 188}, [4066] = {.lex_state = 188}, [4067] = {.lex_state = 188}, @@ -25485,36 +25662,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4073] = {.lex_state = 188}, [4074] = {.lex_state = 188}, [4075] = {.lex_state = 188}, - [4076] = {.lex_state = 188}, - [4077] = {.lex_state = 188}, + [4076] = {.lex_state = 341, .external_lex_state = 16}, + [4077] = {.lex_state = 189, .external_lex_state = 17}, [4078] = {.lex_state = 188}, [4079] = {.lex_state = 188}, - [4080] = {.lex_state = 188}, + [4080] = {.lex_state = 166}, [4081] = {.lex_state = 188}, - [4082] = {.lex_state = 340}, + [4082] = {.lex_state = 188}, [4083] = {.lex_state = 188}, [4084] = {.lex_state = 188}, [4085] = {.lex_state = 188}, [4086] = {.lex_state = 188}, [4087] = {.lex_state = 188}, - [4088] = {.lex_state = 189, .external_lex_state = 16}, + [4088] = {.lex_state = 188}, [4089] = {.lex_state = 188}, - [4090] = {.lex_state = 340}, + [4090] = {.lex_state = 188}, [4091] = {.lex_state = 188}, [4092] = {.lex_state = 188}, [4093] = {.lex_state = 188}, [4094] = {.lex_state = 188}, [4095] = {.lex_state = 188}, - [4096] = {.lex_state = 189, .external_lex_state = 16}, + [4096] = {.lex_state = 162}, [4097] = {.lex_state = 188}, [4098] = {.lex_state = 188}, [4099] = {.lex_state = 188}, [4100] = {.lex_state = 188}, [4101] = {.lex_state = 188}, - [4102] = {.lex_state = 340}, - [4103] = {.lex_state = 340}, + [4102] = {.lex_state = 188}, + [4103] = {.lex_state = 180, .external_lex_state = 14}, [4104] = {.lex_state = 188}, - [4105] = {.lex_state = 189, .external_lex_state = 14}, + [4105] = {.lex_state = 188}, [4106] = {.lex_state = 188}, [4107] = {.lex_state = 188}, [4108] = {.lex_state = 188}, @@ -25523,36 +25700,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4111] = {.lex_state = 188}, [4112] = {.lex_state = 188}, [4113] = {.lex_state = 188}, - [4114] = {.lex_state = 340}, + [4114] = {.lex_state = 188}, [4115] = {.lex_state = 188}, - [4116] = {.lex_state = 188}, - [4117] = {.lex_state = 340}, - [4118] = {.lex_state = 340}, + [4116] = {.lex_state = 162}, + [4117] = {.lex_state = 188}, + [4118] = {.lex_state = 341}, [4119] = {.lex_state = 188}, [4120] = {.lex_state = 188}, [4121] = {.lex_state = 188}, - [4122] = {.lex_state = 340}, - [4123] = {.lex_state = 188}, - [4124] = {.lex_state = 340}, - [4125] = {.lex_state = 340}, + [4122] = {.lex_state = 188}, + [4123] = {.lex_state = 162}, + [4124] = {.lex_state = 188}, + [4125] = {.lex_state = 188}, [4126] = {.lex_state = 188}, - [4127] = {.lex_state = 340}, - [4128] = {.lex_state = 340}, - [4129] = {.lex_state = 340}, - [4130] = {.lex_state = 340}, - [4131] = {.lex_state = 340}, - [4132] = {.lex_state = 340}, + [4127] = {.lex_state = 188}, + [4128] = {.lex_state = 188}, + [4129] = {.lex_state = 188}, + [4130] = {.lex_state = 188}, + [4131] = {.lex_state = 188}, + [4132] = {.lex_state = 341, .external_lex_state = 16}, [4133] = {.lex_state = 188}, - [4134] = {.lex_state = 340}, + [4134] = {.lex_state = 188}, [4135] = {.lex_state = 188}, - [4136] = {.lex_state = 340}, - [4137] = {.lex_state = 340}, - [4138] = {.lex_state = 340}, - [4139] = {.lex_state = 340}, - [4140] = {.lex_state = 340}, - [4141] = {.lex_state = 340}, - [4142] = {.lex_state = 340}, - [4143] = {.lex_state = 340}, + [4136] = {.lex_state = 188}, + [4137] = {.lex_state = 188}, + [4138] = {.lex_state = 188}, + [4139] = {.lex_state = 188}, + [4140] = {.lex_state = 188}, + [4141] = {.lex_state = 188}, + [4142] = {.lex_state = 188}, + [4143] = {.lex_state = 188}, [4144] = {.lex_state = 188}, [4145] = {.lex_state = 188}, [4146] = {.lex_state = 188}, @@ -25562,4114 +25739,4279 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4150] = {.lex_state = 188}, [4151] = {.lex_state = 188}, [4152] = {.lex_state = 188}, - [4153] = {.lex_state = 188}, + [4153] = {.lex_state = 341, .external_lex_state = 16}, [4154] = {.lex_state = 188}, [4155] = {.lex_state = 188}, [4156] = {.lex_state = 188}, - [4157] = {.lex_state = 189, .external_lex_state = 14}, + [4157] = {.lex_state = 188}, [4158] = {.lex_state = 188}, - [4159] = {.lex_state = 189, .external_lex_state = 18}, + [4159] = {.lex_state = 188}, [4160] = {.lex_state = 188}, [4161] = {.lex_state = 188}, [4162] = {.lex_state = 188}, - [4163] = {.lex_state = 131, .external_lex_state = 4}, - [4164] = {.lex_state = 188}, + [4163] = {.lex_state = 188}, + [4164] = {.lex_state = 341, .external_lex_state = 16}, [4165] = {.lex_state = 188}, - [4166] = {.lex_state = 340}, - [4167] = {.lex_state = 340}, - [4168] = {.lex_state = 189, .external_lex_state = 16}, - [4169] = {.lex_state = 340}, - [4170] = {.lex_state = 340}, - [4171] = {.lex_state = 340}, + [4166] = {.lex_state = 188}, + [4167] = {.lex_state = 341, .external_lex_state = 16}, + [4168] = {.lex_state = 341, .external_lex_state = 16}, + [4169] = {.lex_state = 188}, + [4170] = {.lex_state = 341, .external_lex_state = 16}, + [4171] = {.lex_state = 188}, [4172] = {.lex_state = 188}, - [4173] = {.lex_state = 340}, + [4173] = {.lex_state = 188}, [4174] = {.lex_state = 188}, [4175] = {.lex_state = 188}, [4176] = {.lex_state = 188}, [4177] = {.lex_state = 188}, [4178] = {.lex_state = 188}, [4179] = {.lex_state = 188}, - [4180] = {.lex_state = 189, .external_lex_state = 18}, - [4181] = {.lex_state = 189, .external_lex_state = 18}, - [4182] = {.lex_state = 188}, - [4183] = {.lex_state = 188}, - [4184] = {.lex_state = 188}, - [4185] = {.lex_state = 188}, - [4186] = {.lex_state = 188}, - [4187] = {.lex_state = 188}, - [4188] = {.lex_state = 188}, - [4189] = {.lex_state = 188}, - [4190] = {.lex_state = 131, .external_lex_state = 4}, - [4191] = {.lex_state = 188}, - [4192] = {.lex_state = 131}, - [4193] = {.lex_state = 188}, - [4194] = {.lex_state = 188}, - [4195] = {.lex_state = 188}, - [4196] = {.lex_state = 188}, - [4197] = {.lex_state = 188}, - [4198] = {.lex_state = 188}, - [4199] = {.lex_state = 188}, - [4200] = {.lex_state = 188}, - [4201] = {.lex_state = 189, .external_lex_state = 14}, - [4202] = {.lex_state = 188}, - [4203] = {.lex_state = 188}, - [4204] = {.lex_state = 189, .external_lex_state = 18}, + [4180] = {.lex_state = 189, .external_lex_state = 16}, + [4181] = {.lex_state = 189, .external_lex_state = 14}, + [4182] = {.lex_state = 189, .external_lex_state = 14}, + [4183] = {.lex_state = 341}, + [4184] = {.lex_state = 341}, + [4185] = {.lex_state = 189, .external_lex_state = 16}, + [4186] = {.lex_state = 189, .external_lex_state = 14}, + [4187] = {.lex_state = 189, .external_lex_state = 17}, + [4188] = {.lex_state = 341}, + [4189] = {.lex_state = 189, .external_lex_state = 17}, + [4190] = {.lex_state = 189, .external_lex_state = 16}, + [4191] = {.lex_state = 189, .external_lex_state = 14}, + [4192] = {.lex_state = 189, .external_lex_state = 16}, + [4193] = {.lex_state = 189, .external_lex_state = 14}, + [4194] = {.lex_state = 189, .external_lex_state = 17}, + [4195] = {.lex_state = 189, .external_lex_state = 16}, + [4196] = {.lex_state = 189, .external_lex_state = 16}, + [4197] = {.lex_state = 189, .external_lex_state = 17}, + [4198] = {.lex_state = 189, .external_lex_state = 16}, + [4199] = {.lex_state = 189, .external_lex_state = 18}, + [4200] = {.lex_state = 189, .external_lex_state = 16}, + [4201] = {.lex_state = 189, .external_lex_state = 16}, + [4202] = {.lex_state = 189, .external_lex_state = 18}, + [4203] = {.lex_state = 189, .external_lex_state = 18}, + [4204] = {.lex_state = 189, .external_lex_state = 16}, [4205] = {.lex_state = 189, .external_lex_state = 18}, [4206] = {.lex_state = 189, .external_lex_state = 18}, - [4207] = {.lex_state = 189, .external_lex_state = 14}, - [4208] = {.lex_state = 189, .external_lex_state = 17}, - [4209] = {.lex_state = 188}, - [4210] = {.lex_state = 340}, - [4211] = {.lex_state = 189, .external_lex_state = 18}, - [4212] = {.lex_state = 188}, - [4213] = {.lex_state = 189, .external_lex_state = 14}, - [4214] = {.lex_state = 188}, - [4215] = {.lex_state = 188}, - [4216] = {.lex_state = 340}, - [4217] = {.lex_state = 188}, - [4218] = {.lex_state = 131, .external_lex_state = 4}, - [4219] = {.lex_state = 340}, - [4220] = {.lex_state = 131, .external_lex_state = 4}, - [4221] = {.lex_state = 188}, - [4222] = {.lex_state = 188}, - [4223] = {.lex_state = 189, .external_lex_state = 18}, - [4224] = {.lex_state = 188}, - [4225] = {.lex_state = 188}, - [4226] = {.lex_state = 188}, - [4227] = {.lex_state = 188}, - [4228] = {.lex_state = 188}, - [4229] = {.lex_state = 188}, - [4230] = {.lex_state = 188}, - [4231] = {.lex_state = 188}, + [4207] = {.lex_state = 189, .external_lex_state = 17}, + [4208] = {.lex_state = 189, .external_lex_state = 18}, + [4209] = {.lex_state = 341}, + [4210] = {.lex_state = 189, .external_lex_state = 16}, + [4211] = {.lex_state = 189, .external_lex_state = 17}, + [4212] = {.lex_state = 189, .external_lex_state = 16}, + [4213] = {.lex_state = 189, .external_lex_state = 16}, + [4214] = {.lex_state = 189, .external_lex_state = 18}, + [4215] = {.lex_state = 189, .external_lex_state = 14}, + [4216] = {.lex_state = 341}, + [4217] = {.lex_state = 180}, + [4218] = {.lex_state = 189, .external_lex_state = 14}, + [4219] = {.lex_state = 189, .external_lex_state = 17}, + [4220] = {.lex_state = 189, .external_lex_state = 14}, + [4221] = {.lex_state = 189, .external_lex_state = 17}, + [4222] = {.lex_state = 189, .external_lex_state = 14}, + [4223] = {.lex_state = 189, .external_lex_state = 17}, + [4224] = {.lex_state = 131}, + [4225] = {.lex_state = 189, .external_lex_state = 18}, + [4226] = {.lex_state = 131}, + [4227] = {.lex_state = 189, .external_lex_state = 14}, + [4228] = {.lex_state = 131, .external_lex_state = 5}, + [4229] = {.lex_state = 189, .external_lex_state = 16}, + [4230] = {.lex_state = 189, .external_lex_state = 17}, + [4231] = {.lex_state = 189, .external_lex_state = 14}, [4232] = {.lex_state = 189, .external_lex_state = 17}, - [4233] = {.lex_state = 188}, - [4234] = {.lex_state = 188}, - [4235] = {.lex_state = 188}, - [4236] = {.lex_state = 188}, - [4237] = {.lex_state = 188}, - [4238] = {.lex_state = 340}, - [4239] = {.lex_state = 188}, - [4240] = {.lex_state = 188}, - [4241] = {.lex_state = 188}, - [4242] = {.lex_state = 188}, - [4243] = {.lex_state = 189, .external_lex_state = 16}, - [4244] = {.lex_state = 189, .external_lex_state = 16}, - [4245] = {.lex_state = 188}, - [4246] = {.lex_state = 189, .external_lex_state = 16}, - [4247] = {.lex_state = 188}, - [4248] = {.lex_state = 188}, - [4249] = {.lex_state = 188}, - [4250] = {.lex_state = 188}, - [4251] = {.lex_state = 188}, - [4252] = {.lex_state = 188}, - [4253] = {.lex_state = 189, .external_lex_state = 17}, - [4254] = {.lex_state = 131, .external_lex_state = 4}, - [4255] = {.lex_state = 188}, - [4256] = {.lex_state = 189, .external_lex_state = 17}, - [4257] = {.lex_state = 188}, + [4233] = {.lex_state = 189, .external_lex_state = 18}, + [4234] = {.lex_state = 341}, + [4235] = {.lex_state = 189, .external_lex_state = 18}, + [4236] = {.lex_state = 189, .external_lex_state = 14}, + [4237] = {.lex_state = 341}, + [4238] = {.lex_state = 189, .external_lex_state = 18}, + [4239] = {.lex_state = 189, .external_lex_state = 17}, + [4240] = {.lex_state = 341}, + [4241] = {.lex_state = 341}, + [4242] = {.lex_state = 189, .external_lex_state = 14}, + [4243] = {.lex_state = 189, .external_lex_state = 14}, + [4244] = {.lex_state = 189, .external_lex_state = 18}, + [4245] = {.lex_state = 189, .external_lex_state = 16}, + [4246] = {.lex_state = 189, .external_lex_state = 18}, + [4247] = {.lex_state = 189, .external_lex_state = 17}, + [4248] = {.lex_state = 341}, + [4249] = {.lex_state = 189, .external_lex_state = 18}, + [4250] = {.lex_state = 189, .external_lex_state = 17}, + [4251] = {.lex_state = 341}, + [4252] = {.lex_state = 189, .external_lex_state = 17}, + [4253] = {.lex_state = 341}, + [4254] = {.lex_state = 189, .external_lex_state = 18}, + [4255] = {.lex_state = 131, .external_lex_state = 5}, + [4256] = {.lex_state = 189, .external_lex_state = 16}, + [4257] = {.lex_state = 341}, [4258] = {.lex_state = 189, .external_lex_state = 17}, - [4259] = {.lex_state = 188}, - [4260] = {.lex_state = 188}, - [4261] = {.lex_state = 189, .external_lex_state = 14}, - [4262] = {.lex_state = 188}, - [4263] = {.lex_state = 188}, - [4264] = {.lex_state = 188}, - [4265] = {.lex_state = 188}, - [4266] = {.lex_state = 188}, - [4267] = {.lex_state = 188}, - [4268] = {.lex_state = 188}, - [4269] = {.lex_state = 188}, - [4270] = {.lex_state = 188}, - [4271] = {.lex_state = 188}, - [4272] = {.lex_state = 188}, - [4273] = {.lex_state = 188}, - [4274] = {.lex_state = 188}, - [4275] = {.lex_state = 188}, - [4276] = {.lex_state = 188}, - [4277] = {.lex_state = 188}, - [4278] = {.lex_state = 188}, - [4279] = {.lex_state = 188}, - [4280] = {.lex_state = 188}, - [4281] = {.lex_state = 188}, - [4282] = {.lex_state = 188}, - [4283] = {.lex_state = 188}, - [4284] = {.lex_state = 188}, - [4285] = {.lex_state = 188}, - [4286] = {.lex_state = 188}, - [4287] = {.lex_state = 188}, - [4288] = {.lex_state = 189, .external_lex_state = 16}, - [4289] = {.lex_state = 188}, - [4290] = {.lex_state = 188}, - [4291] = {.lex_state = 188}, - [4292] = {.lex_state = 189, .external_lex_state = 16}, - [4293] = {.lex_state = 189, .external_lex_state = 16}, - [4294] = {.lex_state = 340}, - [4295] = {.lex_state = 340, .external_lex_state = 17}, - [4296] = {.lex_state = 189, .external_lex_state = 14}, - [4297] = {.lex_state = 131, .external_lex_state = 6}, - [4298] = {.lex_state = 189, .external_lex_state = 14}, - [4299] = {.lex_state = 189, .external_lex_state = 18}, - [4300] = {.lex_state = 340}, - [4301] = {.lex_state = 189, .external_lex_state = 18}, - [4302] = {.lex_state = 189, .external_lex_state = 18}, - [4303] = {.lex_state = 189, .external_lex_state = 18}, - [4304] = {.lex_state = 189, .external_lex_state = 18}, - [4305] = {.lex_state = 189, .external_lex_state = 18}, - [4306] = {.lex_state = 189, .external_lex_state = 16}, - [4307] = {.lex_state = 189, .external_lex_state = 16}, - [4308] = {.lex_state = 189, .external_lex_state = 18}, - [4309] = {.lex_state = 131, .external_lex_state = 4}, - [4310] = {.lex_state = 189, .external_lex_state = 14}, - [4311] = {.lex_state = 189, .external_lex_state = 16}, - [4312] = {.lex_state = 189, .external_lex_state = 16}, - [4313] = {.lex_state = 189, .external_lex_state = 17}, - [4314] = {.lex_state = 189, .external_lex_state = 17}, + [4259] = {.lex_state = 189, .external_lex_state = 14}, + [4260] = {.lex_state = 341}, + [4261] = {.lex_state = 341}, + [4262] = {.lex_state = 189, .external_lex_state = 16}, + [4263] = {.lex_state = 341}, + [4264] = {.lex_state = 341}, + [4265] = {.lex_state = 341}, + [4266] = {.lex_state = 131, .external_lex_state = 5}, + [4267] = {.lex_state = 131}, + [4268] = {.lex_state = 341}, + [4269] = {.lex_state = 131, .external_lex_state = 5}, + [4270] = {.lex_state = 341}, + [4271] = {.lex_state = 341}, + [4272] = {.lex_state = 131, .external_lex_state = 5}, + [4273] = {.lex_state = 341}, + [4274] = {.lex_state = 189, .external_lex_state = 17}, + [4275] = {.lex_state = 341}, + [4276] = {.lex_state = 189, .external_lex_state = 14}, + [4277] = {.lex_state = 341}, + [4278] = {.lex_state = 189, .external_lex_state = 17}, + [4279] = {.lex_state = 341}, + [4280] = {.lex_state = 189, .external_lex_state = 14}, + [4281] = {.lex_state = 341}, + [4282] = {.lex_state = 341}, + [4283] = {.lex_state = 189, .external_lex_state = 16}, + [4284] = {.lex_state = 341}, + [4285] = {.lex_state = 341}, + [4286] = {.lex_state = 189, .external_lex_state = 16}, + [4287] = {.lex_state = 186, .external_lex_state = 14}, + [4288] = {.lex_state = 341}, + [4289] = {.lex_state = 341}, + [4290] = {.lex_state = 341}, + [4291] = {.lex_state = 341}, + [4292] = {.lex_state = 341}, + [4293] = {.lex_state = 341}, + [4294] = {.lex_state = 341}, + [4295] = {.lex_state = 341}, + [4296] = {.lex_state = 341}, + [4297] = {.lex_state = 189, .external_lex_state = 16}, + [4298] = {.lex_state = 131, .external_lex_state = 5}, + [4299] = {.lex_state = 341}, + [4300] = {.lex_state = 341}, + [4301] = {.lex_state = 341}, + [4302] = {.lex_state = 341}, + [4303] = {.lex_state = 189, .external_lex_state = 14}, + [4304] = {.lex_state = 341}, + [4305] = {.lex_state = 341}, + [4306] = {.lex_state = 341}, + [4307] = {.lex_state = 341}, + [4308] = {.lex_state = 341}, + [4309] = {.lex_state = 341}, + [4310] = {.lex_state = 189, .external_lex_state = 16}, + [4311] = {.lex_state = 341}, + [4312] = {.lex_state = 189, .external_lex_state = 14}, + [4313] = {.lex_state = 131, .external_lex_state = 5}, + [4314] = {.lex_state = 131, .external_lex_state = 5}, [4315] = {.lex_state = 189, .external_lex_state = 16}, - [4316] = {.lex_state = 189, .external_lex_state = 17}, - [4317] = {.lex_state = 189, .external_lex_state = 17}, - [4318] = {.lex_state = 189, .external_lex_state = 17}, - [4319] = {.lex_state = 131, .external_lex_state = 4}, - [4320] = {.lex_state = 189, .external_lex_state = 17}, - [4321] = {.lex_state = 189, .external_lex_state = 18}, - [4322] = {.lex_state = 189, .external_lex_state = 17}, - [4323] = {.lex_state = 189, .external_lex_state = 17}, - [4324] = {.lex_state = 189, .external_lex_state = 14}, - [4325] = {.lex_state = 189, .external_lex_state = 14}, - [4326] = {.lex_state = 189, .external_lex_state = 17}, - [4327] = {.lex_state = 186}, - [4328] = {.lex_state = 131, .external_lex_state = 6}, - [4329] = {.lex_state = 131, .external_lex_state = 4}, + [4316] = {.lex_state = 131, .external_lex_state = 5}, + [4317] = {.lex_state = 341, .external_lex_state = 14}, + [4318] = {.lex_state = 131, .external_lex_state = 5}, + [4319] = {.lex_state = 341, .external_lex_state = 14}, + [4320] = {.lex_state = 186}, + [4321] = {.lex_state = 189, .external_lex_state = 16}, + [4322] = {.lex_state = 189, .external_lex_state = 18}, + [4323] = {.lex_state = 189, .external_lex_state = 16}, + [4324] = {.lex_state = 131, .external_lex_state = 5}, + [4325] = {.lex_state = 131, .external_lex_state = 6}, + [4326] = {.lex_state = 131, .external_lex_state = 5}, + [4327] = {.lex_state = 341}, + [4328] = {.lex_state = 131, .external_lex_state = 5}, + [4329] = {.lex_state = 131, .external_lex_state = 5}, [4330] = {.lex_state = 189, .external_lex_state = 17}, - [4331] = {.lex_state = 340, .external_lex_state = 17}, - [4332] = {.lex_state = 189, .external_lex_state = 14}, - [4333] = {.lex_state = 340, .external_lex_state = 14}, - [4334] = {.lex_state = 131, .external_lex_state = 4}, - [4335] = {.lex_state = 340}, - [4336] = {.lex_state = 131, .external_lex_state = 4}, - [4337] = {.lex_state = 189, .external_lex_state = 18}, + [4331] = {.lex_state = 189, .external_lex_state = 17}, + [4332] = {.lex_state = 189, .external_lex_state = 17}, + [4333] = {.lex_state = 189, .external_lex_state = 17}, + [4334] = {.lex_state = 189, .external_lex_state = 17}, + [4335] = {.lex_state = 189, .external_lex_state = 17}, + [4336] = {.lex_state = 131, .external_lex_state = 5}, + [4337] = {.lex_state = 189, .external_lex_state = 14}, [4338] = {.lex_state = 189, .external_lex_state = 17}, - [4339] = {.lex_state = 131, .external_lex_state = 4}, - [4340] = {.lex_state = 131, .external_lex_state = 4}, - [4341] = {.lex_state = 131, .external_lex_state = 6}, - [4342] = {.lex_state = 189, .external_lex_state = 14}, - [4343] = {.lex_state = 189, .external_lex_state = 16}, - [4344] = {.lex_state = 131, .external_lex_state = 4}, - [4345] = {.lex_state = 131, .external_lex_state = 4}, - [4346] = {.lex_state = 189, .external_lex_state = 16}, - [4347] = {.lex_state = 340, .external_lex_state = 17}, - [4348] = {.lex_state = 340}, - [4349] = {.lex_state = 189, .external_lex_state = 14}, - [4350] = {.lex_state = 131, .external_lex_state = 4}, - [4351] = {.lex_state = 131, .external_lex_state = 4}, + [4339] = {.lex_state = 131, .external_lex_state = 5}, + [4340] = {.lex_state = 131, .external_lex_state = 5}, + [4341] = {.lex_state = 189, .external_lex_state = 16}, + [4342] = {.lex_state = 131, .external_lex_state = 6}, + [4343] = {.lex_state = 131, .external_lex_state = 5}, + [4344] = {.lex_state = 189, .external_lex_state = 14}, + [4345] = {.lex_state = 131, .external_lex_state = 5}, + [4346] = {.lex_state = 189, .external_lex_state = 14}, + [4347] = {.lex_state = 131, .external_lex_state = 5}, + [4348] = {.lex_state = 189, .external_lex_state = 17}, + [4349] = {.lex_state = 131, .external_lex_state = 5}, + [4350] = {.lex_state = 189, .external_lex_state = 14}, + [4351] = {.lex_state = 189, .external_lex_state = 17}, [4352] = {.lex_state = 189, .external_lex_state = 14}, [4353] = {.lex_state = 189, .external_lex_state = 14}, - [4354] = {.lex_state = 340, .external_lex_state = 14}, - [4355] = {.lex_state = 131, .external_lex_state = 4}, - [4356] = {.lex_state = 131, .external_lex_state = 6}, - [4357] = {.lex_state = 189, .external_lex_state = 16}, - [4358] = {.lex_state = 131, .external_lex_state = 6}, - [4359] = {.lex_state = 189, .external_lex_state = 14}, - [4360] = {.lex_state = 189, .external_lex_state = 18}, - [4361] = {.lex_state = 131, .external_lex_state = 4}, - [4362] = {.lex_state = 131, .external_lex_state = 4}, - [4363] = {.lex_state = 131, .external_lex_state = 6}, - [4364] = {.lex_state = 340, .external_lex_state = 14}, - [4365] = {.lex_state = 131, .external_lex_state = 4}, - [4366] = {.lex_state = 340}, - [4367] = {.lex_state = 340, .external_lex_state = 16}, - [4368] = {.lex_state = 131, .external_lex_state = 4}, - [4369] = {.lex_state = 131, .external_lex_state = 4}, - [4370] = {.lex_state = 131, .external_lex_state = 4}, - [4371] = {.lex_state = 178}, - [4372] = {.lex_state = 340, .external_lex_state = 18}, - [4373] = {.lex_state = 340, .external_lex_state = 16}, - [4374] = {.lex_state = 189, .external_lex_state = 16}, - [4375] = {.lex_state = 189, .external_lex_state = 16}, - [4376] = {.lex_state = 131, .external_lex_state = 4}, - [4377] = {.lex_state = 189, .external_lex_state = 16}, - [4378] = {.lex_state = 131, .external_lex_state = 6}, - [4379] = {.lex_state = 189, .external_lex_state = 18}, - [4380] = {.lex_state = 131, .external_lex_state = 6}, - [4381] = {.lex_state = 189, .external_lex_state = 16}, - [4382] = {.lex_state = 189, .external_lex_state = 18}, - [4383] = {.lex_state = 131, .external_lex_state = 4}, - [4384] = {.lex_state = 189, .external_lex_state = 16}, + [4354] = {.lex_state = 189, .external_lex_state = 17}, + [4355] = {.lex_state = 341, .external_lex_state = 17}, + [4356] = {.lex_state = 341, .external_lex_state = 17}, + [4357] = {.lex_state = 189, .external_lex_state = 17}, + [4358] = {.lex_state = 189, .external_lex_state = 16}, + [4359] = {.lex_state = 189, .external_lex_state = 18}, + [4360] = {.lex_state = 189, .external_lex_state = 17}, + [4361] = {.lex_state = 189, .external_lex_state = 16}, + [4362] = {.lex_state = 189, .external_lex_state = 16}, + [4363] = {.lex_state = 189, .external_lex_state = 18}, + [4364] = {.lex_state = 189, .external_lex_state = 16}, + [4365] = {.lex_state = 189, .external_lex_state = 18}, + [4366] = {.lex_state = 189, .external_lex_state = 14}, + [4367] = {.lex_state = 189, .external_lex_state = 18}, + [4368] = {.lex_state = 189, .external_lex_state = 16}, + [4369] = {.lex_state = 189, .external_lex_state = 16}, + [4370] = {.lex_state = 131, .external_lex_state = 6}, + [4371] = {.lex_state = 189, .external_lex_state = 14}, + [4372] = {.lex_state = 189, .external_lex_state = 14}, + [4373] = {.lex_state = 341, .external_lex_state = 14}, + [4374] = {.lex_state = 189, .external_lex_state = 18}, + [4375] = {.lex_state = 131, .external_lex_state = 6}, + [4376] = {.lex_state = 341, .external_lex_state = 17}, + [4377] = {.lex_state = 189, .external_lex_state = 18}, + [4378] = {.lex_state = 189, .external_lex_state = 18}, + [4379] = {.lex_state = 131, .external_lex_state = 6}, + [4380] = {.lex_state = 189, .external_lex_state = 14}, + [4381] = {.lex_state = 189, .external_lex_state = 18}, + [4382] = {.lex_state = 131, .external_lex_state = 6}, + [4383] = {.lex_state = 189, .external_lex_state = 14}, + [4384] = {.lex_state = 341}, [4385] = {.lex_state = 189, .external_lex_state = 18}, - [4386] = {.lex_state = 131, .external_lex_state = 4}, - [4387] = {.lex_state = 131, .external_lex_state = 4}, - [4388] = {.lex_state = 131, .external_lex_state = 4}, - [4389] = {.lex_state = 131, .external_lex_state = 4}, - [4390] = {.lex_state = 189, .external_lex_state = 18}, + [4386] = {.lex_state = 341}, + [4387] = {.lex_state = 341}, + [4388] = {.lex_state = 341}, + [4389] = {.lex_state = 131, .external_lex_state = 5}, + [4390] = {.lex_state = 131, .external_lex_state = 6}, [4391] = {.lex_state = 131, .external_lex_state = 6}, - [4392] = {.lex_state = 131, .external_lex_state = 6}, - [4393] = {.lex_state = 131, .external_lex_state = 4}, - [4394] = {.lex_state = 178}, - [4395] = {.lex_state = 131, .external_lex_state = 6}, - [4396] = {.lex_state = 131, .external_lex_state = 4}, - [4397] = {.lex_state = 131, .external_lex_state = 4}, - [4398] = {.lex_state = 131, .external_lex_state = 6}, - [4399] = {.lex_state = 131, .external_lex_state = 6}, - [4400] = {.lex_state = 131, .external_lex_state = 4}, + [4392] = {.lex_state = 189, .external_lex_state = 18}, + [4393] = {.lex_state = 189, .external_lex_state = 18}, + [4394] = {.lex_state = 131, .external_lex_state = 6}, + [4395] = {.lex_state = 189, .external_lex_state = 18}, + [4396] = {.lex_state = 189, .external_lex_state = 18}, + [4397] = {.lex_state = 189, .external_lex_state = 18}, + [4398] = {.lex_state = 189, .external_lex_state = 18}, + [4399] = {.lex_state = 131, .external_lex_state = 5}, + [4400] = {.lex_state = 131, .external_lex_state = 5}, [4401] = {.lex_state = 131, .external_lex_state = 6}, [4402] = {.lex_state = 189, .external_lex_state = 18}, - [4403] = {.lex_state = 131, .external_lex_state = 4}, + [4403] = {.lex_state = 189, .external_lex_state = 18}, [4404] = {.lex_state = 189, .external_lex_state = 18}, - [4405] = {.lex_state = 131, .external_lex_state = 4}, - [4406] = {.lex_state = 189, .external_lex_state = 16}, - [4407] = {.lex_state = 131, .external_lex_state = 4}, - [4408] = {.lex_state = 178}, - [4409] = {.lex_state = 131, .external_lex_state = 4}, - [4410] = {.lex_state = 189, .external_lex_state = 16}, - [4411] = {.lex_state = 189, .external_lex_state = 16}, - [4412] = {.lex_state = 131, .external_lex_state = 4}, - [4413] = {.lex_state = 131, .external_lex_state = 4}, - [4414] = {.lex_state = 131, .external_lex_state = 4}, - [4415] = {.lex_state = 189, .external_lex_state = 18}, - [4416] = {.lex_state = 178}, - [4417] = {.lex_state = 189, .external_lex_state = 18}, - [4418] = {.lex_state = 178}, - [4419] = {.lex_state = 340, .external_lex_state = 18}, - [4420] = {.lex_state = 178, .external_lex_state = 14}, - [4421] = {.lex_state = 131, .external_lex_state = 6}, - [4422] = {.lex_state = 131, .external_lex_state = 6}, - [4423] = {.lex_state = 131, .external_lex_state = 4}, - [4424] = {.lex_state = 131, .external_lex_state = 4}, - [4425] = {.lex_state = 131, .external_lex_state = 4}, - [4426] = {.lex_state = 189, .external_lex_state = 18}, - [4427] = {.lex_state = 178}, - [4428] = {.lex_state = 131, .external_lex_state = 4}, - [4429] = {.lex_state = 189, .external_lex_state = 18}, - [4430] = {.lex_state = 189, .external_lex_state = 18}, - [4431] = {.lex_state = 131, .external_lex_state = 4}, - [4432] = {.lex_state = 131, .external_lex_state = 4}, - [4433] = {.lex_state = 340, .external_lex_state = 16}, - [4434] = {.lex_state = 178}, - [4435] = {.lex_state = 131, .external_lex_state = 4}, - [4436] = {.lex_state = 131, .external_lex_state = 6}, - [4437] = {.lex_state = 340, .external_lex_state = 14}, - [4438] = {.lex_state = 131, .external_lex_state = 4}, - [4439] = {.lex_state = 131, .external_lex_state = 4}, - [4440] = {.lex_state = 131, .external_lex_state = 4}, - [4441] = {.lex_state = 189, .external_lex_state = 16}, - [4442] = {.lex_state = 131, .external_lex_state = 4}, - [4443] = {.lex_state = 131, .external_lex_state = 6}, - [4444] = {.lex_state = 189, .external_lex_state = 16}, - [4445] = {.lex_state = 131, .external_lex_state = 4}, - [4446] = {.lex_state = 340, .external_lex_state = 14}, - [4447] = {.lex_state = 131, .external_lex_state = 4}, - [4448] = {.lex_state = 131, .external_lex_state = 4}, - [4449] = {.lex_state = 131, .external_lex_state = 4}, - [4450] = {.lex_state = 131, .external_lex_state = 4}, - [4451] = {.lex_state = 189, .external_lex_state = 16}, - [4452] = {.lex_state = 131, .external_lex_state = 4}, - [4453] = {.lex_state = 131, .external_lex_state = 6}, - [4454] = {.lex_state = 131, .external_lex_state = 6}, - [4455] = {.lex_state = 131, .external_lex_state = 4}, - [4456] = {.lex_state = 340, .external_lex_state = 18}, - [4457] = {.lex_state = 131, .external_lex_state = 4}, - [4458] = {.lex_state = 131, .external_lex_state = 6}, - [4459] = {.lex_state = 178}, - [4460] = {.lex_state = 131, .external_lex_state = 4}, - [4461] = {.lex_state = 131, .external_lex_state = 4}, - [4462] = {.lex_state = 131, .external_lex_state = 4}, - [4463] = {.lex_state = 131, .external_lex_state = 4}, - [4464] = {.lex_state = 131, .external_lex_state = 4}, - [4465] = {.lex_state = 131, .external_lex_state = 4}, - [4466] = {.lex_state = 340, .external_lex_state = 16}, + [4405] = {.lex_state = 189, .external_lex_state = 18}, + [4406] = {.lex_state = 131, .external_lex_state = 5}, + [4407] = {.lex_state = 189, .external_lex_state = 18}, + [4408] = {.lex_state = 189, .external_lex_state = 18}, + [4409] = {.lex_state = 131, .external_lex_state = 5}, + [4410] = {.lex_state = 341, .external_lex_state = 14}, + [4411] = {.lex_state = 341, .external_lex_state = 16}, + [4412] = {.lex_state = 131, .external_lex_state = 5}, + [4413] = {.lex_state = 131, .external_lex_state = 5}, + [4414] = {.lex_state = 131, .external_lex_state = 5}, + [4415] = {.lex_state = 131, .external_lex_state = 5}, + [4416] = {.lex_state = 131, .external_lex_state = 5}, + [4417] = {.lex_state = 131, .external_lex_state = 5}, + [4418] = {.lex_state = 131, .external_lex_state = 5}, + [4419] = {.lex_state = 131, .external_lex_state = 5}, + [4420] = {.lex_state = 341, .external_lex_state = 18}, + [4421] = {.lex_state = 131, .external_lex_state = 5}, + [4422] = {.lex_state = 131, .external_lex_state = 5}, + [4423] = {.lex_state = 131, .external_lex_state = 5}, + [4424] = {.lex_state = 131, .external_lex_state = 5}, + [4425] = {.lex_state = 178}, + [4426] = {.lex_state = 189, .external_lex_state = 16}, + [4427] = {.lex_state = 189, .external_lex_state = 16}, + [4428] = {.lex_state = 189, .external_lex_state = 16}, + [4429] = {.lex_state = 189, .external_lex_state = 16}, + [4430] = {.lex_state = 189, .external_lex_state = 16}, + [4431] = {.lex_state = 189, .external_lex_state = 16}, + [4432] = {.lex_state = 131, .external_lex_state = 5}, + [4433] = {.lex_state = 131, .external_lex_state = 5}, + [4434] = {.lex_state = 189, .external_lex_state = 16}, + [4435] = {.lex_state = 131, .external_lex_state = 5}, + [4436] = {.lex_state = 178}, + [4437] = {.lex_state = 189, .external_lex_state = 16}, + [4438] = {.lex_state = 189, .external_lex_state = 16}, + [4439] = {.lex_state = 341, .external_lex_state = 14}, + [4440] = {.lex_state = 341, .external_lex_state = 18}, + [4441] = {.lex_state = 131, .external_lex_state = 5}, + [4442] = {.lex_state = 178}, + [4443] = {.lex_state = 131, .external_lex_state = 5}, + [4444] = {.lex_state = 341, .external_lex_state = 16}, + [4445] = {.lex_state = 341, .external_lex_state = 18}, + [4446] = {.lex_state = 131, .external_lex_state = 5}, + [4447] = {.lex_state = 131, .external_lex_state = 5}, + [4448] = {.lex_state = 178}, + [4449] = {.lex_state = 178}, + [4450] = {.lex_state = 178, .external_lex_state = 14}, + [4451] = {.lex_state = 131, .external_lex_state = 5}, + [4452] = {.lex_state = 131, .external_lex_state = 5}, + [4453] = {.lex_state = 131, .external_lex_state = 5}, + [4454] = {.lex_state = 131, .external_lex_state = 5}, + [4455] = {.lex_state = 131, .external_lex_state = 5}, + [4456] = {.lex_state = 131, .external_lex_state = 5}, + [4457] = {.lex_state = 131, .external_lex_state = 5}, + [4458] = {.lex_state = 178}, + [4459] = {.lex_state = 189, .external_lex_state = 16}, + [4460] = {.lex_state = 131, .external_lex_state = 6}, + [4461] = {.lex_state = 131, .external_lex_state = 6}, + [4462] = {.lex_state = 341, .external_lex_state = 16}, + [4463] = {.lex_state = 131, .external_lex_state = 6}, + [4464] = {.lex_state = 131, .external_lex_state = 6}, + [4465] = {.lex_state = 189, .external_lex_state = 16}, + [4466] = {.lex_state = 131, .external_lex_state = 6}, [4467] = {.lex_state = 131, .external_lex_state = 6}, - [4468] = {.lex_state = 179, .external_lex_state = 14}, - [4469] = {.lex_state = 131, .external_lex_state = 6}, - [4470] = {.lex_state = 340, .external_lex_state = 16}, - [4471] = {.lex_state = 131, .external_lex_state = 6}, + [4468] = {.lex_state = 131, .external_lex_state = 5}, + [4469] = {.lex_state = 131, .external_lex_state = 5}, + [4470] = {.lex_state = 178}, + [4471] = {.lex_state = 178}, [4472] = {.lex_state = 131, .external_lex_state = 6}, [4473] = {.lex_state = 131, .external_lex_state = 6}, - [4474] = {.lex_state = 340}, - [4475] = {.lex_state = 179}, - [4476] = {.lex_state = 131, .external_lex_state = 6}, - [4477] = {.lex_state = 131, .external_lex_state = 6}, - [4478] = {.lex_state = 131, .external_lex_state = 6}, + [4474] = {.lex_state = 131, .external_lex_state = 6}, + [4475] = {.lex_state = 131, .external_lex_state = 5}, + [4476] = {.lex_state = 131, .external_lex_state = 5}, + [4477] = {.lex_state = 131, .external_lex_state = 5}, + [4478] = {.lex_state = 131, .external_lex_state = 5}, [4479] = {.lex_state = 131, .external_lex_state = 6}, - [4480] = {.lex_state = 131, .external_lex_state = 6}, - [4481] = {.lex_state = 178, .external_lex_state = 14}, + [4480] = {.lex_state = 131, .external_lex_state = 5}, + [4481] = {.lex_state = 131, .external_lex_state = 5}, [4482] = {.lex_state = 131, .external_lex_state = 6}, - [4483] = {.lex_state = 131, .external_lex_state = 6}, - [4484] = {.lex_state = 131, .external_lex_state = 6}, - [4485] = {.lex_state = 131, .external_lex_state = 6}, - [4486] = {.lex_state = 179, .external_lex_state = 14}, - [4487] = {.lex_state = 179, .external_lex_state = 14}, - [4488] = {.lex_state = 179}, - [4489] = {.lex_state = 131, .external_lex_state = 6}, - [4490] = {.lex_state = 131, .external_lex_state = 6}, - [4491] = {.lex_state = 179, .external_lex_state = 14}, - [4492] = {.lex_state = 131, .external_lex_state = 6}, - [4493] = {.lex_state = 178, .external_lex_state = 14}, + [4483] = {.lex_state = 131, .external_lex_state = 5}, + [4484] = {.lex_state = 131, .external_lex_state = 5}, + [4485] = {.lex_state = 189, .external_lex_state = 16}, + [4486] = {.lex_state = 131, .external_lex_state = 5}, + [4487] = {.lex_state = 131, .external_lex_state = 5}, + [4488] = {.lex_state = 131, .external_lex_state = 5}, + [4489] = {.lex_state = 131, .external_lex_state = 5}, + [4490] = {.lex_state = 178, .external_lex_state = 14}, + [4491] = {.lex_state = 179}, + [4492] = {.lex_state = 178}, + [4493] = {.lex_state = 179}, [4494] = {.lex_state = 131, .external_lex_state = 6}, [4495] = {.lex_state = 178, .external_lex_state = 14}, - [4496] = {.lex_state = 179, .external_lex_state = 14}, + [4496] = {.lex_state = 131, .external_lex_state = 6}, [4497] = {.lex_state = 131, .external_lex_state = 6}, - [4498] = {.lex_state = 178, .external_lex_state = 14}, + [4498] = {.lex_state = 131, .external_lex_state = 6}, [4499] = {.lex_state = 131, .external_lex_state = 6}, - [4500] = {.lex_state = 340}, + [4500] = {.lex_state = 131, .external_lex_state = 6}, [4501] = {.lex_state = 131, .external_lex_state = 6}, [4502] = {.lex_state = 131, .external_lex_state = 6}, - [4503] = {.lex_state = 131, .external_lex_state = 6}, + [4503] = {.lex_state = 341, .external_lex_state = 16}, [4504] = {.lex_state = 131, .external_lex_state = 6}, - [4505] = {.lex_state = 178, .external_lex_state = 14}, - [4506] = {.lex_state = 131, .external_lex_state = 6}, + [4505] = {.lex_state = 131, .external_lex_state = 6}, + [4506] = {.lex_state = 178}, [4507] = {.lex_state = 131, .external_lex_state = 6}, [4508] = {.lex_state = 131, .external_lex_state = 6}, - [4509] = {.lex_state = 178}, - [4510] = {.lex_state = 179}, + [4509] = {.lex_state = 178, .external_lex_state = 14}, + [4510] = {.lex_state = 131, .external_lex_state = 6}, [4511] = {.lex_state = 131, .external_lex_state = 6}, - [4512] = {.lex_state = 179}, - [4513] = {.lex_state = 179}, - [4514] = {.lex_state = 178}, - [4515] = {.lex_state = 178}, + [4512] = {.lex_state = 341}, + [4513] = {.lex_state = 131, .external_lex_state = 6}, + [4514] = {.lex_state = 131, .external_lex_state = 6}, + [4515] = {.lex_state = 131, .external_lex_state = 6}, [4516] = {.lex_state = 131, .external_lex_state = 6}, [4517] = {.lex_state = 131, .external_lex_state = 6}, [4518] = {.lex_state = 131, .external_lex_state = 6}, [4519] = {.lex_state = 131, .external_lex_state = 6}, - [4520] = {.lex_state = 131, .external_lex_state = 6}, - [4521] = {.lex_state = 340}, - [4522] = {.lex_state = 178, .external_lex_state = 14}, - [4523] = {.lex_state = 179, .external_lex_state = 14}, + [4520] = {.lex_state = 179}, + [4521] = {.lex_state = 179}, + [4522] = {.lex_state = 179, .external_lex_state = 14}, + [4523] = {.lex_state = 179}, [4524] = {.lex_state = 131, .external_lex_state = 6}, [4525] = {.lex_state = 131, .external_lex_state = 6}, [4526] = {.lex_state = 131, .external_lex_state = 6}, - [4527] = {.lex_state = 179, .external_lex_state = 14}, + [4527] = {.lex_state = 131, .external_lex_state = 6}, [4528] = {.lex_state = 131, .external_lex_state = 6}, [4529] = {.lex_state = 131, .external_lex_state = 6}, - [4530] = {.lex_state = 179}, - [4531] = {.lex_state = 131, .external_lex_state = 6}, - [4532] = {.lex_state = 178}, - [4533] = {.lex_state = 178}, + [4530] = {.lex_state = 131, .external_lex_state = 6}, + [4531] = {.lex_state = 179, .external_lex_state = 14}, + [4532] = {.lex_state = 178, .external_lex_state = 14}, + [4533] = {.lex_state = 131, .external_lex_state = 6}, [4534] = {.lex_state = 131, .external_lex_state = 6}, - [4535] = {.lex_state = 178, .external_lex_state = 14}, - [4536] = {.lex_state = 179, .external_lex_state = 14}, - [4537] = {.lex_state = 177}, - [4538] = {.lex_state = 131, .external_lex_state = 6}, - [4539] = {.lex_state = 131, .external_lex_state = 6}, - [4540] = {.lex_state = 179}, - [4541] = {.lex_state = 131, .external_lex_state = 6}, + [4535] = {.lex_state = 131, .external_lex_state = 6}, + [4536] = {.lex_state = 179}, + [4537] = {.lex_state = 179}, + [4538] = {.lex_state = 178}, + [4539] = {.lex_state = 341, .external_lex_state = 16}, + [4540] = {.lex_state = 131, .external_lex_state = 6}, + [4541] = {.lex_state = 341}, [4542] = {.lex_state = 131, .external_lex_state = 6}, - [4543] = {.lex_state = 179}, - [4544] = {.lex_state = 178}, - [4545] = {.lex_state = 178}, - [4546] = {.lex_state = 179}, - [4547] = {.lex_state = 179, .external_lex_state = 14}, + [4543] = {.lex_state = 131, .external_lex_state = 6}, + [4544] = {.lex_state = 179}, + [4545] = {.lex_state = 131, .external_lex_state = 6}, + [4546] = {.lex_state = 131, .external_lex_state = 6}, + [4547] = {.lex_state = 131, .external_lex_state = 6}, [4548] = {.lex_state = 131, .external_lex_state = 6}, - [4549] = {.lex_state = 179}, + [4549] = {.lex_state = 131, .external_lex_state = 6}, [4550] = {.lex_state = 179}, - [4551] = {.lex_state = 179}, - [4552] = {.lex_state = 178}, - [4553] = {.lex_state = 340, .external_lex_state = 16}, - [4554] = {.lex_state = 179}, - [4555] = {.lex_state = 340}, - [4556] = {.lex_state = 189}, - [4557] = {.lex_state = 179}, - [4558] = {.lex_state = 178}, + [4551] = {.lex_state = 178}, + [4552] = {.lex_state = 131, .external_lex_state = 6}, + [4553] = {.lex_state = 177}, + [4554] = {.lex_state = 179, .external_lex_state = 14}, + [4555] = {.lex_state = 178, .external_lex_state = 14}, + [4556] = {.lex_state = 179, .external_lex_state = 14}, + [4557] = {.lex_state = 178}, + [4558] = {.lex_state = 178, .external_lex_state = 14}, [4559] = {.lex_state = 178}, - [4560] = {.lex_state = 177}, - [4561] = {.lex_state = 178}, - [4562] = {.lex_state = 178}, - [4563] = {.lex_state = 179, .external_lex_state = 14}, - [4564] = {.lex_state = 179, .external_lex_state = 14}, - [4565] = {.lex_state = 185}, + [4560] = {.lex_state = 179, .external_lex_state = 14}, + [4561] = {.lex_state = 131, .external_lex_state = 6}, + [4562] = {.lex_state = 131, .external_lex_state = 6}, + [4563] = {.lex_state = 178, .external_lex_state = 14}, + [4564] = {.lex_state = 131, .external_lex_state = 6}, + [4565] = {.lex_state = 178}, [4566] = {.lex_state = 179, .external_lex_state = 14}, - [4567] = {.lex_state = 179}, - [4568] = {.lex_state = 177}, - [4569] = {.lex_state = 178, .external_lex_state = 14}, - [4570] = {.lex_state = 178, .external_lex_state = 14}, - [4571] = {.lex_state = 179}, - [4572] = {.lex_state = 178, .external_lex_state = 14}, + [4567] = {.lex_state = 179, .external_lex_state = 14}, + [4568] = {.lex_state = 341}, + [4569] = {.lex_state = 179, .external_lex_state = 14}, + [4570] = {.lex_state = 131, .external_lex_state = 6}, + [4571] = {.lex_state = 131, .external_lex_state = 6}, + [4572] = {.lex_state = 179, .external_lex_state = 14}, [4573] = {.lex_state = 179, .external_lex_state = 14}, - [4574] = {.lex_state = 185}, - [4575] = {.lex_state = 185}, - [4576] = {.lex_state = 340}, - [4577] = {.lex_state = 180, .external_lex_state = 16}, - [4578] = {.lex_state = 340}, - [4579] = {.lex_state = 185}, + [4574] = {.lex_state = 179}, + [4575] = {.lex_state = 179}, + [4576] = {.lex_state = 178}, + [4577] = {.lex_state = 178}, + [4578] = {.lex_state = 177}, + [4579] = {.lex_state = 178, .external_lex_state = 14}, [4580] = {.lex_state = 185}, - [4581] = {.lex_state = 185}, - [4582] = {.lex_state = 178}, + [4581] = {.lex_state = 178}, + [4582] = {.lex_state = 179}, [4583] = {.lex_state = 178}, - [4584] = {.lex_state = 340}, + [4584] = {.lex_state = 178, .external_lex_state = 14}, [4585] = {.lex_state = 178}, - [4586] = {.lex_state = 189}, - [4587] = {.lex_state = 340}, - [4588] = {.lex_state = 179}, - [4589] = {.lex_state = 340}, - [4590] = {.lex_state = 178}, + [4586] = {.lex_state = 177}, + [4587] = {.lex_state = 177}, + [4588] = {.lex_state = 178}, + [4589] = {.lex_state = 189}, + [4590] = {.lex_state = 185}, [4591] = {.lex_state = 179, .external_lex_state = 14}, - [4592] = {.lex_state = 179, .external_lex_state = 14}, - [4593] = {.lex_state = 178}, - [4594] = {.lex_state = 185}, + [4592] = {.lex_state = 185}, + [4593] = {.lex_state = 177}, + [4594] = {.lex_state = 179}, [4595] = {.lex_state = 179}, - [4596] = {.lex_state = 179}, - [4597] = {.lex_state = 189}, - [4598] = {.lex_state = 185}, - [4599] = {.lex_state = 179}, - [4600] = {.lex_state = 178}, - [4601] = {.lex_state = 178}, - [4602] = {.lex_state = 177}, - [4603] = {.lex_state = 179}, + [4596] = {.lex_state = 178}, + [4597] = {.lex_state = 185}, + [4598] = {.lex_state = 179, .external_lex_state = 14}, + [4599] = {.lex_state = 179, .external_lex_state = 14}, + [4600] = {.lex_state = 179}, + [4601] = {.lex_state = 177}, + [4602] = {.lex_state = 179, .external_lex_state = 14}, + [4603] = {.lex_state = 341}, [4604] = {.lex_state = 185}, - [4605] = {.lex_state = 178, .external_lex_state = 14}, - [4606] = {.lex_state = 179}, - [4607] = {.lex_state = 177}, - [4608] = {.lex_state = 179}, + [4605] = {.lex_state = 179}, + [4606] = {.lex_state = 178}, + [4607] = {.lex_state = 179}, + [4608] = {.lex_state = 177}, [4609] = {.lex_state = 179}, [4610] = {.lex_state = 178}, - [4611] = {.lex_state = 178, .external_lex_state = 14}, - [4612] = {.lex_state = 177}, + [4611] = {.lex_state = 179, .external_lex_state = 14}, + [4612] = {.lex_state = 178}, [4613] = {.lex_state = 185}, - [4614] = {.lex_state = 185}, - [4615] = {.lex_state = 177}, - [4616] = {.lex_state = 179}, - [4617] = {.lex_state = 185}, - [4618] = {.lex_state = 179}, - [4619] = {.lex_state = 178}, - [4620] = {.lex_state = 178}, - [4621] = {.lex_state = 177}, - [4622] = {.lex_state = 340}, - [4623] = {.lex_state = 179, .external_lex_state = 14}, - [4624] = {.lex_state = 178}, - [4625] = {.lex_state = 177}, - [4626] = {.lex_state = 178, .external_lex_state = 14}, + [4614] = {.lex_state = 341, .external_lex_state = 16}, + [4615] = {.lex_state = 341}, + [4616] = {.lex_state = 341}, + [4617] = {.lex_state = 179}, + [4618] = {.lex_state = 177}, + [4619] = {.lex_state = 341}, + [4620] = {.lex_state = 341}, + [4621] = {.lex_state = 185}, + [4622] = {.lex_state = 178}, + [4623] = {.lex_state = 185}, + [4624] = {.lex_state = 185}, + [4625] = {.lex_state = 179}, + [4626] = {.lex_state = 179}, [4627] = {.lex_state = 179}, - [4628] = {.lex_state = 131}, - [4629] = {.lex_state = 178, .external_lex_state = 14}, - [4630] = {.lex_state = 185}, - [4631] = {.lex_state = 185}, + [4628] = {.lex_state = 178, .external_lex_state = 14}, + [4629] = {.lex_state = 189}, + [4630] = {.lex_state = 178, .external_lex_state = 14}, + [4631] = {.lex_state = 178, .external_lex_state = 14}, [4632] = {.lex_state = 178}, - [4633] = {.lex_state = 179}, - [4634] = {.lex_state = 180}, - [4635] = {.lex_state = 340, .external_lex_state = 16}, - [4636] = {.lex_state = 177}, + [4633] = {.lex_state = 189}, + [4634] = {.lex_state = 185}, + [4635] = {.lex_state = 179}, + [4636] = {.lex_state = 180, .external_lex_state = 16}, [4637] = {.lex_state = 179}, [4638] = {.lex_state = 179}, - [4639] = {.lex_state = 185}, + [4639] = {.lex_state = 341}, [4640] = {.lex_state = 178}, [4641] = {.lex_state = 178}, - [4642] = {.lex_state = 131}, - [4643] = {.lex_state = 178}, - [4644] = {.lex_state = 340, .external_lex_state = 16}, + [4642] = {.lex_state = 178}, + [4643] = {.lex_state = 185}, + [4644] = {.lex_state = 341}, [4645] = {.lex_state = 179}, - [4646] = {.lex_state = 179}, - [4647] = {.lex_state = 178}, - [4648] = {.lex_state = 179}, - [4649] = {.lex_state = 179}, - [4650] = {.lex_state = 177}, - [4651] = {.lex_state = 179}, - [4652] = {.lex_state = 178}, - [4653] = {.lex_state = 185}, - [4654] = {.lex_state = 177}, - [4655] = {.lex_state = 178}, - [4656] = {.lex_state = 340, .external_lex_state = 16}, - [4657] = {.lex_state = 189, .external_lex_state = 14}, - [4658] = {.lex_state = 177}, - [4659] = {.lex_state = 179}, - [4660] = {.lex_state = 178, .external_lex_state = 14}, - [4661] = {.lex_state = 189}, - [4662] = {.lex_state = 340, .external_lex_state = 16}, - [4663] = {.lex_state = 180}, - [4664] = {.lex_state = 131}, - [4665] = {.lex_state = 179, .external_lex_state = 14}, - [4666] = {.lex_state = 178, .external_lex_state = 14}, - [4667] = {.lex_state = 178, .external_lex_state = 14}, - [4668] = {.lex_state = 177}, - [4669] = {.lex_state = 179}, - [4670] = {.lex_state = 178}, - [4671] = {.lex_state = 189}, - [4672] = {.lex_state = 178}, - [4673] = {.lex_state = 179, .external_lex_state = 14}, - [4674] = {.lex_state = 178}, - [4675] = {.lex_state = 179, .external_lex_state = 14}, - [4676] = {.lex_state = 178}, - [4677] = {.lex_state = 178}, - [4678] = {.lex_state = 179, .external_lex_state = 14}, + [4646] = {.lex_state = 185}, + [4647] = {.lex_state = 177}, + [4648] = {.lex_state = 178}, + [4649] = {.lex_state = 177}, + [4650] = {.lex_state = 178}, + [4651] = {.lex_state = 189, .external_lex_state = 14}, + [4652] = {.lex_state = 179}, + [4653] = {.lex_state = 189}, + [4654] = {.lex_state = 179}, + [4655] = {.lex_state = 179}, + [4656] = {.lex_state = 177}, + [4657] = {.lex_state = 131}, + [4658] = {.lex_state = 178}, + [4659] = {.lex_state = 178}, + [4660] = {.lex_state = 341, .external_lex_state = 16}, + [4661] = {.lex_state = 341, .external_lex_state = 16}, + [4662] = {.lex_state = 179, .external_lex_state = 14}, + [4663] = {.lex_state = 179}, + [4664] = {.lex_state = 179}, + [4665] = {.lex_state = 179}, + [4666] = {.lex_state = 177}, + [4667] = {.lex_state = 131}, + [4668] = {.lex_state = 341, .external_lex_state = 16}, + [4669] = {.lex_state = 341, .external_lex_state = 16}, + [4670] = {.lex_state = 185}, + [4671] = {.lex_state = 178, .external_lex_state = 14}, + [4672] = {.lex_state = 177}, + [4673] = {.lex_state = 341, .external_lex_state = 16}, + [4674] = {.lex_state = 185}, + [4675] = {.lex_state = 178, .external_lex_state = 14}, + [4676] = {.lex_state = 179}, + [4677] = {.lex_state = 180}, + [4678] = {.lex_state = 185}, [4679] = {.lex_state = 189}, - [4680] = {.lex_state = 178}, + [4680] = {.lex_state = 179, .external_lex_state = 14}, [4681] = {.lex_state = 178}, - [4682] = {.lex_state = 178}, - [4683] = {.lex_state = 340, .external_lex_state = 16}, - [4684] = {.lex_state = 178}, + [4682] = {.lex_state = 180}, + [4683] = {.lex_state = 179, .external_lex_state = 14}, + [4684] = {.lex_state = 179}, [4685] = {.lex_state = 177}, - [4686] = {.lex_state = 177}, - [4687] = {.lex_state = 189, .external_lex_state = 17}, - [4688] = {.lex_state = 180}, - [4689] = {.lex_state = 179}, - [4690] = {.lex_state = 164, .external_lex_state = 16}, - [4691] = {.lex_state = 182}, - [4692] = {.lex_state = 340, .external_lex_state = 16}, - [4693] = {.lex_state = 178, .external_lex_state = 14}, - [4694] = {.lex_state = 182}, + [4686] = {.lex_state = 178, .external_lex_state = 14}, + [4687] = {.lex_state = 178, .external_lex_state = 14}, + [4688] = {.lex_state = 178}, + [4689] = {.lex_state = 185}, + [4690] = {.lex_state = 177}, + [4691] = {.lex_state = 178}, + [4692] = {.lex_state = 131}, + [4693] = {.lex_state = 179, .external_lex_state = 14}, + [4694] = {.lex_state = 178}, [4695] = {.lex_state = 177}, - [4696] = {.lex_state = 185}, + [4696] = {.lex_state = 189}, [4697] = {.lex_state = 179, .external_lex_state = 14}, - [4698] = {.lex_state = 179}, + [4698] = {.lex_state = 178}, [4699] = {.lex_state = 179}, - [4700] = {.lex_state = 178, .external_lex_state = 14}, - [4701] = {.lex_state = 340, .external_lex_state = 16}, - [4702] = {.lex_state = 179, .external_lex_state = 14}, - [4703] = {.lex_state = 340, .external_lex_state = 14}, - [4704] = {.lex_state = 178, .external_lex_state = 14}, - [4705] = {.lex_state = 179}, - [4706] = {.lex_state = 177}, - [4707] = {.lex_state = 177}, - [4708] = {.lex_state = 185}, - [4709] = {.lex_state = 177}, - [4710] = {.lex_state = 177}, - [4711] = {.lex_state = 177}, - [4712] = {.lex_state = 177}, - [4713] = {.lex_state = 178, .external_lex_state = 14}, - [4714] = {.lex_state = 131}, - [4715] = {.lex_state = 180}, - [4716] = {.lex_state = 179}, - [4717] = {.lex_state = 179}, - [4718] = {.lex_state = 179}, - [4719] = {.lex_state = 179}, - [4720] = {.lex_state = 178}, - [4721] = {.lex_state = 178, .external_lex_state = 14}, - [4722] = {.lex_state = 177}, - [4723] = {.lex_state = 177}, - [4724] = {.lex_state = 177}, - [4725] = {.lex_state = 179, .external_lex_state = 14}, + [4700] = {.lex_state = 178}, + [4701] = {.lex_state = 179}, + [4702] = {.lex_state = 178, .external_lex_state = 14}, + [4703] = {.lex_state = 178}, + [4704] = {.lex_state = 178}, + [4705] = {.lex_state = 178}, + [4706] = {.lex_state = 179}, + [4707] = {.lex_state = 178}, + [4708] = {.lex_state = 178}, + [4709] = {.lex_state = 178}, + [4710] = {.lex_state = 189, .external_lex_state = 17}, + [4711] = {.lex_state = 178}, + [4712] = {.lex_state = 178}, + [4713] = {.lex_state = 189}, + [4714] = {.lex_state = 178}, + [4715] = {.lex_state = 179}, + [4716] = {.lex_state = 179, .external_lex_state = 14}, + [4717] = {.lex_state = 131}, + [4718] = {.lex_state = 179, .external_lex_state = 14}, + [4719] = {.lex_state = 131}, + [4720] = {.lex_state = 179, .external_lex_state = 14}, + [4721] = {.lex_state = 178}, + [4722] = {.lex_state = 131}, + [4723] = {.lex_state = 179, .external_lex_state = 14}, + [4724] = {.lex_state = 179}, + [4725] = {.lex_state = 164, .external_lex_state = 16}, [4726] = {.lex_state = 178, .external_lex_state = 14}, - [4727] = {.lex_state = 189}, - [4728] = {.lex_state = 177}, - [4729] = {.lex_state = 179}, - [4730] = {.lex_state = 179, .external_lex_state = 14}, - [4731] = {.lex_state = 178, .external_lex_state = 14}, - [4732] = {.lex_state = 340, .external_lex_state = 16}, - [4733] = {.lex_state = 131}, - [4734] = {.lex_state = 179}, - [4735] = {.lex_state = 189}, + [4727] = {.lex_state = 341, .external_lex_state = 16}, + [4728] = {.lex_state = 179, .external_lex_state = 14}, + [4729] = {.lex_state = 180}, + [4730] = {.lex_state = 178, .external_lex_state = 14}, + [4731] = {.lex_state = 179}, + [4732] = {.lex_state = 179}, + [4733] = {.lex_state = 179}, + [4734] = {.lex_state = 179, .external_lex_state = 14}, + [4735] = {.lex_state = 341, .external_lex_state = 16}, [4736] = {.lex_state = 179, .external_lex_state = 14}, - [4737] = {.lex_state = 179, .external_lex_state = 14}, - [4738] = {.lex_state = 131}, - [4739] = {.lex_state = 178}, - [4740] = {.lex_state = 340, .external_lex_state = 16}, + [4737] = {.lex_state = 177}, + [4738] = {.lex_state = 341, .external_lex_state = 16}, + [4739] = {.lex_state = 179, .external_lex_state = 14}, + [4740] = {.lex_state = 178, .external_lex_state = 14}, [4741] = {.lex_state = 178, .external_lex_state = 14}, - [4742] = {.lex_state = 179}, - [4743] = {.lex_state = 177}, - [4744] = {.lex_state = 182}, - [4745] = {.lex_state = 185}, + [4742] = {.lex_state = 179, .external_lex_state = 14}, + [4743] = {.lex_state = 179}, + [4744] = {.lex_state = 179}, + [4745] = {.lex_state = 179, .external_lex_state = 14}, [4746] = {.lex_state = 177}, - [4747] = {.lex_state = 178, .external_lex_state = 14}, + [4747] = {.lex_state = 177}, [4748] = {.lex_state = 179, .external_lex_state = 14}, - [4749] = {.lex_state = 178}, - [4750] = {.lex_state = 185}, + [4749] = {.lex_state = 177}, + [4750] = {.lex_state = 178}, [4751] = {.lex_state = 189, .external_lex_state = 18}, - [4752] = {.lex_state = 179}, - [4753] = {.lex_state = 179, .external_lex_state = 14}, - [4754] = {.lex_state = 340, .external_lex_state = 16}, + [4752] = {.lex_state = 178, .external_lex_state = 14}, + [4753] = {.lex_state = 178, .external_lex_state = 14}, + [4754] = {.lex_state = 179}, [4755] = {.lex_state = 179}, - [4756] = {.lex_state = 179, .external_lex_state = 14}, - [4757] = {.lex_state = 179, .external_lex_state = 14}, - [4758] = {.lex_state = 179, .external_lex_state = 14}, - [4759] = {.lex_state = 178}, - [4760] = {.lex_state = 178, .external_lex_state = 14}, - [4761] = {.lex_state = 179}, - [4762] = {.lex_state = 178, .external_lex_state = 14}, - [4763] = {.lex_state = 179}, - [4764] = {.lex_state = 177}, - [4765] = {.lex_state = 340, .external_lex_state = 16}, - [4766] = {.lex_state = 180}, - [4767] = {.lex_state = 179}, - [4768] = {.lex_state = 178}, - [4769] = {.lex_state = 178}, - [4770] = {.lex_state = 133, .external_lex_state = 19}, - [4771] = {.lex_state = 178}, - [4772] = {.lex_state = 340, .external_lex_state = 14}, - [4773] = {.lex_state = 133, .external_lex_state = 19}, + [4756] = {.lex_state = 179}, + [4757] = {.lex_state = 179}, + [4758] = {.lex_state = 178}, + [4759] = {.lex_state = 177}, + [4760] = {.lex_state = 179}, + [4761] = {.lex_state = 177}, + [4762] = {.lex_state = 180}, + [4763] = {.lex_state = 178, .external_lex_state = 14}, + [4764] = {.lex_state = 178, .external_lex_state = 14}, + [4765] = {.lex_state = 182}, + [4766] = {.lex_state = 178, .external_lex_state = 14}, + [4767] = {.lex_state = 177}, + [4768] = {.lex_state = 178, .external_lex_state = 14}, + [4769] = {.lex_state = 178, .external_lex_state = 14}, + [4770] = {.lex_state = 178, .external_lex_state = 14}, + [4771] = {.lex_state = 179}, + [4772] = {.lex_state = 177}, + [4773] = {.lex_state = 341, .external_lex_state = 16}, [4774] = {.lex_state = 177}, - [4775] = {.lex_state = 340, .external_lex_state = 14}, - [4776] = {.lex_state = 133, .external_lex_state = 19}, - [4777] = {.lex_state = 179}, - [4778] = {.lex_state = 340, .external_lex_state = 17}, - [4779] = {.lex_state = 177}, - [4780] = {.lex_state = 133, .external_lex_state = 19}, - [4781] = {.lex_state = 178}, - [4782] = {.lex_state = 131}, - [4783] = {.lex_state = 340, .external_lex_state = 14}, - [4784] = {.lex_state = 340, .external_lex_state = 17}, - [4785] = {.lex_state = 179}, - [4786] = {.lex_state = 340, .external_lex_state = 14}, - [4787] = {.lex_state = 179}, - [4788] = {.lex_state = 179}, - [4789] = {.lex_state = 340, .external_lex_state = 16}, - [4790] = {.lex_state = 133, .external_lex_state = 19}, - [4791] = {.lex_state = 179}, + [4775] = {.lex_state = 185}, + [4776] = {.lex_state = 179}, + [4777] = {.lex_state = 180}, + [4778] = {.lex_state = 185}, + [4779] = {.lex_state = 341, .external_lex_state = 16}, + [4780] = {.lex_state = 179}, + [4781] = {.lex_state = 179}, + [4782] = {.lex_state = 179, .external_lex_state = 14}, + [4783] = {.lex_state = 178}, + [4784] = {.lex_state = 189}, + [4785] = {.lex_state = 177}, + [4786] = {.lex_state = 177}, + [4787] = {.lex_state = 341, .external_lex_state = 16}, + [4788] = {.lex_state = 177}, + [4789] = {.lex_state = 177}, + [4790] = {.lex_state = 182}, + [4791] = {.lex_state = 341, .external_lex_state = 14}, [4792] = {.lex_state = 185}, - [4793] = {.lex_state = 340, .external_lex_state = 17}, - [4794] = {.lex_state = 133, .external_lex_state = 19}, - [4795] = {.lex_state = 178}, - [4796] = {.lex_state = 177}, - [4797] = {.lex_state = 178}, - [4798] = {.lex_state = 185}, - [4799] = {.lex_state = 185}, - [4800] = {.lex_state = 179}, - [4801] = {.lex_state = 189}, - [4802] = {.lex_state = 340, .external_lex_state = 16}, - [4803] = {.lex_state = 133, .external_lex_state = 19}, - [4804] = {.lex_state = 133, .external_lex_state = 19}, - [4805] = {.lex_state = 178}, - [4806] = {.lex_state = 340, .external_lex_state = 14}, - [4807] = {.lex_state = 340, .external_lex_state = 16}, + [4793] = {.lex_state = 179}, + [4794] = {.lex_state = 182}, + [4795] = {.lex_state = 177}, + [4796] = {.lex_state = 185}, + [4797] = {.lex_state = 133, .external_lex_state = 19}, + [4798] = {.lex_state = 341, .external_lex_state = 14}, + [4799] = {.lex_state = 133, .external_lex_state = 19}, + [4800] = {.lex_state = 341, .external_lex_state = 17}, + [4801] = {.lex_state = 185}, + [4802] = {.lex_state = 185}, + [4803] = {.lex_state = 341, .external_lex_state = 17}, + [4804] = {.lex_state = 341, .external_lex_state = 17}, + [4805] = {.lex_state = 189}, + [4806] = {.lex_state = 179}, + [4807] = {.lex_state = 179}, [4808] = {.lex_state = 189}, - [4809] = {.lex_state = 133, .external_lex_state = 19}, - [4810] = {.lex_state = 179}, + [4809] = {.lex_state = 341, .external_lex_state = 17}, + [4810] = {.lex_state = 341, .external_lex_state = 17}, [4811] = {.lex_state = 133, .external_lex_state = 19}, - [4812] = {.lex_state = 177}, - [4813] = {.lex_state = 340, .external_lex_state = 17}, - [4814] = {.lex_state = 179}, - [4815] = {.lex_state = 340, .external_lex_state = 14}, - [4816] = {.lex_state = 340, .external_lex_state = 14}, - [4817] = {.lex_state = 340, .external_lex_state = 16}, - [4818] = {.lex_state = 340, .external_lex_state = 17}, - [4819] = {.lex_state = 133, .external_lex_state = 19}, - [4820] = {.lex_state = 179}, - [4821] = {.lex_state = 178}, - [4822] = {.lex_state = 178}, - [4823] = {.lex_state = 133, .external_lex_state = 19}, - [4824] = {.lex_state = 340, .external_lex_state = 14}, - [4825] = {.lex_state = 185}, - [4826] = {.lex_state = 133, .external_lex_state = 19}, - [4827] = {.lex_state = 133, .external_lex_state = 19}, - [4828] = {.lex_state = 179}, - [4829] = {.lex_state = 340, .external_lex_state = 14}, - [4830] = {.lex_state = 133, .external_lex_state = 19}, - [4831] = {.lex_state = 178}, - [4832] = {.lex_state = 340, .external_lex_state = 16}, - [4833] = {.lex_state = 340, .external_lex_state = 17}, - [4834] = {.lex_state = 177}, - [4835] = {.lex_state = 185}, - [4836] = {.lex_state = 340, .external_lex_state = 17}, - [4837] = {.lex_state = 340, .external_lex_state = 16}, - [4838] = {.lex_state = 133, .external_lex_state = 19}, - [4839] = {.lex_state = 131}, + [4812] = {.lex_state = 133, .external_lex_state = 19}, + [4813] = {.lex_state = 133, .external_lex_state = 19}, + [4814] = {.lex_state = 185}, + [4815] = {.lex_state = 133, .external_lex_state = 19}, + [4816] = {.lex_state = 341, .external_lex_state = 17}, + [4817] = {.lex_state = 341, .external_lex_state = 17}, + [4818] = {.lex_state = 133, .external_lex_state = 19}, + [4819] = {.lex_state = 341, .external_lex_state = 16}, + [4820] = {.lex_state = 341, .external_lex_state = 17}, + [4821] = {.lex_state = 133, .external_lex_state = 19}, + [4822] = {.lex_state = 341, .external_lex_state = 14}, + [4823] = {.lex_state = 341, .external_lex_state = 14}, + [4824] = {.lex_state = 133, .external_lex_state = 19}, + [4825] = {.lex_state = 177}, + [4826] = {.lex_state = 341, .external_lex_state = 16}, + [4827] = {.lex_state = 341, .external_lex_state = 17}, + [4828] = {.lex_state = 341, .external_lex_state = 17}, + [4829] = {.lex_state = 185}, + [4830] = {.lex_state = 185}, + [4831] = {.lex_state = 179}, + [4832] = {.lex_state = 179}, + [4833] = {.lex_state = 341, .external_lex_state = 17}, + [4834] = {.lex_state = 185}, + [4835] = {.lex_state = 133, .external_lex_state = 19}, + [4836] = {.lex_state = 133, .external_lex_state = 19}, + [4837] = {.lex_state = 133, .external_lex_state = 19}, + [4838] = {.lex_state = 341, .external_lex_state = 14}, + [4839] = {.lex_state = 133, .external_lex_state = 19}, [4840] = {.lex_state = 133, .external_lex_state = 19}, [4841] = {.lex_state = 133, .external_lex_state = 19}, - [4842] = {.lex_state = 133, .external_lex_state = 19}, - [4843] = {.lex_state = 178}, - [4844] = {.lex_state = 340, .external_lex_state = 17}, - [4845] = {.lex_state = 133, .external_lex_state = 19}, + [4842] = {.lex_state = 185}, + [4843] = {.lex_state = 341, .external_lex_state = 14}, + [4844] = {.lex_state = 341, .external_lex_state = 16}, + [4845] = {.lex_state = 189}, [4846] = {.lex_state = 133, .external_lex_state = 19}, - [4847] = {.lex_state = 177}, - [4848] = {.lex_state = 178}, - [4849] = {.lex_state = 340, .external_lex_state = 16}, - [4850] = {.lex_state = 133, .external_lex_state = 19}, + [4847] = {.lex_state = 133, .external_lex_state = 19}, + [4848] = {.lex_state = 189}, + [4849] = {.lex_state = 341, .external_lex_state = 17}, + [4850] = {.lex_state = 341, .external_lex_state = 14}, [4851] = {.lex_state = 179}, - [4852] = {.lex_state = 133, .external_lex_state = 19}, - [4853] = {.lex_state = 189}, - [4854] = {.lex_state = 177}, - [4855] = {.lex_state = 182}, - [4856] = {.lex_state = 185}, - [4857] = {.lex_state = 340, .external_lex_state = 16}, - [4858] = {.lex_state = 180}, - [4859] = {.lex_state = 189}, - [4860] = {.lex_state = 177}, - [4861] = {.lex_state = 189}, - [4862] = {.lex_state = 185}, - [4863] = {.lex_state = 177}, - [4864] = {.lex_state = 133, .external_lex_state = 19}, - [4865] = {.lex_state = 133, .external_lex_state = 19}, - [4866] = {.lex_state = 340, .external_lex_state = 14}, - [4867] = {.lex_state = 185}, - [4868] = {.lex_state = 177}, - [4869] = {.lex_state = 133, .external_lex_state = 19}, - [4870] = {.lex_state = 131}, - [4871] = {.lex_state = 340, .external_lex_state = 17}, - [4872] = {.lex_state = 133, .external_lex_state = 19}, - [4873] = {.lex_state = 340, .external_lex_state = 16}, + [4852] = {.lex_state = 341, .external_lex_state = 14}, + [4853] = {.lex_state = 341, .external_lex_state = 16}, + [4854] = {.lex_state = 133, .external_lex_state = 19}, + [4855] = {.lex_state = 341, .external_lex_state = 17}, + [4856] = {.lex_state = 133, .external_lex_state = 19}, + [4857] = {.lex_state = 185}, + [4858] = {.lex_state = 182}, + [4859] = {.lex_state = 133, .external_lex_state = 19}, + [4860] = {.lex_state = 133, .external_lex_state = 19}, + [4861] = {.lex_state = 180}, + [4862] = {.lex_state = 189}, + [4863] = {.lex_state = 133, .external_lex_state = 19}, + [4864] = {.lex_state = 341, .external_lex_state = 14}, + [4865] = {.lex_state = 179}, + [4866] = {.lex_state = 133, .external_lex_state = 19}, + [4867] = {.lex_state = 133, .external_lex_state = 19}, + [4868] = {.lex_state = 341, .external_lex_state = 16}, + [4869] = {.lex_state = 131}, + [4870] = {.lex_state = 133, .external_lex_state = 19}, + [4871] = {.lex_state = 133, .external_lex_state = 19}, + [4872] = {.lex_state = 178}, + [4873] = {.lex_state = 189}, [4874] = {.lex_state = 133, .external_lex_state = 19}, - [4875] = {.lex_state = 133, .external_lex_state = 19}, - [4876] = {.lex_state = 189}, - [4877] = {.lex_state = 133, .external_lex_state = 19}, - [4878] = {.lex_state = 185}, - [4879] = {.lex_state = 133, .external_lex_state = 19}, - [4880] = {.lex_state = 340, .external_lex_state = 14}, - [4881] = {.lex_state = 340, .external_lex_state = 17}, - [4882] = {.lex_state = 189}, + [4875] = {.lex_state = 341, .external_lex_state = 16}, + [4876] = {.lex_state = 341, .external_lex_state = 14}, + [4877] = {.lex_state = 185}, + [4878] = {.lex_state = 133, .external_lex_state = 19}, + [4879] = {.lex_state = 341, .external_lex_state = 14}, + [4880] = {.lex_state = 341, .external_lex_state = 14}, + [4881] = {.lex_state = 341, .external_lex_state = 14}, + [4882] = {.lex_state = 341, .external_lex_state = 14}, [4883] = {.lex_state = 133, .external_lex_state = 19}, [4884] = {.lex_state = 189}, - [4885] = {.lex_state = 189}, - [4886] = {.lex_state = 340, .external_lex_state = 14}, - [4887] = {.lex_state = 340, .external_lex_state = 17}, - [4888] = {.lex_state = 189}, - [4889] = {.lex_state = 189}, - [4890] = {.lex_state = 340, .external_lex_state = 17}, - [4891] = {.lex_state = 189}, - [4892] = {.lex_state = 133, .external_lex_state = 19}, - [4893] = {.lex_state = 185}, - [4894] = {.lex_state = 133, .external_lex_state = 19}, - [4895] = {.lex_state = 185}, - [4896] = {.lex_state = 340, .external_lex_state = 17}, - [4897] = {.lex_state = 133, .external_lex_state = 19}, - [4898] = {.lex_state = 133, .external_lex_state = 19}, - [4899] = {.lex_state = 133, .external_lex_state = 19}, - [4900] = {.lex_state = 340, .external_lex_state = 14}, - [4901] = {.lex_state = 133, .external_lex_state = 19}, + [4885] = {.lex_state = 133, .external_lex_state = 19}, + [4886] = {.lex_state = 131}, + [4887] = {.lex_state = 133, .external_lex_state = 19}, + [4888] = {.lex_state = 185}, + [4889] = {.lex_state = 178}, + [4890] = {.lex_state = 341, .external_lex_state = 14}, + [4891] = {.lex_state = 133, .external_lex_state = 19}, + [4892] = {.lex_state = 178}, + [4893] = {.lex_state = 133, .external_lex_state = 19}, + [4894] = {.lex_state = 189}, + [4895] = {.lex_state = 341, .external_lex_state = 16}, + [4896] = {.lex_state = 133, .external_lex_state = 19}, + [4897] = {.lex_state = 178}, + [4898] = {.lex_state = 178}, + [4899] = {.lex_state = 341, .external_lex_state = 16}, + [4900] = {.lex_state = 178}, + [4901] = {.lex_state = 189}, [4902] = {.lex_state = 133, .external_lex_state = 19}, - [4903] = {.lex_state = 340, .external_lex_state = 17}, - [4904] = {.lex_state = 340, .external_lex_state = 17}, + [4903] = {.lex_state = 178}, + [4904] = {.lex_state = 133, .external_lex_state = 19}, [4905] = {.lex_state = 133, .external_lex_state = 19}, - [4906] = {.lex_state = 133, .external_lex_state = 19}, - [4907] = {.lex_state = 340, .external_lex_state = 17}, - [4908] = {.lex_state = 133, .external_lex_state = 19}, + [4906] = {.lex_state = 177}, + [4907] = {.lex_state = 341, .external_lex_state = 17}, + [4908] = {.lex_state = 179}, [4909] = {.lex_state = 189}, - [4910] = {.lex_state = 340, .external_lex_state = 14}, - [4911] = {.lex_state = 340, .external_lex_state = 14}, - [4912] = {.lex_state = 133, .external_lex_state = 19}, - [4913] = {.lex_state = 177}, - [4914] = {.lex_state = 133, .external_lex_state = 19}, - [4915] = {.lex_state = 133, .external_lex_state = 19}, - [4916] = {.lex_state = 133, .external_lex_state = 19}, - [4917] = {.lex_state = 133, .external_lex_state = 19}, - [4918] = {.lex_state = 180}, - [4919] = {.lex_state = 180}, - [4920] = {.lex_state = 180}, - [4921] = {.lex_state = 340, .external_lex_state = 18}, - [4922] = {.lex_state = 340, .external_lex_state = 16}, - [4923] = {.lex_state = 131}, - [4924] = {.lex_state = 340, .external_lex_state = 17}, - [4925] = {.lex_state = 340, .external_lex_state = 17}, - [4926] = {.lex_state = 340, .external_lex_state = 17}, - [4927] = {.lex_state = 171, .external_lex_state = 19}, - [4928] = {.lex_state = 340, .external_lex_state = 14}, - [4929] = {.lex_state = 340, .external_lex_state = 17}, - [4930] = {.lex_state = 131}, - [4931] = {.lex_state = 180}, - [4932] = {.lex_state = 340, .external_lex_state = 17}, - [4933] = {.lex_state = 131}, - [4934] = {.lex_state = 131}, - [4935] = {.lex_state = 340, .external_lex_state = 14}, - [4936] = {.lex_state = 171, .external_lex_state = 19}, - [4937] = {.lex_state = 340, .external_lex_state = 16}, - [4938] = {.lex_state = 340, .external_lex_state = 14}, - [4939] = {.lex_state = 340, .external_lex_state = 17}, - [4940] = {.lex_state = 340, .external_lex_state = 16}, - [4941] = {.lex_state = 340, .external_lex_state = 16}, - [4942] = {.lex_state = 340, .external_lex_state = 17}, - [4943] = {.lex_state = 171, .external_lex_state = 19}, - [4944] = {.lex_state = 171, .external_lex_state = 19}, - [4945] = {.lex_state = 171, .external_lex_state = 19}, - [4946] = {.lex_state = 340, .external_lex_state = 18}, - [4947] = {.lex_state = 340, .external_lex_state = 17}, - [4948] = {.lex_state = 171, .external_lex_state = 19}, - [4949] = {.lex_state = 171, .external_lex_state = 19}, + [4910] = {.lex_state = 133, .external_lex_state = 19}, + [4911] = {.lex_state = 341, .external_lex_state = 17}, + [4912] = {.lex_state = 189}, + [4913] = {.lex_state = 178}, + [4914] = {.lex_state = 177}, + [4915] = {.lex_state = 185}, + [4916] = {.lex_state = 341, .external_lex_state = 16}, + [4917] = {.lex_state = 179}, + [4918] = {.lex_state = 177}, + [4919] = {.lex_state = 177}, + [4920] = {.lex_state = 133, .external_lex_state = 19}, + [4921] = {.lex_state = 133, .external_lex_state = 19}, + [4922] = {.lex_state = 179}, + [4923] = {.lex_state = 133, .external_lex_state = 19}, + [4924] = {.lex_state = 179}, + [4925] = {.lex_state = 189}, + [4926] = {.lex_state = 179}, + [4927] = {.lex_state = 177}, + [4928] = {.lex_state = 179}, + [4929] = {.lex_state = 133, .external_lex_state = 19}, + [4930] = {.lex_state = 133, .external_lex_state = 19}, + [4931] = {.lex_state = 178}, + [4932] = {.lex_state = 177}, + [4933] = {.lex_state = 177}, + [4934] = {.lex_state = 177}, + [4935] = {.lex_state = 185}, + [4936] = {.lex_state = 178}, + [4937] = {.lex_state = 178}, + [4938] = {.lex_state = 178}, + [4939] = {.lex_state = 177}, + [4940] = {.lex_state = 133, .external_lex_state = 19}, + [4941] = {.lex_state = 177}, + [4942] = {.lex_state = 133, .external_lex_state = 19}, + [4943] = {.lex_state = 131}, + [4944] = {.lex_state = 189}, + [4945] = {.lex_state = 341, .external_lex_state = 17}, + [4946] = {.lex_state = 177}, + [4947] = {.lex_state = 133, .external_lex_state = 19}, + [4948] = {.lex_state = 133, .external_lex_state = 19}, + [4949] = {.lex_state = 341, .external_lex_state = 14}, [4950] = {.lex_state = 131}, - [4951] = {.lex_state = 180}, - [4952] = {.lex_state = 340, .external_lex_state = 14}, - [4953] = {.lex_state = 171, .external_lex_state = 19}, + [4951] = {.lex_state = 131}, + [4952] = {.lex_state = 180}, + [4953] = {.lex_state = 341, .external_lex_state = 17}, [4954] = {.lex_state = 180}, - [4955] = {.lex_state = 171, .external_lex_state = 19}, - [4956] = {.lex_state = 340, .external_lex_state = 16}, - [4957] = {.lex_state = 180}, - [4958] = {.lex_state = 340, .external_lex_state = 16}, + [4955] = {.lex_state = 341, .external_lex_state = 17}, + [4956] = {.lex_state = 180}, + [4957] = {.lex_state = 171, .external_lex_state = 19}, + [4958] = {.lex_state = 341, .external_lex_state = 18}, [4959] = {.lex_state = 171, .external_lex_state = 19}, - [4960] = {.lex_state = 340, .external_lex_state = 16}, - [4961] = {.lex_state = 180}, - [4962] = {.lex_state = 189}, - [4963] = {.lex_state = 171, .external_lex_state = 19}, - [4964] = {.lex_state = 180}, - [4965] = {.lex_state = 340, .external_lex_state = 14}, - [4966] = {.lex_state = 131}, - [4967] = {.lex_state = 340, .external_lex_state = 17}, - [4968] = {.lex_state = 171, .external_lex_state = 19}, - [4969] = {.lex_state = 340, .external_lex_state = 16}, - [4970] = {.lex_state = 340, .external_lex_state = 14}, - [4971] = {.lex_state = 340, .external_lex_state = 16}, - [4972] = {.lex_state = 340, .external_lex_state = 14}, - [4973] = {.lex_state = 189}, - [4974] = {.lex_state = 340, .external_lex_state = 16}, - [4975] = {.lex_state = 180}, - [4976] = {.lex_state = 180}, - [4977] = {.lex_state = 340, .external_lex_state = 14}, + [4960] = {.lex_state = 341, .external_lex_state = 18}, + [4961] = {.lex_state = 341, .external_lex_state = 17}, + [4962] = {.lex_state = 171, .external_lex_state = 19}, + [4963] = {.lex_state = 341, .external_lex_state = 17}, + [4964] = {.lex_state = 341, .external_lex_state = 18}, + [4965] = {.lex_state = 341, .external_lex_state = 14}, + [4966] = {.lex_state = 341, .external_lex_state = 14}, + [4967] = {.lex_state = 341, .external_lex_state = 18}, + [4968] = {.lex_state = 341, .external_lex_state = 17}, + [4969] = {.lex_state = 341, .external_lex_state = 14}, + [4970] = {.lex_state = 171, .external_lex_state = 19}, + [4971] = {.lex_state = 171, .external_lex_state = 19}, + [4972] = {.lex_state = 180}, + [4973] = {.lex_state = 131}, + [4974] = {.lex_state = 341, .external_lex_state = 18}, + [4975] = {.lex_state = 341, .external_lex_state = 17}, + [4976] = {.lex_state = 341, .external_lex_state = 17}, + [4977] = {.lex_state = 171, .external_lex_state = 19}, [4978] = {.lex_state = 171, .external_lex_state = 19}, - [4979] = {.lex_state = 340, .external_lex_state = 16}, - [4980] = {.lex_state = 171, .external_lex_state = 19}, - [4981] = {.lex_state = 171, .external_lex_state = 19}, - [4982] = {.lex_state = 340, .external_lex_state = 14}, - [4983] = {.lex_state = 180}, - [4984] = {.lex_state = 180}, - [4985] = {.lex_state = 171, .external_lex_state = 19}, - [4986] = {.lex_state = 340, .external_lex_state = 14}, + [4979] = {.lex_state = 131}, + [4980] = {.lex_state = 131}, + [4981] = {.lex_state = 341, .external_lex_state = 18}, + [4982] = {.lex_state = 131}, + [4983] = {.lex_state = 171, .external_lex_state = 19}, + [4984] = {.lex_state = 341, .external_lex_state = 18}, + [4985] = {.lex_state = 180}, + [4986] = {.lex_state = 180}, [4987] = {.lex_state = 131}, - [4988] = {.lex_state = 340, .external_lex_state = 14}, + [4988] = {.lex_state = 341, .external_lex_state = 14}, [4989] = {.lex_state = 171, .external_lex_state = 19}, - [4990] = {.lex_state = 171, .external_lex_state = 19}, + [4990] = {.lex_state = 341, .external_lex_state = 17}, [4991] = {.lex_state = 171, .external_lex_state = 19}, - [4992] = {.lex_state = 340, .external_lex_state = 14}, - [4993] = {.lex_state = 171, .external_lex_state = 19}, - [4994] = {.lex_state = 131}, - [4995] = {.lex_state = 340, .external_lex_state = 14}, - [4996] = {.lex_state = 340, .external_lex_state = 17}, + [4992] = {.lex_state = 341, .external_lex_state = 17}, + [4993] = {.lex_state = 341, .external_lex_state = 14}, + [4994] = {.lex_state = 171, .external_lex_state = 19}, + [4995] = {.lex_state = 180}, + [4996] = {.lex_state = 341, .external_lex_state = 18}, [4997] = {.lex_state = 171, .external_lex_state = 19}, - [4998] = {.lex_state = 180}, + [4998] = {.lex_state = 341, .external_lex_state = 14}, [4999] = {.lex_state = 171, .external_lex_state = 19}, - [5000] = {.lex_state = 340, .external_lex_state = 17}, - [5001] = {.lex_state = 180}, - [5002] = {.lex_state = 131}, - [5003] = {.lex_state = 171, .external_lex_state = 19}, - [5004] = {.lex_state = 171, .external_lex_state = 19}, - [5005] = {.lex_state = 340, .external_lex_state = 18}, + [5000] = {.lex_state = 180}, + [5001] = {.lex_state = 341, .external_lex_state = 18}, + [5002] = {.lex_state = 171, .external_lex_state = 19}, + [5003] = {.lex_state = 341, .external_lex_state = 18}, + [5004] = {.lex_state = 131}, + [5005] = {.lex_state = 171, .external_lex_state = 19}, [5006] = {.lex_state = 131}, - [5007] = {.lex_state = 180}, - [5008] = {.lex_state = 340, .external_lex_state = 17}, - [5009] = {.lex_state = 171, .external_lex_state = 19}, - [5010] = {.lex_state = 340, .external_lex_state = 16}, - [5011] = {.lex_state = 340, .external_lex_state = 17}, + [5007] = {.lex_state = 341, .external_lex_state = 18}, + [5008] = {.lex_state = 341, .external_lex_state = 17}, + [5009] = {.lex_state = 341, .external_lex_state = 17}, + [5010] = {.lex_state = 171, .external_lex_state = 19}, + [5011] = {.lex_state = 131}, [5012] = {.lex_state = 180}, - [5013] = {.lex_state = 340, .external_lex_state = 14}, - [5014] = {.lex_state = 180}, - [5015] = {.lex_state = 131}, - [5016] = {.lex_state = 340, .external_lex_state = 14}, - [5017] = {.lex_state = 180}, - [5018] = {.lex_state = 171, .external_lex_state = 19}, - [5019] = {.lex_state = 171, .external_lex_state = 19}, + [5013] = {.lex_state = 180}, + [5014] = {.lex_state = 341, .external_lex_state = 14}, + [5015] = {.lex_state = 341, .external_lex_state = 18}, + [5016] = {.lex_state = 341, .external_lex_state = 14}, + [5017] = {.lex_state = 341, .external_lex_state = 18}, + [5018] = {.lex_state = 131}, + [5019] = {.lex_state = 180}, [5020] = {.lex_state = 171, .external_lex_state = 19}, [5021] = {.lex_state = 171, .external_lex_state = 19}, - [5022] = {.lex_state = 171, .external_lex_state = 19}, - [5023] = {.lex_state = 340, .external_lex_state = 18}, - [5024] = {.lex_state = 340, .external_lex_state = 18}, - [5025] = {.lex_state = 131}, - [5026] = {.lex_state = 340, .external_lex_state = 18}, + [5022] = {.lex_state = 131}, + [5023] = {.lex_state = 180}, + [5024] = {.lex_state = 341, .external_lex_state = 17}, + [5025] = {.lex_state = 341, .external_lex_state = 14}, + [5026] = {.lex_state = 180}, [5027] = {.lex_state = 171, .external_lex_state = 19}, - [5028] = {.lex_state = 340, .external_lex_state = 18}, - [5029] = {.lex_state = 180}, - [5030] = {.lex_state = 180}, - [5031] = {.lex_state = 180}, - [5032] = {.lex_state = 340, .external_lex_state = 18}, - [5033] = {.lex_state = 180}, - [5034] = {.lex_state = 340, .external_lex_state = 14}, - [5035] = {.lex_state = 340, .external_lex_state = 18}, - [5036] = {.lex_state = 171, .external_lex_state = 19}, - [5037] = {.lex_state = 340, .external_lex_state = 17}, - [5038] = {.lex_state = 131}, + [5028] = {.lex_state = 171, .external_lex_state = 19}, + [5029] = {.lex_state = 341, .external_lex_state = 16}, + [5030] = {.lex_state = 341, .external_lex_state = 18}, + [5031] = {.lex_state = 131}, + [5032] = {.lex_state = 180}, + [5033] = {.lex_state = 341, .external_lex_state = 17}, + [5034] = {.lex_state = 180}, + [5035] = {.lex_state = 180}, + [5036] = {.lex_state = 180}, + [5037] = {.lex_state = 180}, + [5038] = {.lex_state = 180}, [5039] = {.lex_state = 180}, - [5040] = {.lex_state = 340, .external_lex_state = 17}, - [5041] = {.lex_state = 171, .external_lex_state = 19}, - [5042] = {.lex_state = 180}, - [5043] = {.lex_state = 340, .external_lex_state = 18}, - [5044] = {.lex_state = 131}, - [5045] = {.lex_state = 340, .external_lex_state = 18}, - [5046] = {.lex_state = 171, .external_lex_state = 19}, - [5047] = {.lex_state = 340, .external_lex_state = 17}, - [5048] = {.lex_state = 340, .external_lex_state = 17}, - [5049] = {.lex_state = 340, .external_lex_state = 18}, + [5040] = {.lex_state = 341, .external_lex_state = 14}, + [5041] = {.lex_state = 341, .external_lex_state = 14}, + [5042] = {.lex_state = 171, .external_lex_state = 19}, + [5043] = {.lex_state = 341, .external_lex_state = 18}, + [5044] = {.lex_state = 341, .external_lex_state = 18}, + [5045] = {.lex_state = 180}, + [5046] = {.lex_state = 180}, + [5047] = {.lex_state = 180}, + [5048] = {.lex_state = 341, .external_lex_state = 14}, + [5049] = {.lex_state = 171, .external_lex_state = 19}, [5050] = {.lex_state = 180}, [5051] = {.lex_state = 171, .external_lex_state = 19}, - [5052] = {.lex_state = 171, .external_lex_state = 19}, - [5053] = {.lex_state = 340, .external_lex_state = 18}, + [5052] = {.lex_state = 180}, + [5053] = {.lex_state = 341, .external_lex_state = 14}, [5054] = {.lex_state = 180}, - [5055] = {.lex_state = 131}, - [5056] = {.lex_state = 180}, - [5057] = {.lex_state = 180}, - [5058] = {.lex_state = 180}, + [5055] = {.lex_state = 180}, + [5056] = {.lex_state = 171, .external_lex_state = 19}, + [5057] = {.lex_state = 341, .external_lex_state = 17}, + [5058] = {.lex_state = 341, .external_lex_state = 14}, [5059] = {.lex_state = 180}, - [5060] = {.lex_state = 171, .external_lex_state = 19}, - [5061] = {.lex_state = 340, .external_lex_state = 14}, - [5062] = {.lex_state = 131}, - [5063] = {.lex_state = 180}, - [5064] = {.lex_state = 131}, - [5065] = {.lex_state = 180}, + [5060] = {.lex_state = 180}, + [5061] = {.lex_state = 341, .external_lex_state = 17}, + [5062] = {.lex_state = 341, .external_lex_state = 17}, + [5063] = {.lex_state = 171, .external_lex_state = 19}, + [5064] = {.lex_state = 341, .external_lex_state = 17}, + [5065] = {.lex_state = 171, .external_lex_state = 19}, [5066] = {.lex_state = 171, .external_lex_state = 19}, - [5067] = {.lex_state = 340, .external_lex_state = 14}, - [5068] = {.lex_state = 180}, - [5069] = {.lex_state = 180}, - [5070] = {.lex_state = 171, .external_lex_state = 19}, - [5071] = {.lex_state = 180}, - [5072] = {.lex_state = 340, .external_lex_state = 14}, + [5067] = {.lex_state = 131}, + [5068] = {.lex_state = 341, .external_lex_state = 14}, + [5069] = {.lex_state = 341, .external_lex_state = 14}, + [5070] = {.lex_state = 341, .external_lex_state = 16}, + [5071] = {.lex_state = 341, .external_lex_state = 17}, + [5072] = {.lex_state = 180}, [5073] = {.lex_state = 180}, - [5074] = {.lex_state = 180}, - [5075] = {.lex_state = 180}, - [5076] = {.lex_state = 340, .external_lex_state = 17}, + [5074] = {.lex_state = 171, .external_lex_state = 19}, + [5075] = {.lex_state = 171, .external_lex_state = 19}, + [5076] = {.lex_state = 171, .external_lex_state = 19}, [5077] = {.lex_state = 171, .external_lex_state = 19}, - [5078] = {.lex_state = 180}, - [5079] = {.lex_state = 340, .external_lex_state = 17}, - [5080] = {.lex_state = 180}, - [5081] = {.lex_state = 180}, + [5078] = {.lex_state = 171, .external_lex_state = 19}, + [5079] = {.lex_state = 180}, + [5080] = {.lex_state = 341, .external_lex_state = 16}, + [5081] = {.lex_state = 171, .external_lex_state = 19}, [5082] = {.lex_state = 180}, - [5083] = {.lex_state = 340, .external_lex_state = 17}, - [5084] = {.lex_state = 340, .external_lex_state = 17}, - [5085] = {.lex_state = 340, .external_lex_state = 17}, - [5086] = {.lex_state = 340, .external_lex_state = 17}, - [5087] = {.lex_state = 340, .external_lex_state = 17}, - [5088] = {.lex_state = 171, .external_lex_state = 19}, - [5089] = {.lex_state = 340, .external_lex_state = 17}, - [5090] = {.lex_state = 340, .external_lex_state = 16}, - [5091] = {.lex_state = 340, .external_lex_state = 18}, - [5092] = {.lex_state = 131}, - [5093] = {.lex_state = 340, .external_lex_state = 14}, - [5094] = {.lex_state = 171, .external_lex_state = 19}, - [5095] = {.lex_state = 340, .external_lex_state = 14}, - [5096] = {.lex_state = 180}, - [5097] = {.lex_state = 340, .external_lex_state = 16}, - [5098] = {.lex_state = 340, .external_lex_state = 16}, - [5099] = {.lex_state = 171, .external_lex_state = 19}, - [5100] = {.lex_state = 131}, + [5083] = {.lex_state = 180}, + [5084] = {.lex_state = 171, .external_lex_state = 19}, + [5085] = {.lex_state = 341, .external_lex_state = 14}, + [5086] = {.lex_state = 171, .external_lex_state = 19}, + [5087] = {.lex_state = 131}, + [5088] = {.lex_state = 341, .external_lex_state = 14}, + [5089] = {.lex_state = 180}, + [5090] = {.lex_state = 341, .external_lex_state = 14}, + [5091] = {.lex_state = 341, .external_lex_state = 14}, + [5092] = {.lex_state = 171, .external_lex_state = 19}, + [5093] = {.lex_state = 341, .external_lex_state = 14}, + [5094] = {.lex_state = 341, .external_lex_state = 17}, + [5095] = {.lex_state = 341, .external_lex_state = 14}, + [5096] = {.lex_state = 171, .external_lex_state = 19}, + [5097] = {.lex_state = 180}, + [5098] = {.lex_state = 171, .external_lex_state = 19}, + [5099] = {.lex_state = 189}, + [5100] = {.lex_state = 341, .external_lex_state = 17}, [5101] = {.lex_state = 180}, - [5102] = {.lex_state = 171, .external_lex_state = 19}, - [5103] = {.lex_state = 340, .external_lex_state = 18}, - [5104] = {.lex_state = 340, .external_lex_state = 14}, - [5105] = {.lex_state = 171, .external_lex_state = 19}, - [5106] = {.lex_state = 180}, - [5107] = {.lex_state = 340, .external_lex_state = 17}, - [5108] = {.lex_state = 340, .external_lex_state = 14}, - [5109] = {.lex_state = 340, .external_lex_state = 18}, - [5110] = {.lex_state = 131}, - [5111] = {.lex_state = 340, .external_lex_state = 17}, - [5112] = {.lex_state = 340, .external_lex_state = 14}, - [5113] = {.lex_state = 171, .external_lex_state = 19}, - [5114] = {.lex_state = 340, .external_lex_state = 14}, - [5115] = {.lex_state = 340, .external_lex_state = 14}, - [5116] = {.lex_state = 340, .external_lex_state = 17}, - [5117] = {.lex_state = 171, .external_lex_state = 19}, - [5118] = {.lex_state = 340, .external_lex_state = 14}, - [5119] = {.lex_state = 180}, - [5120] = {.lex_state = 340, .external_lex_state = 14}, - [5121] = {.lex_state = 134, .external_lex_state = 19}, - [5122] = {.lex_state = 340, .external_lex_state = 18}, - [5123] = {.lex_state = 340, .external_lex_state = 16}, - [5124] = {.lex_state = 340, .external_lex_state = 18}, - [5125] = {.lex_state = 340, .external_lex_state = 16}, - [5126] = {.lex_state = 189}, - [5127] = {.lex_state = 340, .external_lex_state = 16}, - [5128] = {.lex_state = 340, .external_lex_state = 16}, - [5129] = {.lex_state = 340, .external_lex_state = 18}, - [5130] = {.lex_state = 189}, - [5131] = {.lex_state = 340, .external_lex_state = 16}, - [5132] = {.lex_state = 189}, - [5133] = {.lex_state = 340, .external_lex_state = 18}, - [5134] = {.lex_state = 340, .external_lex_state = 16}, - [5135] = {.lex_state = 340, .external_lex_state = 16}, - [5136] = {.lex_state = 340, .external_lex_state = 16}, - [5137] = {.lex_state = 189}, - [5138] = {.lex_state = 180, .external_lex_state = 14}, - [5139] = {.lex_state = 340, .external_lex_state = 16}, - [5140] = {.lex_state = 180, .external_lex_state = 14}, - [5141] = {.lex_state = 340, .external_lex_state = 18}, - [5142] = {.lex_state = 340, .external_lex_state = 14}, - [5143] = {.lex_state = 340, .external_lex_state = 16}, - [5144] = {.lex_state = 340, .external_lex_state = 18}, - [5145] = {.lex_state = 340, .external_lex_state = 18}, - [5146] = {.lex_state = 340, .external_lex_state = 16}, - [5147] = {.lex_state = 340, .external_lex_state = 16}, - [5148] = {.lex_state = 340, .external_lex_state = 18}, - [5149] = {.lex_state = 189}, - [5150] = {.lex_state = 340, .external_lex_state = 16}, - [5151] = {.lex_state = 340, .external_lex_state = 16}, - [5152] = {.lex_state = 340, .external_lex_state = 18}, - [5153] = {.lex_state = 340, .external_lex_state = 16}, - [5154] = {.lex_state = 340, .external_lex_state = 16}, - [5155] = {.lex_state = 340, .external_lex_state = 16}, - [5156] = {.lex_state = 340, .external_lex_state = 16}, - [5157] = {.lex_state = 340, .external_lex_state = 16}, - [5158] = {.lex_state = 340, .external_lex_state = 18}, - [5159] = {.lex_state = 340, .external_lex_state = 18}, - [5160] = {.lex_state = 340, .external_lex_state = 16}, - [5161] = {.lex_state = 189}, - [5162] = {.lex_state = 189}, - [5163] = {.lex_state = 340, .external_lex_state = 18}, - [5164] = {.lex_state = 340, .external_lex_state = 16}, - [5165] = {.lex_state = 340, .external_lex_state = 18}, - [5166] = {.lex_state = 134, .external_lex_state = 19}, - [5167] = {.lex_state = 182, .external_lex_state = 14}, - [5168] = {.lex_state = 340, .external_lex_state = 16}, - [5169] = {.lex_state = 340, .external_lex_state = 16}, - [5170] = {.lex_state = 340, .external_lex_state = 16}, - [5171] = {.lex_state = 340, .external_lex_state = 16}, - [5172] = {.lex_state = 340, .external_lex_state = 16}, - [5173] = {.lex_state = 340, .external_lex_state = 18}, - [5174] = {.lex_state = 340, .external_lex_state = 18}, - [5175] = {.lex_state = 134, .external_lex_state = 19}, - [5176] = {.lex_state = 340, .external_lex_state = 18}, - [5177] = {.lex_state = 340, .external_lex_state = 18}, - [5178] = {.lex_state = 340, .external_lex_state = 16}, - [5179] = {.lex_state = 182, .external_lex_state = 14}, - [5180] = {.lex_state = 340, .external_lex_state = 14}, - [5181] = {.lex_state = 340, .external_lex_state = 16}, - [5182] = {.lex_state = 340, .external_lex_state = 16}, - [5183] = {.lex_state = 134, .external_lex_state = 19}, - [5184] = {.lex_state = 340, .external_lex_state = 14}, - [5185] = {.lex_state = 182, .external_lex_state = 14}, - [5186] = {.lex_state = 189}, - [5187] = {.lex_state = 340, .external_lex_state = 14}, - [5188] = {.lex_state = 340, .external_lex_state = 18}, - [5189] = {.lex_state = 340, .external_lex_state = 18}, - [5190] = {.lex_state = 134, .external_lex_state = 19}, - [5191] = {.lex_state = 340, .external_lex_state = 16}, - [5192] = {.lex_state = 340, .external_lex_state = 18}, - [5193] = {.lex_state = 340, .external_lex_state = 18}, - [5194] = {.lex_state = 340, .external_lex_state = 18}, - [5195] = {.lex_state = 340, .external_lex_state = 18}, - [5196] = {.lex_state = 340, .external_lex_state = 18}, - [5197] = {.lex_state = 340, .external_lex_state = 18}, - [5198] = {.lex_state = 340, .external_lex_state = 18}, - [5199] = {.lex_state = 340, .external_lex_state = 18}, - [5200] = {.lex_state = 340, .external_lex_state = 18}, - [5201] = {.lex_state = 162}, - [5202] = {.lex_state = 189}, - [5203] = {.lex_state = 189}, - [5204] = {.lex_state = 189}, - [5205] = {.lex_state = 172, .external_lex_state = 19}, - [5206] = {.lex_state = 162}, - [5207] = {.lex_state = 340}, - [5208] = {.lex_state = 340}, - [5209] = {.lex_state = 162}, - [5210] = {.lex_state = 340}, - [5211] = {.lex_state = 180, .external_lex_state = 14}, - [5212] = {.lex_state = 340}, - [5213] = {.lex_state = 340}, - [5214] = {.lex_state = 180, .external_lex_state = 14}, - [5215] = {.lex_state = 340}, - [5216] = {.lex_state = 172, .external_lex_state = 19}, - [5217] = {.lex_state = 162}, - [5218] = {.lex_state = 340}, - [5219] = {.lex_state = 189}, - [5220] = {.lex_state = 340}, - [5221] = {.lex_state = 340, .external_lex_state = 16}, - [5222] = {.lex_state = 172, .external_lex_state = 19}, - [5223] = {.lex_state = 178}, - [5224] = {.lex_state = 172, .external_lex_state = 19}, - [5225] = {.lex_state = 182}, - [5226] = {.lex_state = 182}, - [5227] = {.lex_state = 189, .external_lex_state = 17}, - [5228] = {.lex_state = 172, .external_lex_state = 19}, - [5229] = {.lex_state = 188}, - [5230] = {.lex_state = 172, .external_lex_state = 19}, - [5231] = {.lex_state = 189}, - [5232] = {.lex_state = 172, .external_lex_state = 19}, - [5233] = {.lex_state = 172, .external_lex_state = 19}, - [5234] = {.lex_state = 172, .external_lex_state = 19}, - [5235] = {.lex_state = 179}, - [5236] = {.lex_state = 340}, - [5237] = {.lex_state = 172, .external_lex_state = 19}, - [5238] = {.lex_state = 189, .external_lex_state = 14}, - [5239] = {.lex_state = 172, .external_lex_state = 19}, + [5102] = {.lex_state = 131}, + [5103] = {.lex_state = 341, .external_lex_state = 17}, + [5104] = {.lex_state = 341, .external_lex_state = 16}, + [5105] = {.lex_state = 341, .external_lex_state = 16}, + [5106] = {.lex_state = 341, .external_lex_state = 17}, + [5107] = {.lex_state = 341, .external_lex_state = 17}, + [5108] = {.lex_state = 341, .external_lex_state = 16}, + [5109] = {.lex_state = 341, .external_lex_state = 16}, + [5110] = {.lex_state = 180}, + [5111] = {.lex_state = 131}, + [5112] = {.lex_state = 180}, + [5113] = {.lex_state = 180}, + [5114] = {.lex_state = 341, .external_lex_state = 17}, + [5115] = {.lex_state = 180}, + [5116] = {.lex_state = 171, .external_lex_state = 19}, + [5117] = {.lex_state = 341, .external_lex_state = 16}, + [5118] = {.lex_state = 341, .external_lex_state = 16}, + [5119] = {.lex_state = 171, .external_lex_state = 19}, + [5120] = {.lex_state = 341, .external_lex_state = 17}, + [5121] = {.lex_state = 341, .external_lex_state = 16}, + [5122] = {.lex_state = 341, .external_lex_state = 16}, + [5123] = {.lex_state = 341, .external_lex_state = 14}, + [5124] = {.lex_state = 171, .external_lex_state = 19}, + [5125] = {.lex_state = 171, .external_lex_state = 19}, + [5126] = {.lex_state = 341, .external_lex_state = 16}, + [5127] = {.lex_state = 341, .external_lex_state = 14}, + [5128] = {.lex_state = 341, .external_lex_state = 17}, + [5129] = {.lex_state = 171, .external_lex_state = 19}, + [5130] = {.lex_state = 341, .external_lex_state = 14}, + [5131] = {.lex_state = 171, .external_lex_state = 19}, + [5132] = {.lex_state = 341, .external_lex_state = 14}, + [5133] = {.lex_state = 171, .external_lex_state = 19}, + [5134] = {.lex_state = 341, .external_lex_state = 17}, + [5135] = {.lex_state = 131}, + [5136] = {.lex_state = 171, .external_lex_state = 19}, + [5137] = {.lex_state = 180}, + [5138] = {.lex_state = 341, .external_lex_state = 16}, + [5139] = {.lex_state = 341, .external_lex_state = 17}, + [5140] = {.lex_state = 180}, + [5141] = {.lex_state = 341, .external_lex_state = 16}, + [5142] = {.lex_state = 180}, + [5143] = {.lex_state = 180}, + [5144] = {.lex_state = 180}, + [5145] = {.lex_state = 341, .external_lex_state = 14}, + [5146] = {.lex_state = 131}, + [5147] = {.lex_state = 341, .external_lex_state = 14}, + [5148] = {.lex_state = 180}, + [5149] = {.lex_state = 131}, + [5150] = {.lex_state = 171, .external_lex_state = 19}, + [5151] = {.lex_state = 341, .external_lex_state = 16}, + [5152] = {.lex_state = 189}, + [5153] = {.lex_state = 341, .external_lex_state = 16}, + [5154] = {.lex_state = 180, .external_lex_state = 14}, + [5155] = {.lex_state = 341, .external_lex_state = 16}, + [5156] = {.lex_state = 341, .external_lex_state = 16}, + [5157] = {.lex_state = 341, .external_lex_state = 16}, + [5158] = {.lex_state = 341, .external_lex_state = 16}, + [5159] = {.lex_state = 341, .external_lex_state = 18}, + [5160] = {.lex_state = 341, .external_lex_state = 16}, + [5161] = {.lex_state = 182, .external_lex_state = 14}, + [5162] = {.lex_state = 341, .external_lex_state = 16}, + [5163] = {.lex_state = 341, .external_lex_state = 16}, + [5164] = {.lex_state = 341, .external_lex_state = 18}, + [5165] = {.lex_state = 341, .external_lex_state = 18}, + [5166] = {.lex_state = 341, .external_lex_state = 18}, + [5167] = {.lex_state = 341, .external_lex_state = 18}, + [5168] = {.lex_state = 341, .external_lex_state = 18}, + [5169] = {.lex_state = 341, .external_lex_state = 16}, + [5170] = {.lex_state = 341, .external_lex_state = 18}, + [5171] = {.lex_state = 341, .external_lex_state = 16}, + [5172] = {.lex_state = 341, .external_lex_state = 16}, + [5173] = {.lex_state = 341, .external_lex_state = 16}, + [5174] = {.lex_state = 341, .external_lex_state = 18}, + [5175] = {.lex_state = 341, .external_lex_state = 14}, + [5176] = {.lex_state = 134, .external_lex_state = 19}, + [5177] = {.lex_state = 341, .external_lex_state = 16}, + [5178] = {.lex_state = 189}, + [5179] = {.lex_state = 134, .external_lex_state = 19}, + [5180] = {.lex_state = 189}, + [5181] = {.lex_state = 341, .external_lex_state = 16}, + [5182] = {.lex_state = 341, .external_lex_state = 16}, + [5183] = {.lex_state = 341, .external_lex_state = 16}, + [5184] = {.lex_state = 341, .external_lex_state = 16}, + [5185] = {.lex_state = 341, .external_lex_state = 16}, + [5186] = {.lex_state = 341, .external_lex_state = 18}, + [5187] = {.lex_state = 341, .external_lex_state = 18}, + [5188] = {.lex_state = 341, .external_lex_state = 16}, + [5189] = {.lex_state = 180, .external_lex_state = 14}, + [5190] = {.lex_state = 341, .external_lex_state = 18}, + [5191] = {.lex_state = 341, .external_lex_state = 16}, + [5192] = {.lex_state = 341, .external_lex_state = 16}, + [5193] = {.lex_state = 341, .external_lex_state = 18}, + [5194] = {.lex_state = 341, .external_lex_state = 16}, + [5195] = {.lex_state = 189}, + [5196] = {.lex_state = 188}, + [5197] = {.lex_state = 134, .external_lex_state = 19}, + [5198] = {.lex_state = 341, .external_lex_state = 18}, + [5199] = {.lex_state = 134, .external_lex_state = 19}, + [5200] = {.lex_state = 189}, + [5201] = {.lex_state = 341, .external_lex_state = 16}, + [5202] = {.lex_state = 341, .external_lex_state = 18}, + [5203] = {.lex_state = 341, .external_lex_state = 16}, + [5204] = {.lex_state = 341, .external_lex_state = 16}, + [5205] = {.lex_state = 341, .external_lex_state = 18}, + [5206] = {.lex_state = 341, .external_lex_state = 14}, + [5207] = {.lex_state = 189}, + [5208] = {.lex_state = 341, .external_lex_state = 16}, + [5209] = {.lex_state = 341, .external_lex_state = 18}, + [5210] = {.lex_state = 341, .external_lex_state = 18}, + [5211] = {.lex_state = 341, .external_lex_state = 16}, + [5212] = {.lex_state = 189}, + [5213] = {.lex_state = 341, .external_lex_state = 14}, + [5214] = {.lex_state = 341, .external_lex_state = 14}, + [5215] = {.lex_state = 341, .external_lex_state = 16}, + [5216] = {.lex_state = 189}, + [5217] = {.lex_state = 341, .external_lex_state = 18}, + [5218] = {.lex_state = 341, .external_lex_state = 18}, + [5219] = {.lex_state = 341, .external_lex_state = 18}, + [5220] = {.lex_state = 182, .external_lex_state = 14}, + [5221] = {.lex_state = 188}, + [5222] = {.lex_state = 189}, + [5223] = {.lex_state = 341, .external_lex_state = 16}, + [5224] = {.lex_state = 182, .external_lex_state = 14}, + [5225] = {.lex_state = 341, .external_lex_state = 18}, + [5226] = {.lex_state = 341, .external_lex_state = 18}, + [5227] = {.lex_state = 341, .external_lex_state = 18}, + [5228] = {.lex_state = 341, .external_lex_state = 18}, + [5229] = {.lex_state = 341, .external_lex_state = 18}, + [5230] = {.lex_state = 341, .external_lex_state = 18}, + [5231] = {.lex_state = 341, .external_lex_state = 18}, + [5232] = {.lex_state = 134, .external_lex_state = 19}, + [5233] = {.lex_state = 341, .external_lex_state = 18}, + [5234] = {.lex_state = 341, .external_lex_state = 16}, + [5235] = {.lex_state = 341}, + [5236] = {.lex_state = 188}, + [5237] = {.lex_state = 179}, + [5238] = {.lex_state = 179}, + [5239] = {.lex_state = 179}, [5240] = {.lex_state = 162}, - [5241] = {.lex_state = 162}, - [5242] = {.lex_state = 340}, - [5243] = {.lex_state = 172, .external_lex_state = 19}, - [5244] = {.lex_state = 189}, - [5245] = {.lex_state = 189}, + [5241] = {.lex_state = 341}, + [5242] = {.lex_state = 189}, + [5243] = {.lex_state = 341}, + [5244] = {.lex_state = 162}, + [5245] = {.lex_state = 179}, [5246] = {.lex_state = 172, .external_lex_state = 19}, - [5247] = {.lex_state = 340, .external_lex_state = 16}, + [5247] = {.lex_state = 341}, [5248] = {.lex_state = 189}, [5249] = {.lex_state = 162}, - [5250] = {.lex_state = 189}, - [5251] = {.lex_state = 188}, - [5252] = {.lex_state = 178}, - [5253] = {.lex_state = 189}, - [5254] = {.lex_state = 172, .external_lex_state = 19}, - [5255] = {.lex_state = 189}, - [5256] = {.lex_state = 340}, + [5250] = {.lex_state = 180, .external_lex_state = 14}, + [5251] = {.lex_state = 180, .external_lex_state = 14}, + [5252] = {.lex_state = 172, .external_lex_state = 19}, + [5253] = {.lex_state = 341}, + [5254] = {.lex_state = 189}, + [5255] = {.lex_state = 189, .external_lex_state = 14}, + [5256] = {.lex_state = 172, .external_lex_state = 19}, [5257] = {.lex_state = 172, .external_lex_state = 19}, - [5258] = {.lex_state = 162}, - [5259] = {.lex_state = 178}, - [5260] = {.lex_state = 189}, - [5261] = {.lex_state = 172, .external_lex_state = 19}, - [5262] = {.lex_state = 189}, + [5258] = {.lex_state = 172, .external_lex_state = 19}, + [5259] = {.lex_state = 188}, + [5260] = {.lex_state = 162}, + [5261] = {.lex_state = 189}, + [5262] = {.lex_state = 341}, [5263] = {.lex_state = 172, .external_lex_state = 19}, - [5264] = {.lex_state = 189}, + [5264] = {.lex_state = 188}, [5265] = {.lex_state = 189}, - [5266] = {.lex_state = 189}, - [5267] = {.lex_state = 189}, - [5268] = {.lex_state = 182, .external_lex_state = 14}, - [5269] = {.lex_state = 340}, - [5270] = {.lex_state = 180}, - [5271] = {.lex_state = 179, .external_lex_state = 14}, + [5266] = {.lex_state = 172, .external_lex_state = 19}, + [5267] = {.lex_state = 189, .external_lex_state = 17}, + [5268] = {.lex_state = 188}, + [5269] = {.lex_state = 341, .external_lex_state = 16}, + [5270] = {.lex_state = 172, .external_lex_state = 19}, + [5271] = {.lex_state = 179}, [5272] = {.lex_state = 162}, [5273] = {.lex_state = 172, .external_lex_state = 19}, - [5274] = {.lex_state = 189}, - [5275] = {.lex_state = 189}, - [5276] = {.lex_state = 180}, - [5277] = {.lex_state = 172, .external_lex_state = 19}, - [5278] = {.lex_state = 172, .external_lex_state = 19}, - [5279] = {.lex_state = 172, .external_lex_state = 19}, - [5280] = {.lex_state = 162}, - [5281] = {.lex_state = 162}, + [5274] = {.lex_state = 341}, + [5275] = {.lex_state = 172, .external_lex_state = 19}, + [5276] = {.lex_state = 172, .external_lex_state = 19}, + [5277] = {.lex_state = 341}, + [5278] = {.lex_state = 178}, + [5279] = {.lex_state = 180}, + [5280] = {.lex_state = 341}, + [5281] = {.lex_state = 172, .external_lex_state = 19}, [5282] = {.lex_state = 172, .external_lex_state = 19}, - [5283] = {.lex_state = 180}, - [5284] = {.lex_state = 189}, + [5283] = {.lex_state = 189}, + [5284] = {.lex_state = 162}, [5285] = {.lex_state = 172, .external_lex_state = 19}, [5286] = {.lex_state = 189, .external_lex_state = 14}, - [5287] = {.lex_state = 340}, - [5288] = {.lex_state = 188}, + [5287] = {.lex_state = 180, .external_lex_state = 14}, + [5288] = {.lex_state = 189}, [5289] = {.lex_state = 189}, - [5290] = {.lex_state = 189}, - [5291] = {.lex_state = 189}, - [5292] = {.lex_state = 189}, - [5293] = {.lex_state = 189}, - [5294] = {.lex_state = 189}, - [5295] = {.lex_state = 180, .external_lex_state = 14}, + [5290] = {.lex_state = 172, .external_lex_state = 19}, + [5291] = {.lex_state = 189, .external_lex_state = 17}, + [5292] = {.lex_state = 172, .external_lex_state = 19}, + [5293] = {.lex_state = 180, .external_lex_state = 14}, + [5294] = {.lex_state = 162}, + [5295] = {.lex_state = 189}, [5296] = {.lex_state = 172, .external_lex_state = 19}, [5297] = {.lex_state = 172, .external_lex_state = 19}, - [5298] = {.lex_state = 172, .external_lex_state = 19}, - [5299] = {.lex_state = 179}, + [5298] = {.lex_state = 189}, + [5299] = {.lex_state = 179, .external_lex_state = 14}, [5300] = {.lex_state = 172, .external_lex_state = 19}, - [5301] = {.lex_state = 188}, - [5302] = {.lex_state = 162}, - [5303] = {.lex_state = 172, .external_lex_state = 19}, - [5304] = {.lex_state = 189}, - [5305] = {.lex_state = 179}, - [5306] = {.lex_state = 172, .external_lex_state = 19}, - [5307] = {.lex_state = 189}, - [5308] = {.lex_state = 180}, - [5309] = {.lex_state = 172, .external_lex_state = 19}, - [5310] = {.lex_state = 182}, + [5301] = {.lex_state = 172, .external_lex_state = 19}, + [5302] = {.lex_state = 182}, + [5303] = {.lex_state = 162}, + [5304] = {.lex_state = 341}, + [5305] = {.lex_state = 178}, + [5306] = {.lex_state = 182}, + [5307] = {.lex_state = 341}, + [5308] = {.lex_state = 178}, + [5309] = {.lex_state = 189}, + [5310] = {.lex_state = 189}, [5311] = {.lex_state = 172, .external_lex_state = 19}, - [5312] = {.lex_state = 189, .external_lex_state = 14}, - [5313] = {.lex_state = 179, .external_lex_state = 14}, - [5314] = {.lex_state = 189}, - [5315] = {.lex_state = 162}, + [5312] = {.lex_state = 189}, + [5313] = {.lex_state = 172, .external_lex_state = 19}, + [5314] = {.lex_state = 341}, + [5315] = {.lex_state = 189}, [5316] = {.lex_state = 189}, - [5317] = {.lex_state = 189}, - [5318] = {.lex_state = 189}, - [5319] = {.lex_state = 189}, - [5320] = {.lex_state = 180}, - [5321] = {.lex_state = 189}, - [5322] = {.lex_state = 189}, - [5323] = {.lex_state = 188}, - [5324] = {.lex_state = 189}, - [5325] = {.lex_state = 189}, - [5326] = {.lex_state = 188}, - [5327] = {.lex_state = 189}, - [5328] = {.lex_state = 179}, - [5329] = {.lex_state = 189}, - [5330] = {.lex_state = 340}, - [5331] = {.lex_state = 179, .external_lex_state = 14}, - [5332] = {.lex_state = 162}, - [5333] = {.lex_state = 189}, - [5334] = {.lex_state = 162}, - [5335] = {.lex_state = 172, .external_lex_state = 19}, - [5336] = {.lex_state = 189, .external_lex_state = 14}, - [5337] = {.lex_state = 172, .external_lex_state = 19}, + [5317] = {.lex_state = 180, .external_lex_state = 14}, + [5318] = {.lex_state = 182, .external_lex_state = 14}, + [5319] = {.lex_state = 341}, + [5320] = {.lex_state = 189}, + [5321] = {.lex_state = 180}, + [5322] = {.lex_state = 341}, + [5323] = {.lex_state = 189, .external_lex_state = 14}, + [5324] = {.lex_state = 341}, + [5325] = {.lex_state = 162}, + [5326] = {.lex_state = 172, .external_lex_state = 19}, + [5327] = {.lex_state = 341}, + [5328] = {.lex_state = 189}, + [5329] = {.lex_state = 162}, + [5330] = {.lex_state = 341, .external_lex_state = 16}, + [5331] = {.lex_state = 341}, + [5332] = {.lex_state = 179, .external_lex_state = 14}, + [5333] = {.lex_state = 172, .external_lex_state = 19}, + [5334] = {.lex_state = 189}, + [5335] = {.lex_state = 189}, + [5336] = {.lex_state = 341}, + [5337] = {.lex_state = 162}, [5338] = {.lex_state = 189}, - [5339] = {.lex_state = 172, .external_lex_state = 19}, - [5340] = {.lex_state = 180, .external_lex_state = 14}, + [5339] = {.lex_state = 189, .external_lex_state = 14}, + [5340] = {.lex_state = 172, .external_lex_state = 19}, [5341] = {.lex_state = 172, .external_lex_state = 19}, - [5342] = {.lex_state = 172, .external_lex_state = 19}, - [5343] = {.lex_state = 188}, - [5344] = {.lex_state = 340}, - [5345] = {.lex_state = 162}, - [5346] = {.lex_state = 180, .external_lex_state = 14}, - [5347] = {.lex_state = 162}, - [5348] = {.lex_state = 189}, - [5349] = {.lex_state = 162}, - [5350] = {.lex_state = 179, .external_lex_state = 14}, - [5351] = {.lex_state = 179, .external_lex_state = 14}, - [5352] = {.lex_state = 179}, - [5353] = {.lex_state = 172, .external_lex_state = 19}, - [5354] = {.lex_state = 172, .external_lex_state = 19}, - [5355] = {.lex_state = 189}, - [5356] = {.lex_state = 172, .external_lex_state = 19}, - [5357] = {.lex_state = 179}, - [5358] = {.lex_state = 172, .external_lex_state = 19}, - [5359] = {.lex_state = 172, .external_lex_state = 19}, - [5360] = {.lex_state = 189}, + [5342] = {.lex_state = 189}, + [5343] = {.lex_state = 189}, + [5344] = {.lex_state = 341}, + [5345] = {.lex_state = 341}, + [5346] = {.lex_state = 189}, + [5347] = {.lex_state = 172, .external_lex_state = 19}, + [5348] = {.lex_state = 172, .external_lex_state = 19}, + [5349] = {.lex_state = 189, .external_lex_state = 14}, + [5350] = {.lex_state = 179}, + [5351] = {.lex_state = 189}, + [5352] = {.lex_state = 172, .external_lex_state = 19}, + [5353] = {.lex_state = 341}, + [5354] = {.lex_state = 189}, + [5355] = {.lex_state = 179, .external_lex_state = 14}, + [5356] = {.lex_state = 341}, + [5357] = {.lex_state = 162}, + [5358] = {.lex_state = 341}, + [5359] = {.lex_state = 189}, + [5360] = {.lex_state = 188}, [5361] = {.lex_state = 189}, - [5362] = {.lex_state = 189, .external_lex_state = 17}, - [5363] = {.lex_state = 340}, - [5364] = {.lex_state = 172, .external_lex_state = 19}, - [5365] = {.lex_state = 340}, - [5366] = {.lex_state = 172, .external_lex_state = 19}, - [5367] = {.lex_state = 162}, - [5368] = {.lex_state = 162}, - [5369] = {.lex_state = 179, .external_lex_state = 14}, - [5370] = {.lex_state = 188}, - [5371] = {.lex_state = 189, .external_lex_state = 14}, - [5372] = {.lex_state = 162}, - [5373] = {.lex_state = 172, .external_lex_state = 19}, - [5374] = {.lex_state = 340}, - [5375] = {.lex_state = 340}, + [5362] = {.lex_state = 182}, + [5363] = {.lex_state = 189}, + [5364] = {.lex_state = 179, .external_lex_state = 14}, + [5365] = {.lex_state = 189}, + [5366] = {.lex_state = 189}, + [5367] = {.lex_state = 189}, + [5368] = {.lex_state = 172, .external_lex_state = 19}, + [5369] = {.lex_state = 341}, + [5370] = {.lex_state = 172, .external_lex_state = 19}, + [5371] = {.lex_state = 180}, + [5372] = {.lex_state = 189}, + [5373] = {.lex_state = 189}, + [5374] = {.lex_state = 341}, + [5375] = {.lex_state = 341}, [5376] = {.lex_state = 172, .external_lex_state = 19}, [5377] = {.lex_state = 189}, - [5378] = {.lex_state = 189}, + [5378] = {.lex_state = 341}, [5379] = {.lex_state = 172, .external_lex_state = 19}, - [5380] = {.lex_state = 172, .external_lex_state = 19}, - [5381] = {.lex_state = 189}, - [5382] = {.lex_state = 189, .external_lex_state = 14}, + [5380] = {.lex_state = 189}, + [5381] = {.lex_state = 341}, + [5382] = {.lex_state = 188}, [5383] = {.lex_state = 189}, - [5384] = {.lex_state = 179}, - [5385] = {.lex_state = 189}, - [5386] = {.lex_state = 189}, - [5387] = {.lex_state = 179, .external_lex_state = 14}, - [5388] = {.lex_state = 179, .external_lex_state = 14}, - [5389] = {.lex_state = 180}, - [5390] = {.lex_state = 180}, - [5391] = {.lex_state = 180}, - [5392] = {.lex_state = 180}, - [5393] = {.lex_state = 180}, - [5394] = {.lex_state = 180}, - [5395] = {.lex_state = 189}, - [5396] = {.lex_state = 180}, + [5384] = {.lex_state = 172, .external_lex_state = 19}, + [5385] = {.lex_state = 172, .external_lex_state = 19}, + [5386] = {.lex_state = 180}, + [5387] = {.lex_state = 189}, + [5388] = {.lex_state = 341}, + [5389] = {.lex_state = 189}, + [5390] = {.lex_state = 189}, + [5391] = {.lex_state = 189}, + [5392] = {.lex_state = 172, .external_lex_state = 19}, + [5393] = {.lex_state = 341}, + [5394] = {.lex_state = 341}, + [5395] = {.lex_state = 341}, + [5396] = {.lex_state = 341}, [5397] = {.lex_state = 189}, - [5398] = {.lex_state = 189}, - [5399] = {.lex_state = 180}, - [5400] = {.lex_state = 179}, - [5401] = {.lex_state = 180}, - [5402] = {.lex_state = 180}, + [5398] = {.lex_state = 162}, + [5399] = {.lex_state = 189}, + [5400] = {.lex_state = 189}, + [5401] = {.lex_state = 189}, + [5402] = {.lex_state = 172, .external_lex_state = 19}, [5403] = {.lex_state = 189}, - [5404] = {.lex_state = 189}, - [5405] = {.lex_state = 162}, - [5406] = {.lex_state = 189}, - [5407] = {.lex_state = 162}, - [5408] = {.lex_state = 179}, - [5409] = {.lex_state = 180}, - [5410] = {.lex_state = 182}, - [5411] = {.lex_state = 180}, - [5412] = {.lex_state = 162}, + [5404] = {.lex_state = 341}, + [5405] = {.lex_state = 172, .external_lex_state = 19}, + [5406] = {.lex_state = 162}, + [5407] = {.lex_state = 341}, + [5408] = {.lex_state = 172, .external_lex_state = 19}, + [5409] = {.lex_state = 189, .external_lex_state = 14}, + [5410] = {.lex_state = 189}, + [5411] = {.lex_state = 189}, + [5412] = {.lex_state = 341}, [5413] = {.lex_state = 189}, - [5414] = {.lex_state = 189}, - [5415] = {.lex_state = 180}, - [5416] = {.lex_state = 180}, - [5417] = {.lex_state = 180}, - [5418] = {.lex_state = 180}, - [5419] = {.lex_state = 189}, - [5420] = {.lex_state = 189}, - [5421] = {.lex_state = 180}, - [5422] = {.lex_state = 189, .external_lex_state = 16}, - [5423] = {.lex_state = 189}, - [5424] = {.lex_state = 180}, - [5425] = {.lex_state = 180, .external_lex_state = 14}, - [5426] = {.lex_state = 189}, - [5427] = {.lex_state = 162}, - [5428] = {.lex_state = 180}, - [5429] = {.lex_state = 189}, - [5430] = {.lex_state = 189}, - [5431] = {.lex_state = 189}, - [5432] = {.lex_state = 189}, - [5433] = {.lex_state = 162}, - [5434] = {.lex_state = 180}, + [5414] = {.lex_state = 341}, + [5415] = {.lex_state = 341}, + [5416] = {.lex_state = 172, .external_lex_state = 19}, + [5417] = {.lex_state = 179, .external_lex_state = 14}, + [5418] = {.lex_state = 172, .external_lex_state = 19}, + [5419] = {.lex_state = 162}, + [5420] = {.lex_state = 162}, + [5421] = {.lex_state = 162}, + [5422] = {.lex_state = 341}, + [5423] = {.lex_state = 172, .external_lex_state = 19}, + [5424] = {.lex_state = 179, .external_lex_state = 14}, + [5425] = {.lex_state = 341}, + [5426] = {.lex_state = 180}, + [5427] = {.lex_state = 341}, + [5428] = {.lex_state = 341}, + [5429] = {.lex_state = 341}, + [5430] = {.lex_state = 172, .external_lex_state = 19}, + [5431] = {.lex_state = 162}, + [5432] = {.lex_state = 341}, + [5433] = {.lex_state = 341}, + [5434] = {.lex_state = 341}, [5435] = {.lex_state = 189}, - [5436] = {.lex_state = 180}, - [5437] = {.lex_state = 180}, - [5438] = {.lex_state = 189, .external_lex_state = 16}, - [5439] = {.lex_state = 180}, - [5440] = {.lex_state = 162}, - [5441] = {.lex_state = 189}, - [5442] = {.lex_state = 189}, - [5443] = {.lex_state = 162}, - [5444] = {.lex_state = 189}, - [5445] = {.lex_state = 189, .external_lex_state = 16}, - [5446] = {.lex_state = 162}, - [5447] = {.lex_state = 180}, - [5448] = {.lex_state = 133, .external_lex_state = 19}, - [5449] = {.lex_state = 133, .external_lex_state = 19}, - [5450] = {.lex_state = 189}, + [5436] = {.lex_state = 162}, + [5437] = {.lex_state = 341}, + [5438] = {.lex_state = 162}, + [5439] = {.lex_state = 341}, + [5440] = {.lex_state = 341}, + [5441] = {.lex_state = 172, .external_lex_state = 19}, + [5442] = {.lex_state = 172, .external_lex_state = 19}, + [5443] = {.lex_state = 172, .external_lex_state = 19}, + [5444] = {.lex_state = 162}, + [5445] = {.lex_state = 189}, + [5446] = {.lex_state = 341}, + [5447] = {.lex_state = 172, .external_lex_state = 19}, + [5448] = {.lex_state = 341}, + [5449] = {.lex_state = 341}, + [5450] = {.lex_state = 180, .external_lex_state = 14}, [5451] = {.lex_state = 180}, - [5452] = {.lex_state = 162}, - [5453] = {.lex_state = 162}, - [5454] = {.lex_state = 171, .external_lex_state = 19}, - [5455] = {.lex_state = 189}, - [5456] = {.lex_state = 180}, - [5457] = {.lex_state = 189}, + [5452] = {.lex_state = 189}, + [5453] = {.lex_state = 189}, + [5454] = {.lex_state = 162}, + [5455] = {.lex_state = 179, .external_lex_state = 14}, + [5456] = {.lex_state = 179}, + [5457] = {.lex_state = 180}, [5458] = {.lex_state = 189}, [5459] = {.lex_state = 180}, - [5460] = {.lex_state = 180}, - [5461] = {.lex_state = 180}, - [5462] = {.lex_state = 189}, + [5460] = {.lex_state = 179, .external_lex_state = 14}, + [5461] = {.lex_state = 189}, + [5462] = {.lex_state = 180}, [5463] = {.lex_state = 189}, - [5464] = {.lex_state = 340}, - [5465] = {.lex_state = 189}, - [5466] = {.lex_state = 189}, - [5467] = {.lex_state = 189}, + [5464] = {.lex_state = 189}, + [5465] = {.lex_state = 162}, + [5466] = {.lex_state = 174, .external_lex_state = 19}, + [5467] = {.lex_state = 179, .external_lex_state = 14}, [5468] = {.lex_state = 189}, - [5469] = {.lex_state = 189}, - [5470] = {.lex_state = 189}, + [5469] = {.lex_state = 185}, + [5470] = {.lex_state = 180, .external_lex_state = 14}, [5471] = {.lex_state = 180}, - [5472] = {.lex_state = 189}, - [5473] = {.lex_state = 162}, - [5474] = {.lex_state = 180}, + [5472] = {.lex_state = 180}, + [5473] = {.lex_state = 179, .external_lex_state = 14}, + [5474] = {.lex_state = 162}, [5475] = {.lex_state = 162}, [5476] = {.lex_state = 189}, - [5477] = {.lex_state = 174, .external_lex_state = 19}, - [5478] = {.lex_state = 189}, - [5479] = {.lex_state = 189}, + [5477] = {.lex_state = 180}, + [5478] = {.lex_state = 189, .external_lex_state = 16}, + [5479] = {.lex_state = 162}, [5480] = {.lex_state = 189}, [5481] = {.lex_state = 162}, - [5482] = {.lex_state = 189}, - [5483] = {.lex_state = 133, .external_lex_state = 19}, - [5484] = {.lex_state = 162}, - [5485] = {.lex_state = 180}, - [5486] = {.lex_state = 189, .external_lex_state = 16}, - [5487] = {.lex_state = 162}, - [5488] = {.lex_state = 171, .external_lex_state = 19}, - [5489] = {.lex_state = 171, .external_lex_state = 19}, - [5490] = {.lex_state = 189}, + [5482] = {.lex_state = 179, .external_lex_state = 14}, + [5483] = {.lex_state = 341}, + [5484] = {.lex_state = 189}, + [5485] = {.lex_state = 189}, + [5486] = {.lex_state = 162}, + [5487] = {.lex_state = 179, .external_lex_state = 14}, + [5488] = {.lex_state = 189}, + [5489] = {.lex_state = 189}, + [5490] = {.lex_state = 189, .external_lex_state = 16}, [5491] = {.lex_state = 189}, - [5492] = {.lex_state = 179}, - [5493] = {.lex_state = 162}, - [5494] = {.lex_state = 185}, - [5495] = {.lex_state = 180}, - [5496] = {.lex_state = 180}, - [5497] = {.lex_state = 185}, - [5498] = {.lex_state = 180, .external_lex_state = 14}, + [5492] = {.lex_state = 189}, + [5493] = {.lex_state = 189, .external_lex_state = 18}, + [5494] = {.lex_state = 162}, + [5495] = {.lex_state = 179}, + [5496] = {.lex_state = 162}, + [5497] = {.lex_state = 189}, + [5498] = {.lex_state = 179, .external_lex_state = 14}, [5499] = {.lex_state = 180}, - [5500] = {.lex_state = 180}, - [5501] = {.lex_state = 189}, - [5502] = {.lex_state = 189}, - [5503] = {.lex_state = 162}, - [5504] = {.lex_state = 133, .external_lex_state = 19}, - [5505] = {.lex_state = 189}, + [5500] = {.lex_state = 180, .external_lex_state = 14}, + [5501] = {.lex_state = 180, .external_lex_state = 14}, + [5502] = {.lex_state = 180}, + [5503] = {.lex_state = 180, .external_lex_state = 14}, + [5504] = {.lex_state = 180}, + [5505] = {.lex_state = 180}, [5506] = {.lex_state = 189}, - [5507] = {.lex_state = 162}, - [5508] = {.lex_state = 180, .external_lex_state = 14}, - [5509] = {.lex_state = 180, .external_lex_state = 14}, - [5510] = {.lex_state = 189}, - [5511] = {.lex_state = 189}, + [5507] = {.lex_state = 180}, + [5508] = {.lex_state = 180}, + [5509] = {.lex_state = 162}, + [5510] = {.lex_state = 180}, + [5511] = {.lex_state = 162}, [5512] = {.lex_state = 189}, - [5513] = {.lex_state = 189, .external_lex_state = 18}, - [5514] = {.lex_state = 180, .external_lex_state = 14}, - [5515] = {.lex_state = 180}, - [5516] = {.lex_state = 180, .external_lex_state = 14}, - [5517] = {.lex_state = 189}, - [5518] = {.lex_state = 174, .external_lex_state = 19}, + [5513] = {.lex_state = 162}, + [5514] = {.lex_state = 174, .external_lex_state = 19}, + [5515] = {.lex_state = 189}, + [5516] = {.lex_state = 189}, + [5517] = {.lex_state = 189, .external_lex_state = 16}, + [5518] = {.lex_state = 180}, [5519] = {.lex_state = 189}, [5520] = {.lex_state = 189}, [5521] = {.lex_state = 189}, [5522] = {.lex_state = 189}, [5523] = {.lex_state = 189}, - [5524] = {.lex_state = 162}, - [5525] = {.lex_state = 179}, + [5524] = {.lex_state = 189}, + [5525] = {.lex_state = 189}, [5526] = {.lex_state = 189}, - [5527] = {.lex_state = 179}, - [5528] = {.lex_state = 189, .external_lex_state = 18}, - [5529] = {.lex_state = 189}, + [5527] = {.lex_state = 188}, + [5528] = {.lex_state = 189}, + [5529] = {.lex_state = 162}, [5530] = {.lex_state = 189}, [5531] = {.lex_state = 189}, - [5532] = {.lex_state = 162}, - [5533] = {.lex_state = 174, .external_lex_state = 19}, - [5534] = {.lex_state = 189}, - [5535] = {.lex_state = 180}, - [5536] = {.lex_state = 180, .external_lex_state = 14}, - [5537] = {.lex_state = 189}, - [5538] = {.lex_state = 180, .external_lex_state = 14}, - [5539] = {.lex_state = 189}, + [5532] = {.lex_state = 180}, + [5533] = {.lex_state = 189}, + [5534] = {.lex_state = 180, .external_lex_state = 14}, + [5535] = {.lex_state = 179, .external_lex_state = 14}, + [5536] = {.lex_state = 180}, + [5537] = {.lex_state = 162}, + [5538] = {.lex_state = 179, .external_lex_state = 14}, + [5539] = {.lex_state = 174, .external_lex_state = 19}, [5540] = {.lex_state = 189}, - [5541] = {.lex_state = 189, .external_lex_state = 16}, + [5541] = {.lex_state = 189}, [5542] = {.lex_state = 189}, [5543] = {.lex_state = 189}, - [5544] = {.lex_state = 180, .external_lex_state = 14}, + [5544] = {.lex_state = 189}, [5545] = {.lex_state = 189}, - [5546] = {.lex_state = 180}, - [5547] = {.lex_state = 180}, + [5546] = {.lex_state = 189}, + [5547] = {.lex_state = 162}, [5548] = {.lex_state = 162}, - [5549] = {.lex_state = 180, .external_lex_state = 14}, + [5549] = {.lex_state = 189}, [5550] = {.lex_state = 189}, [5551] = {.lex_state = 189}, - [5552] = {.lex_state = 180}, + [5552] = {.lex_state = 162}, [5553] = {.lex_state = 189}, [5554] = {.lex_state = 189}, - [5555] = {.lex_state = 180}, + [5555] = {.lex_state = 189}, [5556] = {.lex_state = 189}, - [5557] = {.lex_state = 180, .external_lex_state = 14}, - [5558] = {.lex_state = 180}, - [5559] = {.lex_state = 162}, + [5557] = {.lex_state = 189}, + [5558] = {.lex_state = 189}, + [5559] = {.lex_state = 189}, [5560] = {.lex_state = 189}, [5561] = {.lex_state = 189}, - [5562] = {.lex_state = 180, .external_lex_state = 14}, - [5563] = {.lex_state = 162}, - [5564] = {.lex_state = 189}, - [5565] = {.lex_state = 162}, - [5566] = {.lex_state = 162}, - [5567] = {.lex_state = 180}, - [5568] = {.lex_state = 189}, - [5569] = {.lex_state = 162}, - [5570] = {.lex_state = 179, .external_lex_state = 14}, - [5571] = {.lex_state = 185}, - [5572] = {.lex_state = 162}, - [5573] = {.lex_state = 179, .external_lex_state = 14}, - [5574] = {.lex_state = 189}, - [5575] = {.lex_state = 179, .external_lex_state = 14}, - [5576] = {.lex_state = 179, .external_lex_state = 14}, - [5577] = {.lex_state = 180}, + [5562] = {.lex_state = 189}, + [5563] = {.lex_state = 180}, + [5564] = {.lex_state = 180}, + [5565] = {.lex_state = 189}, + [5566] = {.lex_state = 188}, + [5567] = {.lex_state = 180, .external_lex_state = 14}, + [5568] = {.lex_state = 162}, + [5569] = {.lex_state = 180}, + [5570] = {.lex_state = 182}, + [5571] = {.lex_state = 189}, + [5572] = {.lex_state = 180}, + [5573] = {.lex_state = 189}, + [5574] = {.lex_state = 171, .external_lex_state = 19}, + [5575] = {.lex_state = 180}, + [5576] = {.lex_state = 133, .external_lex_state = 19}, + [5577] = {.lex_state = 133, .external_lex_state = 19}, [5578] = {.lex_state = 180}, [5579] = {.lex_state = 162}, - [5580] = {.lex_state = 189}, - [5581] = {.lex_state = 189}, - [5582] = {.lex_state = 179, .external_lex_state = 14}, - [5583] = {.lex_state = 179, .external_lex_state = 14}, - [5584] = {.lex_state = 179, .external_lex_state = 14}, - [5585] = {.lex_state = 189}, - [5586] = {.lex_state = 189}, + [5580] = {.lex_state = 179}, + [5581] = {.lex_state = 180}, + [5582] = {.lex_state = 189}, + [5583] = {.lex_state = 180, .external_lex_state = 14}, + [5584] = {.lex_state = 180}, + [5585] = {.lex_state = 162}, + [5586] = {.lex_state = 133, .external_lex_state = 19}, [5587] = {.lex_state = 189}, - [5588] = {.lex_state = 180, .external_lex_state = 14}, - [5589] = {.lex_state = 340, .external_lex_state = 14}, - [5590] = {.lex_state = 180, .external_lex_state = 14}, - [5591] = {.lex_state = 180, .external_lex_state = 14}, - [5592] = {.lex_state = 180}, + [5588] = {.lex_state = 189}, + [5589] = {.lex_state = 185}, + [5590] = {.lex_state = 180}, + [5591] = {.lex_state = 180}, + [5592] = {.lex_state = 162}, [5593] = {.lex_state = 180}, - [5594] = {.lex_state = 340, .external_lex_state = 14}, - [5595] = {.lex_state = 134, .external_lex_state = 19}, - [5596] = {.lex_state = 180}, - [5597] = {.lex_state = 340, .external_lex_state = 14}, - [5598] = {.lex_state = 180}, - [5599] = {.lex_state = 180, .external_lex_state = 14}, - [5600] = {.lex_state = 180, .external_lex_state = 14}, - [5601] = {.lex_state = 189}, - [5602] = {.lex_state = 180, .external_lex_state = 14}, - [5603] = {.lex_state = 180}, - [5604] = {.lex_state = 180, .external_lex_state = 14}, - [5605] = {.lex_state = 180, .external_lex_state = 14}, - [5606] = {.lex_state = 340, .external_lex_state = 14}, - [5607] = {.lex_state = 180, .external_lex_state = 14}, - [5608] = {.lex_state = 340, .external_lex_state = 17}, - [5609] = {.lex_state = 180, .external_lex_state = 14}, - [5610] = {.lex_state = 180, .external_lex_state = 14}, - [5611] = {.lex_state = 340, .external_lex_state = 14}, - [5612] = {.lex_state = 180}, - [5613] = {.lex_state = 180, .external_lex_state = 14}, - [5614] = {.lex_state = 180}, - [5615] = {.lex_state = 134, .external_lex_state = 19}, - [5616] = {.lex_state = 180}, + [5594] = {.lex_state = 189}, + [5595] = {.lex_state = 189}, + [5596] = {.lex_state = 188}, + [5597] = {.lex_state = 189}, + [5598] = {.lex_state = 189}, + [5599] = {.lex_state = 180}, + [5600] = {.lex_state = 189}, + [5601] = {.lex_state = 180}, + [5602] = {.lex_state = 180}, + [5603] = {.lex_state = 133, .external_lex_state = 19}, + [5604] = {.lex_state = 189}, + [5605] = {.lex_state = 162}, + [5606] = {.lex_state = 189}, + [5607] = {.lex_state = 189}, + [5608] = {.lex_state = 189}, + [5609] = {.lex_state = 180}, + [5610] = {.lex_state = 189, .external_lex_state = 16}, + [5611] = {.lex_state = 180, .external_lex_state = 14}, + [5612] = {.lex_state = 162}, + [5613] = {.lex_state = 179}, + [5614] = {.lex_state = 180, .external_lex_state = 14}, + [5615] = {.lex_state = 171, .external_lex_state = 19}, + [5616] = {.lex_state = 189}, [5617] = {.lex_state = 180}, - [5618] = {.lex_state = 180}, - [5619] = {.lex_state = 180}, - [5620] = {.lex_state = 180}, + [5618] = {.lex_state = 188}, + [5619] = {.lex_state = 185}, + [5620] = {.lex_state = 180, .external_lex_state = 14}, [5621] = {.lex_state = 180}, [5622] = {.lex_state = 180}, - [5623] = {.lex_state = 180}, - [5624] = {.lex_state = 180}, - [5625] = {.lex_state = 180, .external_lex_state = 14}, - [5626] = {.lex_state = 180}, - [5627] = {.lex_state = 180}, - [5628] = {.lex_state = 180}, - [5629] = {.lex_state = 180}, - [5630] = {.lex_state = 340, .external_lex_state = 17}, - [5631] = {.lex_state = 180}, - [5632] = {.lex_state = 340, .external_lex_state = 17}, + [5623] = {.lex_state = 180, .external_lex_state = 14}, + [5624] = {.lex_state = 189}, + [5625] = {.lex_state = 179}, + [5626] = {.lex_state = 189}, + [5627] = {.lex_state = 171, .external_lex_state = 19}, + [5628] = {.lex_state = 189}, + [5629] = {.lex_state = 189}, + [5630] = {.lex_state = 189}, + [5631] = {.lex_state = 189, .external_lex_state = 16}, + [5632] = {.lex_state = 189}, [5633] = {.lex_state = 180}, - [5634] = {.lex_state = 180}, + [5634] = {.lex_state = 189}, [5635] = {.lex_state = 180}, - [5636] = {.lex_state = 180, .external_lex_state = 14}, - [5637] = {.lex_state = 180}, + [5636] = {.lex_state = 180}, + [5637] = {.lex_state = 162}, [5638] = {.lex_state = 180}, [5639] = {.lex_state = 180}, - [5640] = {.lex_state = 179}, - [5641] = {.lex_state = 180, .external_lex_state = 14}, - [5642] = {.lex_state = 179}, - [5643] = {.lex_state = 180, .external_lex_state = 14}, - [5644] = {.lex_state = 179}, - [5645] = {.lex_state = 179}, - [5646] = {.lex_state = 179}, - [5647] = {.lex_state = 179}, - [5648] = {.lex_state = 179}, - [5649] = {.lex_state = 340, .external_lex_state = 17}, - [5650] = {.lex_state = 188}, - [5651] = {.lex_state = 180}, - [5652] = {.lex_state = 134, .external_lex_state = 19}, - [5653] = {.lex_state = 188}, - [5654] = {.lex_state = 180}, - [5655] = {.lex_state = 188}, - [5656] = {.lex_state = 180, .external_lex_state = 14}, - [5657] = {.lex_state = 180, .external_lex_state = 14}, - [5658] = {.lex_state = 180}, - [5659] = {.lex_state = 131}, + [5640] = {.lex_state = 180}, + [5641] = {.lex_state = 189}, + [5642] = {.lex_state = 189, .external_lex_state = 18}, + [5643] = {.lex_state = 180}, + [5644] = {.lex_state = 180}, + [5645] = {.lex_state = 162}, + [5646] = {.lex_state = 180}, + [5647] = {.lex_state = 180}, + [5648] = {.lex_state = 189}, + [5649] = {.lex_state = 189}, + [5650] = {.lex_state = 180}, + [5651] = {.lex_state = 179}, + [5652] = {.lex_state = 162}, + [5653] = {.lex_state = 162}, + [5654] = {.lex_state = 189}, + [5655] = {.lex_state = 189}, + [5656] = {.lex_state = 162}, + [5657] = {.lex_state = 189}, + [5658] = {.lex_state = 179}, + [5659] = {.lex_state = 180}, [5660] = {.lex_state = 180}, - [5661] = {.lex_state = 180}, - [5662] = {.lex_state = 131}, - [5663] = {.lex_state = 180}, - [5664] = {.lex_state = 131}, - [5665] = {.lex_state = 180}, - [5666] = {.lex_state = 340, .external_lex_state = 17}, - [5667] = {.lex_state = 180}, - [5668] = {.lex_state = 180, .external_lex_state = 14}, + [5661] = {.lex_state = 180, .external_lex_state = 14}, + [5662] = {.lex_state = 341, .external_lex_state = 14}, + [5663] = {.lex_state = 180, .external_lex_state = 14}, + [5664] = {.lex_state = 180, .external_lex_state = 14}, + [5665] = {.lex_state = 131}, + [5666] = {.lex_state = 180, .external_lex_state = 14}, + [5667] = {.lex_state = 341, .external_lex_state = 14}, + [5668] = {.lex_state = 341, .external_lex_state = 14}, [5669] = {.lex_state = 180, .external_lex_state = 14}, - [5670] = {.lex_state = 180}, - [5671] = {.lex_state = 180, .external_lex_state = 14}, - [5672] = {.lex_state = 180, .external_lex_state = 14}, + [5670] = {.lex_state = 180, .external_lex_state = 14}, + [5671] = {.lex_state = 134, .external_lex_state = 19}, + [5672] = {.lex_state = 131}, [5673] = {.lex_state = 180}, - [5674] = {.lex_state = 180, .external_lex_state = 14}, - [5675] = {.lex_state = 180}, - [5676] = {.lex_state = 180, .external_lex_state = 14}, + [5674] = {.lex_state = 341, .external_lex_state = 14}, + [5675] = {.lex_state = 134, .external_lex_state = 19}, + [5676] = {.lex_state = 341, .external_lex_state = 14}, [5677] = {.lex_state = 180}, - [5678] = {.lex_state = 180, .external_lex_state = 14}, - [5679] = {.lex_state = 180, .external_lex_state = 14}, + [5678] = {.lex_state = 180}, + [5679] = {.lex_state = 180}, [5680] = {.lex_state = 180}, - [5681] = {.lex_state = 180, .external_lex_state = 14}, - [5682] = {.lex_state = 180, .external_lex_state = 14}, - [5683] = {.lex_state = 180, .external_lex_state = 14}, + [5681] = {.lex_state = 180}, + [5682] = {.lex_state = 180}, + [5683] = {.lex_state = 180}, [5684] = {.lex_state = 180}, - [5685] = {.lex_state = 180, .external_lex_state = 14}, - [5686] = {.lex_state = 180, .external_lex_state = 14}, - [5687] = {.lex_state = 180, .external_lex_state = 14}, + [5685] = {.lex_state = 180}, + [5686] = {.lex_state = 180}, + [5687] = {.lex_state = 180}, [5688] = {.lex_state = 180}, [5689] = {.lex_state = 180}, - [5690] = {.lex_state = 189}, - [5691] = {.lex_state = 180, .external_lex_state = 14}, - [5692] = {.lex_state = 189}, - [5693] = {.lex_state = 180, .external_lex_state = 14}, - [5694] = {.lex_state = 180, .external_lex_state = 14}, + [5690] = {.lex_state = 180}, + [5691] = {.lex_state = 180}, + [5692] = {.lex_state = 180, .external_lex_state = 14}, + [5693] = {.lex_state = 180}, + [5694] = {.lex_state = 180}, [5695] = {.lex_state = 180}, [5696] = {.lex_state = 180}, - [5697] = {.lex_state = 180, .external_lex_state = 14}, + [5697] = {.lex_state = 180}, [5698] = {.lex_state = 180}, - [5699] = {.lex_state = 180}, - [5700] = {.lex_state = 180}, + [5699] = {.lex_state = 180, .external_lex_state = 14}, + [5700] = {.lex_state = 189}, [5701] = {.lex_state = 180}, - [5702] = {.lex_state = 180, .external_lex_state = 14}, + [5702] = {.lex_state = 180}, [5703] = {.lex_state = 180}, - [5704] = {.lex_state = 180, .external_lex_state = 14}, + [5704] = {.lex_state = 180}, [5705] = {.lex_state = 180}, - [5706] = {.lex_state = 180, .external_lex_state = 14}, - [5707] = {.lex_state = 180, .external_lex_state = 14}, - [5708] = {.lex_state = 180}, + [5706] = {.lex_state = 180}, + [5707] = {.lex_state = 180}, + [5708] = {.lex_state = 131}, [5709] = {.lex_state = 180, .external_lex_state = 14}, [5710] = {.lex_state = 180, .external_lex_state = 14}, [5711] = {.lex_state = 180}, [5712] = {.lex_state = 180}, [5713] = {.lex_state = 180, .external_lex_state = 14}, - [5714] = {.lex_state = 180, .external_lex_state = 14}, - [5715] = {.lex_state = 189}, + [5714] = {.lex_state = 180}, + [5715] = {.lex_state = 180}, [5716] = {.lex_state = 180}, - [5717] = {.lex_state = 180, .external_lex_state = 14}, + [5717] = {.lex_state = 180}, [5718] = {.lex_state = 180}, [5719] = {.lex_state = 180}, - [5720] = {.lex_state = 180}, + [5720] = {.lex_state = 341, .external_lex_state = 17}, [5721] = {.lex_state = 180}, - [5722] = {.lex_state = 180, .external_lex_state = 14}, - [5723] = {.lex_state = 188}, + [5722] = {.lex_state = 131}, + [5723] = {.lex_state = 180, .external_lex_state = 14}, [5724] = {.lex_state = 180}, - [5725] = {.lex_state = 131}, - [5726] = {.lex_state = 180, .external_lex_state = 14}, - [5727] = {.lex_state = 179}, + [5725] = {.lex_state = 341, .external_lex_state = 17}, + [5726] = {.lex_state = 341, .external_lex_state = 17}, + [5727] = {.lex_state = 180}, [5728] = {.lex_state = 180}, [5729] = {.lex_state = 179}, - [5730] = {.lex_state = 131}, + [5730] = {.lex_state = 180, .external_lex_state = 14}, [5731] = {.lex_state = 180}, - [5732] = {.lex_state = 162}, - [5733] = {.lex_state = 180}, - [5734] = {.lex_state = 162}, - [5735] = {.lex_state = 180}, - [5736] = {.lex_state = 180}, + [5732] = {.lex_state = 180, .external_lex_state = 14}, + [5733] = {.lex_state = 134, .external_lex_state = 19}, + [5734] = {.lex_state = 180}, + [5735] = {.lex_state = 179}, + [5736] = {.lex_state = 341, .external_lex_state = 17}, [5737] = {.lex_state = 180}, [5738] = {.lex_state = 180}, - [5739] = {.lex_state = 180}, + [5739] = {.lex_state = 179}, [5740] = {.lex_state = 180}, [5741] = {.lex_state = 180}, - [5742] = {.lex_state = 180}, - [5743] = {.lex_state = 180}, + [5742] = {.lex_state = 180, .external_lex_state = 14}, + [5743] = {.lex_state = 180, .external_lex_state = 14}, [5744] = {.lex_state = 180}, - [5745] = {.lex_state = 180}, - [5746] = {.lex_state = 180}, - [5747] = {.lex_state = 180}, - [5748] = {.lex_state = 162}, - [5749] = {.lex_state = 189}, - [5750] = {.lex_state = 180}, - [5751] = {.lex_state = 180}, + [5745] = {.lex_state = 341, .external_lex_state = 17}, + [5746] = {.lex_state = 179}, + [5747] = {.lex_state = 179}, + [5748] = {.lex_state = 179}, + [5749] = {.lex_state = 131}, + [5750] = {.lex_state = 189}, + [5751] = {.lex_state = 189}, [5752] = {.lex_state = 180}, - [5753] = {.lex_state = 180}, + [5753] = {.lex_state = 189}, [5754] = {.lex_state = 180}, [5755] = {.lex_state = 180}, [5756] = {.lex_state = 180}, [5757] = {.lex_state = 180}, - [5758] = {.lex_state = 162}, - [5759] = {.lex_state = 180}, + [5758] = {.lex_state = 180, .external_lex_state = 14}, + [5759] = {.lex_state = 180, .external_lex_state = 14}, [5760] = {.lex_state = 180}, - [5761] = {.lex_state = 180}, - [5762] = {.lex_state = 180}, + [5761] = {.lex_state = 179}, + [5762] = {.lex_state = 180, .external_lex_state = 14}, [5763] = {.lex_state = 180}, - [5764] = {.lex_state = 180}, - [5765] = {.lex_state = 162}, - [5766] = {.lex_state = 162}, - [5767] = {.lex_state = 189}, - [5768] = {.lex_state = 180}, - [5769] = {.lex_state = 180}, - [5770] = {.lex_state = 180}, - [5771] = {.lex_state = 162}, - [5772] = {.lex_state = 189}, - [5773] = {.lex_state = 162}, - [5774] = {.lex_state = 189}, - [5775] = {.lex_state = 162}, - [5776] = {.lex_state = 172, .external_lex_state = 19}, - [5777] = {.lex_state = 172, .external_lex_state = 19}, - [5778] = {.lex_state = 162}, - [5779] = {.lex_state = 162}, - [5780] = {.lex_state = 162}, - [5781] = {.lex_state = 340, .external_lex_state = 14}, - [5782] = {.lex_state = 189}, - [5783] = {.lex_state = 162}, - [5784] = {.lex_state = 162}, + [5764] = {.lex_state = 180, .external_lex_state = 14}, + [5765] = {.lex_state = 180, .external_lex_state = 14}, + [5766] = {.lex_state = 180, .external_lex_state = 14}, + [5767] = {.lex_state = 179}, + [5768] = {.lex_state = 180, .external_lex_state = 14}, + [5769] = {.lex_state = 180, .external_lex_state = 14}, + [5770] = {.lex_state = 180, .external_lex_state = 14}, + [5771] = {.lex_state = 180, .external_lex_state = 14}, + [5772] = {.lex_state = 180, .external_lex_state = 14}, + [5773] = {.lex_state = 180, .external_lex_state = 14}, + [5774] = {.lex_state = 180, .external_lex_state = 14}, + [5775] = {.lex_state = 180, .external_lex_state = 14}, + [5776] = {.lex_state = 180, .external_lex_state = 14}, + [5777] = {.lex_state = 180, .external_lex_state = 14}, + [5778] = {.lex_state = 180, .external_lex_state = 14}, + [5779] = {.lex_state = 180, .external_lex_state = 14}, + [5780] = {.lex_state = 180, .external_lex_state = 14}, + [5781] = {.lex_state = 180, .external_lex_state = 14}, + [5782] = {.lex_state = 180, .external_lex_state = 14}, + [5783] = {.lex_state = 180, .external_lex_state = 14}, + [5784] = {.lex_state = 180, .external_lex_state = 14}, [5785] = {.lex_state = 180}, - [5786] = {.lex_state = 189}, - [5787] = {.lex_state = 180}, + [5786] = {.lex_state = 180, .external_lex_state = 14}, + [5787] = {.lex_state = 180, .external_lex_state = 14}, [5788] = {.lex_state = 180}, - [5789] = {.lex_state = 180}, - [5790] = {.lex_state = 180}, - [5791] = {.lex_state = 189}, - [5792] = {.lex_state = 189}, - [5793] = {.lex_state = 180}, - [5794] = {.lex_state = 340, .external_lex_state = 17}, - [5795] = {.lex_state = 189}, - [5796] = {.lex_state = 162}, - [5797] = {.lex_state = 162}, - [5798] = {.lex_state = 162}, - [5799] = {.lex_state = 162}, - [5800] = {.lex_state = 189}, - [5801] = {.lex_state = 162}, - [5802] = {.lex_state = 162}, - [5803] = {.lex_state = 180}, + [5789] = {.lex_state = 180, .external_lex_state = 14}, + [5790] = {.lex_state = 180, .external_lex_state = 14}, + [5791] = {.lex_state = 180, .external_lex_state = 14}, + [5792] = {.lex_state = 180, .external_lex_state = 14}, + [5793] = {.lex_state = 180, .external_lex_state = 14}, + [5794] = {.lex_state = 180}, + [5795] = {.lex_state = 180}, + [5796] = {.lex_state = 180, .external_lex_state = 14}, + [5797] = {.lex_state = 189}, + [5798] = {.lex_state = 180}, + [5799] = {.lex_state = 180}, + [5800] = {.lex_state = 180}, + [5801] = {.lex_state = 180}, + [5802] = {.lex_state = 180}, + [5803] = {.lex_state = 162}, [5804] = {.lex_state = 162}, - [5805] = {.lex_state = 180}, + [5805] = {.lex_state = 189}, [5806] = {.lex_state = 180}, - [5807] = {.lex_state = 340, .external_lex_state = 18}, - [5808] = {.lex_state = 189}, + [5807] = {.lex_state = 180}, + [5808] = {.lex_state = 180}, [5809] = {.lex_state = 180}, - [5810] = {.lex_state = 189}, + [5810] = {.lex_state = 180}, [5811] = {.lex_state = 180}, - [5812] = {.lex_state = 162}, - [5813] = {.lex_state = 340, .external_lex_state = 17}, - [5814] = {.lex_state = 340, .external_lex_state = 18}, - [5815] = {.lex_state = 340, .external_lex_state = 18}, + [5812] = {.lex_state = 189}, + [5813] = {.lex_state = 189}, + [5814] = {.lex_state = 180}, + [5815] = {.lex_state = 180}, [5816] = {.lex_state = 162}, - [5817] = {.lex_state = 180}, - [5818] = {.lex_state = 162}, + [5817] = {.lex_state = 189}, + [5818] = {.lex_state = 341, .external_lex_state = 18}, [5819] = {.lex_state = 180}, [5820] = {.lex_state = 162}, - [5821] = {.lex_state = 340, .external_lex_state = 18}, - [5822] = {.lex_state = 189}, - [5823] = {.lex_state = 180}, + [5821] = {.lex_state = 180}, + [5822] = {.lex_state = 180}, + [5823] = {.lex_state = 189}, [5824] = {.lex_state = 180}, - [5825] = {.lex_state = 340, .external_lex_state = 18}, + [5825] = {.lex_state = 180}, [5826] = {.lex_state = 162}, - [5827] = {.lex_state = 189}, - [5828] = {.lex_state = 162}, - [5829] = {.lex_state = 162}, + [5827] = {.lex_state = 180}, + [5828] = {.lex_state = 180}, + [5829] = {.lex_state = 180}, [5830] = {.lex_state = 162}, - [5831] = {.lex_state = 189}, + [5831] = {.lex_state = 180}, [5832] = {.lex_state = 162}, [5833] = {.lex_state = 189}, - [5834] = {.lex_state = 162}, - [5835] = {.lex_state = 162}, - [5836] = {.lex_state = 172, .external_lex_state = 19}, - [5837] = {.lex_state = 189}, + [5834] = {.lex_state = 189}, + [5835] = {.lex_state = 341, .external_lex_state = 18}, + [5836] = {.lex_state = 162}, + [5837] = {.lex_state = 180}, [5838] = {.lex_state = 162}, - [5839] = {.lex_state = 162}, + [5839] = {.lex_state = 341}, [5840] = {.lex_state = 162}, - [5841] = {.lex_state = 162}, - [5842] = {.lex_state = 189}, - [5843] = {.lex_state = 189}, + [5841] = {.lex_state = 172, .external_lex_state = 19}, + [5842] = {.lex_state = 180}, + [5843] = {.lex_state = 180}, [5844] = {.lex_state = 162}, - [5845] = {.lex_state = 162}, - [5846] = {.lex_state = 189}, - [5847] = {.lex_state = 162}, - [5848] = {.lex_state = 340}, - [5849] = {.lex_state = 340, .external_lex_state = 14}, + [5845] = {.lex_state = 189}, + [5846] = {.lex_state = 162}, + [5847] = {.lex_state = 180}, + [5848] = {.lex_state = 180}, + [5849] = {.lex_state = 180}, [5850] = {.lex_state = 162}, [5851] = {.lex_state = 162}, - [5852] = {.lex_state = 174, .external_lex_state = 19}, - [5853] = {.lex_state = 174, .external_lex_state = 19}, - [5854] = {.lex_state = 340}, - [5855] = {.lex_state = 174, .external_lex_state = 19}, - [5856] = {.lex_state = 188}, - [5857] = {.lex_state = 340}, - [5858] = {.lex_state = 340, .external_lex_state = 18}, - [5859] = {.lex_state = 340, .external_lex_state = 18}, - [5860] = {.lex_state = 188}, - [5861] = {.lex_state = 162}, - [5862] = {.lex_state = 340, .external_lex_state = 17}, - [5863] = {.lex_state = 180}, - [5864] = {.lex_state = 180}, - [5865] = {.lex_state = 340}, - [5866] = {.lex_state = 340, .external_lex_state = 14}, - [5867] = {.lex_state = 340, .external_lex_state = 17}, + [5852] = {.lex_state = 180}, + [5853] = {.lex_state = 162}, + [5854] = {.lex_state = 162}, + [5855] = {.lex_state = 162}, + [5856] = {.lex_state = 172, .external_lex_state = 19}, + [5857] = {.lex_state = 341, .external_lex_state = 18}, + [5858] = {.lex_state = 180}, + [5859] = {.lex_state = 180}, + [5860] = {.lex_state = 180}, + [5861] = {.lex_state = 189}, + [5862] = {.lex_state = 180}, + [5863] = {.lex_state = 172, .external_lex_state = 19}, + [5864] = {.lex_state = 341, .external_lex_state = 17}, + [5865] = {.lex_state = 162}, + [5866] = {.lex_state = 162}, + [5867] = {.lex_state = 180}, [5868] = {.lex_state = 180}, [5869] = {.lex_state = 180}, - [5870] = {.lex_state = 180}, - [5871] = {.lex_state = 180}, - [5872] = {.lex_state = 131, .external_lex_state = 20}, - [5873] = {.lex_state = 180}, - [5874] = {.lex_state = 180, .external_lex_state = 16}, + [5870] = {.lex_state = 162}, + [5871] = {.lex_state = 189}, + [5872] = {.lex_state = 162}, + [5873] = {.lex_state = 189}, + [5874] = {.lex_state = 162}, [5875] = {.lex_state = 180}, - [5876] = {.lex_state = 180}, - [5877] = {.lex_state = 340}, + [5876] = {.lex_state = 162}, + [5877] = {.lex_state = 189}, [5878] = {.lex_state = 162}, - [5879] = {.lex_state = 340, .external_lex_state = 21}, - [5880] = {.lex_state = 162}, - [5881] = {.lex_state = 180}, + [5879] = {.lex_state = 180}, + [5880] = {.lex_state = 341, .external_lex_state = 18}, + [5881] = {.lex_state = 189}, [5882] = {.lex_state = 180}, - [5883] = {.lex_state = 180}, + [5883] = {.lex_state = 162}, [5884] = {.lex_state = 180}, - [5885] = {.lex_state = 180}, - [5886] = {.lex_state = 340}, - [5887] = {.lex_state = 340}, + [5885] = {.lex_state = 162}, + [5886] = {.lex_state = 162}, + [5887] = {.lex_state = 180}, [5888] = {.lex_state = 162}, - [5889] = {.lex_state = 189}, + [5889] = {.lex_state = 341, .external_lex_state = 14}, [5890] = {.lex_state = 180}, - [5891] = {.lex_state = 180}, - [5892] = {.lex_state = 180}, - [5893] = {.lex_state = 180}, - [5894] = {.lex_state = 340}, + [5891] = {.lex_state = 189}, + [5892] = {.lex_state = 341, .external_lex_state = 18}, + [5893] = {.lex_state = 162}, + [5894] = {.lex_state = 341, .external_lex_state = 14}, [5895] = {.lex_state = 162}, - [5896] = {.lex_state = 180}, - [5897] = {.lex_state = 189}, - [5898] = {.lex_state = 131}, + [5896] = {.lex_state = 162}, + [5897] = {.lex_state = 162}, + [5898] = {.lex_state = 162}, [5899] = {.lex_state = 162}, [5900] = {.lex_state = 162}, - [5901] = {.lex_state = 131}, + [5901] = {.lex_state = 189}, [5902] = {.lex_state = 189}, - [5903] = {.lex_state = 340}, - [5904] = {.lex_state = 180, .external_lex_state = 16}, - [5905] = {.lex_state = 189}, - [5906] = {.lex_state = 189}, - [5907] = {.lex_state = 131}, - [5908] = {.lex_state = 180}, - [5909] = {.lex_state = 180}, - [5910] = {.lex_state = 180}, - [5911] = {.lex_state = 180}, - [5912] = {.lex_state = 180}, - [5913] = {.lex_state = 340}, - [5914] = {.lex_state = 340, .external_lex_state = 21}, - [5915] = {.lex_state = 340}, - [5916] = {.lex_state = 131}, - [5917] = {.lex_state = 180}, - [5918] = {.lex_state = 180}, + [5903] = {.lex_state = 189}, + [5904] = {.lex_state = 162}, + [5905] = {.lex_state = 180}, + [5906] = {.lex_state = 180}, + [5907] = {.lex_state = 162}, + [5908] = {.lex_state = 162}, + [5909] = {.lex_state = 188}, + [5910] = {.lex_state = 162}, + [5911] = {.lex_state = 188}, + [5912] = {.lex_state = 162}, + [5913] = {.lex_state = 180}, + [5914] = {.lex_state = 180}, + [5915] = {.lex_state = 189}, + [5916] = {.lex_state = 189}, + [5917] = {.lex_state = 341, .external_lex_state = 17}, + [5918] = {.lex_state = 162}, [5919] = {.lex_state = 180}, - [5920] = {.lex_state = 180}, - [5921] = {.lex_state = 162}, - [5922] = {.lex_state = 180}, - [5923] = {.lex_state = 340}, - [5924] = {.lex_state = 180}, - [5925] = {.lex_state = 131}, - [5926] = {.lex_state = 340, .external_lex_state = 14}, - [5927] = {.lex_state = 340}, - [5928] = {.lex_state = 162}, + [5920] = {.lex_state = 174, .external_lex_state = 19}, + [5921] = {.lex_state = 341, .external_lex_state = 18}, + [5922] = {.lex_state = 341, .external_lex_state = 18}, + [5923] = {.lex_state = 174, .external_lex_state = 19}, + [5924] = {.lex_state = 174, .external_lex_state = 19}, + [5925] = {.lex_state = 341}, + [5926] = {.lex_state = 341}, + [5927] = {.lex_state = 131}, + [5928] = {.lex_state = 341}, [5929] = {.lex_state = 180}, [5930] = {.lex_state = 180}, - [5931] = {.lex_state = 340}, - [5932] = {.lex_state = 189}, - [5933] = {.lex_state = 180}, + [5931] = {.lex_state = 341}, + [5932] = {.lex_state = 180}, + [5933] = {.lex_state = 162}, [5934] = {.lex_state = 180}, - [5935] = {.lex_state = 180}, - [5936] = {.lex_state = 189}, - [5937] = {.lex_state = 131}, + [5935] = {.lex_state = 162}, + [5936] = {.lex_state = 180}, + [5937] = {.lex_state = 162}, [5938] = {.lex_state = 180}, [5939] = {.lex_state = 180}, - [5940] = {.lex_state = 180}, - [5941] = {.lex_state = 340, .external_lex_state = 17}, + [5940] = {.lex_state = 131}, + [5941] = {.lex_state = 180}, [5942] = {.lex_state = 180}, - [5943] = {.lex_state = 180}, - [5944] = {.lex_state = 162}, - [5945] = {.lex_state = 162}, - [5946] = {.lex_state = 180}, - [5947] = {.lex_state = 180}, - [5948] = {.lex_state = 180}, - [5949] = {.lex_state = 162}, + [5943] = {.lex_state = 162}, + [5944] = {.lex_state = 180}, + [5945] = {.lex_state = 341}, + [5946] = {.lex_state = 162}, + [5947] = {.lex_state = 162}, + [5948] = {.lex_state = 162}, + [5949] = {.lex_state = 189}, [5950] = {.lex_state = 180}, - [5951] = {.lex_state = 180}, + [5951] = {.lex_state = 341}, [5952] = {.lex_state = 180}, - [5953] = {.lex_state = 189}, - [5954] = {.lex_state = 180}, - [5955] = {.lex_state = 180}, - [5956] = {.lex_state = 162}, - [5957] = {.lex_state = 162}, - [5958] = {.lex_state = 180}, + [5953] = {.lex_state = 180}, + [5954] = {.lex_state = 131}, + [5955] = {.lex_state = 180, .external_lex_state = 16}, + [5956] = {.lex_state = 180}, + [5957] = {.lex_state = 180}, + [5958] = {.lex_state = 162}, [5959] = {.lex_state = 180}, [5960] = {.lex_state = 180}, - [5961] = {.lex_state = 180}, - [5962] = {.lex_state = 340, .external_lex_state = 14}, - [5963] = {.lex_state = 340, .external_lex_state = 21}, - [5964] = {.lex_state = 180}, - [5965] = {.lex_state = 180}, - [5966] = {.lex_state = 180}, - [5967] = {.lex_state = 180}, - [5968] = {.lex_state = 340}, - [5969] = {.lex_state = 340}, - [5970] = {.lex_state = 180}, - [5971] = {.lex_state = 162}, + [5961] = {.lex_state = 341, .external_lex_state = 17}, + [5962] = {.lex_state = 180}, + [5963] = {.lex_state = 180}, + [5964] = {.lex_state = 341}, + [5965] = {.lex_state = 341, .external_lex_state = 14}, + [5966] = {.lex_state = 162}, + [5967] = {.lex_state = 189}, + [5968] = {.lex_state = 131}, + [5969] = {.lex_state = 131}, + [5970] = {.lex_state = 341}, + [5971] = {.lex_state = 341}, [5972] = {.lex_state = 180}, [5973] = {.lex_state = 180}, - [5974] = {.lex_state = 180}, + [5974] = {.lex_state = 189}, [5975] = {.lex_state = 180}, - [5976] = {.lex_state = 180}, - [5977] = {.lex_state = 162}, - [5978] = {.lex_state = 340}, - [5979] = {.lex_state = 180}, - [5980] = {.lex_state = 180}, + [5976] = {.lex_state = 341}, + [5977] = {.lex_state = 180}, + [5978] = {.lex_state = 180}, + [5979] = {.lex_state = 131}, + [5980] = {.lex_state = 162}, [5981] = {.lex_state = 162}, - [5982] = {.lex_state = 180}, - [5983] = {.lex_state = 340, .external_lex_state = 21}, - [5984] = {.lex_state = 162}, - [5985] = {.lex_state = 180}, + [5982] = {.lex_state = 180, .external_lex_state = 16}, + [5983] = {.lex_state = 341}, + [5984] = {.lex_state = 341}, + [5985] = {.lex_state = 341}, [5986] = {.lex_state = 180}, - [5987] = {.lex_state = 162}, - [5988] = {.lex_state = 162}, - [5989] = {.lex_state = 180}, - [5990] = {.lex_state = 340}, - [5991] = {.lex_state = 180}, - [5992] = {.lex_state = 180}, - [5993] = {.lex_state = 189}, - [5994] = {.lex_state = 131}, - [5995] = {.lex_state = 340}, - [5996] = {.lex_state = 340}, - [5997] = {.lex_state = 340}, - [5998] = {.lex_state = 340, .external_lex_state = 14}, - [5999] = {.lex_state = 340}, - [6000] = {.lex_state = 340, .external_lex_state = 14}, - [6001] = {.lex_state = 340, .external_lex_state = 14}, - [6002] = {.lex_state = 340, .external_lex_state = 14}, - [6003] = {.lex_state = 340, .external_lex_state = 14}, - [6004] = {.lex_state = 340, .external_lex_state = 14}, - [6005] = {.lex_state = 340, .external_lex_state = 14}, - [6006] = {.lex_state = 340}, - [6007] = {.lex_state = 340, .external_lex_state = 17}, - [6008] = {.lex_state = 340, .external_lex_state = 14}, - [6009] = {.lex_state = 340, .external_lex_state = 14}, - [6010] = {.lex_state = 340, .external_lex_state = 14}, - [6011] = {.lex_state = 340, .external_lex_state = 14}, - [6012] = {.lex_state = 340, .external_lex_state = 18}, - [6013] = {.lex_state = 340}, - [6014] = {.lex_state = 340, .external_lex_state = 18}, - [6015] = {.lex_state = 340}, - [6016] = {.lex_state = 340}, - [6017] = {.lex_state = 340, .external_lex_state = 18}, - [6018] = {.lex_state = 340, .external_lex_state = 16}, - [6019] = {.lex_state = 340, .external_lex_state = 17}, - [6020] = {.lex_state = 340}, - [6021] = {.lex_state = 340}, - [6022] = {.lex_state = 340, .external_lex_state = 14}, - [6023] = {.lex_state = 340, .external_lex_state = 14}, - [6024] = {.lex_state = 340, .external_lex_state = 22}, - [6025] = {.lex_state = 340}, - [6026] = {.lex_state = 340, .external_lex_state = 17}, - [6027] = {.lex_state = 340, .external_lex_state = 14}, - [6028] = {.lex_state = 340, .external_lex_state = 14}, - [6029] = {.lex_state = 340}, - [6030] = {.lex_state = 340}, - [6031] = {.lex_state = 340, .external_lex_state = 14}, - [6032] = {.lex_state = 340}, - [6033] = {.lex_state = 340, .external_lex_state = 22}, - [6034] = {.lex_state = 340, .external_lex_state = 14}, - [6035] = {.lex_state = 340}, - [6036] = {.lex_state = 340}, - [6037] = {.lex_state = 340, .external_lex_state = 14}, - [6038] = {.lex_state = 340, .external_lex_state = 14}, - [6039] = {.lex_state = 340, .external_lex_state = 14}, - [6040] = {.lex_state = 340}, - [6041] = {.lex_state = 340, .external_lex_state = 17}, - [6042] = {.lex_state = 340, .external_lex_state = 17}, - [6043] = {.lex_state = 340, .external_lex_state = 14}, - [6044] = {.lex_state = 340, .external_lex_state = 17}, - [6045] = {.lex_state = 340}, - [6046] = {.lex_state = 340}, - [6047] = {.lex_state = 340, .external_lex_state = 17}, - [6048] = {.lex_state = 340, .external_lex_state = 16}, - [6049] = {.lex_state = 340}, - [6050] = {.lex_state = 340, .external_lex_state = 17}, - [6051] = {.lex_state = 340, .external_lex_state = 17}, - [6052] = {.lex_state = 340}, - [6053] = {.lex_state = 340}, - [6054] = {.lex_state = 340, .external_lex_state = 17}, - [6055] = {.lex_state = 340}, + [5987] = {.lex_state = 180}, + [5988] = {.lex_state = 180}, + [5989] = {.lex_state = 162}, + [5990] = {.lex_state = 341, .external_lex_state = 14}, + [5991] = {.lex_state = 341, .external_lex_state = 17}, + [5992] = {.lex_state = 341, .external_lex_state = 20}, + [5993] = {.lex_state = 180}, + [5994] = {.lex_state = 180}, + [5995] = {.lex_state = 180}, + [5996] = {.lex_state = 180}, + [5997] = {.lex_state = 180}, + [5998] = {.lex_state = 180}, + [5999] = {.lex_state = 131}, + [6000] = {.lex_state = 180}, + [6001] = {.lex_state = 180}, + [6002] = {.lex_state = 180}, + [6003] = {.lex_state = 180}, + [6004] = {.lex_state = 162}, + [6005] = {.lex_state = 189}, + [6006] = {.lex_state = 180}, + [6007] = {.lex_state = 180}, + [6008] = {.lex_state = 180}, + [6009] = {.lex_state = 180}, + [6010] = {.lex_state = 180}, + [6011] = {.lex_state = 341, .external_lex_state = 20}, + [6012] = {.lex_state = 189}, + [6013] = {.lex_state = 180}, + [6014] = {.lex_state = 180}, + [6015] = {.lex_state = 341}, + [6016] = {.lex_state = 189}, + [6017] = {.lex_state = 180}, + [6018] = {.lex_state = 180}, + [6019] = {.lex_state = 180}, + [6020] = {.lex_state = 162}, + [6021] = {.lex_state = 180}, + [6022] = {.lex_state = 180}, + [6023] = {.lex_state = 341, .external_lex_state = 20}, + [6024] = {.lex_state = 180}, + [6025] = {.lex_state = 180}, + [6026] = {.lex_state = 180}, + [6027] = {.lex_state = 162}, + [6028] = {.lex_state = 162}, + [6029] = {.lex_state = 180}, + [6030] = {.lex_state = 180}, + [6031] = {.lex_state = 180}, + [6032] = {.lex_state = 189}, + [6033] = {.lex_state = 341, .external_lex_state = 17}, + [6034] = {.lex_state = 341}, + [6035] = {.lex_state = 180}, + [6036] = {.lex_state = 341}, + [6037] = {.lex_state = 180}, + [6038] = {.lex_state = 180}, + [6039] = {.lex_state = 341, .external_lex_state = 20}, + [6040] = {.lex_state = 162}, + [6041] = {.lex_state = 341}, + [6042] = {.lex_state = 180}, + [6043] = {.lex_state = 162}, + [6044] = {.lex_state = 180}, + [6045] = {.lex_state = 189}, + [6046] = {.lex_state = 180}, + [6047] = {.lex_state = 180}, + [6048] = {.lex_state = 180}, + [6049] = {.lex_state = 180}, + [6050] = {.lex_state = 180}, + [6051] = {.lex_state = 341, .external_lex_state = 14}, + [6052] = {.lex_state = 131, .external_lex_state = 21}, + [6053] = {.lex_state = 189}, + [6054] = {.lex_state = 180}, + [6055] = {.lex_state = 180}, [6056] = {.lex_state = 180}, - [6057] = {.lex_state = 340}, - [6058] = {.lex_state = 340, .external_lex_state = 14}, - [6059] = {.lex_state = 340, .external_lex_state = 14}, - [6060] = {.lex_state = 340, .external_lex_state = 17}, - [6061] = {.lex_state = 340}, - [6062] = {.lex_state = 340, .external_lex_state = 17}, - [6063] = {.lex_state = 340, .external_lex_state = 17}, - [6064] = {.lex_state = 340, .external_lex_state = 17}, - [6065] = {.lex_state = 340}, - [6066] = {.lex_state = 340, .external_lex_state = 17}, - [6067] = {.lex_state = 340}, - [6068] = {.lex_state = 340}, - [6069] = {.lex_state = 340, .external_lex_state = 17}, - [6070] = {.lex_state = 340, .external_lex_state = 17}, - [6071] = {.lex_state = 340, .external_lex_state = 17}, - [6072] = {.lex_state = 340, .external_lex_state = 17}, - [6073] = {.lex_state = 340, .external_lex_state = 14}, - [6074] = {.lex_state = 340, .external_lex_state = 17}, - [6075] = {.lex_state = 340}, - [6076] = {.lex_state = 340}, - [6077] = {.lex_state = 340, .external_lex_state = 22}, - [6078] = {.lex_state = 340}, - [6079] = {.lex_state = 340}, - [6080] = {.lex_state = 340, .external_lex_state = 17}, - [6081] = {.lex_state = 340}, - [6082] = {.lex_state = 340}, - [6083] = {.lex_state = 340}, - [6084] = {.lex_state = 340}, - [6085] = {.lex_state = 340}, - [6086] = {.lex_state = 180, .external_lex_state = 16}, - [6087] = {.lex_state = 340}, - [6088] = {.lex_state = 340, .external_lex_state = 14}, - [6089] = {.lex_state = 340}, - [6090] = {.lex_state = 340}, - [6091] = {.lex_state = 340}, - [6092] = {.lex_state = 180, .external_lex_state = 16}, - [6093] = {.lex_state = 340}, - [6094] = {.lex_state = 340}, - [6095] = {.lex_state = 340}, - [6096] = {.lex_state = 340}, - [6097] = {.lex_state = 340, .external_lex_state = 17}, - [6098] = {.lex_state = 340}, - [6099] = {.lex_state = 340}, - [6100] = {.lex_state = 340, .external_lex_state = 22}, - [6101] = {.lex_state = 340, .external_lex_state = 14}, - [6102] = {.lex_state = 340}, - [6103] = {.lex_state = 340, .external_lex_state = 14}, - [6104] = {.lex_state = 340}, - [6105] = {.lex_state = 340}, - [6106] = {.lex_state = 340}, - [6107] = {.lex_state = 340}, - [6108] = {.lex_state = 340}, - [6109] = {.lex_state = 340, .external_lex_state = 14}, - [6110] = {.lex_state = 340}, - [6111] = {.lex_state = 340, .external_lex_state = 16}, - [6112] = {.lex_state = 340}, - [6113] = {.lex_state = 340}, - [6114] = {.lex_state = 180, .external_lex_state = 16}, - [6115] = {.lex_state = 340}, - [6116] = {.lex_state = 340}, - [6117] = {.lex_state = 340, .external_lex_state = 17}, - [6118] = {.lex_state = 340}, - [6119] = {.lex_state = 340, .external_lex_state = 14}, - [6120] = {.lex_state = 131, .external_lex_state = 23}, - [6121] = {.lex_state = 340, .external_lex_state = 18}, - [6122] = {.lex_state = 131}, - [6123] = {.lex_state = 340}, - [6124] = {.lex_state = 340}, - [6125] = {.lex_state = 131}, - [6126] = {.lex_state = 131}, - [6127] = {.lex_state = 340, .external_lex_state = 17}, - [6128] = {.lex_state = 340}, - [6129] = {.lex_state = 340, .external_lex_state = 18}, - [6130] = {.lex_state = 340, .external_lex_state = 15}, - [6131] = {.lex_state = 340}, - [6132] = {.lex_state = 340, .external_lex_state = 18}, - [6133] = {.lex_state = 131}, - [6134] = {.lex_state = 340, .external_lex_state = 23}, - [6135] = {.lex_state = 340, .external_lex_state = 18}, - [6136] = {.lex_state = 340, .external_lex_state = 18}, - [6137] = {.lex_state = 340, .external_lex_state = 18}, - [6138] = {.lex_state = 340, .external_lex_state = 18}, - [6139] = {.lex_state = 131}, - [6140] = {.lex_state = 340, .external_lex_state = 15}, - [6141] = {.lex_state = 131, .external_lex_state = 23}, - [6142] = {.lex_state = 340}, - [6143] = {.lex_state = 340}, - [6144] = {.lex_state = 180}, - [6145] = {.lex_state = 340}, - [6146] = {.lex_state = 340, .external_lex_state = 15}, - [6147] = {.lex_state = 340, .external_lex_state = 23}, - [6148] = {.lex_state = 131, .external_lex_state = 23}, - [6149] = {.lex_state = 340}, - [6150] = {.lex_state = 340, .external_lex_state = 18}, - [6151] = {.lex_state = 180}, - [6152] = {.lex_state = 131}, - [6153] = {.lex_state = 131}, - [6154] = {.lex_state = 340, .external_lex_state = 14}, - [6155] = {.lex_state = 340}, - [6156] = {.lex_state = 340, .external_lex_state = 18}, - [6157] = {.lex_state = 131}, - [6158] = {.lex_state = 189}, - [6159] = {.lex_state = 340}, - [6160] = {.lex_state = 131}, - [6161] = {.lex_state = 340}, - [6162] = {.lex_state = 340}, - [6163] = {.lex_state = 340}, - [6164] = {.lex_state = 131}, - [6165] = {.lex_state = 340, .external_lex_state = 18}, - [6166] = {.lex_state = 340}, - [6167] = {.lex_state = 340, .external_lex_state = 18}, - [6168] = {.lex_state = 340, .external_lex_state = 18}, - [6169] = {.lex_state = 340, .external_lex_state = 15}, - [6170] = {.lex_state = 340, .external_lex_state = 14}, - [6171] = {.lex_state = 131}, - [6172] = {.lex_state = 340, .external_lex_state = 23}, - [6173] = {.lex_state = 131}, - [6174] = {.lex_state = 340, .external_lex_state = 18}, - [6175] = {.lex_state = 340, .external_lex_state = 14}, - [6176] = {.lex_state = 340}, - [6177] = {.lex_state = 340, .external_lex_state = 14}, - [6178] = {.lex_state = 131, .external_lex_state = 23}, - [6179] = {.lex_state = 340, .external_lex_state = 18}, - [6180] = {.lex_state = 340, .external_lex_state = 14}, - [6181] = {.lex_state = 131}, - [6182] = {.lex_state = 340}, - [6183] = {.lex_state = 340, .external_lex_state = 18}, - [6184] = {.lex_state = 340}, - [6185] = {.lex_state = 340, .external_lex_state = 16}, - [6186] = {.lex_state = 340, .external_lex_state = 18}, - [6187] = {.lex_state = 340, .external_lex_state = 18}, - [6188] = {.lex_state = 131}, - [6189] = {.lex_state = 131, .external_lex_state = 23}, - [6190] = {.lex_state = 340, .external_lex_state = 23}, - [6191] = {.lex_state = 340}, - [6192] = {.lex_state = 340, .external_lex_state = 23}, - [6193] = {.lex_state = 340, .external_lex_state = 18}, - [6194] = {.lex_state = 131}, - [6195] = {.lex_state = 340, .external_lex_state = 14}, - [6196] = {.lex_state = 131}, - [6197] = {.lex_state = 340}, - [6198] = {.lex_state = 340, .external_lex_state = 18}, - [6199] = {.lex_state = 131}, - [6200] = {.lex_state = 131, .external_lex_state = 23}, - [6201] = {.lex_state = 340, .external_lex_state = 18}, - [6202] = {.lex_state = 340, .external_lex_state = 15}, - [6203] = {.lex_state = 340, .external_lex_state = 16}, - [6204] = {.lex_state = 340, .external_lex_state = 16}, + [6057] = {.lex_state = 162}, + [6058] = {.lex_state = 162}, + [6059] = {.lex_state = 180}, + [6060] = {.lex_state = 180}, + [6061] = {.lex_state = 341, .external_lex_state = 14}, + [6062] = {.lex_state = 341, .external_lex_state = 18}, + [6063] = {.lex_state = 341, .external_lex_state = 14}, + [6064] = {.lex_state = 341, .external_lex_state = 14}, + [6065] = {.lex_state = 341}, + [6066] = {.lex_state = 341, .external_lex_state = 14}, + [6067] = {.lex_state = 341, .external_lex_state = 17}, + [6068] = {.lex_state = 341}, + [6069] = {.lex_state = 341, .external_lex_state = 14}, + [6070] = {.lex_state = 341, .external_lex_state = 14}, + [6071] = {.lex_state = 341}, + [6072] = {.lex_state = 341, .external_lex_state = 14}, + [6073] = {.lex_state = 341}, + [6074] = {.lex_state = 341, .external_lex_state = 14}, + [6075] = {.lex_state = 341}, + [6076] = {.lex_state = 341, .external_lex_state = 14}, + [6077] = {.lex_state = 341, .external_lex_state = 14}, + [6078] = {.lex_state = 341, .external_lex_state = 14}, + [6079] = {.lex_state = 341, .external_lex_state = 16}, + [6080] = {.lex_state = 341, .external_lex_state = 14}, + [6081] = {.lex_state = 341}, + [6082] = {.lex_state = 341}, + [6083] = {.lex_state = 341, .external_lex_state = 14}, + [6084] = {.lex_state = 341}, + [6085] = {.lex_state = 341, .external_lex_state = 14}, + [6086] = {.lex_state = 341, .external_lex_state = 14}, + [6087] = {.lex_state = 341, .external_lex_state = 14}, + [6088] = {.lex_state = 341}, + [6089] = {.lex_state = 341}, + [6090] = {.lex_state = 341}, + [6091] = {.lex_state = 341, .external_lex_state = 17}, + [6092] = {.lex_state = 341}, + [6093] = {.lex_state = 341, .external_lex_state = 14}, + [6094] = {.lex_state = 341, .external_lex_state = 14}, + [6095] = {.lex_state = 341}, + [6096] = {.lex_state = 341}, + [6097] = {.lex_state = 341}, + [6098] = {.lex_state = 341}, + [6099] = {.lex_state = 341, .external_lex_state = 14}, + [6100] = {.lex_state = 341}, + [6101] = {.lex_state = 341}, + [6102] = {.lex_state = 341, .external_lex_state = 14}, + [6103] = {.lex_state = 341, .external_lex_state = 17}, + [6104] = {.lex_state = 341, .external_lex_state = 17}, + [6105] = {.lex_state = 341}, + [6106] = {.lex_state = 341}, + [6107] = {.lex_state = 341, .external_lex_state = 17}, + [6108] = {.lex_state = 180, .external_lex_state = 16}, + [6109] = {.lex_state = 180, .external_lex_state = 16}, + [6110] = {.lex_state = 341, .external_lex_state = 17}, + [6111] = {.lex_state = 341}, + [6112] = {.lex_state = 341}, + [6113] = {.lex_state = 341, .external_lex_state = 17}, + [6114] = {.lex_state = 341, .external_lex_state = 14}, + [6115] = {.lex_state = 341, .external_lex_state = 17}, + [6116] = {.lex_state = 341, .external_lex_state = 17}, + [6117] = {.lex_state = 341}, + [6118] = {.lex_state = 341, .external_lex_state = 17}, + [6119] = {.lex_state = 341}, + [6120] = {.lex_state = 341, .external_lex_state = 17}, + [6121] = {.lex_state = 341}, + [6122] = {.lex_state = 341, .external_lex_state = 17}, + [6123] = {.lex_state = 341, .external_lex_state = 22}, + [6124] = {.lex_state = 341, .external_lex_state = 17}, + [6125] = {.lex_state = 341, .external_lex_state = 17}, + [6126] = {.lex_state = 341, .external_lex_state = 17}, + [6127] = {.lex_state = 341}, + [6128] = {.lex_state = 341, .external_lex_state = 17}, + [6129] = {.lex_state = 341, .external_lex_state = 17}, + [6130] = {.lex_state = 341}, + [6131] = {.lex_state = 341, .external_lex_state = 17}, + [6132] = {.lex_state = 341, .external_lex_state = 17}, + [6133] = {.lex_state = 180, .external_lex_state = 16}, + [6134] = {.lex_state = 341}, + [6135] = {.lex_state = 341}, + [6136] = {.lex_state = 341}, + [6137] = {.lex_state = 341}, + [6138] = {.lex_state = 341, .external_lex_state = 17}, + [6139] = {.lex_state = 341, .external_lex_state = 14}, + [6140] = {.lex_state = 341}, + [6141] = {.lex_state = 341, .external_lex_state = 14}, + [6142] = {.lex_state = 341}, + [6143] = {.lex_state = 341}, + [6144] = {.lex_state = 341}, + [6145] = {.lex_state = 341}, + [6146] = {.lex_state = 341, .external_lex_state = 22}, + [6147] = {.lex_state = 341}, + [6148] = {.lex_state = 341, .external_lex_state = 14}, + [6149] = {.lex_state = 341, .external_lex_state = 14}, + [6150] = {.lex_state = 341, .external_lex_state = 17}, + [6151] = {.lex_state = 341}, + [6152] = {.lex_state = 341}, + [6153] = {.lex_state = 341}, + [6154] = {.lex_state = 341}, + [6155] = {.lex_state = 341}, + [6156] = {.lex_state = 341}, + [6157] = {.lex_state = 341, .external_lex_state = 22}, + [6158] = {.lex_state = 341}, + [6159] = {.lex_state = 341}, + [6160] = {.lex_state = 341}, + [6161] = {.lex_state = 341, .external_lex_state = 14}, + [6162] = {.lex_state = 341}, + [6163] = {.lex_state = 341}, + [6164] = {.lex_state = 341, .external_lex_state = 17}, + [6165] = {.lex_state = 341}, + [6166] = {.lex_state = 341}, + [6167] = {.lex_state = 341, .external_lex_state = 17}, + [6168] = {.lex_state = 341, .external_lex_state = 22}, + [6169] = {.lex_state = 341}, + [6170] = {.lex_state = 341}, + [6171] = {.lex_state = 341}, + [6172] = {.lex_state = 341}, + [6173] = {.lex_state = 341}, + [6174] = {.lex_state = 341, .external_lex_state = 16}, + [6175] = {.lex_state = 341}, + [6176] = {.lex_state = 341, .external_lex_state = 14}, + [6177] = {.lex_state = 341}, + [6178] = {.lex_state = 341, .external_lex_state = 14}, + [6179] = {.lex_state = 180}, + [6180] = {.lex_state = 341}, + [6181] = {.lex_state = 341, .external_lex_state = 16}, + [6182] = {.lex_state = 341, .external_lex_state = 18}, + [6183] = {.lex_state = 341, .external_lex_state = 18}, + [6184] = {.lex_state = 341}, + [6185] = {.lex_state = 131}, + [6186] = {.lex_state = 131}, + [6187] = {.lex_state = 341}, + [6188] = {.lex_state = 341, .external_lex_state = 18}, + [6189] = {.lex_state = 341, .external_lex_state = 18}, + [6190] = {.lex_state = 341, .external_lex_state = 14}, + [6191] = {.lex_state = 341, .external_lex_state = 16}, + [6192] = {.lex_state = 341, .external_lex_state = 23}, + [6193] = {.lex_state = 131, .external_lex_state = 23}, + [6194] = {.lex_state = 341}, + [6195] = {.lex_state = 341}, + [6196] = {.lex_state = 341, .external_lex_state = 14}, + [6197] = {.lex_state = 341}, + [6198] = {.lex_state = 131}, + [6199] = {.lex_state = 341, .external_lex_state = 14}, + [6200] = {.lex_state = 180}, + [6201] = {.lex_state = 341, .external_lex_state = 14}, + [6202] = {.lex_state = 341, .external_lex_state = 14}, + [6203] = {.lex_state = 341}, + [6204] = {.lex_state = 341}, [6205] = {.lex_state = 180}, - [6206] = {.lex_state = 131}, - [6207] = {.lex_state = 131}, - [6208] = {.lex_state = 340, .external_lex_state = 14}, - [6209] = {.lex_state = 340}, - [6210] = {.lex_state = 340, .external_lex_state = 15}, - [6211] = {.lex_state = 340, .external_lex_state = 14}, - [6212] = {.lex_state = 340, .external_lex_state = 18}, - [6213] = {.lex_state = 131}, - [6214] = {.lex_state = 131}, - [6215] = {.lex_state = 340}, - [6216] = {.lex_state = 340, .external_lex_state = 18}, - [6217] = {.lex_state = 340, .external_lex_state = 16}, + [6206] = {.lex_state = 341}, + [6207] = {.lex_state = 341, .external_lex_state = 15}, + [6208] = {.lex_state = 341, .external_lex_state = 14}, + [6209] = {.lex_state = 341, .external_lex_state = 16}, + [6210] = {.lex_state = 341}, + [6211] = {.lex_state = 341}, + [6212] = {.lex_state = 341, .external_lex_state = 15}, + [6213] = {.lex_state = 341}, + [6214] = {.lex_state = 341}, + [6215] = {.lex_state = 341}, + [6216] = {.lex_state = 180}, + [6217] = {.lex_state = 341, .external_lex_state = 14}, [6218] = {.lex_state = 131}, - [6219] = {.lex_state = 131}, - [6220] = {.lex_state = 340}, - [6221] = {.lex_state = 340, .external_lex_state = 14}, - [6222] = {.lex_state = 340, .external_lex_state = 18}, - [6223] = {.lex_state = 340, .external_lex_state = 23}, - [6224] = {.lex_state = 340}, - [6225] = {.lex_state = 340, .external_lex_state = 14}, - [6226] = {.lex_state = 340}, - [6227] = {.lex_state = 131}, - [6228] = {.lex_state = 131}, - [6229] = {.lex_state = 340}, - [6230] = {.lex_state = 340, .external_lex_state = 23}, - [6231] = {.lex_state = 131, .external_lex_state = 23}, - [6232] = {.lex_state = 131}, - [6233] = {.lex_state = 340}, - [6234] = {.lex_state = 340}, - [6235] = {.lex_state = 131}, - [6236] = {.lex_state = 340, .external_lex_state = 15}, - [6237] = {.lex_state = 340}, - [6238] = {.lex_state = 340}, - [6239] = {.lex_state = 340}, - [6240] = {.lex_state = 340, .external_lex_state = 15}, - [6241] = {.lex_state = 340}, + [6219] = {.lex_state = 341, .external_lex_state = 14}, + [6220] = {.lex_state = 341}, + [6221] = {.lex_state = 341, .external_lex_state = 14}, + [6222] = {.lex_state = 131, .external_lex_state = 23}, + [6223] = {.lex_state = 341, .external_lex_state = 23}, + [6224] = {.lex_state = 341, .external_lex_state = 14}, + [6225] = {.lex_state = 341, .external_lex_state = 14}, + [6226] = {.lex_state = 341}, + [6227] = {.lex_state = 341, .external_lex_state = 14}, + [6228] = {.lex_state = 341, .external_lex_state = 16}, + [6229] = {.lex_state = 341}, + [6230] = {.lex_state = 341, .external_lex_state = 15}, + [6231] = {.lex_state = 341, .external_lex_state = 16}, + [6232] = {.lex_state = 341, .external_lex_state = 14}, + [6233] = {.lex_state = 341, .external_lex_state = 14}, + [6234] = {.lex_state = 341, .external_lex_state = 14}, + [6235] = {.lex_state = 341, .external_lex_state = 17}, + [6236] = {.lex_state = 341, .external_lex_state = 15}, + [6237] = {.lex_state = 341, .external_lex_state = 18}, + [6238] = {.lex_state = 341}, + [6239] = {.lex_state = 341, .external_lex_state = 18}, + [6240] = {.lex_state = 341, .external_lex_state = 15}, + [6241] = {.lex_state = 341, .external_lex_state = 18}, [6242] = {.lex_state = 131}, - [6243] = {.lex_state = 340}, - [6244] = {.lex_state = 131}, - [6245] = {.lex_state = 340, .external_lex_state = 15}, - [6246] = {.lex_state = 340}, - [6247] = {.lex_state = 340}, - [6248] = {.lex_state = 340}, - [6249] = {.lex_state = 340}, - [6250] = {.lex_state = 340}, - [6251] = {.lex_state = 340, .external_lex_state = 15}, - [6252] = {.lex_state = 340}, - [6253] = {.lex_state = 340, .external_lex_state = 15}, - [6254] = {.lex_state = 131, .external_lex_state = 23}, - [6255] = {.lex_state = 340, .external_lex_state = 15}, - [6256] = {.lex_state = 131}, - [6257] = {.lex_state = 340}, - [6258] = {.lex_state = 340}, - [6259] = {.lex_state = 340, .external_lex_state = 23}, + [6243] = {.lex_state = 341}, + [6244] = {.lex_state = 341}, + [6245] = {.lex_state = 131}, + [6246] = {.lex_state = 341, .external_lex_state = 18}, + [6247] = {.lex_state = 341}, + [6248] = {.lex_state = 341}, + [6249] = {.lex_state = 341, .external_lex_state = 18}, + [6250] = {.lex_state = 341}, + [6251] = {.lex_state = 180}, + [6252] = {.lex_state = 341, .external_lex_state = 18}, + [6253] = {.lex_state = 341, .external_lex_state = 18}, + [6254] = {.lex_state = 131}, + [6255] = {.lex_state = 341}, + [6256] = {.lex_state = 341, .external_lex_state = 18}, + [6257] = {.lex_state = 341, .external_lex_state = 14}, + [6258] = {.lex_state = 341}, + [6259] = {.lex_state = 341, .external_lex_state = 15}, [6260] = {.lex_state = 131}, - [6261] = {.lex_state = 340, .external_lex_state = 15}, - [6262] = {.lex_state = 340}, - [6263] = {.lex_state = 340}, - [6264] = {.lex_state = 340, .external_lex_state = 23}, - [6265] = {.lex_state = 131}, - [6266] = {.lex_state = 340}, - [6267] = {.lex_state = 340}, - [6268] = {.lex_state = 131, .external_lex_state = 23}, - [6269] = {.lex_state = 340}, - [6270] = {.lex_state = 131, .external_lex_state = 23}, - [6271] = {.lex_state = 340}, - [6272] = {.lex_state = 340}, - [6273] = {.lex_state = 189}, - [6274] = {.lex_state = 340, .external_lex_state = 23}, - [6275] = {.lex_state = 340, .external_lex_state = 15}, - [6276] = {.lex_state = 340}, - [6277] = {.lex_state = 340}, - [6278] = {.lex_state = 340}, - [6279] = {.lex_state = 340}, - [6280] = {.lex_state = 340, .external_lex_state = 14}, - [6281] = {.lex_state = 340, .external_lex_state = 15}, - [6282] = {.lex_state = 340}, - [6283] = {.lex_state = 340}, - [6284] = {.lex_state = 340}, - [6285] = {.lex_state = 340}, - [6286] = {.lex_state = 340}, - [6287] = {.lex_state = 131, .external_lex_state = 23}, - [6288] = {.lex_state = 340, .external_lex_state = 14}, - [6289] = {.lex_state = 131}, - [6290] = {.lex_state = 180}, - [6291] = {.lex_state = 340}, - [6292] = {.lex_state = 340}, - [6293] = {.lex_state = 131, .external_lex_state = 23}, - [6294] = {.lex_state = 340, .external_lex_state = 23}, - [6295] = {.lex_state = 340}, - [6296] = {.lex_state = 340, .external_lex_state = 23}, - [6297] = {.lex_state = 340, .external_lex_state = 14}, - [6298] = {.lex_state = 340, .external_lex_state = 17}, - [6299] = {.lex_state = 340, .external_lex_state = 23}, - [6300] = {.lex_state = 340}, - [6301] = {.lex_state = 180}, - [6302] = {.lex_state = 340, .external_lex_state = 15}, - [6303] = {.lex_state = 340}, - [6304] = {.lex_state = 340, .external_lex_state = 15}, - [6305] = {.lex_state = 131, .external_lex_state = 23}, - [6306] = {.lex_state = 340}, - [6307] = {.lex_state = 340}, - [6308] = {.lex_state = 340}, - [6309] = {.lex_state = 340, .external_lex_state = 15}, - [6310] = {.lex_state = 340, .external_lex_state = 23}, - [6311] = {.lex_state = 131, .external_lex_state = 23}, - [6312] = {.lex_state = 340}, - [6313] = {.lex_state = 340}, - [6314] = {.lex_state = 340}, - [6315] = {.lex_state = 340, .external_lex_state = 14}, + [6261] = {.lex_state = 341}, + [6262] = {.lex_state = 341, .external_lex_state = 18}, + [6263] = {.lex_state = 341}, + [6264] = {.lex_state = 341, .external_lex_state = 18}, + [6265] = {.lex_state = 180}, + [6266] = {.lex_state = 131}, + [6267] = {.lex_state = 341, .external_lex_state = 14}, + [6268] = {.lex_state = 341}, + [6269] = {.lex_state = 341}, + [6270] = {.lex_state = 341, .external_lex_state = 18}, + [6271] = {.lex_state = 341}, + [6272] = {.lex_state = 341, .external_lex_state = 18}, + [6273] = {.lex_state = 341, .external_lex_state = 14}, + [6274] = {.lex_state = 341}, + [6275] = {.lex_state = 341, .external_lex_state = 18}, + [6276] = {.lex_state = 341, .external_lex_state = 23}, + [6277] = {.lex_state = 131, .external_lex_state = 23}, + [6278] = {.lex_state = 341}, + [6279] = {.lex_state = 341}, + [6280] = {.lex_state = 341}, + [6281] = {.lex_state = 131}, + [6282] = {.lex_state = 341, .external_lex_state = 17}, + [6283] = {.lex_state = 341}, + [6284] = {.lex_state = 341}, + [6285] = {.lex_state = 341, .external_lex_state = 18}, + [6286] = {.lex_state = 341}, + [6287] = {.lex_state = 341, .external_lex_state = 15}, + [6288] = {.lex_state = 341}, + [6289] = {.lex_state = 341, .external_lex_state = 18}, + [6290] = {.lex_state = 341}, + [6291] = {.lex_state = 341, .external_lex_state = 17}, + [6292] = {.lex_state = 341, .external_lex_state = 18}, + [6293] = {.lex_state = 341}, + [6294] = {.lex_state = 131}, + [6295] = {.lex_state = 341}, + [6296] = {.lex_state = 341, .external_lex_state = 14}, + [6297] = {.lex_state = 341}, + [6298] = {.lex_state = 341}, + [6299] = {.lex_state = 341}, + [6300] = {.lex_state = 341, .external_lex_state = 18}, + [6301] = {.lex_state = 341}, + [6302] = {.lex_state = 131}, + [6303] = {.lex_state = 341, .external_lex_state = 16}, + [6304] = {.lex_state = 341, .external_lex_state = 14}, + [6305] = {.lex_state = 341}, + [6306] = {.lex_state = 131}, + [6307] = {.lex_state = 341}, + [6308] = {.lex_state = 341}, + [6309] = {.lex_state = 341}, + [6310] = {.lex_state = 131}, + [6311] = {.lex_state = 341, .external_lex_state = 15}, + [6312] = {.lex_state = 341, .external_lex_state = 18}, + [6313] = {.lex_state = 341}, + [6314] = {.lex_state = 341}, + [6315] = {.lex_state = 341}, [6316] = {.lex_state = 131}, - [6317] = {.lex_state = 131}, - [6318] = {.lex_state = 340, .external_lex_state = 16}, - [6319] = {.lex_state = 340}, - [6320] = {.lex_state = 340, .external_lex_state = 15}, - [6321] = {.lex_state = 340}, - [6322] = {.lex_state = 340}, - [6323] = {.lex_state = 340}, - [6324] = {.lex_state = 340}, - [6325] = {.lex_state = 340, .external_lex_state = 14}, - [6326] = {.lex_state = 131}, - [6327] = {.lex_state = 340}, - [6328] = {.lex_state = 340}, - [6329] = {.lex_state = 340, .external_lex_state = 15}, - [6330] = {.lex_state = 340, .external_lex_state = 14}, - [6331] = {.lex_state = 340}, - [6332] = {.lex_state = 131, .external_lex_state = 23}, - [6333] = {.lex_state = 340}, - [6334] = {.lex_state = 340, .external_lex_state = 23}, - [6335] = {.lex_state = 131}, - [6336] = {.lex_state = 340, .external_lex_state = 16}, - [6337] = {.lex_state = 189}, - [6338] = {.lex_state = 340}, - [6339] = {.lex_state = 340}, - [6340] = {.lex_state = 340, .external_lex_state = 15}, - [6341] = {.lex_state = 340}, - [6342] = {.lex_state = 340}, - [6343] = {.lex_state = 340, .external_lex_state = 14}, - [6344] = {.lex_state = 340, .external_lex_state = 15}, - [6345] = {.lex_state = 340}, - [6346] = {.lex_state = 131}, - [6347] = {.lex_state = 340, .external_lex_state = 15}, - [6348] = {.lex_state = 340}, + [6317] = {.lex_state = 341}, + [6318] = {.lex_state = 341, .external_lex_state = 15}, + [6319] = {.lex_state = 341}, + [6320] = {.lex_state = 341}, + [6321] = {.lex_state = 131}, + [6322] = {.lex_state = 341}, + [6323] = {.lex_state = 341}, + [6324] = {.lex_state = 341}, + [6325] = {.lex_state = 341, .external_lex_state = 23}, + [6326] = {.lex_state = 131, .external_lex_state = 23}, + [6327] = {.lex_state = 341, .external_lex_state = 18}, + [6328] = {.lex_state = 341, .external_lex_state = 23}, + [6329] = {.lex_state = 131}, + [6330] = {.lex_state = 131, .external_lex_state = 15}, + [6331] = {.lex_state = 131}, + [6332] = {.lex_state = 341, .external_lex_state = 23}, + [6333] = {.lex_state = 131, .external_lex_state = 23}, + [6334] = {.lex_state = 131}, + [6335] = {.lex_state = 341}, + [6336] = {.lex_state = 131, .external_lex_state = 23}, + [6337] = {.lex_state = 131, .external_lex_state = 23}, + [6338] = {.lex_state = 341, .external_lex_state = 23}, + [6339] = {.lex_state = 341, .external_lex_state = 15}, + [6340] = {.lex_state = 131}, + [6341] = {.lex_state = 341}, + [6342] = {.lex_state = 341, .external_lex_state = 23}, + [6343] = {.lex_state = 131, .external_lex_state = 23}, + [6344] = {.lex_state = 131, .external_lex_state = 15}, + [6345] = {.lex_state = 341, .external_lex_state = 23}, + [6346] = {.lex_state = 131, .external_lex_state = 23}, + [6347] = {.lex_state = 180}, + [6348] = {.lex_state = 341}, [6349] = {.lex_state = 131}, - [6350] = {.lex_state = 340}, - [6351] = {.lex_state = 340, .external_lex_state = 14}, - [6352] = {.lex_state = 340}, - [6353] = {.lex_state = 340, .external_lex_state = 23}, - [6354] = {.lex_state = 340, .external_lex_state = 14}, - [6355] = {.lex_state = 340}, - [6356] = {.lex_state = 340, .external_lex_state = 17}, - [6357] = {.lex_state = 131, .external_lex_state = 23}, - [6358] = {.lex_state = 340}, - [6359] = {.lex_state = 340, .external_lex_state = 14}, - [6360] = {.lex_state = 131, .external_lex_state = 23}, - [6361] = {.lex_state = 340, .external_lex_state = 15}, - [6362] = {.lex_state = 340, .external_lex_state = 23}, - [6363] = {.lex_state = 131}, - [6364] = {.lex_state = 340}, - [6365] = {.lex_state = 131}, - [6366] = {.lex_state = 131}, - [6367] = {.lex_state = 340, .external_lex_state = 14}, - [6368] = {.lex_state = 340}, - [6369] = {.lex_state = 340}, - [6370] = {.lex_state = 340, .external_lex_state = 17}, - [6371] = {.lex_state = 180}, - [6372] = {.lex_state = 180}, - [6373] = {.lex_state = 340}, - [6374] = {.lex_state = 340, .external_lex_state = 24}, - [6375] = {.lex_state = 340, .external_lex_state = 17}, - [6376] = {.lex_state = 131}, - [6377] = {.lex_state = 340, .external_lex_state = 23}, - [6378] = {.lex_state = 340, .external_lex_state = 23}, - [6379] = {.lex_state = 340, .external_lex_state = 16}, - [6380] = {.lex_state = 131}, - [6381] = {.lex_state = 340, .external_lex_state = 16}, - [6382] = {.lex_state = 340, .external_lex_state = 23}, - [6383] = {.lex_state = 340}, - [6384] = {.lex_state = 340, .external_lex_state = 23}, - [6385] = {.lex_state = 340, .external_lex_state = 23}, - [6386] = {.lex_state = 340}, - [6387] = {.lex_state = 340, .external_lex_state = 23}, - [6388] = {.lex_state = 340, .external_lex_state = 23}, - [6389] = {.lex_state = 340, .external_lex_state = 23}, - [6390] = {.lex_state = 340, .external_lex_state = 16}, - [6391] = {.lex_state = 340, .external_lex_state = 16}, - [6392] = {.lex_state = 340, .external_lex_state = 16}, - [6393] = {.lex_state = 340, .external_lex_state = 16}, - [6394] = {.lex_state = 340, .external_lex_state = 16}, - [6395] = {.lex_state = 340, .external_lex_state = 16}, - [6396] = {.lex_state = 340, .external_lex_state = 16}, - [6397] = {.lex_state = 340, .external_lex_state = 16}, - [6398] = {.lex_state = 340, .external_lex_state = 16}, - [6399] = {.lex_state = 340, .external_lex_state = 23}, - [6400] = {.lex_state = 340, .external_lex_state = 16}, - [6401] = {.lex_state = 340, .external_lex_state = 23}, - [6402] = {.lex_state = 340, .external_lex_state = 23}, - [6403] = {.lex_state = 340, .external_lex_state = 23}, - [6404] = {.lex_state = 340, .external_lex_state = 23}, - [6405] = {.lex_state = 340, .external_lex_state = 16}, - [6406] = {.lex_state = 340, .external_lex_state = 16}, - [6407] = {.lex_state = 340, .external_lex_state = 23}, - [6408] = {.lex_state = 340}, - [6409] = {.lex_state = 340, .external_lex_state = 23}, - [6410] = {.lex_state = 340}, - [6411] = {.lex_state = 340}, - [6412] = {.lex_state = 340}, - [6413] = {.lex_state = 340}, - [6414] = {.lex_state = 340, .external_lex_state = 16}, - [6415] = {.lex_state = 340, .external_lex_state = 23}, - [6416] = {.lex_state = 340}, - [6417] = {.lex_state = 340, .external_lex_state = 15}, - [6418] = {.lex_state = 340, .external_lex_state = 23}, - [6419] = {.lex_state = 340, .external_lex_state = 23}, - [6420] = {.lex_state = 340, .external_lex_state = 23}, - [6421] = {.lex_state = 340, .external_lex_state = 23}, - [6422] = {.lex_state = 340, .external_lex_state = 23}, - [6423] = {.lex_state = 340, .external_lex_state = 16}, - [6424] = {.lex_state = 340, .external_lex_state = 23}, - [6425] = {.lex_state = 340, .external_lex_state = 16}, - [6426] = {.lex_state = 340, .external_lex_state = 23}, - [6427] = {.lex_state = 340, .external_lex_state = 16}, - [6428] = {.lex_state = 340, .external_lex_state = 23}, - [6429] = {.lex_state = 340}, - [6430] = {.lex_state = 340, .external_lex_state = 23}, - [6431] = {.lex_state = 340, .external_lex_state = 23}, - [6432] = {.lex_state = 340}, - [6433] = {.lex_state = 340, .external_lex_state = 23}, - [6434] = {.lex_state = 189}, - [6435] = {.lex_state = 340, .external_lex_state = 23}, - [6436] = {.lex_state = 189}, - [6437] = {.lex_state = 340, .external_lex_state = 23}, - [6438] = {.lex_state = 340, .external_lex_state = 23}, - [6439] = {.lex_state = 340, .external_lex_state = 16}, - [6440] = {.lex_state = 340, .external_lex_state = 23}, - [6441] = {.lex_state = 340, .external_lex_state = 23}, - [6442] = {.lex_state = 340, .external_lex_state = 23}, - [6443] = {.lex_state = 340, .external_lex_state = 16}, - [6444] = {.lex_state = 189}, - [6445] = {.lex_state = 189}, - [6446] = {.lex_state = 340, .external_lex_state = 23}, - [6447] = {.lex_state = 189}, - [6448] = {.lex_state = 340, .external_lex_state = 23}, - [6449] = {.lex_state = 340, .external_lex_state = 23}, - [6450] = {.lex_state = 189}, - [6451] = {.lex_state = 340}, - [6452] = {.lex_state = 340, .external_lex_state = 23}, - [6453] = {.lex_state = 340, .external_lex_state = 23}, - [6454] = {.lex_state = 340, .external_lex_state = 16}, - [6455] = {.lex_state = 340, .external_lex_state = 23}, - [6456] = {.lex_state = 340, .external_lex_state = 16}, - [6457] = {.lex_state = 340, .external_lex_state = 16}, - [6458] = {.lex_state = 340, .external_lex_state = 23}, - [6459] = {.lex_state = 340, .external_lex_state = 23}, - [6460] = {.lex_state = 340, .external_lex_state = 23}, - [6461] = {.lex_state = 340, .external_lex_state = 23}, - [6462] = {.lex_state = 340}, - [6463] = {.lex_state = 340, .external_lex_state = 16}, - [6464] = {.lex_state = 340, .external_lex_state = 16}, - [6465] = {.lex_state = 340, .external_lex_state = 23}, - [6466] = {.lex_state = 340, .external_lex_state = 23}, - [6467] = {.lex_state = 340, .external_lex_state = 23}, - [6468] = {.lex_state = 340, .external_lex_state = 23}, - [6469] = {.lex_state = 340, .external_lex_state = 23}, - [6470] = {.lex_state = 340, .external_lex_state = 23}, - [6471] = {.lex_state = 340, .external_lex_state = 23}, - [6472] = {.lex_state = 340, .external_lex_state = 23}, - [6473] = {.lex_state = 340, .external_lex_state = 16}, - [6474] = {.lex_state = 340, .external_lex_state = 23}, - [6475] = {.lex_state = 340, .external_lex_state = 23}, - [6476] = {.lex_state = 340, .external_lex_state = 16}, - [6477] = {.lex_state = 340}, - [6478] = {.lex_state = 340, .external_lex_state = 23}, - [6479] = {.lex_state = 340, .external_lex_state = 23}, - [6480] = {.lex_state = 340, .external_lex_state = 23}, - [6481] = {.lex_state = 340, .external_lex_state = 16}, - [6482] = {.lex_state = 340, .external_lex_state = 23}, - [6483] = {.lex_state = 189}, - [6484] = {.lex_state = 340}, - [6485] = {.lex_state = 340, .external_lex_state = 16}, - [6486] = {.lex_state = 340, .external_lex_state = 16}, - [6487] = {.lex_state = 340, .external_lex_state = 23}, - [6488] = {.lex_state = 340, .external_lex_state = 23}, - [6489] = {.lex_state = 340, .external_lex_state = 23}, - [6490] = {.lex_state = 340, .external_lex_state = 23}, - [6491] = {.lex_state = 340, .external_lex_state = 23}, - [6492] = {.lex_state = 340, .external_lex_state = 23}, - [6493] = {.lex_state = 340}, - [6494] = {.lex_state = 340, .external_lex_state = 23}, - [6495] = {.lex_state = 340}, - [6496] = {.lex_state = 340, .external_lex_state = 23}, - [6497] = {.lex_state = 340, .external_lex_state = 23}, - [6498] = {.lex_state = 340, .external_lex_state = 23}, - [6499] = {.lex_state = 340}, - [6500] = {.lex_state = 340, .external_lex_state = 23}, - [6501] = {.lex_state = 340, .external_lex_state = 23}, - [6502] = {.lex_state = 340, .external_lex_state = 16}, - [6503] = {.lex_state = 340, .external_lex_state = 23}, - [6504] = {.lex_state = 340, .external_lex_state = 23}, - [6505] = {.lex_state = 340, .external_lex_state = 16}, - [6506] = {.lex_state = 340, .external_lex_state = 23}, - [6507] = {.lex_state = 340, .external_lex_state = 23}, - [6508] = {.lex_state = 340}, - [6509] = {.lex_state = 340, .external_lex_state = 23}, - [6510] = {.lex_state = 340}, - [6511] = {.lex_state = 340, .external_lex_state = 23}, - [6512] = {.lex_state = 340, .external_lex_state = 23}, - [6513] = {.lex_state = 340, .external_lex_state = 23}, - [6514] = {.lex_state = 340}, - [6515] = {.lex_state = 340, .external_lex_state = 23}, - [6516] = {.lex_state = 340, .external_lex_state = 23}, - [6517] = {.lex_state = 340, .external_lex_state = 24}, - [6518] = {.lex_state = 340, .external_lex_state = 23}, - [6519] = {.lex_state = 340}, - [6520] = {.lex_state = 340, .external_lex_state = 23}, - [6521] = {.lex_state = 340, .external_lex_state = 23}, - [6522] = {.lex_state = 340, .external_lex_state = 23}, - [6523] = {.lex_state = 340}, - [6524] = {.lex_state = 340, .external_lex_state = 23}, - [6525] = {.lex_state = 340}, - [6526] = {.lex_state = 340, .external_lex_state = 15}, - [6527] = {.lex_state = 340, .external_lex_state = 23}, - [6528] = {.lex_state = 340, .external_lex_state = 15}, - [6529] = {.lex_state = 340, .external_lex_state = 23}, - [6530] = {.lex_state = 340}, - [6531] = {.lex_state = 131}, - [6532] = {.lex_state = 131}, - [6533] = {.lex_state = 340, .external_lex_state = 23}, - [6534] = {.lex_state = 340, .external_lex_state = 23}, - [6535] = {.lex_state = 340, .external_lex_state = 23}, - [6536] = {.lex_state = 340}, - [6537] = {.lex_state = 340, .external_lex_state = 23}, - [6538] = {.lex_state = 340, .external_lex_state = 23}, - [6539] = {.lex_state = 340}, - [6540] = {.lex_state = 340, .external_lex_state = 23}, - [6541] = {.lex_state = 340, .external_lex_state = 23}, - [6542] = {.lex_state = 340, .external_lex_state = 23}, - [6543] = {.lex_state = 340}, - [6544] = {.lex_state = 340, .external_lex_state = 23}, - [6545] = {.lex_state = 340, .external_lex_state = 23}, - [6546] = {.lex_state = 340}, - [6547] = {.lex_state = 340, .external_lex_state = 23}, - [6548] = {.lex_state = 340, .external_lex_state = 23}, - [6549] = {.lex_state = 340, .external_lex_state = 23}, - [6550] = {.lex_state = 340}, - [6551] = {.lex_state = 189}, - [6552] = {.lex_state = 340, .external_lex_state = 23}, - [6553] = {.lex_state = 340, .external_lex_state = 23}, - [6554] = {.lex_state = 340, .external_lex_state = 23}, - [6555] = {.lex_state = 340, .external_lex_state = 23}, - [6556] = {.lex_state = 340}, - [6557] = {.lex_state = 340}, - [6558] = {.lex_state = 340, .external_lex_state = 23}, - [6559] = {.lex_state = 340}, - [6560] = {.lex_state = 340}, - [6561] = {.lex_state = 340, .external_lex_state = 23}, - [6562] = {.lex_state = 340, .external_lex_state = 23}, - [6563] = {.lex_state = 340, .external_lex_state = 23}, - [6564] = {.lex_state = 340, .external_lex_state = 23}, - [6565] = {.lex_state = 340, .external_lex_state = 23}, - [6566] = {.lex_state = 340}, - [6567] = {.lex_state = 340, .external_lex_state = 23}, - [6568] = {.lex_state = 340, .external_lex_state = 23}, - [6569] = {.lex_state = 340, .external_lex_state = 23}, - [6570] = {.lex_state = 340}, - [6571] = {.lex_state = 340, .external_lex_state = 23}, - [6572] = {.lex_state = 340}, - [6573] = {.lex_state = 340}, - [6574] = {.lex_state = 340, .external_lex_state = 23}, - [6575] = {.lex_state = 340, .external_lex_state = 23}, - [6576] = {.lex_state = 340, .external_lex_state = 23}, - [6577] = {.lex_state = 340}, - [6578] = {.lex_state = 131}, - [6579] = {.lex_state = 340, .external_lex_state = 23}, - [6580] = {.lex_state = 340}, - [6581] = {.lex_state = 340, .external_lex_state = 23}, + [6350] = {.lex_state = 341}, + [6351] = {.lex_state = 341}, + [6352] = {.lex_state = 131, .external_lex_state = 15}, + [6353] = {.lex_state = 341}, + [6354] = {.lex_state = 131}, + [6355] = {.lex_state = 341}, + [6356] = {.lex_state = 180}, + [6357] = {.lex_state = 341, .external_lex_state = 23}, + [6358] = {.lex_state = 131, .external_lex_state = 23}, + [6359] = {.lex_state = 131, .external_lex_state = 15}, + [6360] = {.lex_state = 341, .external_lex_state = 14}, + [6361] = {.lex_state = 131}, + [6362] = {.lex_state = 131}, + [6363] = {.lex_state = 341, .external_lex_state = 23}, + [6364] = {.lex_state = 341}, + [6365] = {.lex_state = 341}, + [6366] = {.lex_state = 341}, + [6367] = {.lex_state = 131, .external_lex_state = 23}, + [6368] = {.lex_state = 131}, + [6369] = {.lex_state = 131, .external_lex_state = 23}, + [6370] = {.lex_state = 341, .external_lex_state = 23}, + [6371] = {.lex_state = 131}, + [6372] = {.lex_state = 341, .external_lex_state = 18}, + [6373] = {.lex_state = 341}, + [6374] = {.lex_state = 131, .external_lex_state = 15}, + [6375] = {.lex_state = 341}, + [6376] = {.lex_state = 341}, + [6377] = {.lex_state = 341}, + [6378] = {.lex_state = 341, .external_lex_state = 14}, + [6379] = {.lex_state = 341, .external_lex_state = 16}, + [6380] = {.lex_state = 341, .external_lex_state = 15}, + [6381] = {.lex_state = 131}, + [6382] = {.lex_state = 131}, + [6383] = {.lex_state = 131, .external_lex_state = 15}, + [6384] = {.lex_state = 341}, + [6385] = {.lex_state = 131}, + [6386] = {.lex_state = 131, .external_lex_state = 15}, + [6387] = {.lex_state = 341}, + [6388] = {.lex_state = 341}, + [6389] = {.lex_state = 131}, + [6390] = {.lex_state = 131, .external_lex_state = 15}, + [6391] = {.lex_state = 341}, + [6392] = {.lex_state = 341}, + [6393] = {.lex_state = 341}, + [6394] = {.lex_state = 341}, + [6395] = {.lex_state = 341, .external_lex_state = 17}, + [6396] = {.lex_state = 131}, + [6397] = {.lex_state = 341}, + [6398] = {.lex_state = 341}, + [6399] = {.lex_state = 341}, + [6400] = {.lex_state = 341}, + [6401] = {.lex_state = 341, .external_lex_state = 18}, + [6402] = {.lex_state = 341}, + [6403] = {.lex_state = 341}, + [6404] = {.lex_state = 341}, + [6405] = {.lex_state = 131}, + [6406] = {.lex_state = 341}, + [6407] = {.lex_state = 341}, + [6408] = {.lex_state = 131}, + [6409] = {.lex_state = 341}, + [6410] = {.lex_state = 341, .external_lex_state = 15}, + [6411] = {.lex_state = 341}, + [6412] = {.lex_state = 131}, + [6413] = {.lex_state = 341}, + [6414] = {.lex_state = 341}, + [6415] = {.lex_state = 341}, + [6416] = {.lex_state = 131, .external_lex_state = 23}, + [6417] = {.lex_state = 341, .external_lex_state = 15}, + [6418] = {.lex_state = 341}, + [6419] = {.lex_state = 131}, + [6420] = {.lex_state = 341}, + [6421] = {.lex_state = 341, .external_lex_state = 23}, + [6422] = {.lex_state = 131, .external_lex_state = 15}, + [6423] = {.lex_state = 131, .external_lex_state = 15}, + [6424] = {.lex_state = 131, .external_lex_state = 23}, + [6425] = {.lex_state = 341}, + [6426] = {.lex_state = 131}, + [6427] = {.lex_state = 341}, + [6428] = {.lex_state = 131, .external_lex_state = 23}, + [6429] = {.lex_state = 341, .external_lex_state = 23}, + [6430] = {.lex_state = 131, .external_lex_state = 15}, + [6431] = {.lex_state = 131, .external_lex_state = 23}, + [6432] = {.lex_state = 341, .external_lex_state = 23}, + [6433] = {.lex_state = 341, .external_lex_state = 23}, + [6434] = {.lex_state = 341, .external_lex_state = 23}, + [6435] = {.lex_state = 341}, + [6436] = {.lex_state = 131, .external_lex_state = 23}, + [6437] = {.lex_state = 131}, + [6438] = {.lex_state = 341}, + [6439] = {.lex_state = 341}, + [6440] = {.lex_state = 341, .external_lex_state = 23}, + [6441] = {.lex_state = 341, .external_lex_state = 23}, + [6442] = {.lex_state = 131}, + [6443] = {.lex_state = 131}, + [6444] = {.lex_state = 341, .external_lex_state = 23}, + [6445] = {.lex_state = 341, .external_lex_state = 23}, + [6446] = {.lex_state = 341}, + [6447] = {.lex_state = 341, .external_lex_state = 23}, + [6448] = {.lex_state = 341, .external_lex_state = 23}, + [6449] = {.lex_state = 341, .external_lex_state = 23}, + [6450] = {.lex_state = 341, .external_lex_state = 23}, + [6451] = {.lex_state = 341, .external_lex_state = 23}, + [6452] = {.lex_state = 341, .external_lex_state = 23}, + [6453] = {.lex_state = 341, .external_lex_state = 23}, + [6454] = {.lex_state = 341}, + [6455] = {.lex_state = 341}, + [6456] = {.lex_state = 341, .external_lex_state = 23}, + [6457] = {.lex_state = 341, .external_lex_state = 23}, + [6458] = {.lex_state = 341, .external_lex_state = 23}, + [6459] = {.lex_state = 341}, + [6460] = {.lex_state = 341}, + [6461] = {.lex_state = 341}, + [6462] = {.lex_state = 131, .external_lex_state = 15}, + [6463] = {.lex_state = 341}, + [6464] = {.lex_state = 341, .external_lex_state = 23}, + [6465] = {.lex_state = 341, .external_lex_state = 23}, + [6466] = {.lex_state = 341, .external_lex_state = 23}, + [6467] = {.lex_state = 341, .external_lex_state = 23}, + [6468] = {.lex_state = 341, .external_lex_state = 23}, + [6469] = {.lex_state = 341}, + [6470] = {.lex_state = 341}, + [6471] = {.lex_state = 341}, + [6472] = {.lex_state = 341, .external_lex_state = 23}, + [6473] = {.lex_state = 341}, + [6474] = {.lex_state = 341, .external_lex_state = 23}, + [6475] = {.lex_state = 341, .external_lex_state = 23}, + [6476] = {.lex_state = 341}, + [6477] = {.lex_state = 341, .external_lex_state = 23}, + [6478] = {.lex_state = 341}, + [6479] = {.lex_state = 341, .external_lex_state = 23}, + [6480] = {.lex_state = 341}, + [6481] = {.lex_state = 341, .external_lex_state = 23}, + [6482] = {.lex_state = 189}, + [6483] = {.lex_state = 341, .external_lex_state = 23}, + [6484] = {.lex_state = 189}, + [6485] = {.lex_state = 341, .external_lex_state = 23}, + [6486] = {.lex_state = 341, .external_lex_state = 23}, + [6487] = {.lex_state = 341, .external_lex_state = 23}, + [6488] = {.lex_state = 341, .external_lex_state = 23}, + [6489] = {.lex_state = 341}, + [6490] = {.lex_state = 341, .external_lex_state = 23}, + [6491] = {.lex_state = 341, .external_lex_state = 23}, + [6492] = {.lex_state = 341, .external_lex_state = 23}, + [6493] = {.lex_state = 341, .external_lex_state = 23}, + [6494] = {.lex_state = 341}, + [6495] = {.lex_state = 189}, + [6496] = {.lex_state = 189}, + [6497] = {.lex_state = 341}, + [6498] = {.lex_state = 189}, + [6499] = {.lex_state = 341, .external_lex_state = 23}, + [6500] = {.lex_state = 189}, + [6501] = {.lex_state = 341, .external_lex_state = 23}, + [6502] = {.lex_state = 341, .external_lex_state = 23}, + [6503] = {.lex_state = 341}, + [6504] = {.lex_state = 189}, + [6505] = {.lex_state = 341, .external_lex_state = 23}, + [6506] = {.lex_state = 341, .external_lex_state = 23}, + [6507] = {.lex_state = 341, .external_lex_state = 23}, + [6508] = {.lex_state = 341}, + [6509] = {.lex_state = 341, .external_lex_state = 23}, + [6510] = {.lex_state = 341}, + [6511] = {.lex_state = 341, .external_lex_state = 23}, + [6512] = {.lex_state = 341}, + [6513] = {.lex_state = 341, .external_lex_state = 23}, + [6514] = {.lex_state = 341}, + [6515] = {.lex_state = 341, .external_lex_state = 16}, + [6516] = {.lex_state = 341, .external_lex_state = 16}, + [6517] = {.lex_state = 341, .external_lex_state = 23}, + [6518] = {.lex_state = 341, .external_lex_state = 23}, + [6519] = {.lex_state = 341, .external_lex_state = 23}, + [6520] = {.lex_state = 341, .external_lex_state = 23}, + [6521] = {.lex_state = 341, .external_lex_state = 23}, + [6522] = {.lex_state = 341, .external_lex_state = 23}, + [6523] = {.lex_state = 341}, + [6524] = {.lex_state = 341, .external_lex_state = 23}, + [6525] = {.lex_state = 341, .external_lex_state = 23}, + [6526] = {.lex_state = 341, .external_lex_state = 23}, + [6527] = {.lex_state = 341}, + [6528] = {.lex_state = 341, .external_lex_state = 23}, + [6529] = {.lex_state = 341, .external_lex_state = 23}, + [6530] = {.lex_state = 341, .external_lex_state = 24}, + [6531] = {.lex_state = 341, .external_lex_state = 23}, + [6532] = {.lex_state = 341, .external_lex_state = 23}, + [6533] = {.lex_state = 341, .external_lex_state = 23}, + [6534] = {.lex_state = 341}, + [6535] = {.lex_state = 341, .external_lex_state = 23}, + [6536] = {.lex_state = 341, .external_lex_state = 23}, + [6537] = {.lex_state = 341, .external_lex_state = 23}, + [6538] = {.lex_state = 341}, + [6539] = {.lex_state = 341, .external_lex_state = 23}, + [6540] = {.lex_state = 341, .external_lex_state = 23}, + [6541] = {.lex_state = 341, .external_lex_state = 23}, + [6542] = {.lex_state = 341, .external_lex_state = 23}, + [6543] = {.lex_state = 341, .external_lex_state = 23}, + [6544] = {.lex_state = 341, .external_lex_state = 23}, + [6545] = {.lex_state = 341, .external_lex_state = 23}, + [6546] = {.lex_state = 341, .external_lex_state = 23}, + [6547] = {.lex_state = 341, .external_lex_state = 23}, + [6548] = {.lex_state = 341, .external_lex_state = 23}, + [6549] = {.lex_state = 131, .external_lex_state = 15}, + [6550] = {.lex_state = 131, .external_lex_state = 15}, + [6551] = {.lex_state = 341}, + [6552] = {.lex_state = 341, .external_lex_state = 23}, + [6553] = {.lex_state = 341}, + [6554] = {.lex_state = 341, .external_lex_state = 23}, + [6555] = {.lex_state = 341, .external_lex_state = 23}, + [6556] = {.lex_state = 341, .external_lex_state = 23}, + [6557] = {.lex_state = 341, .external_lex_state = 23}, + [6558] = {.lex_state = 341, .external_lex_state = 23}, + [6559] = {.lex_state = 341, .external_lex_state = 23}, + [6560] = {.lex_state = 341, .external_lex_state = 23}, + [6561] = {.lex_state = 341, .external_lex_state = 23}, + [6562] = {.lex_state = 341, .external_lex_state = 23}, + [6563] = {.lex_state = 341, .external_lex_state = 23}, + [6564] = {.lex_state = 341}, + [6565] = {.lex_state = 341, .external_lex_state = 23}, + [6566] = {.lex_state = 341, .external_lex_state = 23}, + [6567] = {.lex_state = 341, .external_lex_state = 23}, + [6568] = {.lex_state = 189}, + [6569] = {.lex_state = 341, .external_lex_state = 23}, + [6570] = {.lex_state = 341}, + [6571] = {.lex_state = 341, .external_lex_state = 23}, + [6572] = {.lex_state = 341, .external_lex_state = 23}, + [6573] = {.lex_state = 341, .external_lex_state = 23}, + [6574] = {.lex_state = 341}, + [6575] = {.lex_state = 341, .external_lex_state = 23}, + [6576] = {.lex_state = 341}, + [6577] = {.lex_state = 341}, + [6578] = {.lex_state = 341}, + [6579] = {.lex_state = 131}, + [6580] = {.lex_state = 341, .external_lex_state = 23}, + [6581] = {.lex_state = 341, .external_lex_state = 23}, [6582] = {.lex_state = 179}, - [6583] = {.lex_state = 340}, - [6584] = {.lex_state = 340, .external_lex_state = 23}, - [6585] = {.lex_state = 340}, - [6586] = {.lex_state = 340, .external_lex_state = 23}, - [6587] = {.lex_state = 340, .external_lex_state = 23}, - [6588] = {.lex_state = 340, .external_lex_state = 23}, - [6589] = {.lex_state = 340, .external_lex_state = 23}, - [6590] = {.lex_state = 340, .external_lex_state = 23}, - [6591] = {.lex_state = 340, .external_lex_state = 23}, - [6592] = {.lex_state = 340, .external_lex_state = 23}, - [6593] = {.lex_state = 340, .external_lex_state = 23}, - [6594] = {.lex_state = 340, .external_lex_state = 23}, - [6595] = {.lex_state = 340, .external_lex_state = 23}, - [6596] = {.lex_state = 340, .external_lex_state = 24}, - [6597] = {.lex_state = 340, .external_lex_state = 23}, - [6598] = {.lex_state = 340, .external_lex_state = 23}, - [6599] = {.lex_state = 340, .external_lex_state = 23}, - [6600] = {.lex_state = 340, .external_lex_state = 23}, - [6601] = {.lex_state = 340}, - [6602] = {.lex_state = 340}, - [6603] = {.lex_state = 340}, - [6604] = {.lex_state = 340}, - [6605] = {.lex_state = 340}, - [6606] = {.lex_state = 340, .external_lex_state = 23}, - [6607] = {.lex_state = 340, .external_lex_state = 23}, - [6608] = {.lex_state = 340, .external_lex_state = 23}, - [6609] = {.lex_state = 340, .external_lex_state = 23}, - [6610] = {.lex_state = 340}, - [6611] = {.lex_state = 340, .external_lex_state = 23}, - [6612] = {.lex_state = 340, .external_lex_state = 23}, - [6613] = {.lex_state = 340, .external_lex_state = 23}, - [6614] = {.lex_state = 340, .external_lex_state = 23}, - [6615] = {.lex_state = 340}, - [6616] = {.lex_state = 340, .external_lex_state = 23}, - [6617] = {.lex_state = 340, .external_lex_state = 23}, - [6618] = {.lex_state = 340, .external_lex_state = 23}, - [6619] = {.lex_state = 340, .external_lex_state = 23}, - [6620] = {.lex_state = 340, .external_lex_state = 23}, - [6621] = {.lex_state = 340, .external_lex_state = 14}, - [6622] = {.lex_state = 340, .external_lex_state = 23}, - [6623] = {.lex_state = 340}, - [6624] = {.lex_state = 340, .external_lex_state = 14}, - [6625] = {.lex_state = 340, .external_lex_state = 23}, - [6626] = {.lex_state = 340, .external_lex_state = 23}, - [6627] = {.lex_state = 340, .external_lex_state = 23}, - [6628] = {.lex_state = 340, .external_lex_state = 23}, - [6629] = {.lex_state = 340, .external_lex_state = 23}, - [6630] = {.lex_state = 340, .external_lex_state = 23}, - [6631] = {.lex_state = 340}, - [6632] = {.lex_state = 340, .external_lex_state = 23}, - [6633] = {.lex_state = 340}, - [6634] = {.lex_state = 340, .external_lex_state = 23}, - [6635] = {.lex_state = 340}, - [6636] = {.lex_state = 340}, - [6637] = {.lex_state = 131}, - [6638] = {.lex_state = 340, .external_lex_state = 23}, - [6639] = {.lex_state = 340}, - [6640] = {.lex_state = 340}, - [6641] = {.lex_state = 340, .external_lex_state = 23}, - [6642] = {.lex_state = 340}, - [6643] = {.lex_state = 340, .external_lex_state = 23}, - [6644] = {.lex_state = 340}, - [6645] = {.lex_state = 340}, - [6646] = {.lex_state = 340, .external_lex_state = 23}, - [6647] = {.lex_state = 340}, - [6648] = {.lex_state = 340}, - [6649] = {.lex_state = 340}, - [6650] = {.lex_state = 340, .external_lex_state = 14}, - [6651] = {.lex_state = 340, .external_lex_state = 23}, - [6652] = {.lex_state = 340, .external_lex_state = 23}, - [6653] = {.lex_state = 340, .external_lex_state = 23}, - [6654] = {.lex_state = 340, .external_lex_state = 23}, - [6655] = {.lex_state = 340, .external_lex_state = 23}, - [6656] = {.lex_state = 340}, - [6657] = {.lex_state = 340, .external_lex_state = 23}, - [6658] = {.lex_state = 340}, - [6659] = {.lex_state = 340, .external_lex_state = 23}, - [6660] = {.lex_state = 340}, - [6661] = {.lex_state = 340}, - [6662] = {.lex_state = 340}, - [6663] = {.lex_state = 340}, - [6664] = {.lex_state = 340}, - [6665] = {.lex_state = 340, .external_lex_state = 23}, - [6666] = {.lex_state = 340}, - [6667] = {.lex_state = 340}, - [6668] = {.lex_state = 340}, - [6669] = {.lex_state = 340, .external_lex_state = 23}, - [6670] = {.lex_state = 340}, - [6671] = {.lex_state = 340, .external_lex_state = 23}, - [6672] = {.lex_state = 340, .external_lex_state = 24}, - [6673] = {.lex_state = 340}, - [6674] = {.lex_state = 340}, - [6675] = {.lex_state = 340, .external_lex_state = 23}, - [6676] = {.lex_state = 340}, - [6677] = {.lex_state = 131}, - [6678] = {.lex_state = 340}, - [6679] = {.lex_state = 340, .external_lex_state = 23}, - [6680] = {.lex_state = 340, .external_lex_state = 23}, - [6681] = {.lex_state = 131}, - [6682] = {.lex_state = 340, .external_lex_state = 14}, - [6683] = {.lex_state = 340, .external_lex_state = 23}, - [6684] = {.lex_state = 340, .external_lex_state = 23}, - [6685] = {.lex_state = 340, .external_lex_state = 16}, - [6686] = {.lex_state = 340, .external_lex_state = 23}, - [6687] = {.lex_state = 340, .external_lex_state = 23}, - [6688] = {.lex_state = 340, .external_lex_state = 23}, - [6689] = {.lex_state = 340, .external_lex_state = 23}, - [6690] = {.lex_state = 340, .external_lex_state = 23}, - [6691] = {.lex_state = 340, .external_lex_state = 23}, - [6692] = {.lex_state = 340}, - [6693] = {.lex_state = 340, .external_lex_state = 24}, - [6694] = {.lex_state = 340}, - [6695] = {.lex_state = 340}, - [6696] = {.lex_state = 340, .external_lex_state = 24}, - [6697] = {.lex_state = 340}, - [6698] = {.lex_state = 340, .external_lex_state = 23}, - [6699] = {.lex_state = 340, .external_lex_state = 23}, - [6700] = {.lex_state = 340, .external_lex_state = 23}, - [6701] = {.lex_state = 340, .external_lex_state = 23}, - [6702] = {.lex_state = 340}, - [6703] = {.lex_state = 340, .external_lex_state = 23}, - [6704] = {.lex_state = 340}, - [6705] = {.lex_state = 340, .external_lex_state = 23}, - [6706] = {.lex_state = 340}, - [6707] = {.lex_state = 340, .external_lex_state = 24}, - [6708] = {.lex_state = 340}, - [6709] = {.lex_state = 340}, - [6710] = {.lex_state = 340, .external_lex_state = 23}, - [6711] = {.lex_state = 340, .external_lex_state = 23}, - [6712] = {.lex_state = 340, .external_lex_state = 23}, - [6713] = {.lex_state = 340, .external_lex_state = 24}, - [6714] = {.lex_state = 340}, - [6715] = {.lex_state = 340, .external_lex_state = 23}, - [6716] = {.lex_state = 340, .external_lex_state = 23}, - [6717] = {.lex_state = 340, .external_lex_state = 23}, - [6718] = {.lex_state = 340}, - [6719] = {.lex_state = 340}, - [6720] = {.lex_state = 131}, - [6721] = {.lex_state = 340, .external_lex_state = 23}, - [6722] = {.lex_state = 340, .external_lex_state = 23}, - [6723] = {.lex_state = 340}, - [6724] = {.lex_state = 340, .external_lex_state = 23}, - [6725] = {.lex_state = 340}, - [6726] = {.lex_state = 340, .external_lex_state = 23}, - [6727] = {.lex_state = 340, .external_lex_state = 23}, - [6728] = {.lex_state = 340, .external_lex_state = 24}, - [6729] = {.lex_state = 340, .external_lex_state = 23}, - [6730] = {.lex_state = 340, .external_lex_state = 23}, - [6731] = {.lex_state = 340}, - [6732] = {.lex_state = 340, .external_lex_state = 23}, - [6733] = {.lex_state = 340, .external_lex_state = 24}, - [6734] = {.lex_state = 340, .external_lex_state = 23}, - [6735] = {.lex_state = 340}, - [6736] = {.lex_state = 340, .external_lex_state = 23}, - [6737] = {.lex_state = 340, .external_lex_state = 23}, - [6738] = {.lex_state = 340, .external_lex_state = 14}, - [6739] = {.lex_state = 340, .external_lex_state = 23}, - [6740] = {.lex_state = 340}, - [6741] = {.lex_state = 340, .external_lex_state = 23}, - [6742] = {.lex_state = 340, .external_lex_state = 23}, - [6743] = {.lex_state = 340, .external_lex_state = 23}, - [6744] = {.lex_state = 340, .external_lex_state = 23}, - [6745] = {.lex_state = 340, .external_lex_state = 23}, - [6746] = {.lex_state = 340}, - [6747] = {.lex_state = 340}, - [6748] = {.lex_state = 340, .external_lex_state = 23}, - [6749] = {.lex_state = 340, .external_lex_state = 23}, - [6750] = {.lex_state = 340, .external_lex_state = 23}, - [6751] = {.lex_state = 340}, - [6752] = {.lex_state = 340}, - [6753] = {.lex_state = 340, .external_lex_state = 23}, - [6754] = {.lex_state = 340, .external_lex_state = 23}, - [6755] = {.lex_state = 340, .external_lex_state = 23}, - [6756] = {.lex_state = 340, .external_lex_state = 24}, - [6757] = {.lex_state = 340, .external_lex_state = 23}, - [6758] = {.lex_state = 340}, - [6759] = {.lex_state = 340, .external_lex_state = 24}, - [6760] = {.lex_state = 340, .external_lex_state = 23}, - [6761] = {.lex_state = 340}, - [6762] = {.lex_state = 340, .external_lex_state = 23}, - [6763] = {.lex_state = 340, .external_lex_state = 16}, - [6764] = {.lex_state = 340}, - [6765] = {.lex_state = 340, .external_lex_state = 23}, - [6766] = {.lex_state = 340, .external_lex_state = 14}, - [6767] = {.lex_state = 340, .external_lex_state = 14}, - [6768] = {.lex_state = 340, .external_lex_state = 23}, - [6769] = {.lex_state = 340}, - [6770] = {.lex_state = 340, .external_lex_state = 23}, - [6771] = {.lex_state = 340, .external_lex_state = 23}, - [6772] = {.lex_state = 340, .external_lex_state = 23}, - [6773] = {.lex_state = 340}, - [6774] = {.lex_state = 340}, - [6775] = {.lex_state = 340, .external_lex_state = 23}, - [6776] = {.lex_state = 340}, - [6777] = {.lex_state = 340, .external_lex_state = 24}, - [6778] = {.lex_state = 340, .external_lex_state = 23}, - [6779] = {.lex_state = 340, .external_lex_state = 23}, - [6780] = {.lex_state = 340}, - [6781] = {.lex_state = 340}, - [6782] = {.lex_state = 340, .external_lex_state = 24}, - [6783] = {.lex_state = 340, .external_lex_state = 23}, - [6784] = {.lex_state = 340}, - [6785] = {.lex_state = 340, .external_lex_state = 23}, - [6786] = {.lex_state = 340}, - [6787] = {.lex_state = 340, .external_lex_state = 23}, - [6788] = {.lex_state = 340, .external_lex_state = 23}, - [6789] = {.lex_state = 340}, - [6790] = {.lex_state = 340, .external_lex_state = 23}, - [6791] = {.lex_state = 340}, - [6792] = {.lex_state = 340, .external_lex_state = 23}, - [6793] = {.lex_state = 340, .external_lex_state = 14}, - [6794] = {.lex_state = 340, .external_lex_state = 23}, - [6795] = {.lex_state = 340, .external_lex_state = 23}, - [6796] = {.lex_state = 131}, - [6797] = {.lex_state = 340, .external_lex_state = 23}, - [6798] = {.lex_state = 340, .external_lex_state = 23}, - [6799] = {.lex_state = 340, .external_lex_state = 23}, - [6800] = {.lex_state = 340, .external_lex_state = 23}, - [6801] = {.lex_state = 340, .external_lex_state = 23}, - [6802] = {.lex_state = 340}, - [6803] = {.lex_state = 340, .external_lex_state = 23}, - [6804] = {.lex_state = 340}, - [6805] = {.lex_state = 340}, - [6806] = {.lex_state = 340, .external_lex_state = 24}, - [6807] = {.lex_state = 340, .external_lex_state = 23}, - [6808] = {.lex_state = 340, .external_lex_state = 23}, - [6809] = {.lex_state = 340}, - [6810] = {.lex_state = 340, .external_lex_state = 23}, - [6811] = {.lex_state = 340, .external_lex_state = 24}, - [6812] = {.lex_state = 340}, - [6813] = {.lex_state = 340, .external_lex_state = 14}, - [6814] = {.lex_state = 340, .external_lex_state = 23}, - [6815] = {.lex_state = 340, .external_lex_state = 23}, - [6816] = {.lex_state = 340, .external_lex_state = 16}, - [6817] = {.lex_state = 340, .external_lex_state = 23}, - [6818] = {.lex_state = 340, .external_lex_state = 23}, - [6819] = {.lex_state = 340}, - [6820] = {.lex_state = 340, .external_lex_state = 23}, - [6821] = {.lex_state = 340, .external_lex_state = 23}, - [6822] = {.lex_state = 340, .external_lex_state = 23}, - [6823] = {.lex_state = 340, .external_lex_state = 14}, - [6824] = {.lex_state = 340, .external_lex_state = 14}, - [6825] = {.lex_state = 340, .external_lex_state = 14}, - [6826] = {.lex_state = 340, .external_lex_state = 23}, - [6827] = {.lex_state = 340}, - [6828] = {.lex_state = 340, .external_lex_state = 23}, - [6829] = {.lex_state = 340}, - [6830] = {.lex_state = 340}, - [6831] = {.lex_state = 340}, - [6832] = {.lex_state = 340}, - [6833] = {.lex_state = 340, .external_lex_state = 23}, - [6834] = {.lex_state = 340, .external_lex_state = 24}, - [6835] = {.lex_state = 340, .external_lex_state = 23}, - [6836] = {.lex_state = 340, .external_lex_state = 23}, - [6837] = {.lex_state = 340, .external_lex_state = 23}, - [6838] = {.lex_state = 340, .external_lex_state = 23}, - [6839] = {.lex_state = 340, .external_lex_state = 23}, - [6840] = {.lex_state = 340}, - [6841] = {.lex_state = 340, .external_lex_state = 23}, - [6842] = {.lex_state = 340, .external_lex_state = 24}, - [6843] = {.lex_state = 340}, - [6844] = {.lex_state = 340, .external_lex_state = 23}, - [6845] = {.lex_state = 340, .external_lex_state = 23}, - [6846] = {.lex_state = 340}, - [6847] = {.lex_state = 340, .external_lex_state = 23}, - [6848] = {.lex_state = 340}, - [6849] = {.lex_state = 340, .external_lex_state = 23}, - [6850] = {.lex_state = 340, .external_lex_state = 23}, - [6851] = {.lex_state = 340, .external_lex_state = 14}, - [6852] = {.lex_state = 340, .external_lex_state = 23}, - [6853] = {.lex_state = 340, .external_lex_state = 14}, - [6854] = {.lex_state = 340, .external_lex_state = 23}, - [6855] = {.lex_state = 340, .external_lex_state = 14}, - [6856] = {.lex_state = 131}, - [6857] = {.lex_state = 340, .external_lex_state = 14}, - [6858] = {.lex_state = 340, .external_lex_state = 23}, - [6859] = {.lex_state = 340}, - [6860] = {.lex_state = 340}, - [6861] = {.lex_state = 340, .external_lex_state = 23}, - [6862] = {.lex_state = 340}, - [6863] = {.lex_state = 340}, - [6864] = {.lex_state = 340, .external_lex_state = 23}, - [6865] = {.lex_state = 340}, - [6866] = {.lex_state = 340}, - [6867] = {.lex_state = 340, .external_lex_state = 14}, - [6868] = {.lex_state = 340, .external_lex_state = 23}, - [6869] = {.lex_state = 340, .external_lex_state = 23}, - [6870] = {.lex_state = 340}, - [6871] = {.lex_state = 340, .external_lex_state = 23}, - [6872] = {.lex_state = 340, .external_lex_state = 24}, - [6873] = {.lex_state = 340, .external_lex_state = 14}, - [6874] = {.lex_state = 340, .external_lex_state = 23}, - [6875] = {.lex_state = 340, .external_lex_state = 14}, - [6876] = {.lex_state = 340, .external_lex_state = 17}, - [6877] = {.lex_state = 340, .external_lex_state = 23}, - [6878] = {.lex_state = 340}, - [6879] = {.lex_state = 340, .external_lex_state = 23}, - [6880] = {.lex_state = 340, .external_lex_state = 24}, - [6881] = {.lex_state = 340, .external_lex_state = 23}, - [6882] = {.lex_state = 340}, - [6883] = {.lex_state = 340, .external_lex_state = 23}, - [6884] = {.lex_state = 340, .external_lex_state = 23}, - [6885] = {.lex_state = 340, .external_lex_state = 23}, - [6886] = {.lex_state = 340, .external_lex_state = 23}, - [6887] = {.lex_state = 340}, - [6888] = {.lex_state = 340, .external_lex_state = 23}, - [6889] = {.lex_state = 340, .external_lex_state = 14}, - [6890] = {.lex_state = 340, .external_lex_state = 23}, - [6891] = {.lex_state = 340, .external_lex_state = 14}, - [6892] = {.lex_state = 131}, - [6893] = {.lex_state = 340, .external_lex_state = 14}, - [6894] = {.lex_state = 340, .external_lex_state = 23}, - [6895] = {.lex_state = 340, .external_lex_state = 17}, - [6896] = {.lex_state = 340, .external_lex_state = 23}, - [6897] = {.lex_state = 340, .external_lex_state = 23}, - [6898] = {.lex_state = 340, .external_lex_state = 23}, - [6899] = {.lex_state = 340}, - [6900] = {.lex_state = 340, .external_lex_state = 23}, - [6901] = {.lex_state = 340, .external_lex_state = 23}, - [6902] = {.lex_state = 340, .external_lex_state = 23}, - [6903] = {.lex_state = 340, .external_lex_state = 23}, - [6904] = {.lex_state = 340}, - [6905] = {.lex_state = 340, .external_lex_state = 23}, - [6906] = {.lex_state = 131}, - [6907] = {.lex_state = 340, .external_lex_state = 23}, - [6908] = {.lex_state = 340, .external_lex_state = 23}, - [6909] = {.lex_state = 340, .external_lex_state = 23}, - [6910] = {.lex_state = 340}, - [6911] = {.lex_state = 340}, - [6912] = {.lex_state = 340}, - [6913] = {.lex_state = 340, .external_lex_state = 24}, - [6914] = {.lex_state = 340, .external_lex_state = 23}, - [6915] = {.lex_state = 340, .external_lex_state = 23}, - [6916] = {.lex_state = 340}, - [6917] = {.lex_state = 340, .external_lex_state = 24}, - [6918] = {.lex_state = 340}, - [6919] = {.lex_state = 340, .external_lex_state = 23}, - [6920] = {.lex_state = 340}, - [6921] = {.lex_state = 340, .external_lex_state = 23}, - [6922] = {.lex_state = 340, .external_lex_state = 23}, - [6923] = {.lex_state = 340, .external_lex_state = 23}, - [6924] = {.lex_state = 340}, - [6925] = {.lex_state = 340}, - [6926] = {.lex_state = 340}, - [6927] = {.lex_state = 340, .external_lex_state = 23}, - [6928] = {.lex_state = 340}, - [6929] = {.lex_state = 340, .external_lex_state = 23}, - [6930] = {.lex_state = 340, .external_lex_state = 23}, - [6931] = {.lex_state = 340}, - [6932] = {.lex_state = 340, .external_lex_state = 23}, - [6933] = {.lex_state = 340, .external_lex_state = 23}, - [6934] = {.lex_state = 340, .external_lex_state = 23}, - [6935] = {.lex_state = 131}, - [6936] = {.lex_state = 340, .external_lex_state = 17}, - [6937] = {.lex_state = 340, .external_lex_state = 17}, - [6938] = {.lex_state = 340, .external_lex_state = 17}, - [6939] = {.lex_state = 340}, - [6940] = {.lex_state = 340, .external_lex_state = 24}, - [6941] = {.lex_state = 340}, - [6942] = {.lex_state = 340, .external_lex_state = 23}, - [6943] = {.lex_state = 340}, - [6944] = {.lex_state = 340, .external_lex_state = 23}, - [6945] = {.lex_state = 340}, - [6946] = {.lex_state = 340, .external_lex_state = 23}, - [6947] = {.lex_state = 340, .external_lex_state = 23}, - [6948] = {.lex_state = 340, .external_lex_state = 23}, - [6949] = {.lex_state = 340, .external_lex_state = 17}, - [6950] = {.lex_state = 340, .external_lex_state = 23}, - [6951] = {.lex_state = 340}, - [6952] = {.lex_state = 340, .external_lex_state = 17}, - [6953] = {.lex_state = 340, .external_lex_state = 23}, - [6954] = {.lex_state = 340}, - [6955] = {.lex_state = 340}, - [6956] = {.lex_state = 340, .external_lex_state = 24}, - [6957] = {.lex_state = 340, .external_lex_state = 14}, - [6958] = {.lex_state = 340}, - [6959] = {.lex_state = 340}, - [6960] = {.lex_state = 340, .external_lex_state = 17}, - [6961] = {.lex_state = 340}, - [6962] = {.lex_state = 340}, - [6963] = {.lex_state = 340}, - [6964] = {.lex_state = 340, .external_lex_state = 23}, - [6965] = {.lex_state = 340, .external_lex_state = 23}, - [6966] = {.lex_state = 340, .external_lex_state = 25}, - [6967] = {.lex_state = 340}, - [6968] = {.lex_state = 340}, - [6969] = {.lex_state = 1}, - [6970] = {.lex_state = 340}, - [6971] = {.lex_state = 340}, - [6972] = {.lex_state = 340}, - [6973] = {.lex_state = 340}, - [6974] = {.lex_state = 340}, - [6975] = {.lex_state = 340}, - [6976] = {.lex_state = 340}, - [6977] = {.lex_state = 340}, - [6978] = {.lex_state = 340, .external_lex_state = 16}, - [6979] = {.lex_state = 340}, - [6980] = {.lex_state = 340}, - [6981] = {.lex_state = 340, .external_lex_state = 16}, - [6982] = {.lex_state = 340}, - [6983] = {.lex_state = 340, .external_lex_state = 16}, - [6984] = {.lex_state = 340, .external_lex_state = 18}, - [6985] = {.lex_state = 340, .external_lex_state = 25}, - [6986] = {.lex_state = 340, .external_lex_state = 20}, - [6987] = {.lex_state = 340, .external_lex_state = 16}, - [6988] = {.lex_state = 340, .external_lex_state = 16}, - [6989] = {.lex_state = 340}, - [6990] = {.lex_state = 340, .external_lex_state = 16}, - [6991] = {.lex_state = 340, .external_lex_state = 26}, - [6992] = {.lex_state = 340}, - [6993] = {.lex_state = 340}, - [6994] = {.lex_state = 340, .external_lex_state = 16}, - [6995] = {.lex_state = 131}, - [6996] = {.lex_state = 340}, - [6997] = {.lex_state = 340}, - [6998] = {.lex_state = 340}, - [6999] = {.lex_state = 340, .external_lex_state = 18}, - [7000] = {.lex_state = 340}, - [7001] = {.lex_state = 340, .external_lex_state = 16}, - [7002] = {.lex_state = 340}, - [7003] = {.lex_state = 340}, - [7004] = {.lex_state = 340, .external_lex_state = 16}, - [7005] = {.lex_state = 340, .external_lex_state = 18}, - [7006] = {.lex_state = 340}, - [7007] = {.lex_state = 340, .external_lex_state = 26}, - [7008] = {.lex_state = 340, .external_lex_state = 16}, - [7009] = {.lex_state = 340, .external_lex_state = 16}, - [7010] = {.lex_state = 340, .external_lex_state = 16}, - [7011] = {.lex_state = 340, .external_lex_state = 16}, - [7012] = {.lex_state = 340, .external_lex_state = 16}, - [7013] = {.lex_state = 340}, - [7014] = {.lex_state = 340, .external_lex_state = 20}, - [7015] = {.lex_state = 340, .external_lex_state = 27}, - [7016] = {.lex_state = 340, .external_lex_state = 27}, - [7017] = {.lex_state = 340}, - [7018] = {.lex_state = 340, .external_lex_state = 25}, - [7019] = {.lex_state = 340}, - [7020] = {.lex_state = 340}, - [7021] = {.lex_state = 340}, - [7022] = {.lex_state = 340, .external_lex_state = 20}, - [7023] = {.lex_state = 340}, - [7024] = {.lex_state = 340}, - [7025] = {.lex_state = 340, .external_lex_state = 26}, - [7026] = {.lex_state = 340}, - [7027] = {.lex_state = 340}, - [7028] = {.lex_state = 131}, - [7029] = {.lex_state = 340}, - [7030] = {.lex_state = 340}, - [7031] = {.lex_state = 340, .external_lex_state = 20}, - [7032] = {.lex_state = 340}, - [7033] = {.lex_state = 340, .external_lex_state = 26}, - [7034] = {.lex_state = 340}, - [7035] = {.lex_state = 340, .external_lex_state = 20}, - [7036] = {.lex_state = 340}, - [7037] = {.lex_state = 340, .external_lex_state = 18}, - [7038] = {.lex_state = 131}, - [7039] = {.lex_state = 340}, - [7040] = {.lex_state = 340, .external_lex_state = 16}, - [7041] = {.lex_state = 340, .external_lex_state = 16}, - [7042] = {.lex_state = 340}, - [7043] = {.lex_state = 1}, - [7044] = {.lex_state = 340, .external_lex_state = 26}, - [7045] = {.lex_state = 340}, - [7046] = {.lex_state = 340}, - [7047] = {.lex_state = 340}, - [7048] = {.lex_state = 131}, - [7049] = {.lex_state = 340, .external_lex_state = 16}, - [7050] = {.lex_state = 340, .external_lex_state = 16}, - [7051] = {.lex_state = 131}, - [7052] = {.lex_state = 340}, - [7053] = {.lex_state = 340}, - [7054] = {.lex_state = 340}, - [7055] = {.lex_state = 340}, - [7056] = {.lex_state = 340}, - [7057] = {.lex_state = 340, .external_lex_state = 16}, - [7058] = {.lex_state = 340}, - [7059] = {.lex_state = 340, .external_lex_state = 25}, - [7060] = {.lex_state = 340}, - [7061] = {.lex_state = 340}, - [7062] = {.lex_state = 340}, - [7063] = {.lex_state = 340, .external_lex_state = 16}, - [7064] = {.lex_state = 340}, - [7065] = {.lex_state = 340}, + [6583] = {.lex_state = 341}, + [6584] = {.lex_state = 341}, + [6585] = {.lex_state = 341, .external_lex_state = 23}, + [6586] = {.lex_state = 341, .external_lex_state = 23}, + [6587] = {.lex_state = 341, .external_lex_state = 23}, + [6588] = {.lex_state = 341, .external_lex_state = 24}, + [6589] = {.lex_state = 341, .external_lex_state = 23}, + [6590] = {.lex_state = 341, .external_lex_state = 23}, + [6591] = {.lex_state = 341, .external_lex_state = 23}, + [6592] = {.lex_state = 341, .external_lex_state = 23}, + [6593] = {.lex_state = 341, .external_lex_state = 23}, + [6594] = {.lex_state = 341}, + [6595] = {.lex_state = 341}, + [6596] = {.lex_state = 341}, + [6597] = {.lex_state = 341, .external_lex_state = 23}, + [6598] = {.lex_state = 341, .external_lex_state = 23}, + [6599] = {.lex_state = 341, .external_lex_state = 23}, + [6600] = {.lex_state = 341, .external_lex_state = 23}, + [6601] = {.lex_state = 341, .external_lex_state = 23}, + [6602] = {.lex_state = 341, .external_lex_state = 23}, + [6603] = {.lex_state = 341, .external_lex_state = 23}, + [6604] = {.lex_state = 341, .external_lex_state = 23}, + [6605] = {.lex_state = 341, .external_lex_state = 23}, + [6606] = {.lex_state = 341}, + [6607] = {.lex_state = 341, .external_lex_state = 23}, + [6608] = {.lex_state = 341, .external_lex_state = 23}, + [6609] = {.lex_state = 341, .external_lex_state = 23}, + [6610] = {.lex_state = 341, .external_lex_state = 23}, + [6611] = {.lex_state = 341, .external_lex_state = 23}, + [6612] = {.lex_state = 341, .external_lex_state = 23}, + [6613] = {.lex_state = 341}, + [6614] = {.lex_state = 341}, + [6615] = {.lex_state = 341, .external_lex_state = 23}, + [6616] = {.lex_state = 341, .external_lex_state = 23}, + [6617] = {.lex_state = 341}, + [6618] = {.lex_state = 341, .external_lex_state = 23}, + [6619] = {.lex_state = 341, .external_lex_state = 23}, + [6620] = {.lex_state = 341}, + [6621] = {.lex_state = 341, .external_lex_state = 23}, + [6622] = {.lex_state = 341}, + [6623] = {.lex_state = 341, .external_lex_state = 23}, + [6624] = {.lex_state = 341, .external_lex_state = 14}, + [6625] = {.lex_state = 341, .external_lex_state = 23}, + [6626] = {.lex_state = 341, .external_lex_state = 23}, + [6627] = {.lex_state = 341}, + [6628] = {.lex_state = 341, .external_lex_state = 23}, + [6629] = {.lex_state = 341, .external_lex_state = 14}, + [6630] = {.lex_state = 341, .external_lex_state = 23}, + [6631] = {.lex_state = 341, .external_lex_state = 23}, + [6632] = {.lex_state = 341, .external_lex_state = 23}, + [6633] = {.lex_state = 341, .external_lex_state = 23}, + [6634] = {.lex_state = 341}, + [6635] = {.lex_state = 341, .external_lex_state = 23}, + [6636] = {.lex_state = 341}, + [6637] = {.lex_state = 341, .external_lex_state = 23}, + [6638] = {.lex_state = 341}, + [6639] = {.lex_state = 341, .external_lex_state = 23}, + [6640] = {.lex_state = 341, .external_lex_state = 23}, + [6641] = {.lex_state = 341, .external_lex_state = 23}, + [6642] = {.lex_state = 341, .external_lex_state = 23}, + [6643] = {.lex_state = 341, .external_lex_state = 23}, + [6644] = {.lex_state = 341}, + [6645] = {.lex_state = 341, .external_lex_state = 23}, + [6646] = {.lex_state = 341, .external_lex_state = 23}, + [6647] = {.lex_state = 341, .external_lex_state = 23}, + [6648] = {.lex_state = 341, .external_lex_state = 23}, + [6649] = {.lex_state = 341}, + [6650] = {.lex_state = 341}, + [6651] = {.lex_state = 341}, + [6652] = {.lex_state = 341}, + [6653] = {.lex_state = 341, .external_lex_state = 23}, + [6654] = {.lex_state = 341}, + [6655] = {.lex_state = 341, .external_lex_state = 23}, + [6656] = {.lex_state = 341}, + [6657] = {.lex_state = 341}, + [6658] = {.lex_state = 131}, + [6659] = {.lex_state = 341}, + [6660] = {.lex_state = 341, .external_lex_state = 23}, + [6661] = {.lex_state = 341}, + [6662] = {.lex_state = 341}, + [6663] = {.lex_state = 341, .external_lex_state = 23}, + [6664] = {.lex_state = 341}, + [6665] = {.lex_state = 341, .external_lex_state = 23}, + [6666] = {.lex_state = 341, .external_lex_state = 23}, + [6667] = {.lex_state = 341}, + [6668] = {.lex_state = 341}, + [6669] = {.lex_state = 341, .external_lex_state = 16}, + [6670] = {.lex_state = 341, .external_lex_state = 23}, + [6671] = {.lex_state = 341, .external_lex_state = 14}, + [6672] = {.lex_state = 341, .external_lex_state = 23}, + [6673] = {.lex_state = 341, .external_lex_state = 23}, + [6674] = {.lex_state = 341, .external_lex_state = 23}, + [6675] = {.lex_state = 341, .external_lex_state = 23}, + [6676] = {.lex_state = 341, .external_lex_state = 14}, + [6677] = {.lex_state = 341, .external_lex_state = 23}, + [6678] = {.lex_state = 341}, + [6679] = {.lex_state = 341}, + [6680] = {.lex_state = 341}, + [6681] = {.lex_state = 341, .external_lex_state = 14}, + [6682] = {.lex_state = 341, .external_lex_state = 23}, + [6683] = {.lex_state = 341, .external_lex_state = 23}, + [6684] = {.lex_state = 341, .external_lex_state = 23}, + [6685] = {.lex_state = 341, .external_lex_state = 23}, + [6686] = {.lex_state = 341, .external_lex_state = 23}, + [6687] = {.lex_state = 341, .external_lex_state = 23}, + [6688] = {.lex_state = 341, .external_lex_state = 23}, + [6689] = {.lex_state = 341, .external_lex_state = 23}, + [6690] = {.lex_state = 341, .external_lex_state = 23}, + [6691] = {.lex_state = 341}, + [6692] = {.lex_state = 341}, + [6693] = {.lex_state = 341}, + [6694] = {.lex_state = 341, .external_lex_state = 23}, + [6695] = {.lex_state = 341}, + [6696] = {.lex_state = 341}, + [6697] = {.lex_state = 341, .external_lex_state = 23}, + [6698] = {.lex_state = 341, .external_lex_state = 23}, + [6699] = {.lex_state = 341}, + [6700] = {.lex_state = 341, .external_lex_state = 23}, + [6701] = {.lex_state = 341}, + [6702] = {.lex_state = 341}, + [6703] = {.lex_state = 341, .external_lex_state = 23}, + [6704] = {.lex_state = 341}, + [6705] = {.lex_state = 131}, + [6706] = {.lex_state = 341}, + [6707] = {.lex_state = 341}, + [6708] = {.lex_state = 341, .external_lex_state = 23}, + [6709] = {.lex_state = 341}, + [6710] = {.lex_state = 341, .external_lex_state = 23}, + [6711] = {.lex_state = 341, .external_lex_state = 23}, + [6712] = {.lex_state = 341, .external_lex_state = 23}, + [6713] = {.lex_state = 341}, + [6714] = {.lex_state = 341}, + [6715] = {.lex_state = 341, .external_lex_state = 23}, + [6716] = {.lex_state = 341, .external_lex_state = 23}, + [6717] = {.lex_state = 341, .external_lex_state = 23}, + [6718] = {.lex_state = 341}, + [6719] = {.lex_state = 341}, + [6720] = {.lex_state = 341, .external_lex_state = 23}, + [6721] = {.lex_state = 341, .external_lex_state = 23}, + [6722] = {.lex_state = 341}, + [6723] = {.lex_state = 341}, + [6724] = {.lex_state = 341, .external_lex_state = 23}, + [6725] = {.lex_state = 341, .external_lex_state = 14}, + [6726] = {.lex_state = 341}, + [6727] = {.lex_state = 341}, + [6728] = {.lex_state = 341, .external_lex_state = 23}, + [6729] = {.lex_state = 341, .external_lex_state = 23}, + [6730] = {.lex_state = 341}, + [6731] = {.lex_state = 341, .external_lex_state = 16}, + [6732] = {.lex_state = 341}, + [6733] = {.lex_state = 341, .external_lex_state = 14}, + [6734] = {.lex_state = 341, .external_lex_state = 24}, + [6735] = {.lex_state = 341, .external_lex_state = 23}, + [6736] = {.lex_state = 341}, + [6737] = {.lex_state = 341, .external_lex_state = 14}, + [6738] = {.lex_state = 341, .external_lex_state = 23}, + [6739] = {.lex_state = 341, .external_lex_state = 24}, + [6740] = {.lex_state = 341}, + [6741] = {.lex_state = 341, .external_lex_state = 23}, + [6742] = {.lex_state = 341}, + [6743] = {.lex_state = 341, .external_lex_state = 23}, + [6744] = {.lex_state = 341, .external_lex_state = 23}, + [6745] = {.lex_state = 341, .external_lex_state = 23}, + [6746] = {.lex_state = 341, .external_lex_state = 23}, + [6747] = {.lex_state = 341, .external_lex_state = 23}, + [6748] = {.lex_state = 341, .external_lex_state = 23}, + [6749] = {.lex_state = 341}, + [6750] = {.lex_state = 341}, + [6751] = {.lex_state = 341, .external_lex_state = 23}, + [6752] = {.lex_state = 341, .external_lex_state = 24}, + [6753] = {.lex_state = 341, .external_lex_state = 16}, + [6754] = {.lex_state = 341, .external_lex_state = 16}, + [6755] = {.lex_state = 341, .external_lex_state = 23}, + [6756] = {.lex_state = 341, .external_lex_state = 23}, + [6757] = {.lex_state = 341}, + [6758] = {.lex_state = 341, .external_lex_state = 23}, + [6759] = {.lex_state = 341, .external_lex_state = 24}, + [6760] = {.lex_state = 341, .external_lex_state = 23}, + [6761] = {.lex_state = 341}, + [6762] = {.lex_state = 341, .external_lex_state = 16}, + [6763] = {.lex_state = 341, .external_lex_state = 16}, + [6764] = {.lex_state = 341, .external_lex_state = 16}, + [6765] = {.lex_state = 341, .external_lex_state = 23}, + [6766] = {.lex_state = 341, .external_lex_state = 23}, + [6767] = {.lex_state = 131}, + [6768] = {.lex_state = 341}, + [6769] = {.lex_state = 341, .external_lex_state = 23}, + [6770] = {.lex_state = 341, .external_lex_state = 23}, + [6771] = {.lex_state = 341, .external_lex_state = 23}, + [6772] = {.lex_state = 341}, + [6773] = {.lex_state = 341, .external_lex_state = 24}, + [6774] = {.lex_state = 341, .external_lex_state = 16}, + [6775] = {.lex_state = 341}, + [6776] = {.lex_state = 341, .external_lex_state = 14}, + [6777] = {.lex_state = 341, .external_lex_state = 24}, + [6778] = {.lex_state = 341, .external_lex_state = 16}, + [6779] = {.lex_state = 341, .external_lex_state = 16}, + [6780] = {.lex_state = 341, .external_lex_state = 16}, + [6781] = {.lex_state = 341, .external_lex_state = 16}, + [6782] = {.lex_state = 341}, + [6783] = {.lex_state = 341, .external_lex_state = 14}, + [6784] = {.lex_state = 341, .external_lex_state = 16}, + [6785] = {.lex_state = 341, .external_lex_state = 23}, + [6786] = {.lex_state = 341}, + [6787] = {.lex_state = 341, .external_lex_state = 16}, + [6788] = {.lex_state = 341, .external_lex_state = 23}, + [6789] = {.lex_state = 341, .external_lex_state = 23}, + [6790] = {.lex_state = 341}, + [6791] = {.lex_state = 341}, + [6792] = {.lex_state = 341, .external_lex_state = 23}, + [6793] = {.lex_state = 341, .external_lex_state = 23}, + [6794] = {.lex_state = 341, .external_lex_state = 16}, + [6795] = {.lex_state = 341}, + [6796] = {.lex_state = 341, .external_lex_state = 16}, + [6797] = {.lex_state = 341}, + [6798] = {.lex_state = 341, .external_lex_state = 24}, + [6799] = {.lex_state = 341, .external_lex_state = 16}, + [6800] = {.lex_state = 341}, + [6801] = {.lex_state = 341, .external_lex_state = 16}, + [6802] = {.lex_state = 341, .external_lex_state = 16}, + [6803] = {.lex_state = 341}, + [6804] = {.lex_state = 341, .external_lex_state = 14}, + [6805] = {.lex_state = 341, .external_lex_state = 24}, + [6806] = {.lex_state = 341}, + [6807] = {.lex_state = 341, .external_lex_state = 14}, + [6808] = {.lex_state = 341, .external_lex_state = 23}, + [6809] = {.lex_state = 341, .external_lex_state = 16}, + [6810] = {.lex_state = 341, .external_lex_state = 16}, + [6811] = {.lex_state = 341, .external_lex_state = 16}, + [6812] = {.lex_state = 341, .external_lex_state = 16}, + [6813] = {.lex_state = 341, .external_lex_state = 14}, + [6814] = {.lex_state = 341}, + [6815] = {.lex_state = 341, .external_lex_state = 16}, + [6816] = {.lex_state = 341}, + [6817] = {.lex_state = 341, .external_lex_state = 16}, + [6818] = {.lex_state = 341, .external_lex_state = 16}, + [6819] = {.lex_state = 341, .external_lex_state = 23}, + [6820] = {.lex_state = 341}, + [6821] = {.lex_state = 341}, + [6822] = {.lex_state = 341, .external_lex_state = 24}, + [6823] = {.lex_state = 341, .external_lex_state = 14}, + [6824] = {.lex_state = 341}, + [6825] = {.lex_state = 341, .external_lex_state = 16}, + [6826] = {.lex_state = 341, .external_lex_state = 16}, + [6827] = {.lex_state = 341, .external_lex_state = 16}, + [6828] = {.lex_state = 341, .external_lex_state = 24}, + [6829] = {.lex_state = 341}, + [6830] = {.lex_state = 341, .external_lex_state = 16}, + [6831] = {.lex_state = 341, .external_lex_state = 23}, + [6832] = {.lex_state = 341, .external_lex_state = 23}, + [6833] = {.lex_state = 341}, + [6834] = {.lex_state = 341}, + [6835] = {.lex_state = 341, .external_lex_state = 17}, + [6836] = {.lex_state = 341, .external_lex_state = 23}, + [6837] = {.lex_state = 341, .external_lex_state = 23}, + [6838] = {.lex_state = 341, .external_lex_state = 23}, + [6839] = {.lex_state = 341, .external_lex_state = 23}, + [6840] = {.lex_state = 341, .external_lex_state = 16}, + [6841] = {.lex_state = 341, .external_lex_state = 16}, + [6842] = {.lex_state = 341, .external_lex_state = 16}, + [6843] = {.lex_state = 341, .external_lex_state = 23}, + [6844] = {.lex_state = 341, .external_lex_state = 23}, + [6845] = {.lex_state = 341}, + [6846] = {.lex_state = 341, .external_lex_state = 23}, + [6847] = {.lex_state = 341, .external_lex_state = 23}, + [6848] = {.lex_state = 341, .external_lex_state = 23}, + [6849] = {.lex_state = 341}, + [6850] = {.lex_state = 341, .external_lex_state = 23}, + [6851] = {.lex_state = 341, .external_lex_state = 24}, + [6852] = {.lex_state = 341, .external_lex_state = 23}, + [6853] = {.lex_state = 341, .external_lex_state = 23}, + [6854] = {.lex_state = 341, .external_lex_state = 23}, + [6855] = {.lex_state = 341, .external_lex_state = 23}, + [6856] = {.lex_state = 341}, + [6857] = {.lex_state = 341}, + [6858] = {.lex_state = 341}, + [6859] = {.lex_state = 341, .external_lex_state = 24}, + [6860] = {.lex_state = 341}, + [6861] = {.lex_state = 341, .external_lex_state = 23}, + [6862] = {.lex_state = 341}, + [6863] = {.lex_state = 341, .external_lex_state = 23}, + [6864] = {.lex_state = 341}, + [6865] = {.lex_state = 341}, + [6866] = {.lex_state = 341}, + [6867] = {.lex_state = 341, .external_lex_state = 23}, + [6868] = {.lex_state = 341, .external_lex_state = 23}, + [6869] = {.lex_state = 341, .external_lex_state = 23}, + [6870] = {.lex_state = 341}, + [6871] = {.lex_state = 341, .external_lex_state = 23}, + [6872] = {.lex_state = 341, .external_lex_state = 23}, + [6873] = {.lex_state = 341}, + [6874] = {.lex_state = 341}, + [6875] = {.lex_state = 341, .external_lex_state = 23}, + [6876] = {.lex_state = 341, .external_lex_state = 24}, + [6877] = {.lex_state = 341, .external_lex_state = 23}, + [6878] = {.lex_state = 341, .external_lex_state = 23}, + [6879] = {.lex_state = 341}, + [6880] = {.lex_state = 341, .external_lex_state = 23}, + [6881] = {.lex_state = 341, .external_lex_state = 23}, + [6882] = {.lex_state = 341, .external_lex_state = 23}, + [6883] = {.lex_state = 341}, + [6884] = {.lex_state = 341, .external_lex_state = 23}, + [6885] = {.lex_state = 341, .external_lex_state = 24}, + [6886] = {.lex_state = 341}, + [6887] = {.lex_state = 341}, + [6888] = {.lex_state = 341, .external_lex_state = 23}, + [6889] = {.lex_state = 341, .external_lex_state = 17}, + [6890] = {.lex_state = 341, .external_lex_state = 23}, + [6891] = {.lex_state = 341, .external_lex_state = 17}, + [6892] = {.lex_state = 341}, + [6893] = {.lex_state = 341, .external_lex_state = 23}, + [6894] = {.lex_state = 341, .external_lex_state = 23}, + [6895] = {.lex_state = 341, .external_lex_state = 23}, + [6896] = {.lex_state = 341, .external_lex_state = 23}, + [6897] = {.lex_state = 341, .external_lex_state = 17}, + [6898] = {.lex_state = 341}, + [6899] = {.lex_state = 341, .external_lex_state = 23}, + [6900] = {.lex_state = 341, .external_lex_state = 23}, + [6901] = {.lex_state = 341}, + [6902] = {.lex_state = 341}, + [6903] = {.lex_state = 341, .external_lex_state = 17}, + [6904] = {.lex_state = 341, .external_lex_state = 17}, + [6905] = {.lex_state = 341}, + [6906] = {.lex_state = 341}, + [6907] = {.lex_state = 341, .external_lex_state = 17}, + [6908] = {.lex_state = 341, .external_lex_state = 24}, + [6909] = {.lex_state = 341, .external_lex_state = 23}, + [6910] = {.lex_state = 341, .external_lex_state = 23}, + [6911] = {.lex_state = 341, .external_lex_state = 23}, + [6912] = {.lex_state = 341}, + [6913] = {.lex_state = 341, .external_lex_state = 23}, + [6914] = {.lex_state = 341, .external_lex_state = 17}, + [6915] = {.lex_state = 341, .external_lex_state = 23}, + [6916] = {.lex_state = 341, .external_lex_state = 24}, + [6917] = {.lex_state = 341, .external_lex_state = 23}, + [6918] = {.lex_state = 341, .external_lex_state = 23}, + [6919] = {.lex_state = 341}, + [6920] = {.lex_state = 341, .external_lex_state = 23}, + [6921] = {.lex_state = 341, .external_lex_state = 23}, + [6922] = {.lex_state = 341, .external_lex_state = 23}, + [6923] = {.lex_state = 341}, + [6924] = {.lex_state = 341, .external_lex_state = 14}, + [6925] = {.lex_state = 341, .external_lex_state = 23}, + [6926] = {.lex_state = 341}, + [6927] = {.lex_state = 341, .external_lex_state = 23}, + [6928] = {.lex_state = 131}, + [6929] = {.lex_state = 341, .external_lex_state = 17}, + [6930] = {.lex_state = 341, .external_lex_state = 23}, + [6931] = {.lex_state = 341, .external_lex_state = 23}, + [6932] = {.lex_state = 341, .external_lex_state = 23}, + [6933] = {.lex_state = 341, .external_lex_state = 23}, + [6934] = {.lex_state = 341, .external_lex_state = 23}, + [6935] = {.lex_state = 341, .external_lex_state = 23}, + [6936] = {.lex_state = 341, .external_lex_state = 23}, + [6937] = {.lex_state = 341, .external_lex_state = 23}, + [6938] = {.lex_state = 341, .external_lex_state = 23}, + [6939] = {.lex_state = 341}, + [6940] = {.lex_state = 341, .external_lex_state = 23}, + [6941] = {.lex_state = 341, .external_lex_state = 23}, + [6942] = {.lex_state = 341, .external_lex_state = 23}, + [6943] = {.lex_state = 341, .external_lex_state = 14}, + [6944] = {.lex_state = 341, .external_lex_state = 14}, + [6945] = {.lex_state = 341, .external_lex_state = 14}, + [6946] = {.lex_state = 341}, + [6947] = {.lex_state = 341, .external_lex_state = 24}, + [6948] = {.lex_state = 341, .external_lex_state = 23}, + [6949] = {.lex_state = 341, .external_lex_state = 14}, + [6950] = {.lex_state = 341, .external_lex_state = 23}, + [6951] = {.lex_state = 341, .external_lex_state = 14}, + [6952] = {.lex_state = 341, .external_lex_state = 23}, + [6953] = {.lex_state = 341, .external_lex_state = 23}, + [6954] = {.lex_state = 341}, + [6955] = {.lex_state = 341, .external_lex_state = 14}, + [6956] = {.lex_state = 341, .external_lex_state = 24}, + [6957] = {.lex_state = 341}, + [6958] = {.lex_state = 341, .external_lex_state = 23}, + [6959] = {.lex_state = 341}, + [6960] = {.lex_state = 341, .external_lex_state = 23}, + [6961] = {.lex_state = 341, .external_lex_state = 14}, + [6962] = {.lex_state = 341, .external_lex_state = 23}, + [6963] = {.lex_state = 341}, + [6964] = {.lex_state = 341, .external_lex_state = 23}, + [6965] = {.lex_state = 341, .external_lex_state = 23}, + [6966] = {.lex_state = 341, .external_lex_state = 23}, + [6967] = {.lex_state = 341, .external_lex_state = 23}, + [6968] = {.lex_state = 341, .external_lex_state = 23}, + [6969] = {.lex_state = 131}, + [6970] = {.lex_state = 341, .external_lex_state = 23}, + [6971] = {.lex_state = 341, .external_lex_state = 14}, + [6972] = {.lex_state = 341, .external_lex_state = 23}, + [6973] = {.lex_state = 341, .external_lex_state = 23}, + [6974] = {.lex_state = 341, .external_lex_state = 23}, + [6975] = {.lex_state = 131}, + [6976] = {.lex_state = 341, .external_lex_state = 23}, + [6977] = {.lex_state = 341, .external_lex_state = 23}, + [6978] = {.lex_state = 341, .external_lex_state = 23}, + [6979] = {.lex_state = 341, .external_lex_state = 23}, + [6980] = {.lex_state = 341, .external_lex_state = 23}, + [6981] = {.lex_state = 341}, + [6982] = {.lex_state = 341, .external_lex_state = 23}, + [6983] = {.lex_state = 341}, + [6984] = {.lex_state = 341}, + [6985] = {.lex_state = 341}, + [6986] = {.lex_state = 341, .external_lex_state = 24}, + [6987] = {.lex_state = 341, .external_lex_state = 23}, + [6988] = {.lex_state = 341, .external_lex_state = 23}, + [6989] = {.lex_state = 341}, + [6990] = {.lex_state = 341, .external_lex_state = 23}, + [6991] = {.lex_state = 341}, + [6992] = {.lex_state = 341, .external_lex_state = 23}, + [6993] = {.lex_state = 341}, + [6994] = {.lex_state = 341, .external_lex_state = 23}, + [6995] = {.lex_state = 341, .external_lex_state = 23}, + [6996] = {.lex_state = 341, .external_lex_state = 24}, + [6997] = {.lex_state = 341}, + [6998] = {.lex_state = 341, .external_lex_state = 23}, + [6999] = {.lex_state = 341, .external_lex_state = 23}, + [7000] = {.lex_state = 341, .external_lex_state = 23}, + [7001] = {.lex_state = 341, .external_lex_state = 23}, + [7002] = {.lex_state = 341, .external_lex_state = 23}, + [7003] = {.lex_state = 341}, + [7004] = {.lex_state = 341, .external_lex_state = 23}, + [7005] = {.lex_state = 341, .external_lex_state = 23}, + [7006] = {.lex_state = 341, .external_lex_state = 23}, + [7007] = {.lex_state = 341, .external_lex_state = 23}, + [7008] = {.lex_state = 341}, + [7009] = {.lex_state = 341, .external_lex_state = 24}, + [7010] = {.lex_state = 341, .external_lex_state = 23}, + [7011] = {.lex_state = 341}, + [7012] = {.lex_state = 341}, + [7013] = {.lex_state = 341, .external_lex_state = 23}, + [7014] = {.lex_state = 341, .external_lex_state = 23}, + [7015] = {.lex_state = 341, .external_lex_state = 23}, + [7016] = {.lex_state = 341, .external_lex_state = 23}, + [7017] = {.lex_state = 341}, + [7018] = {.lex_state = 341, .external_lex_state = 23}, + [7019] = {.lex_state = 341}, + [7020] = {.lex_state = 341, .external_lex_state = 23}, + [7021] = {.lex_state = 341, .external_lex_state = 23}, + [7022] = {.lex_state = 131}, + [7023] = {.lex_state = 341}, + [7024] = {.lex_state = 341, .external_lex_state = 23}, + [7025] = {.lex_state = 341, .external_lex_state = 23}, + [7026] = {.lex_state = 341, .external_lex_state = 24}, + [7027] = {.lex_state = 341, .external_lex_state = 23}, + [7028] = {.lex_state = 341, .external_lex_state = 23}, + [7029] = {.lex_state = 341}, + [7030] = {.lex_state = 341, .external_lex_state = 23}, + [7031] = {.lex_state = 341, .external_lex_state = 23}, + [7032] = {.lex_state = 341}, + [7033] = {.lex_state = 341, .external_lex_state = 16}, + [7034] = {.lex_state = 131}, + [7035] = {.lex_state = 341}, + [7036] = {.lex_state = 341}, + [7037] = {.lex_state = 341, .external_lex_state = 21}, + [7038] = {.lex_state = 341, .external_lex_state = 16}, + [7039] = {.lex_state = 341, .external_lex_state = 21}, + [7040] = {.lex_state = 341}, + [7041] = {.lex_state = 341}, + [7042] = {.lex_state = 341, .external_lex_state = 16}, + [7043] = {.lex_state = 341, .external_lex_state = 16}, + [7044] = {.lex_state = 341}, + [7045] = {.lex_state = 341}, + [7046] = {.lex_state = 341, .external_lex_state = 16}, + [7047] = {.lex_state = 341, .external_lex_state = 16}, + [7048] = {.lex_state = 341, .external_lex_state = 25}, + [7049] = {.lex_state = 341, .external_lex_state = 25}, + [7050] = {.lex_state = 341}, + [7051] = {.lex_state = 341, .external_lex_state = 16}, + [7052] = {.lex_state = 341}, + [7053] = {.lex_state = 341, .external_lex_state = 26}, + [7054] = {.lex_state = 341}, + [7055] = {.lex_state = 341, .external_lex_state = 21}, + [7056] = {.lex_state = 341, .external_lex_state = 18}, + [7057] = {.lex_state = 341, .external_lex_state = 18}, + [7058] = {.lex_state = 341, .external_lex_state = 16}, + [7059] = {.lex_state = 341, .external_lex_state = 18}, + [7060] = {.lex_state = 341}, + [7061] = {.lex_state = 341}, + [7062] = {.lex_state = 341, .external_lex_state = 16}, + [7063] = {.lex_state = 131}, + [7064] = {.lex_state = 341}, + [7065] = {.lex_state = 341}, [7066] = {.lex_state = 131}, - [7067] = {.lex_state = 340}, - [7068] = {.lex_state = 340, .external_lex_state = 20}, - [7069] = {.lex_state = 340}, - [7070] = {.lex_state = 131}, - [7071] = {.lex_state = 340}, - [7072] = {.lex_state = 340, .external_lex_state = 27}, - [7073] = {.lex_state = 340, .external_lex_state = 27}, - [7074] = {.lex_state = 340, .external_lex_state = 25}, - [7075] = {.lex_state = 340, .external_lex_state = 25}, - [7076] = {.lex_state = 340}, - [7077] = {.lex_state = 340, .external_lex_state = 16}, - [7078] = {.lex_state = 340, .external_lex_state = 20}, - [7079] = {.lex_state = 340}, - [7080] = {.lex_state = 340}, - [7081] = {.lex_state = 340, .external_lex_state = 16}, - [7082] = {.lex_state = 340}, - [7083] = {.lex_state = 340}, - [7084] = {.lex_state = 340}, - [7085] = {.lex_state = 340}, - [7086] = {.lex_state = 340}, - [7087] = {.lex_state = 340}, - [7088] = {.lex_state = 131}, - [7089] = {.lex_state = 1}, - [7090] = {.lex_state = 340, .external_lex_state = 16}, - [7091] = {.lex_state = 340}, - [7092] = {.lex_state = 340}, - [7093] = {.lex_state = 340}, - [7094] = {.lex_state = 340}, - [7095] = {.lex_state = 131}, - [7096] = {.lex_state = 340, .external_lex_state = 16}, - [7097] = {.lex_state = 340}, - [7098] = {.lex_state = 340}, - [7099] = {.lex_state = 340}, - [7100] = {.lex_state = 340}, - [7101] = {.lex_state = 340}, - [7102] = {.lex_state = 340}, - [7103] = {.lex_state = 340}, - [7104] = {.lex_state = 131}, - [7105] = {.lex_state = 340}, - [7106] = {.lex_state = 340}, - [7107] = {.lex_state = 340}, - [7108] = {.lex_state = 340}, - [7109] = {.lex_state = 340}, - [7110] = {.lex_state = 340, .external_lex_state = 27}, - [7111] = {.lex_state = 340, .external_lex_state = 27}, - [7112] = {.lex_state = 340}, - [7113] = {.lex_state = 340, .external_lex_state = 25}, - [7114] = {.lex_state = 340}, - [7115] = {.lex_state = 340}, - [7116] = {.lex_state = 340, .external_lex_state = 20}, - [7117] = {.lex_state = 131}, + [7067] = {.lex_state = 341}, + [7068] = {.lex_state = 341, .external_lex_state = 16}, + [7069] = {.lex_state = 341, .external_lex_state = 16}, + [7070] = {.lex_state = 341, .external_lex_state = 18}, + [7071] = {.lex_state = 341, .external_lex_state = 18}, + [7072] = {.lex_state = 341}, + [7073] = {.lex_state = 341}, + [7074] = {.lex_state = 131}, + [7075] = {.lex_state = 341}, + [7076] = {.lex_state = 341}, + [7077] = {.lex_state = 341, .external_lex_state = 25}, + [7078] = {.lex_state = 341, .external_lex_state = 16}, + [7079] = {.lex_state = 341, .external_lex_state = 18}, + [7080] = {.lex_state = 131}, + [7081] = {.lex_state = 341}, + [7082] = {.lex_state = 341, .external_lex_state = 18}, + [7083] = {.lex_state = 341, .external_lex_state = 18}, + [7084] = {.lex_state = 341, .external_lex_state = 25}, + [7085] = {.lex_state = 341, .external_lex_state = 27}, + [7086] = {.lex_state = 341, .external_lex_state = 27}, + [7087] = {.lex_state = 341}, + [7088] = {.lex_state = 341, .external_lex_state = 26}, + [7089] = {.lex_state = 341}, + [7090] = {.lex_state = 341}, + [7091] = {.lex_state = 341}, + [7092] = {.lex_state = 341}, + [7093] = {.lex_state = 341, .external_lex_state = 16}, + [7094] = {.lex_state = 341, .external_lex_state = 25}, + [7095] = {.lex_state = 341, .external_lex_state = 16}, + [7096] = {.lex_state = 341}, + [7097] = {.lex_state = 341, .external_lex_state = 16}, + [7098] = {.lex_state = 341, .external_lex_state = 16}, + [7099] = {.lex_state = 341}, + [7100] = {.lex_state = 341}, + [7101] = {.lex_state = 341, .external_lex_state = 21}, + [7102] = {.lex_state = 341}, + [7103] = {.lex_state = 341, .external_lex_state = 21}, + [7104] = {.lex_state = 341, .external_lex_state = 18}, + [7105] = {.lex_state = 341, .external_lex_state = 21}, + [7106] = {.lex_state = 341}, + [7107] = {.lex_state = 341, .external_lex_state = 18}, + [7108] = {.lex_state = 341, .external_lex_state = 18}, + [7109] = {.lex_state = 341}, + [7110] = {.lex_state = 341, .external_lex_state = 16}, + [7111] = {.lex_state = 341, .external_lex_state = 16}, + [7112] = {.lex_state = 341}, + [7113] = {.lex_state = 341}, + [7114] = {.lex_state = 341, .external_lex_state = 21}, + [7115] = {.lex_state = 341}, + [7116] = {.lex_state = 341}, + [7117] = {.lex_state = 341}, [7118] = {.lex_state = 131}, - [7119] = {.lex_state = 340}, - [7120] = {.lex_state = 340}, - [7121] = {.lex_state = 340}, - [7122] = {.lex_state = 340}, - [7123] = {.lex_state = 340}, - [7124] = {.lex_state = 340}, - [7125] = {.lex_state = 340, .external_lex_state = 20}, - [7126] = {.lex_state = 340}, - [7127] = {.lex_state = 340}, - [7128] = {.lex_state = 340}, - [7129] = {.lex_state = 340, .external_lex_state = 20}, - [7130] = {.lex_state = 340}, - [7131] = {.lex_state = 340}, - [7132] = {.lex_state = 340, .external_lex_state = 16}, - [7133] = {.lex_state = 340, .external_lex_state = 16}, - [7134] = {.lex_state = 340, .external_lex_state = 16}, - [7135] = {.lex_state = 340}, - [7136] = {.lex_state = 340}, - [7137] = {.lex_state = 340}, - [7138] = {.lex_state = 340, .external_lex_state = 16}, - [7139] = {.lex_state = 340}, - [7140] = {.lex_state = 340}, - [7141] = {.lex_state = 131}, - [7142] = {.lex_state = 131}, - [7143] = {.lex_state = 340}, - [7144] = {.lex_state = 340}, - [7145] = {.lex_state = 340}, - [7146] = {.lex_state = 340}, - [7147] = {.lex_state = 340}, - [7148] = {.lex_state = 340}, - [7149] = {.lex_state = 340}, - [7150] = {.lex_state = 340}, - [7151] = {.lex_state = 340}, - [7152] = {.lex_state = 340}, - [7153] = {.lex_state = 340}, - [7154] = {.lex_state = 340}, - [7155] = {.lex_state = 340, .external_lex_state = 16}, - [7156] = {.lex_state = 340}, - [7157] = {.lex_state = 340}, - [7158] = {.lex_state = 340, .external_lex_state = 16}, - [7159] = {.lex_state = 340}, - [7160] = {.lex_state = 340}, - [7161] = {.lex_state = 340}, - [7162] = {.lex_state = 340}, - [7163] = {.lex_state = 340}, - [7164] = {.lex_state = 340}, - [7165] = {.lex_state = 340}, - [7166] = {.lex_state = 340}, - [7167] = {.lex_state = 340, .external_lex_state = 25}, - [7168] = {.lex_state = 340}, - [7169] = {.lex_state = 340, .external_lex_state = 16}, - [7170] = {.lex_state = 340}, - [7171] = {.lex_state = 340, .external_lex_state = 16}, - [7172] = {.lex_state = 340}, - [7173] = {.lex_state = 340}, - [7174] = {.lex_state = 340}, - [7175] = {.lex_state = 340}, - [7176] = {.lex_state = 340}, - [7177] = {.lex_state = 340}, - [7178] = {.lex_state = 340}, - [7179] = {.lex_state = 340}, - [7180] = {.lex_state = 340}, - [7181] = {.lex_state = 340}, - [7182] = {.lex_state = 131}, - [7183] = {.lex_state = 340, .external_lex_state = 16}, - [7184] = {.lex_state = 340}, - [7185] = {.lex_state = 340}, - [7186] = {.lex_state = 340, .external_lex_state = 16}, - [7187] = {.lex_state = 340}, - [7188] = {.lex_state = 340, .external_lex_state = 16}, - [7189] = {.lex_state = 340}, - [7190] = {.lex_state = 340}, - [7191] = {.lex_state = 340}, - [7192] = {.lex_state = 340}, - [7193] = {.lex_state = 340, .external_lex_state = 18}, - [7194] = {.lex_state = 131}, - [7195] = {.lex_state = 340}, - [7196] = {.lex_state = 131}, - [7197] = {.lex_state = 340}, - [7198] = {.lex_state = 340}, - [7199] = {.lex_state = 131}, - [7200] = {.lex_state = 340, .external_lex_state = 27}, - [7201] = {.lex_state = 340, .external_lex_state = 27}, - [7202] = {.lex_state = 340}, - [7203] = {.lex_state = 340, .external_lex_state = 25}, - [7204] = {.lex_state = 340}, - [7205] = {.lex_state = 340}, - [7206] = {.lex_state = 131}, - [7207] = {.lex_state = 131}, - [7208] = {.lex_state = 340, .external_lex_state = 16}, - [7209] = {.lex_state = 340}, - [7210] = {.lex_state = 340, .external_lex_state = 26}, - [7211] = {.lex_state = 340}, - [7212] = {.lex_state = 340}, - [7213] = {.lex_state = 340}, - [7214] = {.lex_state = 340}, - [7215] = {.lex_state = 340}, - [7216] = {.lex_state = 340, .external_lex_state = 20}, - [7217] = {.lex_state = 340, .external_lex_state = 16}, - [7218] = {.lex_state = 340, .external_lex_state = 16}, - [7219] = {.lex_state = 131}, - [7220] = {.lex_state = 131}, - [7221] = {.lex_state = 131}, - [7222] = {.lex_state = 340}, - [7223] = {.lex_state = 131}, - [7224] = {.lex_state = 340, .external_lex_state = 26}, - [7225] = {.lex_state = 340}, - [7226] = {.lex_state = 340, .external_lex_state = 16}, - [7227] = {.lex_state = 340}, - [7228] = {.lex_state = 340}, - [7229] = {.lex_state = 340, .external_lex_state = 16}, - [7230] = {.lex_state = 340}, - [7231] = {.lex_state = 340}, - [7232] = {.lex_state = 340}, - [7233] = {.lex_state = 131}, - [7234] = {.lex_state = 340}, + [7119] = {.lex_state = 341, .external_lex_state = 18}, + [7120] = {.lex_state = 341, .external_lex_state = 16}, + [7121] = {.lex_state = 341}, + [7122] = {.lex_state = 341, .external_lex_state = 25}, + [7123] = {.lex_state = 341}, + [7124] = {.lex_state = 341}, + [7125] = {.lex_state = 341}, + [7126] = {.lex_state = 341, .external_lex_state = 18}, + [7127] = {.lex_state = 341}, + [7128] = {.lex_state = 131}, + [7129] = {.lex_state = 341}, + [7130] = {.lex_state = 341}, + [7131] = {.lex_state = 341}, + [7132] = {.lex_state = 341}, + [7133] = {.lex_state = 341, .external_lex_state = 16}, + [7134] = {.lex_state = 341, .external_lex_state = 16}, + [7135] = {.lex_state = 341}, + [7136] = {.lex_state = 341}, + [7137] = {.lex_state = 341}, + [7138] = {.lex_state = 341}, + [7139] = {.lex_state = 341}, + [7140] = {.lex_state = 341}, + [7141] = {.lex_state = 341}, + [7142] = {.lex_state = 341}, + [7143] = {.lex_state = 341}, + [7144] = {.lex_state = 341}, + [7145] = {.lex_state = 341, .external_lex_state = 16}, + [7146] = {.lex_state = 341, .external_lex_state = 26}, + [7147] = {.lex_state = 341}, + [7148] = {.lex_state = 341}, + [7149] = {.lex_state = 341, .external_lex_state = 21}, + [7150] = {.lex_state = 341}, + [7151] = {.lex_state = 341}, + [7152] = {.lex_state = 341, .external_lex_state = 16}, + [7153] = {.lex_state = 341, .external_lex_state = 16}, + [7154] = {.lex_state = 341, .external_lex_state = 26}, + [7155] = {.lex_state = 341}, + [7156] = {.lex_state = 341}, + [7157] = {.lex_state = 341}, + [7158] = {.lex_state = 341}, + [7159] = {.lex_state = 341, .external_lex_state = 27}, + [7160] = {.lex_state = 341, .external_lex_state = 27}, + [7161] = {.lex_state = 341}, + [7162] = {.lex_state = 341}, + [7163] = {.lex_state = 341}, + [7164] = {.lex_state = 341}, + [7165] = {.lex_state = 341}, + [7166] = {.lex_state = 341, .external_lex_state = 16}, + [7167] = {.lex_state = 341, .external_lex_state = 16}, + [7168] = {.lex_state = 341}, + [7169] = {.lex_state = 341}, + [7170] = {.lex_state = 341}, + [7171] = {.lex_state = 341}, + [7172] = {.lex_state = 341, .external_lex_state = 18}, + [7173] = {.lex_state = 341}, + [7174] = {.lex_state = 341}, + [7175] = {.lex_state = 341}, + [7176] = {.lex_state = 341, .external_lex_state = 18}, + [7177] = {.lex_state = 341, .external_lex_state = 16}, + [7178] = {.lex_state = 341}, + [7179] = {.lex_state = 341, .external_lex_state = 18}, + [7180] = {.lex_state = 1}, + [7181] = {.lex_state = 341, .external_lex_state = 27}, + [7182] = {.lex_state = 341, .external_lex_state = 27}, + [7183] = {.lex_state = 341}, + [7184] = {.lex_state = 341, .external_lex_state = 26}, + [7185] = {.lex_state = 341}, + [7186] = {.lex_state = 341}, + [7187] = {.lex_state = 341}, + [7188] = {.lex_state = 341}, + [7189] = {.lex_state = 341, .external_lex_state = 16}, + [7190] = {.lex_state = 341}, + [7191] = {.lex_state = 341}, + [7192] = {.lex_state = 131}, + [7193] = {.lex_state = 341}, + [7194] = {.lex_state = 341}, + [7195] = {.lex_state = 341}, + [7196] = {.lex_state = 341, .external_lex_state = 21}, + [7197] = {.lex_state = 341, .external_lex_state = 16}, + [7198] = {.lex_state = 341}, + [7199] = {.lex_state = 341, .external_lex_state = 18}, + [7200] = {.lex_state = 341, .external_lex_state = 21}, + [7201] = {.lex_state = 341}, + [7202] = {.lex_state = 131}, + [7203] = {.lex_state = 341, .external_lex_state = 16}, + [7204] = {.lex_state = 341, .external_lex_state = 16}, + [7205] = {.lex_state = 341}, + [7206] = {.lex_state = 341}, + [7207] = {.lex_state = 341}, + [7208] = {.lex_state = 341}, + [7209] = {.lex_state = 341}, + [7210] = {.lex_state = 341}, + [7211] = {.lex_state = 341, .external_lex_state = 25}, + [7212] = {.lex_state = 341, .external_lex_state = 18}, + [7213] = {.lex_state = 341, .external_lex_state = 16}, + [7214] = {.lex_state = 341}, + [7215] = {.lex_state = 341}, + [7216] = {.lex_state = 131}, + [7217] = {.lex_state = 341}, + [7218] = {.lex_state = 341}, + [7219] = {.lex_state = 341}, + [7220] = {.lex_state = 341}, + [7221] = {.lex_state = 341}, + [7222] = {.lex_state = 341}, + [7223] = {.lex_state = 341}, + [7224] = {.lex_state = 341}, + [7225] = {.lex_state = 341}, + [7226] = {.lex_state = 341}, + [7227] = {.lex_state = 341, .external_lex_state = 16}, + [7228] = {.lex_state = 341}, + [7229] = {.lex_state = 341}, + [7230] = {.lex_state = 341}, + [7231] = {.lex_state = 341}, + [7232] = {.lex_state = 341}, + [7233] = {.lex_state = 341}, + [7234] = {.lex_state = 131}, [7235] = {.lex_state = 131}, - [7236] = {.lex_state = 340, .external_lex_state = 16}, - [7237] = {.lex_state = 340, .external_lex_state = 18}, - [7238] = {.lex_state = 340}, - [7239] = {.lex_state = 340, .external_lex_state = 16}, - [7240] = {.lex_state = 340, .external_lex_state = 26}, - [7241] = {.lex_state = 340}, - [7242] = {.lex_state = 340, .external_lex_state = 25}, - [7243] = {.lex_state = 131}, - [7244] = {.lex_state = 340, .external_lex_state = 18}, - [7245] = {.lex_state = 131}, - [7246] = {.lex_state = 340}, - [7247] = {.lex_state = 340}, - [7248] = {.lex_state = 340, .external_lex_state = 16}, - [7249] = {.lex_state = 340, .external_lex_state = 18}, - [7250] = {.lex_state = 340}, - [7251] = {.lex_state = 340, .external_lex_state = 18}, - [7252] = {.lex_state = 131}, - [7253] = {.lex_state = 340}, - [7254] = {.lex_state = 340}, - [7255] = {.lex_state = 340}, - [7256] = {.lex_state = 340}, - [7257] = {.lex_state = 340}, - [7258] = {.lex_state = 340}, - [7259] = {.lex_state = 340, .external_lex_state = 27}, - [7260] = {.lex_state = 340, .external_lex_state = 27}, - [7261] = {.lex_state = 340}, - [7262] = {.lex_state = 340, .external_lex_state = 25}, - [7263] = {.lex_state = 340, .external_lex_state = 16}, - [7264] = {.lex_state = 340}, - [7265] = {.lex_state = 131}, - [7266] = {.lex_state = 340}, - [7267] = {.lex_state = 340}, - [7268] = {.lex_state = 340, .external_lex_state = 16}, - [7269] = {.lex_state = 131}, - [7270] = {.lex_state = 340}, - [7271] = {.lex_state = 131}, - [7272] = {.lex_state = 131}, - [7273] = {.lex_state = 340}, - [7274] = {.lex_state = 340, .external_lex_state = 20}, - [7275] = {.lex_state = 340, .external_lex_state = 16}, - [7276] = {.lex_state = 340, .external_lex_state = 16}, - [7277] = {.lex_state = 340, .external_lex_state = 16}, - [7278] = {.lex_state = 340, .external_lex_state = 16}, - [7279] = {.lex_state = 340}, - [7280] = {.lex_state = 340}, - [7281] = {.lex_state = 340}, - [7282] = {.lex_state = 340}, - [7283] = {.lex_state = 340}, - [7284] = {.lex_state = 340}, - [7285] = {.lex_state = 340}, - [7286] = {.lex_state = 340}, - [7287] = {.lex_state = 340}, - [7288] = {.lex_state = 340}, - [7289] = {.lex_state = 340, .external_lex_state = 18}, - [7290] = {.lex_state = 340}, - [7291] = {.lex_state = 340}, - [7292] = {.lex_state = 340}, - [7293] = {.lex_state = 340, .external_lex_state = 16}, - [7294] = {.lex_state = 131}, - [7295] = {.lex_state = 340}, - [7296] = {.lex_state = 131}, - [7297] = {.lex_state = 340, .external_lex_state = 16}, + [7236] = {.lex_state = 341}, + [7237] = {.lex_state = 341, .external_lex_state = 16}, + [7238] = {.lex_state = 341}, + [7239] = {.lex_state = 341, .external_lex_state = 26}, + [7240] = {.lex_state = 341}, + [7241] = {.lex_state = 341}, + [7242] = {.lex_state = 341}, + [7243] = {.lex_state = 341, .external_lex_state = 16}, + [7244] = {.lex_state = 341}, + [7245] = {.lex_state = 341, .external_lex_state = 26}, + [7246] = {.lex_state = 341}, + [7247] = {.lex_state = 341}, + [7248] = {.lex_state = 341, .external_lex_state = 25}, + [7249] = {.lex_state = 131}, + [7250] = {.lex_state = 1}, + [7251] = {.lex_state = 341}, + [7252] = {.lex_state = 341}, + [7253] = {.lex_state = 341}, + [7254] = {.lex_state = 341}, + [7255] = {.lex_state = 341}, + [7256] = {.lex_state = 341}, + [7257] = {.lex_state = 341}, + [7258] = {.lex_state = 341, .external_lex_state = 16}, + [7259] = {.lex_state = 131}, + [7260] = {.lex_state = 341}, + [7261] = {.lex_state = 341}, + [7262] = {.lex_state = 341}, + [7263] = {.lex_state = 341}, + [7264] = {.lex_state = 341}, + [7265] = {.lex_state = 341}, + [7266] = {.lex_state = 131}, + [7267] = {.lex_state = 131}, + [7268] = {.lex_state = 1}, + [7269] = {.lex_state = 341}, + [7270] = {.lex_state = 341}, + [7271] = {.lex_state = 341}, + [7272] = {.lex_state = 341, .external_lex_state = 27}, + [7273] = {.lex_state = 341, .external_lex_state = 27}, + [7274] = {.lex_state = 341}, + [7275] = {.lex_state = 341, .external_lex_state = 26}, + [7276] = {.lex_state = 341}, + [7277] = {.lex_state = 341}, + [7278] = {.lex_state = 131}, + [7279] = {.lex_state = 341}, + [7280] = {.lex_state = 341}, + [7281] = {.lex_state = 341}, + [7282] = {.lex_state = 341}, + [7283] = {.lex_state = 341}, + [7284] = {.lex_state = 341}, + [7285] = {.lex_state = 341}, + [7286] = {.lex_state = 131}, + [7287] = {.lex_state = 341}, + [7288] = {.lex_state = 341, .external_lex_state = 21}, + [7289] = {.lex_state = 341, .external_lex_state = 16}, + [7290] = {.lex_state = 341, .external_lex_state = 16}, + [7291] = {.lex_state = 341}, + [7292] = {.lex_state = 341}, + [7293] = {.lex_state = 341}, + [7294] = {.lex_state = 341}, + [7295] = {.lex_state = 341}, + [7296] = {.lex_state = 341}, + [7297] = {.lex_state = 341, .external_lex_state = 16}, [7298] = {.lex_state = 131}, - [7299] = {.lex_state = 340, .external_lex_state = 25}, - [7300] = {.lex_state = 340, .external_lex_state = 16}, - [7301] = {.lex_state = 131}, - [7302] = {.lex_state = 131}, - [7303] = {.lex_state = 340, .external_lex_state = 16}, - [7304] = {.lex_state = 340}, - [7305] = {.lex_state = 340, .external_lex_state = 18}, - [7306] = {.lex_state = 340, .external_lex_state = 16}, - [7307] = {.lex_state = 340}, - [7308] = {.lex_state = 340}, - [7309] = {.lex_state = 340}, - [7310] = {.lex_state = 340, .external_lex_state = 18}, - [7311] = {.lex_state = 340, .external_lex_state = 26}, - [7312] = {.lex_state = 131}, - [7313] = {.lex_state = 340, .external_lex_state = 27}, - [7314] = {.lex_state = 340, .external_lex_state = 27}, - [7315] = {.lex_state = 340}, - [7316] = {.lex_state = 340}, - [7317] = {.lex_state = 340}, - [7318] = {.lex_state = 340}, - [7319] = {.lex_state = 340}, - [7320] = {.lex_state = 340}, - [7321] = {.lex_state = 340}, - [7322] = {.lex_state = 340}, - [7323] = {.lex_state = 340, .external_lex_state = 16}, - [7324] = {.lex_state = 340}, - [7325] = {.lex_state = 131}, - [7326] = {.lex_state = 131}, - [7327] = {.lex_state = 131}, - [7328] = {.lex_state = 340, .external_lex_state = 20}, - [7329] = {.lex_state = 340, .external_lex_state = 16}, - [7330] = {.lex_state = 340, .external_lex_state = 16}, - [7331] = {.lex_state = 131}, - [7332] = {.lex_state = 131}, - [7333] = {.lex_state = 340}, - [7334] = {.lex_state = 340, .external_lex_state = 26}, - [7335] = {.lex_state = 340}, - [7336] = {.lex_state = 340}, - [7337] = {.lex_state = 131}, - [7338] = {.lex_state = 340}, - [7339] = {.lex_state = 340}, - [7340] = {.lex_state = 131}, - [7341] = {.lex_state = 340}, - [7342] = {.lex_state = 340}, - [7343] = {.lex_state = 340}, - [7344] = {.lex_state = 340, .external_lex_state = 16}, - [7345] = {.lex_state = 340}, - [7346] = {.lex_state = 340}, - [7347] = {.lex_state = 340, .external_lex_state = 16}, - [7348] = {.lex_state = 340}, - [7349] = {.lex_state = 340}, - [7350] = {.lex_state = 340}, - [7351] = {.lex_state = 340}, - [7352] = {.lex_state = 340, .external_lex_state = 16}, - [7353] = {.lex_state = 340, .external_lex_state = 25}, - [7354] = {.lex_state = 131}, + [7299] = {.lex_state = 341, .external_lex_state = 16}, + [7300] = {.lex_state = 341}, + [7301] = {.lex_state = 341}, + [7302] = {.lex_state = 341}, + [7303] = {.lex_state = 341}, + [7304] = {.lex_state = 341}, + [7305] = {.lex_state = 131}, + [7306] = {.lex_state = 341, .external_lex_state = 16}, + [7307] = {.lex_state = 341}, + [7308] = {.lex_state = 341}, + [7309] = {.lex_state = 341, .external_lex_state = 16}, + [7310] = {.lex_state = 341}, + [7311] = {.lex_state = 341}, + [7312] = {.lex_state = 341}, + [7313] = {.lex_state = 341}, + [7314] = {.lex_state = 341}, + [7315] = {.lex_state = 341, .external_lex_state = 26}, + [7316] = {.lex_state = 341, .external_lex_state = 18}, + [7317] = {.lex_state = 341}, + [7318] = {.lex_state = 341}, + [7319] = {.lex_state = 341}, + [7320] = {.lex_state = 341}, + [7321] = {.lex_state = 341}, + [7322] = {.lex_state = 341, .external_lex_state = 16}, + [7323] = {.lex_state = 341}, + [7324] = {.lex_state = 341}, + [7325] = {.lex_state = 341}, + [7326] = {.lex_state = 341}, + [7327] = {.lex_state = 341}, + [7328] = {.lex_state = 341}, + [7329] = {.lex_state = 341}, + [7330] = {.lex_state = 341}, + [7331] = {.lex_state = 341}, + [7332] = {.lex_state = 341, .external_lex_state = 27}, + [7333] = {.lex_state = 341, .external_lex_state = 27}, + [7334] = {.lex_state = 341}, + [7335] = {.lex_state = 341, .external_lex_state = 26}, + [7336] = {.lex_state = 131}, + [7337] = {.lex_state = 341}, + [7338] = {.lex_state = 341, .external_lex_state = 16}, + [7339] = {.lex_state = 341}, + [7340] = {.lex_state = 341}, + [7341] = {.lex_state = 341, .external_lex_state = 16}, + [7342] = {.lex_state = 341}, + [7343] = {.lex_state = 341}, + [7344] = {.lex_state = 341}, + [7345] = {.lex_state = 341, .external_lex_state = 16}, + [7346] = {.lex_state = 341, .external_lex_state = 16}, + [7347] = {.lex_state = 341, .external_lex_state = 21}, + [7348] = {.lex_state = 341, .external_lex_state = 16}, + [7349] = {.lex_state = 341, .external_lex_state = 16}, + [7350] = {.lex_state = 341}, + [7351] = {.lex_state = 341}, + [7352] = {.lex_state = 341, .external_lex_state = 16}, + [7353] = {.lex_state = 341, .external_lex_state = 16}, + [7354] = {.lex_state = 341}, [7355] = {.lex_state = 131}, - [7356] = {.lex_state = 131}, - [7357] = {.lex_state = 131}, - [7358] = {.lex_state = 340}, - [7359] = {.lex_state = 340, .external_lex_state = 26}, - [7360] = {.lex_state = 340, .external_lex_state = 26}, - [7361] = {.lex_state = 340}, - [7362] = {.lex_state = 340}, - [7363] = {.lex_state = 340}, - [7364] = {.lex_state = 340, .external_lex_state = 16}, - [7365] = {.lex_state = 131}, - [7366] = {.lex_state = 340}, - [7367] = {.lex_state = 340, .external_lex_state = 27}, - [7368] = {.lex_state = 340, .external_lex_state = 27}, - [7369] = {.lex_state = 340}, - [7370] = {.lex_state = 340, .external_lex_state = 25}, - [7371] = {.lex_state = 340, .external_lex_state = 16}, - [7372] = {.lex_state = 340}, - [7373] = {.lex_state = 340}, - [7374] = {.lex_state = 340}, - [7375] = {.lex_state = 340}, - [7376] = {.lex_state = 131}, - [7377] = {.lex_state = 340}, - [7378] = {.lex_state = 340}, - [7379] = {.lex_state = 340}, - [7380] = {.lex_state = 131}, - [7381] = {.lex_state = 131}, - [7382] = {.lex_state = 340, .external_lex_state = 20}, - [7383] = {.lex_state = 340, .external_lex_state = 16}, - [7384] = {.lex_state = 340, .external_lex_state = 16}, - [7385] = {.lex_state = 340}, - [7386] = {.lex_state = 131}, - [7387] = {.lex_state = 340}, - [7388] = {.lex_state = 340, .external_lex_state = 16}, - [7389] = {.lex_state = 131}, - [7390] = {.lex_state = 340}, - [7391] = {.lex_state = 340}, + [7356] = {.lex_state = 341, .external_lex_state = 16}, + [7357] = {.lex_state = 341}, + [7358] = {.lex_state = 341}, + [7359] = {.lex_state = 341}, + [7360] = {.lex_state = 341}, + [7361] = {.lex_state = 341, .external_lex_state = 16}, + [7362] = {.lex_state = 341}, + [7363] = {.lex_state = 341}, + [7364] = {.lex_state = 341}, + [7365] = {.lex_state = 341}, + [7366] = {.lex_state = 341}, + [7367] = {.lex_state = 341, .external_lex_state = 16}, + [7368] = {.lex_state = 341}, + [7369] = {.lex_state = 341}, + [7370] = {.lex_state = 341}, + [7371] = {.lex_state = 131}, + [7372] = {.lex_state = 341}, + [7373] = {.lex_state = 341, .external_lex_state = 26}, + [7374] = {.lex_state = 341, .external_lex_state = 16}, + [7375] = {.lex_state = 341}, + [7376] = {.lex_state = 341}, + [7377] = {.lex_state = 341, .external_lex_state = 18}, + [7378] = {.lex_state = 341}, + [7379] = {.lex_state = 341}, + [7380] = {.lex_state = 341, .external_lex_state = 16}, + [7381] = {.lex_state = 341}, + [7382] = {.lex_state = 341}, + [7383] = {.lex_state = 341}, + [7384] = {.lex_state = 341}, + [7385] = {.lex_state = 341, .external_lex_state = 18}, + [7386] = {.lex_state = 341, .external_lex_state = 21}, + [7387] = {.lex_state = 341, .external_lex_state = 27}, + [7388] = {.lex_state = 341, .external_lex_state = 27}, + [7389] = {.lex_state = 341}, + [7390] = {.lex_state = 341, .external_lex_state = 26}, + [7391] = {.lex_state = 341}, [7392] = {.lex_state = 131}, - [7393] = {.lex_state = 340}, - [7394] = {.lex_state = 340, .external_lex_state = 16}, - [7395] = {.lex_state = 340}, - [7396] = {.lex_state = 340}, - [7397] = {.lex_state = 340, .external_lex_state = 18}, - [7398] = {.lex_state = 340, .external_lex_state = 16}, - [7399] = {.lex_state = 340, .external_lex_state = 16}, - [7400] = {.lex_state = 340}, - [7401] = {.lex_state = 340, .external_lex_state = 25}, - [7402] = {.lex_state = 340}, - [7403] = {.lex_state = 131}, - [7404] = {.lex_state = 340}, - [7405] = {.lex_state = 131}, - [7406] = {.lex_state = 340, .external_lex_state = 16}, - [7407] = {.lex_state = 131}, - [7408] = {.lex_state = 340, .external_lex_state = 27}, - [7409] = {.lex_state = 340, .external_lex_state = 27}, - [7410] = {.lex_state = 340}, - [7411] = {.lex_state = 340, .external_lex_state = 25}, - [7412] = {.lex_state = 131}, - [7413] = {.lex_state = 340}, - [7414] = {.lex_state = 340}, - [7415] = {.lex_state = 131}, - [7416] = {.lex_state = 340}, - [7417] = {.lex_state = 340}, - [7418] = {.lex_state = 340}, - [7419] = {.lex_state = 340}, - [7420] = {.lex_state = 131}, - [7421] = {.lex_state = 340}, - [7422] = {.lex_state = 340, .external_lex_state = 18}, - [7423] = {.lex_state = 340, .external_lex_state = 20}, - [7424] = {.lex_state = 340, .external_lex_state = 16}, - [7425] = {.lex_state = 340, .external_lex_state = 16}, - [7426] = {.lex_state = 340}, - [7427] = {.lex_state = 340, .external_lex_state = 16}, - [7428] = {.lex_state = 131}, - [7429] = {.lex_state = 340}, - [7430] = {.lex_state = 131}, + [7393] = {.lex_state = 341}, + [7394] = {.lex_state = 131}, + [7395] = {.lex_state = 341}, + [7396] = {.lex_state = 341}, + [7397] = {.lex_state = 341}, + [7398] = {.lex_state = 341}, + [7399] = {.lex_state = 341, .external_lex_state = 18}, + [7400] = {.lex_state = 131}, + [7401] = {.lex_state = 341}, + [7402] = {.lex_state = 341, .external_lex_state = 21}, + [7403] = {.lex_state = 341, .external_lex_state = 16}, + [7404] = {.lex_state = 341, .external_lex_state = 16}, + [7405] = {.lex_state = 341}, + [7406] = {.lex_state = 341}, + [7407] = {.lex_state = 341}, + [7408] = {.lex_state = 341}, + [7409] = {.lex_state = 341, .external_lex_state = 25}, + [7410] = {.lex_state = 341, .external_lex_state = 16}, + [7411] = {.lex_state = 341, .external_lex_state = 16}, + [7412] = {.lex_state = 341, .external_lex_state = 16}, + [7413] = {.lex_state = 341}, + [7414] = {.lex_state = 341}, + [7415] = {.lex_state = 341}, + [7416] = {.lex_state = 131}, + [7417] = {.lex_state = 341}, + [7418] = {.lex_state = 341}, + [7419] = {.lex_state = 131}, + [7420] = {.lex_state = 341}, + [7421] = {.lex_state = 341}, + [7422] = {.lex_state = 341, .external_lex_state = 16}, + [7423] = {.lex_state = 341}, + [7424] = {.lex_state = 341}, + [7425] = {.lex_state = 341, .external_lex_state = 18}, + [7426] = {.lex_state = 131}, + [7427] = {.lex_state = 341}, + [7428] = {.lex_state = 341, .external_lex_state = 26}, + [7429] = {.lex_state = 131}, + [7430] = {.lex_state = 341, .external_lex_state = 25}, [7431] = {.lex_state = 131}, - [7432] = {.lex_state = 131}, - [7433] = {.lex_state = 340, .external_lex_state = 16}, - [7434] = {.lex_state = 340}, - [7435] = {.lex_state = 131}, - [7436] = {.lex_state = 340, .external_lex_state = 16}, - [7437] = {.lex_state = 340}, - [7438] = {.lex_state = 340, .external_lex_state = 18}, - [7439] = {.lex_state = 340, .external_lex_state = 16}, - [7440] = {.lex_state = 131}, - [7441] = {.lex_state = 340}, - [7442] = {.lex_state = 340, .external_lex_state = 25}, - [7443] = {.lex_state = 340, .external_lex_state = 26}, - [7444] = {.lex_state = 340}, - [7445] = {.lex_state = 340}, - [7446] = {.lex_state = 340}, - [7447] = {.lex_state = 340, .external_lex_state = 27}, - [7448] = {.lex_state = 340, .external_lex_state = 27}, - [7449] = {.lex_state = 340}, - [7450] = {.lex_state = 340, .external_lex_state = 25}, - [7451] = {.lex_state = 131}, - [7452] = {.lex_state = 340}, - [7453] = {.lex_state = 131}, - [7454] = {.lex_state = 340, .external_lex_state = 18}, - [7455] = {.lex_state = 340}, - [7456] = {.lex_state = 340}, - [7457] = {.lex_state = 340, .external_lex_state = 16}, - [7458] = {.lex_state = 340}, - [7459] = {.lex_state = 340}, - [7460] = {.lex_state = 131}, - [7461] = {.lex_state = 340}, - [7462] = {.lex_state = 340, .external_lex_state = 20}, - [7463] = {.lex_state = 340, .external_lex_state = 16}, - [7464] = {.lex_state = 340, .external_lex_state = 16}, - [7465] = {.lex_state = 131}, - [7466] = {.lex_state = 131}, - [7467] = {.lex_state = 340, .external_lex_state = 26}, - [7468] = {.lex_state = 131}, - [7469] = {.lex_state = 340, .external_lex_state = 26}, - [7470] = {.lex_state = 340}, - [7471] = {.lex_state = 131}, - [7472] = {.lex_state = 340, .external_lex_state = 18}, - [7473] = {.lex_state = 340}, - [7474] = {.lex_state = 340}, - [7475] = {.lex_state = 131}, - [7476] = {.lex_state = 340}, - [7477] = {.lex_state = 340}, - [7478] = {.lex_state = 340, .external_lex_state = 16}, - [7479] = {.lex_state = 340}, - [7480] = {.lex_state = 340}, - [7481] = {.lex_state = 340, .external_lex_state = 25}, - [7482] = {.lex_state = 340}, - [7483] = {.lex_state = 340, .external_lex_state = 18}, - [7484] = {.lex_state = 340}, - [7485] = {.lex_state = 340}, - [7486] = {.lex_state = 340, .external_lex_state = 27}, - [7487] = {.lex_state = 340, .external_lex_state = 27}, - [7488] = {.lex_state = 340}, - [7489] = {.lex_state = 340, .external_lex_state = 25}, - [7490] = {.lex_state = 340, .external_lex_state = 16}, - [7491] = {.lex_state = 340, .external_lex_state = 18}, - [7492] = {.lex_state = 340, .external_lex_state = 18}, - [7493] = {.lex_state = 131}, - [7494] = {.lex_state = 340}, - [7495] = {.lex_state = 131}, - [7496] = {.lex_state = 340}, - [7497] = {.lex_state = 340}, - [7498] = {.lex_state = 340}, - [7499] = {.lex_state = 131}, - [7500] = {.lex_state = 340, .external_lex_state = 16}, - [7501] = {.lex_state = 340, .external_lex_state = 20}, - [7502] = {.lex_state = 340, .external_lex_state = 16}, - [7503] = {.lex_state = 340, .external_lex_state = 16}, + [7432] = {.lex_state = 341, .external_lex_state = 21}, + [7433] = {.lex_state = 341}, + [7434] = {.lex_state = 341}, + [7435] = {.lex_state = 341}, + [7436] = {.lex_state = 341}, + [7437] = {.lex_state = 341}, + [7438] = {.lex_state = 341}, + [7439] = {.lex_state = 341}, + [7440] = {.lex_state = 341}, + [7441] = {.lex_state = 341}, + [7442] = {.lex_state = 341, .external_lex_state = 27}, + [7443] = {.lex_state = 341, .external_lex_state = 27}, + [7444] = {.lex_state = 341}, + [7445] = {.lex_state = 341, .external_lex_state = 26}, + [7446] = {.lex_state = 131}, + [7447] = {.lex_state = 131}, + [7448] = {.lex_state = 341}, + [7449] = {.lex_state = 341}, + [7450] = {.lex_state = 341}, + [7451] = {.lex_state = 341}, + [7452] = {.lex_state = 341}, + [7453] = {.lex_state = 341}, + [7454] = {.lex_state = 341, .external_lex_state = 16}, + [7455] = {.lex_state = 341, .external_lex_state = 16}, + [7456] = {.lex_state = 341}, + [7457] = {.lex_state = 341, .external_lex_state = 21}, + [7458] = {.lex_state = 341, .external_lex_state = 16}, + [7459] = {.lex_state = 341, .external_lex_state = 16}, + [7460] = {.lex_state = 341}, + [7461] = {.lex_state = 341}, + [7462] = {.lex_state = 341}, + [7463] = {.lex_state = 341}, + [7464] = {.lex_state = 341}, + [7465] = {.lex_state = 341}, + [7466] = {.lex_state = 341, .external_lex_state = 16}, + [7467] = {.lex_state = 341}, + [7468] = {.lex_state = 341, .external_lex_state = 16}, + [7469] = {.lex_state = 341}, + [7470] = {.lex_state = 341}, + [7471] = {.lex_state = 341}, + [7472] = {.lex_state = 341}, + [7473] = {.lex_state = 341}, + [7474] = {.lex_state = 341, .external_lex_state = 16}, + [7475] = {.lex_state = 341, .external_lex_state = 25}, + [7476] = {.lex_state = 341}, + [7477] = {.lex_state = 341, .external_lex_state = 26}, + [7478] = {.lex_state = 131}, + [7479] = {.lex_state = 341}, + [7480] = {.lex_state = 341}, + [7481] = {.lex_state = 341}, + [7482] = {.lex_state = 341}, + [7483] = {.lex_state = 341}, + [7484] = {.lex_state = 341, .external_lex_state = 27}, + [7485] = {.lex_state = 341, .external_lex_state = 27}, + [7486] = {.lex_state = 341}, + [7487] = {.lex_state = 341, .external_lex_state = 26}, + [7488] = {.lex_state = 341}, + [7489] = {.lex_state = 341}, + [7490] = {.lex_state = 341}, + [7491] = {.lex_state = 341}, + [7492] = {.lex_state = 341}, + [7493] = {.lex_state = 341}, + [7494] = {.lex_state = 341, .external_lex_state = 18}, + [7495] = {.lex_state = 341}, + [7496] = {.lex_state = 341}, + [7497] = {.lex_state = 341}, + [7498] = {.lex_state = 341}, + [7499] = {.lex_state = 341, .external_lex_state = 21}, + [7500] = {.lex_state = 341, .external_lex_state = 16}, + [7501] = {.lex_state = 341, .external_lex_state = 16}, + [7502] = {.lex_state = 341}, + [7503] = {.lex_state = 341}, [7504] = {.lex_state = 131}, - [7505] = {.lex_state = 340}, - [7506] = {.lex_state = 340}, - [7507] = {.lex_state = 340, .external_lex_state = 26}, - [7508] = {.lex_state = 340, .external_lex_state = 18}, - [7509] = {.lex_state = 340, .external_lex_state = 16}, - [7510] = {.lex_state = 340}, - [7511] = {.lex_state = 340, .external_lex_state = 16}, - [7512] = {.lex_state = 340}, - [7513] = {.lex_state = 131}, - [7514] = {.lex_state = 131}, - [7515] = {.lex_state = 340}, - [7516] = {.lex_state = 340, .external_lex_state = 16}, - [7517] = {.lex_state = 340, .external_lex_state = 16}, - [7518] = {.lex_state = 340, .external_lex_state = 23}, - [7519] = {.lex_state = 340}, - [7520] = {.lex_state = 340, .external_lex_state = 25}, + [7505] = {.lex_state = 341}, + [7506] = {.lex_state = 341}, + [7507] = {.lex_state = 131}, + [7508] = {.lex_state = 341, .external_lex_state = 16}, + [7509] = {.lex_state = 341}, + [7510] = {.lex_state = 341}, + [7511] = {.lex_state = 341}, + [7512] = {.lex_state = 341}, + [7513] = {.lex_state = 341, .external_lex_state = 25}, + [7514] = {.lex_state = 341}, + [7515] = {.lex_state = 341}, + [7516] = {.lex_state = 341, .external_lex_state = 16}, + [7517] = {.lex_state = 341}, + [7518] = {.lex_state = 341}, + [7519] = {.lex_state = 341, .external_lex_state = 26}, + [7520] = {.lex_state = 341}, [7521] = {.lex_state = 131}, - [7522] = {.lex_state = 340}, - [7523] = {.lex_state = 340, .external_lex_state = 20}, - [7524] = {.lex_state = 340}, - [7525] = {.lex_state = 340, .external_lex_state = 27}, - [7526] = {.lex_state = 340, .external_lex_state = 27}, - [7527] = {.lex_state = 340}, - [7528] = {.lex_state = 340, .external_lex_state = 25}, - [7529] = {.lex_state = 340}, - [7530] = {.lex_state = 340}, - [7531] = {.lex_state = 131}, - [7532] = {.lex_state = 340}, - [7533] = {.lex_state = 340, .external_lex_state = 16}, - [7534] = {.lex_state = 340, .external_lex_state = 16}, - [7535] = {.lex_state = 340}, - [7536] = {.lex_state = 340}, - [7537] = {.lex_state = 340, .external_lex_state = 18}, - [7538] = {.lex_state = 340, .external_lex_state = 18}, - [7539] = {.lex_state = 340, .external_lex_state = 20}, - [7540] = {.lex_state = 340, .external_lex_state = 16}, - [7541] = {.lex_state = 340, .external_lex_state = 16}, - [7542] = {.lex_state = 131}, - [7543] = {.lex_state = 340}, - [7544] = {.lex_state = 340, .external_lex_state = 16}, - [7545] = {.lex_state = 340, .external_lex_state = 16}, + [7522] = {.lex_state = 341}, + [7523] = {.lex_state = 341}, + [7524] = {.lex_state = 341, .external_lex_state = 27}, + [7525] = {.lex_state = 341, .external_lex_state = 27}, + [7526] = {.lex_state = 341}, + [7527] = {.lex_state = 341, .external_lex_state = 26}, + [7528] = {.lex_state = 341, .external_lex_state = 16}, + [7529] = {.lex_state = 131}, + [7530] = {.lex_state = 341}, + [7531] = {.lex_state = 341}, + [7532] = {.lex_state = 341}, + [7533] = {.lex_state = 341, .external_lex_state = 16}, + [7534] = {.lex_state = 341, .external_lex_state = 16}, + [7535] = {.lex_state = 341}, + [7536] = {.lex_state = 341, .external_lex_state = 18}, + [7537] = {.lex_state = 341, .external_lex_state = 25}, + [7538] = {.lex_state = 341}, + [7539] = {.lex_state = 341, .external_lex_state = 21}, + [7540] = {.lex_state = 341, .external_lex_state = 16}, + [7541] = {.lex_state = 341, .external_lex_state = 16}, + [7542] = {.lex_state = 341}, + [7543] = {.lex_state = 341}, + [7544] = {.lex_state = 341}, + [7545] = {.lex_state = 341}, [7546] = {.lex_state = 131}, - [7547] = {.lex_state = 131}, - [7548] = {.lex_state = 131}, - [7549] = {.lex_state = 340}, - [7550] = {.lex_state = 131}, - [7551] = {.lex_state = 340}, - [7552] = {.lex_state = 340}, - [7553] = {.lex_state = 340}, - [7554] = {.lex_state = 340, .external_lex_state = 16}, - [7555] = {.lex_state = 340}, - [7556] = {.lex_state = 131}, - [7557] = {.lex_state = 340, .external_lex_state = 25}, - [7558] = {.lex_state = 340, .external_lex_state = 16}, - [7559] = {.lex_state = 340, .external_lex_state = 27}, - [7560] = {.lex_state = 340, .external_lex_state = 27}, - [7561] = {.lex_state = 340}, - [7562] = {.lex_state = 340}, - [7563] = {.lex_state = 340}, - [7564] = {.lex_state = 340}, - [7565] = {.lex_state = 340, .external_lex_state = 25}, - [7566] = {.lex_state = 131}, - [7567] = {.lex_state = 340}, - [7568] = {.lex_state = 131}, - [7569] = {.lex_state = 340}, - [7570] = {.lex_state = 340}, - [7571] = {.lex_state = 340}, - [7572] = {.lex_state = 340, .external_lex_state = 27}, - [7573] = {.lex_state = 340, .external_lex_state = 27}, - [7574] = {.lex_state = 340}, - [7575] = {.lex_state = 340, .external_lex_state = 23}, - [7576] = {.lex_state = 340, .external_lex_state = 18}, - [7577] = {.lex_state = 340}, - [7578] = {.lex_state = 340, .external_lex_state = 18}, - [7579] = {.lex_state = 340}, - [7580] = {.lex_state = 340}, - [7581] = {.lex_state = 340, .external_lex_state = 18}, - [7582] = {.lex_state = 340, .external_lex_state = 27}, - [7583] = {.lex_state = 340, .external_lex_state = 27}, - [7584] = {.lex_state = 340}, - [7585] = {.lex_state = 340}, - [7586] = {.lex_state = 340}, - [7587] = {.lex_state = 340}, - [7588] = {.lex_state = 340}, - [7589] = {.lex_state = 340}, - [7590] = {.lex_state = 340}, - [7591] = {.lex_state = 340}, - [7592] = {.lex_state = 340, .external_lex_state = 27}, - [7593] = {.lex_state = 340, .external_lex_state = 27}, - [7594] = {.lex_state = 340}, - [7595] = {.lex_state = 340}, - [7596] = {.lex_state = 340, .external_lex_state = 16}, - [7597] = {.lex_state = 340}, - [7598] = {.lex_state = 340}, - [7599] = {.lex_state = 131}, - [7600] = {.lex_state = 340}, - [7601] = {.lex_state = 340, .external_lex_state = 27}, - [7602] = {.lex_state = 340, .external_lex_state = 27}, - [7603] = {.lex_state = 340}, - [7604] = {.lex_state = 131}, - [7605] = {.lex_state = 340, .external_lex_state = 18}, - [7606] = {.lex_state = 131}, - [7607] = {.lex_state = 131}, - [7608] = {.lex_state = 131}, - [7609] = {.lex_state = 340, .external_lex_state = 27}, - [7610] = {.lex_state = 340, .external_lex_state = 27}, - [7611] = {.lex_state = 340}, - [7612] = {.lex_state = 340}, - [7613] = {.lex_state = 340}, - [7614] = {.lex_state = 340}, - [7615] = {.lex_state = 131}, - [7616] = {.lex_state = 340}, - [7617] = {.lex_state = 340, .external_lex_state = 27}, - [7618] = {.lex_state = 340, .external_lex_state = 27}, - [7619] = {.lex_state = 340}, - [7620] = {.lex_state = 340}, - [7621] = {.lex_state = 340, .external_lex_state = 23}, - [7622] = {.lex_state = 340}, - [7623] = {.lex_state = 131}, - [7624] = {.lex_state = 340, .external_lex_state = 16}, - [7625] = {.lex_state = 340, .external_lex_state = 27}, - [7626] = {.lex_state = 340, .external_lex_state = 27}, - [7627] = {.lex_state = 340}, - [7628] = {.lex_state = 340}, - [7629] = {.lex_state = 131}, - [7630] = {.lex_state = 340, .external_lex_state = 27}, - [7631] = {.lex_state = 340, .external_lex_state = 27}, - [7632] = {.lex_state = 340}, - [7633] = {.lex_state = 340}, - [7634] = {.lex_state = 340}, - [7635] = {.lex_state = 340, .external_lex_state = 27}, - [7636] = {.lex_state = 340, .external_lex_state = 27}, - [7637] = {.lex_state = 340}, - [7638] = {.lex_state = 131}, - [7639] = {.lex_state = 340}, - [7640] = {.lex_state = 340, .external_lex_state = 27}, - [7641] = {.lex_state = 340, .external_lex_state = 27}, + [7547] = {.lex_state = 341}, + [7548] = {.lex_state = 341, .external_lex_state = 16}, + [7549] = {.lex_state = 341}, + [7550] = {.lex_state = 341}, + [7551] = {.lex_state = 341}, + [7552] = {.lex_state = 131}, + [7553] = {.lex_state = 341}, + [7554] = {.lex_state = 341}, + [7555] = {.lex_state = 341}, + [7556] = {.lex_state = 341, .external_lex_state = 16}, + [7557] = {.lex_state = 341}, + [7558] = {.lex_state = 341}, + [7559] = {.lex_state = 341, .external_lex_state = 26}, + [7560] = {.lex_state = 341}, + [7561] = {.lex_state = 341, .external_lex_state = 18}, + [7562] = {.lex_state = 341}, + [7563] = {.lex_state = 341, .external_lex_state = 16}, + [7564] = {.lex_state = 341, .external_lex_state = 27}, + [7565] = {.lex_state = 341, .external_lex_state = 27}, + [7566] = {.lex_state = 341}, + [7567] = {.lex_state = 341, .external_lex_state = 26}, + [7568] = {.lex_state = 341}, + [7569] = {.lex_state = 341}, + [7570] = {.lex_state = 131}, + [7571] = {.lex_state = 341, .external_lex_state = 16}, + [7572] = {.lex_state = 341}, + [7573] = {.lex_state = 131}, + [7574] = {.lex_state = 341}, + [7575] = {.lex_state = 341}, + [7576] = {.lex_state = 341, .external_lex_state = 16}, + [7577] = {.lex_state = 341}, + [7578] = {.lex_state = 341, .external_lex_state = 25}, + [7579] = {.lex_state = 341, .external_lex_state = 21}, + [7580] = {.lex_state = 341, .external_lex_state = 16}, + [7581] = {.lex_state = 341, .external_lex_state = 16}, + [7582] = {.lex_state = 341}, + [7583] = {.lex_state = 341}, + [7584] = {.lex_state = 341}, + [7585] = {.lex_state = 341}, + [7586] = {.lex_state = 131}, + [7587] = {.lex_state = 341, .external_lex_state = 16}, + [7588] = {.lex_state = 341, .external_lex_state = 16}, + [7589] = {.lex_state = 341}, + [7590] = {.lex_state = 131}, + [7591] = {.lex_state = 341}, + [7592] = {.lex_state = 341}, + [7593] = {.lex_state = 341, .external_lex_state = 16}, + [7594] = {.lex_state = 341}, + [7595] = {.lex_state = 341}, + [7596] = {.lex_state = 341, .external_lex_state = 16}, + [7597] = {.lex_state = 341}, + [7598] = {.lex_state = 131}, + [7599] = {.lex_state = 341, .external_lex_state = 26}, + [7600] = {.lex_state = 341}, + [7601] = {.lex_state = 341}, + [7602] = {.lex_state = 341, .external_lex_state = 16}, + [7603] = {.lex_state = 341}, + [7604] = {.lex_state = 341, .external_lex_state = 27}, + [7605] = {.lex_state = 341, .external_lex_state = 27}, + [7606] = {.lex_state = 341}, + [7607] = {.lex_state = 341, .external_lex_state = 26}, + [7608] = {.lex_state = 341}, + [7609] = {.lex_state = 341, .external_lex_state = 16}, + [7610] = {.lex_state = 341}, + [7611] = {.lex_state = 341}, + [7612] = {.lex_state = 341}, + [7613] = {.lex_state = 341}, + [7614] = {.lex_state = 341}, + [7615] = {.lex_state = 341, .external_lex_state = 25}, + [7616] = {.lex_state = 1}, + [7617] = {.lex_state = 341, .external_lex_state = 25}, + [7618] = {.lex_state = 341, .external_lex_state = 21}, + [7619] = {.lex_state = 341, .external_lex_state = 16}, + [7620] = {.lex_state = 341, .external_lex_state = 16}, + [7621] = {.lex_state = 341}, + [7622] = {.lex_state = 341, .external_lex_state = 18}, + [7623] = {.lex_state = 341}, + [7624] = {.lex_state = 341}, + [7625] = {.lex_state = 341}, + [7626] = {.lex_state = 341, .external_lex_state = 16}, + [7627] = {.lex_state = 341, .external_lex_state = 16}, + [7628] = {.lex_state = 341}, + [7629] = {.lex_state = 341}, + [7630] = {.lex_state = 341}, + [7631] = {.lex_state = 341, .external_lex_state = 16}, + [7632] = {.lex_state = 341}, + [7633] = {.lex_state = 341}, + [7634] = {.lex_state = 341, .external_lex_state = 16}, + [7635] = {.lex_state = 131}, + [7636] = {.lex_state = 341, .external_lex_state = 16}, + [7637] = {.lex_state = 341, .external_lex_state = 26}, + [7638] = {.lex_state = 341, .external_lex_state = 16}, + [7639] = {.lex_state = 341, .external_lex_state = 27}, + [7640] = {.lex_state = 341, .external_lex_state = 27}, + [7641] = {.lex_state = 341}, [7642] = {.lex_state = 131}, - [7643] = {.lex_state = 340, .external_lex_state = 23}, - [7644] = {.lex_state = 340, .external_lex_state = 23}, - [7645] = {.lex_state = 340, .external_lex_state = 16}, - [7646] = {.lex_state = 340}, - [7647] = {.lex_state = 340}, - [7648] = {.lex_state = 340, .external_lex_state = 16}, - [7649] = {.lex_state = 340}, - [7650] = {.lex_state = 131}, - [7651] = {.lex_state = 340, .external_lex_state = 23}, - [7652] = {.lex_state = 340}, - [7653] = {.lex_state = 340}, - [7654] = {.lex_state = 340}, - [7655] = {.lex_state = 340}, - [7656] = {.lex_state = 340, .external_lex_state = 16}, - [7657] = {.lex_state = 340}, - [7658] = {.lex_state = 131}, - [7659] = {.lex_state = 340}, - [7660] = {.lex_state = 340, .external_lex_state = 16}, - [7661] = {.lex_state = 340, .external_lex_state = 16}, - [7662] = {.lex_state = 131}, - [7663] = {.lex_state = 340}, - [7664] = {.lex_state = 340}, - [7665] = {.lex_state = 131}, - [7666] = {.lex_state = 340, .external_lex_state = 16}, - [7667] = {.lex_state = 340, .external_lex_state = 16}, - [7668] = {.lex_state = 340, .external_lex_state = 16}, - [7669] = {.lex_state = 131}, - [7670] = {.lex_state = 340, .external_lex_state = 16}, - [7671] = {.lex_state = 340, .external_lex_state = 18}, - [7672] = {.lex_state = 131}, - [7673] = {.lex_state = 340}, - [7674] = {.lex_state = 340, .external_lex_state = 23}, - [7675] = {.lex_state = 340}, - [7676] = {.lex_state = 340, .external_lex_state = 23}, - [7677] = {.lex_state = 340, .external_lex_state = 18}, - [7678] = {.lex_state = 340, .external_lex_state = 26}, - [7679] = {.lex_state = 340}, - [7680] = {.lex_state = 340, .external_lex_state = 16}, - [7681] = {.lex_state = 131}, - [7682] = {.lex_state = 340}, - [7683] = {.lex_state = 131}, - [7684] = {.lex_state = 340, .external_lex_state = 16}, - [7685] = {.lex_state = 340, .external_lex_state = 18}, - [7686] = {.lex_state = 340}, - [7687] = {.lex_state = 340}, - [7688] = {.lex_state = 340}, - [7689] = {.lex_state = 340}, - [7690] = {.lex_state = 340}, - [7691] = {.lex_state = 131}, - [7692] = {.lex_state = 340, .external_lex_state = 16}, - [7693] = {.lex_state = 340, .external_lex_state = 23}, - [7694] = {.lex_state = 340, .external_lex_state = 18}, - [7695] = {.lex_state = 131}, - [7696] = {.lex_state = 131}, - [7697] = {.lex_state = 340}, - [7698] = {.lex_state = 340, .external_lex_state = 18}, - [7699] = {.lex_state = 340}, - [7700] = {.lex_state = 340, .external_lex_state = 23}, - [7701] = {.lex_state = 340}, - [7702] = {.lex_state = 131}, - [7703] = {.lex_state = 340}, - [7704] = {.lex_state = 340}, - [7705] = {.lex_state = 340, .external_lex_state = 16}, - [7706] = {.lex_state = 340, .external_lex_state = 18}, - [7707] = {.lex_state = 340}, - [7708] = {.lex_state = 340}, - [7709] = {.lex_state = 131}, - [7710] = {.lex_state = 340, .external_lex_state = 23}, - [7711] = {.lex_state = 340, .external_lex_state = 23}, - [7712] = {.lex_state = 340}, - [7713] = {.lex_state = 340, .external_lex_state = 23}, - [7714] = {.lex_state = 340, .external_lex_state = 26}, - [7715] = {.lex_state = 340, .external_lex_state = 16}, - [7716] = {.lex_state = 340, .external_lex_state = 16}, - [7717] = {.lex_state = 340}, - [7718] = {.lex_state = 340}, - [7719] = {.lex_state = 340}, - [7720] = {.lex_state = 340, .external_lex_state = 23}, - [7721] = {.lex_state = 340, .external_lex_state = 23}, - [7722] = {.lex_state = 340, .external_lex_state = 23}, - [7723] = {.lex_state = 131}, - [7724] = {.lex_state = 131}, - [7725] = {.lex_state = 340}, - [7726] = {.lex_state = 340}, - [7727] = {.lex_state = 131}, - [7728] = {.lex_state = 340}, - [7729] = {.lex_state = 131}, - [7730] = {.lex_state = 340, .external_lex_state = 23}, - [7731] = {.lex_state = 340, .external_lex_state = 18}, - [7732] = {.lex_state = 340}, - [7733] = {.lex_state = 340}, - [7734] = {.lex_state = 340}, - [7735] = {.lex_state = 340, .external_lex_state = 23}, - [7736] = {.lex_state = 340}, - [7737] = {.lex_state = 131}, - [7738] = {.lex_state = 340}, - [7739] = {.lex_state = 340, .external_lex_state = 23}, - [7740] = {.lex_state = 131}, - [7741] = {.lex_state = 340}, - [7742] = {.lex_state = 340}, - [7743] = {.lex_state = 340, .external_lex_state = 23}, - [7744] = {.lex_state = 340}, - [7745] = {.lex_state = 340, .external_lex_state = 23}, - [7746] = {.lex_state = 340, .external_lex_state = 23}, - [7747] = {.lex_state = 340, .external_lex_state = 16}, - [7748] = {.lex_state = 340}, - [7749] = {.lex_state = 340, .external_lex_state = 23}, - [7750] = {.lex_state = 340}, - [7751] = {.lex_state = 131}, - [7752] = {.lex_state = 340, .external_lex_state = 16}, - [7753] = {.lex_state = 340}, - [7754] = {.lex_state = 131}, - [7755] = {.lex_state = 340, .external_lex_state = 16}, - [7756] = {.lex_state = 340}, - [7757] = {.lex_state = 340}, - [7758] = {.lex_state = 340, .external_lex_state = 16}, - [7759] = {.lex_state = 340}, - [7760] = {.lex_state = 340}, - [7761] = {.lex_state = 340, .external_lex_state = 23}, - [7762] = {.lex_state = 340}, - [7763] = {.lex_state = 340}, - [7764] = {.lex_state = 340}, - [7765] = {.lex_state = 340, .external_lex_state = 23}, - [7766] = {.lex_state = 340}, - [7767] = {.lex_state = 131}, - [7768] = {.lex_state = 340}, - [7769] = {.lex_state = 340}, - [7770] = {.lex_state = 340, .external_lex_state = 18}, - [7771] = {.lex_state = 131}, - [7772] = {.lex_state = 340}, - [7773] = {.lex_state = 340}, - [7774] = {.lex_state = 340}, - [7775] = {.lex_state = 340, .external_lex_state = 23}, - [7776] = {.lex_state = 340, .external_lex_state = 23}, - [7777] = {.lex_state = 340, .external_lex_state = 26}, - [7778] = {.lex_state = 340, .external_lex_state = 23}, - [7779] = {.lex_state = 340, .external_lex_state = 26}, - [7780] = {.lex_state = 340}, - [7781] = {.lex_state = 340, .external_lex_state = 20}, - [7782] = {.lex_state = 131}, - [7783] = {.lex_state = 131}, - [7784] = {.lex_state = 340}, - [7785] = {.lex_state = 340, .external_lex_state = 23}, - [7786] = {.lex_state = 340, .external_lex_state = 23}, - [7787] = {.lex_state = 340, .external_lex_state = 23}, - [7788] = {.lex_state = 340}, - [7789] = {.lex_state = 340}, - [7790] = {.lex_state = 340}, - [7791] = {.lex_state = 340}, + [7643] = {.lex_state = 341, .external_lex_state = 16}, + [7644] = {.lex_state = 341}, + [7645] = {.lex_state = 341}, + [7646] = {.lex_state = 341}, + [7647] = {.lex_state = 131}, + [7648] = {.lex_state = 341, .external_lex_state = 16}, + [7649] = {.lex_state = 341, .external_lex_state = 18}, + [7650] = {.lex_state = 341}, + [7651] = {.lex_state = 341}, + [7652] = {.lex_state = 341, .external_lex_state = 16}, + [7653] = {.lex_state = 341, .external_lex_state = 27}, + [7654] = {.lex_state = 341, .external_lex_state = 27}, + [7655] = {.lex_state = 341}, + [7656] = {.lex_state = 341}, + [7657] = {.lex_state = 341}, + [7658] = {.lex_state = 341}, + [7659] = {.lex_state = 341}, + [7660] = {.lex_state = 341}, + [7661] = {.lex_state = 341, .external_lex_state = 16}, + [7662] = {.lex_state = 341}, + [7663] = {.lex_state = 131}, + [7664] = {.lex_state = 341, .external_lex_state = 27}, + [7665] = {.lex_state = 341, .external_lex_state = 27}, + [7666] = {.lex_state = 341}, + [7667] = {.lex_state = 341}, + [7668] = {.lex_state = 341, .external_lex_state = 16}, + [7669] = {.lex_state = 341}, + [7670] = {.lex_state = 341, .external_lex_state = 16}, + [7671] = {.lex_state = 341}, + [7672] = {.lex_state = 341, .external_lex_state = 16}, + [7673] = {.lex_state = 341}, + [7674] = {.lex_state = 341}, + [7675] = {.lex_state = 341, .external_lex_state = 27}, + [7676] = {.lex_state = 341, .external_lex_state = 27}, + [7677] = {.lex_state = 341}, + [7678] = {.lex_state = 341}, + [7679] = {.lex_state = 341}, + [7680] = {.lex_state = 341}, + [7681] = {.lex_state = 341}, + [7682] = {.lex_state = 341, .external_lex_state = 16}, + [7683] = {.lex_state = 341, .external_lex_state = 16}, + [7684] = {.lex_state = 341}, + [7685] = {.lex_state = 341, .external_lex_state = 27}, + [7686] = {.lex_state = 341, .external_lex_state = 27}, + [7687] = {.lex_state = 341}, + [7688] = {.lex_state = 341}, + [7689] = {.lex_state = 131}, + [7690] = {.lex_state = 131}, + [7691] = {.lex_state = 341}, + [7692] = {.lex_state = 341, .external_lex_state = 16}, + [7693] = {.lex_state = 341}, + [7694] = {.lex_state = 341, .external_lex_state = 27}, + [7695] = {.lex_state = 341, .external_lex_state = 27}, + [7696] = {.lex_state = 341}, + [7697] = {.lex_state = 341, .external_lex_state = 16}, + [7698] = {.lex_state = 131}, + [7699] = {.lex_state = 341}, + [7700] = {.lex_state = 131}, + [7701] = {.lex_state = 341, .external_lex_state = 16}, + [7702] = {.lex_state = 341}, + [7703] = {.lex_state = 341, .external_lex_state = 27}, + [7704] = {.lex_state = 341, .external_lex_state = 27}, + [7705] = {.lex_state = 341}, + [7706] = {.lex_state = 341}, + [7707] = {.lex_state = 341}, + [7708] = {.lex_state = 131}, + [7709] = {.lex_state = 341}, + [7710] = {.lex_state = 341, .external_lex_state = 16}, + [7711] = {.lex_state = 341}, + [7712] = {.lex_state = 341, .external_lex_state = 27}, + [7713] = {.lex_state = 341, .external_lex_state = 27}, + [7714] = {.lex_state = 341}, + [7715] = {.lex_state = 341}, + [7716] = {.lex_state = 341}, + [7717] = {.lex_state = 341, .external_lex_state = 16}, + [7718] = {.lex_state = 341, .external_lex_state = 27}, + [7719] = {.lex_state = 341, .external_lex_state = 27}, + [7720] = {.lex_state = 341}, + [7721] = {.lex_state = 341}, + [7722] = {.lex_state = 341}, + [7723] = {.lex_state = 341, .external_lex_state = 16}, + [7724] = {.lex_state = 341, .external_lex_state = 27}, + [7725] = {.lex_state = 341, .external_lex_state = 27}, + [7726] = {.lex_state = 341}, + [7727] = {.lex_state = 341}, + [7728] = {.lex_state = 341}, + [7729] = {.lex_state = 341, .external_lex_state = 16}, + [7730] = {.lex_state = 341, .external_lex_state = 27}, + [7731] = {.lex_state = 341, .external_lex_state = 27}, + [7732] = {.lex_state = 341, .external_lex_state = 16}, + [7733] = {.lex_state = 341, .external_lex_state = 25}, + [7734] = {.lex_state = 341}, + [7735] = {.lex_state = 341, .external_lex_state = 16}, + [7736] = {.lex_state = 341, .external_lex_state = 16}, + [7737] = {.lex_state = 341}, + [7738] = {.lex_state = 341, .external_lex_state = 23}, + [7739] = {.lex_state = 341, .external_lex_state = 16}, + [7740] = {.lex_state = 341}, + [7741] = {.lex_state = 341, .external_lex_state = 16}, + [7742] = {.lex_state = 341, .external_lex_state = 21}, + [7743] = {.lex_state = 341, .external_lex_state = 16}, + [7744] = {.lex_state = 341}, + [7745] = {.lex_state = 341}, + [7746] = {.lex_state = 341}, + [7747] = {.lex_state = 341, .external_lex_state = 16}, + [7748] = {.lex_state = 131}, + [7749] = {.lex_state = 131}, + [7750] = {.lex_state = 341}, + [7751] = {.lex_state = 341, .external_lex_state = 16}, + [7752] = {.lex_state = 131}, + [7753] = {.lex_state = 341}, + [7754] = {.lex_state = 341}, + [7755] = {.lex_state = 341, .external_lex_state = 16}, + [7756] = {.lex_state = 131}, + [7757] = {.lex_state = 341}, + [7758] = {.lex_state = 341}, + [7759] = {.lex_state = 341, .external_lex_state = 16}, + [7760] = {.lex_state = 341}, + [7761] = {.lex_state = 341, .external_lex_state = 16}, + [7762] = {.lex_state = 341}, + [7763] = {.lex_state = 341, .external_lex_state = 16}, + [7764] = {.lex_state = 341}, + [7765] = {.lex_state = 341}, + [7766] = {.lex_state = 341, .external_lex_state = 16}, + [7767] = {.lex_state = 341, .external_lex_state = 16}, + [7768] = {.lex_state = 341}, + [7769] = {.lex_state = 341}, + [7770] = {.lex_state = 341, .external_lex_state = 26}, + [7771] = {.lex_state = 341, .external_lex_state = 16}, + [7772] = {.lex_state = 341, .external_lex_state = 18}, + [7773] = {.lex_state = 341}, + [7774] = {.lex_state = 341, .external_lex_state = 23}, + [7775] = {.lex_state = 341, .external_lex_state = 16}, + [7776] = {.lex_state = 341, .external_lex_state = 18}, + [7777] = {.lex_state = 341, .external_lex_state = 18}, + [7778] = {.lex_state = 341}, + [7779] = {.lex_state = 341}, + [7780] = {.lex_state = 341}, + [7781] = {.lex_state = 341, .external_lex_state = 18}, + [7782] = {.lex_state = 341, .external_lex_state = 16}, + [7783] = {.lex_state = 341, .external_lex_state = 16}, + [7784] = {.lex_state = 341, .external_lex_state = 16}, + [7785] = {.lex_state = 341}, + [7786] = {.lex_state = 341, .external_lex_state = 16}, + [7787] = {.lex_state = 341}, + [7788] = {.lex_state = 341}, + [7789] = {.lex_state = 341, .external_lex_state = 16}, + [7790] = {.lex_state = 341, .external_lex_state = 25}, + [7791] = {.lex_state = 341}, [7792] = {.lex_state = 131}, - [7793] = {.lex_state = 340}, - [7794] = {.lex_state = 131}, - [7795] = {.lex_state = 340, .external_lex_state = 23}, - [7796] = {.lex_state = 340}, - [7797] = {.lex_state = 340}, - [7798] = {.lex_state = 340}, - [7799] = {.lex_state = 340, .external_lex_state = 16}, - [7800] = {.lex_state = 340, .external_lex_state = 23}, - [7801] = {.lex_state = 340}, - [7802] = {.lex_state = 340, .external_lex_state = 16}, - [7803] = {.lex_state = 131}, - [7804] = {.lex_state = 340, .external_lex_state = 23}, - [7805] = {.lex_state = 131}, - [7806] = {.lex_state = 131}, - [7807] = {.lex_state = 340}, - [7808] = {.lex_state = 340, .external_lex_state = 23}, - [7809] = {.lex_state = 340}, - [7810] = {.lex_state = 340, .external_lex_state = 23}, - [7811] = {.lex_state = 340, .external_lex_state = 23}, - [7812] = {.lex_state = 131}, - [7813] = {.lex_state = 340, .external_lex_state = 23}, - [7814] = {.lex_state = 340}, - [7815] = {.lex_state = 340}, - [7816] = {.lex_state = 340, .external_lex_state = 20}, - [7817] = {.lex_state = 340}, - [7818] = {.lex_state = 340}, - [7819] = {.lex_state = 340, .external_lex_state = 16}, - [7820] = {.lex_state = 340}, - [7821] = {.lex_state = 340}, - [7822] = {.lex_state = 340, .external_lex_state = 16}, - [7823] = {.lex_state = 340, .external_lex_state = 16}, - [7824] = {.lex_state = 340}, - [7825] = {.lex_state = 340}, - [7826] = {.lex_state = 131}, - [7827] = {.lex_state = 340}, - [7828] = {.lex_state = 340, .external_lex_state = 23}, - [7829] = {.lex_state = 340}, - [7830] = {.lex_state = 131}, - [7831] = {.lex_state = 340}, - [7832] = {.lex_state = 340}, - [7833] = {.lex_state = 340}, - [7834] = {.lex_state = 340}, - [7835] = {.lex_state = 340}, - [7836] = {.lex_state = 340}, - [7837] = {.lex_state = 340}, - [7838] = {.lex_state = 340, .external_lex_state = 23}, - [7839] = {.lex_state = 340, .external_lex_state = 23}, - [7840] = {.lex_state = 131}, - [7841] = {.lex_state = 340, .external_lex_state = 23}, - [7842] = {.lex_state = 340}, - [7843] = {.lex_state = 340}, - [7844] = {.lex_state = 340}, - [7845] = {.lex_state = 340}, - [7846] = {.lex_state = 340}, - [7847] = {.lex_state = 340}, - [7848] = {.lex_state = 340, .external_lex_state = 23}, - [7849] = {.lex_state = 340, .external_lex_state = 23}, - [7850] = {.lex_state = 340, .external_lex_state = 23}, - [7851] = {.lex_state = 131}, - [7852] = {.lex_state = 340}, - [7853] = {.lex_state = 340}, - [7854] = {.lex_state = 340}, - [7855] = {.lex_state = 340, .external_lex_state = 16}, - [7856] = {.lex_state = 340, .external_lex_state = 26}, - [7857] = {.lex_state = 340, .external_lex_state = 23}, - [7858] = {.lex_state = 131}, - [7859] = {.lex_state = 340}, - [7860] = {.lex_state = 340}, - [7861] = {.lex_state = 340, .external_lex_state = 26}, - [7862] = {.lex_state = 131}, - [7863] = {.lex_state = 340}, - [7864] = {.lex_state = 340, .external_lex_state = 23}, - [7865] = {.lex_state = 340, .external_lex_state = 16}, - [7866] = {.lex_state = 340, .external_lex_state = 16}, - [7867] = {.lex_state = 340}, - [7868] = {.lex_state = 340, .external_lex_state = 23}, - [7869] = {.lex_state = 131}, - [7870] = {.lex_state = 340, .external_lex_state = 23}, - [7871] = {.lex_state = 340, .external_lex_state = 23}, - [7872] = {.lex_state = 131}, - [7873] = {.lex_state = 340, .external_lex_state = 23}, - [7874] = {.lex_state = 340}, - [7875] = {.lex_state = 340}, - [7876] = {.lex_state = 340}, - [7877] = {.lex_state = 340}, - [7878] = {.lex_state = 340}, - [7879] = {.lex_state = 340, .external_lex_state = 16}, - [7880] = {.lex_state = 340}, - [7881] = {.lex_state = 340}, - [7882] = {.lex_state = 340, .external_lex_state = 16}, - [7883] = {.lex_state = 131}, - [7884] = {.lex_state = 340}, - [7885] = {.lex_state = 131}, - [7886] = {.lex_state = 340}, - [7887] = {.lex_state = 340}, - [7888] = {.lex_state = 340, .external_lex_state = 23}, - [7889] = {.lex_state = 340}, - [7890] = {.lex_state = 340}, - [7891] = {.lex_state = 340}, - [7892] = {.lex_state = 340}, - [7893] = {.lex_state = 340, .external_lex_state = 26}, - [7894] = {.lex_state = 340, .external_lex_state = 16}, - [7895] = {.lex_state = 340, .external_lex_state = 23}, - [7896] = {.lex_state = 340, .external_lex_state = 23}, - [7897] = {.lex_state = 340, .external_lex_state = 23}, - [7898] = {.lex_state = 340, .external_lex_state = 16}, - [7899] = {.lex_state = 340, .external_lex_state = 23}, - [7900] = {.lex_state = 340, .external_lex_state = 23}, - [7901] = {.lex_state = 340}, - [7902] = {.lex_state = 131}, - [7903] = {.lex_state = 340}, - [7904] = {.lex_state = 340}, - [7905] = {.lex_state = 131}, - [7906] = {.lex_state = 340}, - [7907] = {.lex_state = 340}, - [7908] = {.lex_state = 340}, - [7909] = {.lex_state = 340, .external_lex_state = 23}, - [7910] = {.lex_state = 131}, - [7911] = {.lex_state = 340}, - [7912] = {.lex_state = 340}, - [7913] = {.lex_state = 340, .external_lex_state = 23}, - [7914] = {.lex_state = 340}, - [7915] = {.lex_state = 1}, - [7916] = {.lex_state = 340, .external_lex_state = 18}, - [7917] = {.lex_state = 131}, - [7918] = {.lex_state = 340}, - [7919] = {.lex_state = 340, .external_lex_state = 26}, - [7920] = {.lex_state = 340}, - [7921] = {.lex_state = 340}, - [7922] = {.lex_state = 340}, - [7923] = {.lex_state = 340}, - [7924] = {.lex_state = 340, .external_lex_state = 23}, - [7925] = {.lex_state = 340}, - [7926] = {.lex_state = 340}, - [7927] = {.lex_state = 340}, - [7928] = {.lex_state = 340, .external_lex_state = 18}, - [7929] = {.lex_state = 131}, - [7930] = {.lex_state = 340, .external_lex_state = 23}, - [7931] = {.lex_state = 340, .external_lex_state = 23}, - [7932] = {.lex_state = 340, .external_lex_state = 16}, - [7933] = {.lex_state = 340}, - [7934] = {.lex_state = 340, .external_lex_state = 20}, - [7935] = {.lex_state = 340}, - [7936] = {.lex_state = 340}, - [7937] = {.lex_state = 340}, - [7938] = {.lex_state = 340}, - [7939] = {.lex_state = 340}, - [7940] = {.lex_state = 340}, - [7941] = {.lex_state = 340}, - [7942] = {.lex_state = 340}, - [7943] = {.lex_state = 340}, - [7944] = {.lex_state = 340, .external_lex_state = 23}, - [7945] = {.lex_state = 131}, - [7946] = {.lex_state = 340, .external_lex_state = 16}, - [7947] = {.lex_state = 340}, - [7948] = {.lex_state = 340, .external_lex_state = 23}, - [7949] = {.lex_state = 340}, - [7950] = {.lex_state = 340}, - [7951] = {.lex_state = 340}, - [7952] = {.lex_state = 340}, - [7953] = {.lex_state = 340, .external_lex_state = 16}, - [7954] = {.lex_state = 340}, - [7955] = {.lex_state = 340}, - [7956] = {.lex_state = 131}, - [7957] = {.lex_state = 340}, - [7958] = {.lex_state = 340, .external_lex_state = 23}, - [7959] = {.lex_state = 340}, - [7960] = {.lex_state = 340}, - [7961] = {.lex_state = 340}, - [7962] = {.lex_state = 340}, - [7963] = {.lex_state = 1}, - [7964] = {.lex_state = 340, .external_lex_state = 16}, - [7965] = {.lex_state = 340, .external_lex_state = 23}, - [7966] = {.lex_state = 340, .external_lex_state = 16}, - [7967] = {.lex_state = 340}, - [7968] = {.lex_state = 340}, - [7969] = {.lex_state = 340, .external_lex_state = 16}, - [7970] = {.lex_state = 340, .external_lex_state = 26}, - [7971] = {.lex_state = 340}, - [7972] = {.lex_state = 340, .external_lex_state = 26}, - [7973] = {.lex_state = 340}, - [7974] = {.lex_state = 131}, - [7975] = {.lex_state = 340}, - [7976] = {.lex_state = 340}, - [7977] = {.lex_state = 131}, - [7978] = {.lex_state = 340, .external_lex_state = 23}, - [7979] = {.lex_state = 340, .external_lex_state = 16}, - [7980] = {.lex_state = 340}, - [7981] = {.lex_state = 340}, - [7982] = {.lex_state = 340, .external_lex_state = 23}, - [7983] = {.lex_state = 340}, - [7984] = {.lex_state = 131}, - [7985] = {.lex_state = 340}, - [7986] = {.lex_state = 340}, - [7987] = {.lex_state = 340}, - [7988] = {.lex_state = 340}, - [7989] = {.lex_state = 131}, - [7990] = {.lex_state = 340, .external_lex_state = 16}, - [7991] = {.lex_state = 131}, - [7992] = {.lex_state = 340, .external_lex_state = 23}, - [7993] = {.lex_state = 340}, - [7994] = {.lex_state = 340}, - [7995] = {.lex_state = 340}, - [7996] = {.lex_state = 131}, - [7997] = {.lex_state = 340, .external_lex_state = 16}, - [7998] = {.lex_state = 340}, - [7999] = {.lex_state = 340, .external_lex_state = 23}, - [8000] = {.lex_state = 340, .external_lex_state = 18}, - [8001] = {.lex_state = 340, .external_lex_state = 16}, - [8002] = {.lex_state = 340, .external_lex_state = 16}, - [8003] = {.lex_state = 131}, - [8004] = {.lex_state = 340}, - [8005] = {.lex_state = 340, .external_lex_state = 20}, - [8006] = {.lex_state = 340}, - [8007] = {.lex_state = 131}, - [8008] = {.lex_state = 340}, - [8009] = {.lex_state = 340}, - [8010] = {.lex_state = 340, .external_lex_state = 23}, - [8011] = {.lex_state = 340}, - [8012] = {.lex_state = 340}, - [8013] = {.lex_state = 340, .external_lex_state = 16}, - [8014] = {.lex_state = 340}, - [8015] = {.lex_state = 340}, - [8016] = {.lex_state = 340}, - [8017] = {.lex_state = 340, .external_lex_state = 23}, - [8018] = {.lex_state = 340, .external_lex_state = 16}, - [8019] = {.lex_state = 340}, - [8020] = {.lex_state = 340}, - [8021] = {.lex_state = 131}, - [8022] = {.lex_state = 340, .external_lex_state = 18}, - [8023] = {.lex_state = 340}, - [8024] = {.lex_state = 340}, - [8025] = {.lex_state = 340, .external_lex_state = 26}, - [8026] = {.lex_state = 131}, - [8027] = {.lex_state = 340, .external_lex_state = 23}, - [8028] = {.lex_state = 340}, - [8029] = {.lex_state = 340}, - [8030] = {.lex_state = 340, .external_lex_state = 16}, - [8031] = {.lex_state = 340, .external_lex_state = 16}, - [8032] = {.lex_state = 340}, - [8033] = {.lex_state = 131}, - [8034] = {.lex_state = 340, .external_lex_state = 23}, - [8035] = {.lex_state = 340}, - [8036] = {.lex_state = 340, .external_lex_state = 16}, + [7793] = {.lex_state = 341}, + [7794] = {.lex_state = 341}, + [7795] = {.lex_state = 341}, + [7796] = {.lex_state = 131}, + [7797] = {.lex_state = 341, .external_lex_state = 16}, + [7798] = {.lex_state = 341}, + [7799] = {.lex_state = 341}, + [7800] = {.lex_state = 341}, + [7801] = {.lex_state = 341, .external_lex_state = 23}, + [7802] = {.lex_state = 341}, + [7803] = {.lex_state = 341}, + [7804] = {.lex_state = 341}, + [7805] = {.lex_state = 341}, + [7806] = {.lex_state = 341, .external_lex_state = 16}, + [7807] = {.lex_state = 341}, + [7808] = {.lex_state = 341}, + [7809] = {.lex_state = 341}, + [7810] = {.lex_state = 341}, + [7811] = {.lex_state = 341, .external_lex_state = 23}, + [7812] = {.lex_state = 341, .external_lex_state = 23}, + [7813] = {.lex_state = 341}, + [7814] = {.lex_state = 131}, + [7815] = {.lex_state = 341, .external_lex_state = 23}, + [7816] = {.lex_state = 341}, + [7817] = {.lex_state = 341}, + [7818] = {.lex_state = 341, .external_lex_state = 23}, + [7819] = {.lex_state = 341, .external_lex_state = 23}, + [7820] = {.lex_state = 341}, + [7821] = {.lex_state = 341}, + [7822] = {.lex_state = 341, .external_lex_state = 23}, + [7823] = {.lex_state = 341, .external_lex_state = 23}, + [7824] = {.lex_state = 341, .external_lex_state = 23}, + [7825] = {.lex_state = 341}, + [7826] = {.lex_state = 341}, + [7827] = {.lex_state = 341}, + [7828] = {.lex_state = 341}, + [7829] = {.lex_state = 341, .external_lex_state = 25}, + [7830] = {.lex_state = 341}, + [7831] = {.lex_state = 341}, + [7832] = {.lex_state = 341, .external_lex_state = 23}, + [7833] = {.lex_state = 131}, + [7834] = {.lex_state = 341}, + [7835] = {.lex_state = 341}, + [7836] = {.lex_state = 341}, + [7837] = {.lex_state = 341, .external_lex_state = 23}, + [7838] = {.lex_state = 341}, + [7839] = {.lex_state = 131}, + [7840] = {.lex_state = 341}, + [7841] = {.lex_state = 341, .external_lex_state = 23}, + [7842] = {.lex_state = 341}, + [7843] = {.lex_state = 341}, + [7844] = {.lex_state = 341}, + [7845] = {.lex_state = 341, .external_lex_state = 23}, + [7846] = {.lex_state = 341}, + [7847] = {.lex_state = 341, .external_lex_state = 23}, + [7848] = {.lex_state = 341, .external_lex_state = 23}, + [7849] = {.lex_state = 341, .external_lex_state = 23}, + [7850] = {.lex_state = 341}, + [7851] = {.lex_state = 341, .external_lex_state = 23}, + [7852] = {.lex_state = 341}, + [7853] = {.lex_state = 341}, + [7854] = {.lex_state = 341}, + [7855] = {.lex_state = 341}, + [7856] = {.lex_state = 341, .external_lex_state = 25}, + [7857] = {.lex_state = 341, .external_lex_state = 16}, + [7858] = {.lex_state = 341}, + [7859] = {.lex_state = 341}, + [7860] = {.lex_state = 341, .external_lex_state = 16}, + [7861] = {.lex_state = 341}, + [7862] = {.lex_state = 341}, + [7863] = {.lex_state = 341}, + [7864] = {.lex_state = 341, .external_lex_state = 23}, + [7865] = {.lex_state = 131}, + [7866] = {.lex_state = 341}, + [7867] = {.lex_state = 341, .external_lex_state = 23}, + [7868] = {.lex_state = 341}, + [7869] = {.lex_state = 341}, + [7870] = {.lex_state = 341}, + [7871] = {.lex_state = 341}, + [7872] = {.lex_state = 341}, + [7873] = {.lex_state = 341, .external_lex_state = 16}, + [7874] = {.lex_state = 341}, + [7875] = {.lex_state = 341, .external_lex_state = 16}, + [7876] = {.lex_state = 341}, + [7877] = {.lex_state = 341, .external_lex_state = 23}, + [7878] = {.lex_state = 341, .external_lex_state = 23}, + [7879] = {.lex_state = 341, .external_lex_state = 16}, + [7880] = {.lex_state = 131}, + [7881] = {.lex_state = 341, .external_lex_state = 23}, + [7882] = {.lex_state = 341}, + [7883] = {.lex_state = 341, .external_lex_state = 25}, + [7884] = {.lex_state = 341}, + [7885] = {.lex_state = 341}, + [7886] = {.lex_state = 341}, + [7887] = {.lex_state = 341}, + [7888] = {.lex_state = 341, .external_lex_state = 23}, + [7889] = {.lex_state = 341, .external_lex_state = 23}, + [7890] = {.lex_state = 341, .external_lex_state = 23}, + [7891] = {.lex_state = 341, .external_lex_state = 16}, + [7892] = {.lex_state = 341}, + [7893] = {.lex_state = 341}, + [7894] = {.lex_state = 341, .external_lex_state = 16}, + [7895] = {.lex_state = 341}, + [7896] = {.lex_state = 341}, + [7897] = {.lex_state = 341, .external_lex_state = 16}, + [7898] = {.lex_state = 341, .external_lex_state = 23}, + [7899] = {.lex_state = 341}, + [7900] = {.lex_state = 341}, + [7901] = {.lex_state = 341}, + [7902] = {.lex_state = 341, .external_lex_state = 16}, + [7903] = {.lex_state = 341, .external_lex_state = 23}, + [7904] = {.lex_state = 341}, + [7905] = {.lex_state = 341}, + [7906] = {.lex_state = 341, .external_lex_state = 16}, + [7907] = {.lex_state = 341, .external_lex_state = 23}, + [7908] = {.lex_state = 131}, + [7909] = {.lex_state = 131}, + [7910] = {.lex_state = 341}, + [7911] = {.lex_state = 341, .external_lex_state = 23}, + [7912] = {.lex_state = 341}, + [7913] = {.lex_state = 341, .external_lex_state = 23}, + [7914] = {.lex_state = 341, .external_lex_state = 23}, + [7915] = {.lex_state = 341}, + [7916] = {.lex_state = 341, .external_lex_state = 23}, + [7917] = {.lex_state = 341}, + [7918] = {.lex_state = 341}, + [7919] = {.lex_state = 341, .external_lex_state = 23}, + [7920] = {.lex_state = 341}, + [7921] = {.lex_state = 341}, + [7922] = {.lex_state = 341, .external_lex_state = 16}, + [7923] = {.lex_state = 341}, + [7924] = {.lex_state = 341}, + [7925] = {.lex_state = 341, .external_lex_state = 16}, + [7926] = {.lex_state = 341}, + [7927] = {.lex_state = 341}, + [7928] = {.lex_state = 341, .external_lex_state = 23}, + [7929] = {.lex_state = 341}, + [7930] = {.lex_state = 131}, + [7931] = {.lex_state = 341, .external_lex_state = 23}, + [7932] = {.lex_state = 341}, + [7933] = {.lex_state = 341}, + [7934] = {.lex_state = 341}, + [7935] = {.lex_state = 341}, + [7936] = {.lex_state = 341}, + [7937] = {.lex_state = 341, .external_lex_state = 16}, + [7938] = {.lex_state = 341, .external_lex_state = 18}, + [7939] = {.lex_state = 341}, + [7940] = {.lex_state = 341}, + [7941] = {.lex_state = 341, .external_lex_state = 23}, + [7942] = {.lex_state = 341, .external_lex_state = 23}, + [7943] = {.lex_state = 341}, + [7944] = {.lex_state = 341}, + [7945] = {.lex_state = 341, .external_lex_state = 23}, + [7946] = {.lex_state = 341, .external_lex_state = 18}, + [7947] = {.lex_state = 341}, + [7948] = {.lex_state = 131}, + [7949] = {.lex_state = 341, .external_lex_state = 16}, + [7950] = {.lex_state = 131}, + [7951] = {.lex_state = 341}, + [7952] = {.lex_state = 341, .external_lex_state = 23}, + [7953] = {.lex_state = 341, .external_lex_state = 23}, + [7954] = {.lex_state = 341, .external_lex_state = 23}, + [7955] = {.lex_state = 131}, + [7956] = {.lex_state = 341}, + [7957] = {.lex_state = 341}, + [7958] = {.lex_state = 341}, + [7959] = {.lex_state = 341, .external_lex_state = 25}, + [7960] = {.lex_state = 341}, + [7961] = {.lex_state = 341, .external_lex_state = 23}, + [7962] = {.lex_state = 341, .external_lex_state = 16}, + [7963] = {.lex_state = 341}, + [7964] = {.lex_state = 341}, + [7965] = {.lex_state = 131}, + [7966] = {.lex_state = 341}, + [7967] = {.lex_state = 341, .external_lex_state = 16}, + [7968] = {.lex_state = 341, .external_lex_state = 23}, + [7969] = {.lex_state = 341}, + [7970] = {.lex_state = 341, .external_lex_state = 16}, + [7971] = {.lex_state = 341}, + [7972] = {.lex_state = 341, .external_lex_state = 23}, + [7973] = {.lex_state = 341}, + [7974] = {.lex_state = 341, .external_lex_state = 23}, + [7975] = {.lex_state = 341, .external_lex_state = 23}, + [7976] = {.lex_state = 341}, + [7977] = {.lex_state = 341, .external_lex_state = 23}, + [7978] = {.lex_state = 341}, + [7979] = {.lex_state = 341}, + [7980] = {.lex_state = 341}, + [7981] = {.lex_state = 341}, + [7982] = {.lex_state = 341}, + [7983] = {.lex_state = 341, .external_lex_state = 16}, + [7984] = {.lex_state = 341}, + [7985] = {.lex_state = 341}, + [7986] = {.lex_state = 341, .external_lex_state = 16}, + [7987] = {.lex_state = 341}, + [7988] = {.lex_state = 341}, + [7989] = {.lex_state = 341}, + [7990] = {.lex_state = 131}, + [7991] = {.lex_state = 341, .external_lex_state = 16}, + [7992] = {.lex_state = 341, .external_lex_state = 23}, + [7993] = {.lex_state = 341}, + [7994] = {.lex_state = 341}, + [7995] = {.lex_state = 341, .external_lex_state = 16}, + [7996] = {.lex_state = 341}, + [7997] = {.lex_state = 341, .external_lex_state = 16}, + [7998] = {.lex_state = 341, .external_lex_state = 23}, + [7999] = {.lex_state = 341, .external_lex_state = 23}, + [8000] = {.lex_state = 341, .external_lex_state = 18}, + [8001] = {.lex_state = 341, .external_lex_state = 23}, + [8002] = {.lex_state = 131}, + [8003] = {.lex_state = 341}, + [8004] = {.lex_state = 131}, + [8005] = {.lex_state = 341}, + [8006] = {.lex_state = 341}, + [8007] = {.lex_state = 341, .external_lex_state = 18}, + [8008] = {.lex_state = 131}, + [8009] = {.lex_state = 341}, + [8010] = {.lex_state = 131}, + [8011] = {.lex_state = 341}, + [8012] = {.lex_state = 131}, + [8013] = {.lex_state = 341, .external_lex_state = 25}, + [8014] = {.lex_state = 341, .external_lex_state = 23}, + [8015] = {.lex_state = 341}, + [8016] = {.lex_state = 341, .external_lex_state = 25}, + [8017] = {.lex_state = 341}, + [8018] = {.lex_state = 341, .external_lex_state = 23}, + [8019] = {.lex_state = 341, .external_lex_state = 25}, + [8020] = {.lex_state = 341}, + [8021] = {.lex_state = 341}, + [8022] = {.lex_state = 341}, + [8023] = {.lex_state = 341}, + [8024] = {.lex_state = 341}, + [8025] = {.lex_state = 341}, + [8026] = {.lex_state = 341}, + [8027] = {.lex_state = 341, .external_lex_state = 16}, + [8028] = {.lex_state = 341, .external_lex_state = 16}, + [8029] = {.lex_state = 341, .external_lex_state = 23}, + [8030] = {.lex_state = 341}, + [8031] = {.lex_state = 341}, + [8032] = {.lex_state = 341}, + [8033] = {.lex_state = 341}, + [8034] = {.lex_state = 341}, + [8035] = {.lex_state = 131}, + [8036] = {.lex_state = 341, .external_lex_state = 23}, [8037] = {.lex_state = 131}, - [8038] = {.lex_state = 340, .external_lex_state = 23}, - [8039] = {.lex_state = 131}, - [8040] = {.lex_state = 340}, - [8041] = {.lex_state = 340}, - [8042] = {.lex_state = 340}, - [8043] = {.lex_state = 131}, - [8044] = {.lex_state = 340, .external_lex_state = 23}, - [8045] = {.lex_state = 340}, - [8046] = {.lex_state = 340}, - [8047] = {.lex_state = 340, .external_lex_state = 26}, - [8048] = {.lex_state = 340, .external_lex_state = 26}, - [8049] = {.lex_state = 340, .external_lex_state = 16}, - [8050] = {.lex_state = 340}, - [8051] = {.lex_state = 340, .external_lex_state = 23}, - [8052] = {.lex_state = 340}, - [8053] = {.lex_state = 1}, - [8054] = {.lex_state = 340, .external_lex_state = 23}, - [8055] = {.lex_state = 340, .external_lex_state = 20}, - [8056] = {.lex_state = 340}, - [8057] = {.lex_state = 340, .external_lex_state = 20}, - [8058] = {.lex_state = 340}, - [8059] = {.lex_state = 340}, - [8060] = {.lex_state = 131}, - [8061] = {.lex_state = 340, .external_lex_state = 23}, - [8062] = {.lex_state = 340}, - [8063] = {.lex_state = 340}, - [8064] = {.lex_state = 131}, - [8065] = {.lex_state = 340, .external_lex_state = 16}, - [8066] = {.lex_state = 131}, - [8067] = {.lex_state = 340, .external_lex_state = 18}, - [8068] = {.lex_state = 340, .external_lex_state = 23}, - [8069] = {.lex_state = 340, .external_lex_state = 16}, - [8070] = {.lex_state = 340}, - [8071] = {.lex_state = 340}, - [8072] = {.lex_state = 340}, - [8073] = {.lex_state = 340}, - [8074] = {.lex_state = 340}, - [8075] = {.lex_state = 340}, - [8076] = {.lex_state = 340}, - [8077] = {.lex_state = 340}, - [8078] = {.lex_state = 131}, - [8079] = {.lex_state = 340}, - [8080] = {.lex_state = 340, .external_lex_state = 23}, - [8081] = {.lex_state = 340}, - [8082] = {.lex_state = 340, .external_lex_state = 23}, - [8083] = {.lex_state = 340, .external_lex_state = 23}, - [8084] = {.lex_state = 340}, - [8085] = {.lex_state = 340, .external_lex_state = 23}, - [8086] = {.lex_state = 340, .external_lex_state = 26}, - [8087] = {.lex_state = 340, .external_lex_state = 16}, - [8088] = {.lex_state = 131}, - [8089] = {.lex_state = 340}, - [8090] = {.lex_state = 340}, - [8091] = {.lex_state = 131}, - [8092] = {.lex_state = 340, .external_lex_state = 23}, - [8093] = {.lex_state = 340}, - [8094] = {.lex_state = 131}, - [8095] = {.lex_state = 340, .external_lex_state = 16}, - [8096] = {.lex_state = 340}, - [8097] = {.lex_state = 340}, - [8098] = {.lex_state = 340, .external_lex_state = 20}, - [8099] = {.lex_state = 340}, - [8100] = {.lex_state = 131}, - [8101] = {.lex_state = 340}, - [8102] = {.lex_state = 340}, - [8103] = {.lex_state = 340, .external_lex_state = 23}, - [8104] = {.lex_state = 340, .external_lex_state = 23}, - [8105] = {.lex_state = 340, .external_lex_state = 18}, - [8106] = {.lex_state = 340, .external_lex_state = 23}, - [8107] = {.lex_state = 340, .external_lex_state = 18}, - [8108] = {.lex_state = 340}, - [8109] = {.lex_state = 131}, - [8110] = {.lex_state = 340}, - [8111] = {.lex_state = 340}, - [8112] = {.lex_state = 340, .external_lex_state = 16}, - [8113] = {.lex_state = 340, .external_lex_state = 23}, - [8114] = {.lex_state = 340}, - [8115] = {.lex_state = 340}, - [8116] = {.lex_state = 340}, - [8117] = {.lex_state = 340}, - [8118] = {.lex_state = 131}, - [8119] = {.lex_state = 340, .external_lex_state = 16}, - [8120] = {.lex_state = 340}, - [8121] = {.lex_state = 340}, - [8122] = {.lex_state = 340, .external_lex_state = 23}, - [8123] = {.lex_state = 340, .external_lex_state = 23}, - [8124] = {.lex_state = 340}, - [8125] = {.lex_state = 340, .external_lex_state = 23}, - [8126] = {.lex_state = 131}, - [8127] = {.lex_state = 340}, - [8128] = {.lex_state = 131}, - [8129] = {.lex_state = 340}, - [8130] = {.lex_state = 340}, - [8131] = {.lex_state = 340}, - [8132] = {.lex_state = 340, .external_lex_state = 23}, - [8133] = {.lex_state = 131}, - [8134] = {.lex_state = 340}, - [8135] = {.lex_state = 340}, - [8136] = {.lex_state = 340}, - [8137] = {.lex_state = 340}, - [8138] = {.lex_state = 340}, - [8139] = {.lex_state = 340}, - [8140] = {.lex_state = 340}, - [8141] = {.lex_state = 340, .external_lex_state = 23}, - [8142] = {.lex_state = 340, .external_lex_state = 23}, - [8143] = {.lex_state = 340}, - [8144] = {.lex_state = 340, .external_lex_state = 23}, - [8145] = {.lex_state = 340}, - [8146] = {.lex_state = 340}, - [8147] = {.lex_state = 340}, - [8148] = {.lex_state = 340, .external_lex_state = 23}, - [8149] = {.lex_state = 340, .external_lex_state = 23}, - [8150] = {.lex_state = 340}, - [8151] = {.lex_state = 340, .external_lex_state = 23}, - [8152] = {.lex_state = 131}, - [8153] = {.lex_state = 340, .external_lex_state = 25}, - [8154] = {.lex_state = 340, .external_lex_state = 23}, - [8155] = {.lex_state = 340, .external_lex_state = 23}, - [8156] = {.lex_state = 340, .external_lex_state = 16}, - [8157] = {.lex_state = 340, .external_lex_state = 23}, - [8158] = {.lex_state = 340}, - [8159] = {.lex_state = 340, .external_lex_state = 16}, - [8160] = {.lex_state = 340, .external_lex_state = 23}, - [8161] = {.lex_state = 340, .external_lex_state = 23}, - [8162] = {.lex_state = 131}, - [8163] = {.lex_state = 340, .external_lex_state = 23}, - [8164] = {.lex_state = 340, .external_lex_state = 16}, - [8165] = {.lex_state = 340}, - [8166] = {.lex_state = 340, .external_lex_state = 23}, - [8167] = {.lex_state = 340, .external_lex_state = 23}, - [8168] = {.lex_state = 340, .external_lex_state = 28}, - [8169] = {.lex_state = 340, .external_lex_state = 23}, - [8170] = {.lex_state = 340, .external_lex_state = 16}, - [8171] = {.lex_state = 340}, - [8172] = {.lex_state = 340, .external_lex_state = 23}, - [8173] = {.lex_state = 340, .external_lex_state = 23}, - [8174] = {.lex_state = 131}, - [8175] = {.lex_state = 340, .external_lex_state = 23}, - [8176] = {.lex_state = 340}, - [8177] = {.lex_state = 340, .external_lex_state = 16}, - [8178] = {.lex_state = 340, .external_lex_state = 23}, - [8179] = {.lex_state = 340, .external_lex_state = 23}, - [8180] = {.lex_state = 131}, - [8181] = {.lex_state = 340, .external_lex_state = 23}, - [8182] = {.lex_state = 131}, - [8183] = {.lex_state = 340, .external_lex_state = 18}, - [8184] = {.lex_state = 340, .external_lex_state = 23}, - [8185] = {.lex_state = 340, .external_lex_state = 23}, - [8186] = {.lex_state = 340}, - [8187] = {.lex_state = 340, .external_lex_state = 23}, - [8188] = {.lex_state = 340}, - [8189] = {.lex_state = 131}, - [8190] = {.lex_state = 340}, - [8191] = {.lex_state = 340, .external_lex_state = 26}, - [8192] = {.lex_state = 340}, - [8193] = {.lex_state = 340, .external_lex_state = 26}, - [8194] = {.lex_state = 340}, - [8195] = {.lex_state = 131}, - [8196] = {.lex_state = 340}, - [8197] = {.lex_state = 131}, - [8198] = {.lex_state = 131}, - [8199] = {.lex_state = 340}, - [8200] = {.lex_state = 340}, - [8201] = {.lex_state = 340}, - [8202] = {.lex_state = 340, .external_lex_state = 18}, - [8203] = {.lex_state = 340, .external_lex_state = 23}, - [8204] = {.lex_state = 340, .external_lex_state = 23}, - [8205] = {.lex_state = 340}, - [8206] = {.lex_state = 340}, - [8207] = {.lex_state = 340}, - [8208] = {.lex_state = 131}, - [8209] = {.lex_state = 340, .external_lex_state = 23}, - [8210] = {.lex_state = 340, .external_lex_state = 23}, - [8211] = {.lex_state = 340}, - [8212] = {.lex_state = 340}, - [8213] = {.lex_state = 340}, - [8214] = {.lex_state = 340}, - [8215] = {.lex_state = 340, .external_lex_state = 23}, - [8216] = {.lex_state = 340, .external_lex_state = 23}, - [8217] = {.lex_state = 340}, - [8218] = {.lex_state = 340}, - [8219] = {.lex_state = 131}, - [8220] = {.lex_state = 131}, - [8221] = {.lex_state = 131}, - [8222] = {.lex_state = 340}, - [8223] = {.lex_state = 1}, - [8224] = {.lex_state = 340}, - [8225] = {.lex_state = 340, .external_lex_state = 20}, - [8226] = {.lex_state = 163}, - [8227] = {.lex_state = 131}, - [8228] = {.lex_state = 340, .external_lex_state = 25}, - [8229] = {.lex_state = 340}, - [8230] = {.lex_state = 340}, - [8231] = {.lex_state = 340}, - [8232] = {.lex_state = 340}, - [8233] = {.lex_state = 340}, - [8234] = {.lex_state = 340}, - [8235] = {.lex_state = 340, .external_lex_state = 27}, - [8236] = {.lex_state = 340, .external_lex_state = 27}, - [8237] = {.lex_state = 131}, - [8238] = {.lex_state = 340, .external_lex_state = 23}, - [8239] = {.lex_state = 131}, - [8240] = {.lex_state = 340}, - [8241] = {.lex_state = 340}, - [8242] = {.lex_state = 340}, - [8243] = {.lex_state = 340, .external_lex_state = 23}, - [8244] = {.lex_state = 340}, - [8245] = {.lex_state = 131}, - [8246] = {.lex_state = 340}, - [8247] = {.lex_state = 340, .external_lex_state = 23}, - [8248] = {.lex_state = 340}, - [8249] = {.lex_state = 340, .external_lex_state = 23}, - [8250] = {.lex_state = 340, .external_lex_state = 16}, - [8251] = {.lex_state = 340}, - [8252] = {.lex_state = 340, .external_lex_state = 16}, - [8253] = {.lex_state = 131}, - [8254] = {(TSStateId)(-1)}, - [8255] = {(TSStateId)(-1)}, - [8256] = {(TSStateId)(-1)}, - [8257] = {(TSStateId)(-1)}, - [8258] = {(TSStateId)(-1)}, - [8259] = {(TSStateId)(-1)}, - [8260] = {(TSStateId)(-1)}, + [8038] = {.lex_state = 341}, + [8039] = {.lex_state = 341}, + [8040] = {.lex_state = 341}, + [8041] = {.lex_state = 341, .external_lex_state = 23}, + [8042] = {.lex_state = 131}, + [8043] = {.lex_state = 341}, + [8044] = {.lex_state = 131}, + [8045] = {.lex_state = 341}, + [8046] = {.lex_state = 341, .external_lex_state = 25}, + [8047] = {.lex_state = 341}, + [8048] = {.lex_state = 341}, + [8049] = {.lex_state = 341}, + [8050] = {.lex_state = 341, .external_lex_state = 23}, + [8051] = {.lex_state = 341, .external_lex_state = 16}, + [8052] = {.lex_state = 341}, + [8053] = {.lex_state = 341}, + [8054] = {.lex_state = 341, .external_lex_state = 23}, + [8055] = {.lex_state = 341}, + [8056] = {.lex_state = 341}, + [8057] = {.lex_state = 131}, + [8058] = {.lex_state = 341}, + [8059] = {.lex_state = 341}, + [8060] = {.lex_state = 341}, + [8061] = {.lex_state = 341}, + [8062] = {.lex_state = 341}, + [8063] = {.lex_state = 341}, + [8064] = {.lex_state = 341, .external_lex_state = 23}, + [8065] = {.lex_state = 341}, + [8066] = {.lex_state = 341}, + [8067] = {.lex_state = 341}, + [8068] = {.lex_state = 341}, + [8069] = {.lex_state = 131}, + [8070] = {.lex_state = 341}, + [8071] = {.lex_state = 341, .external_lex_state = 23}, + [8072] = {.lex_state = 341}, + [8073] = {.lex_state = 341, .external_lex_state = 16}, + [8074] = {.lex_state = 341}, + [8075] = {.lex_state = 341}, + [8076] = {.lex_state = 341, .external_lex_state = 16}, + [8077] = {.lex_state = 341}, + [8078] = {.lex_state = 341}, + [8079] = {.lex_state = 341}, + [8080] = {.lex_state = 341}, + [8081] = {.lex_state = 341}, + [8082] = {.lex_state = 341}, + [8083] = {.lex_state = 341, .external_lex_state = 18}, + [8084] = {.lex_state = 341}, + [8085] = {.lex_state = 341, .external_lex_state = 23}, + [8086] = {.lex_state = 131}, + [8087] = {.lex_state = 131}, + [8088] = {.lex_state = 341}, + [8089] = {.lex_state = 341, .external_lex_state = 23}, + [8090] = {.lex_state = 341}, + [8091] = {.lex_state = 341}, + [8092] = {.lex_state = 1}, + [8093] = {.lex_state = 341}, + [8094] = {.lex_state = 341}, + [8095] = {.lex_state = 341}, + [8096] = {.lex_state = 131}, + [8097] = {.lex_state = 341}, + [8098] = {.lex_state = 341}, + [8099] = {.lex_state = 341, .external_lex_state = 23}, + [8100] = {.lex_state = 341}, + [8101] = {.lex_state = 341}, + [8102] = {.lex_state = 341, .external_lex_state = 18}, + [8103] = {.lex_state = 341}, + [8104] = {.lex_state = 131}, + [8105] = {.lex_state = 341}, + [8106] = {.lex_state = 341, .external_lex_state = 23}, + [8107] = {.lex_state = 341}, + [8108] = {.lex_state = 341, .external_lex_state = 23}, + [8109] = {.lex_state = 341, .external_lex_state = 23}, + [8110] = {.lex_state = 341, .external_lex_state = 23}, + [8111] = {.lex_state = 341}, + [8112] = {.lex_state = 131}, + [8113] = {.lex_state = 341}, + [8114] = {.lex_state = 341}, + [8115] = {.lex_state = 131}, + [8116] = {.lex_state = 341, .external_lex_state = 18}, + [8117] = {.lex_state = 341}, + [8118] = {.lex_state = 341, .external_lex_state = 23}, + [8119] = {.lex_state = 341}, + [8120] = {.lex_state = 341}, + [8121] = {.lex_state = 131}, + [8122] = {.lex_state = 341}, + [8123] = {.lex_state = 341}, + [8124] = {.lex_state = 131}, + [8125] = {.lex_state = 341, .external_lex_state = 23}, + [8126] = {.lex_state = 341}, + [8127] = {.lex_state = 341}, + [8128] = {.lex_state = 341}, + [8129] = {.lex_state = 341}, + [8130] = {.lex_state = 131}, + [8131] = {.lex_state = 341}, + [8132] = {.lex_state = 341, .external_lex_state = 16}, + [8133] = {.lex_state = 341}, + [8134] = {.lex_state = 341}, + [8135] = {.lex_state = 341}, + [8136] = {.lex_state = 341, .external_lex_state = 23}, + [8137] = {.lex_state = 341}, + [8138] = {.lex_state = 341}, + [8139] = {.lex_state = 341}, + [8140] = {.lex_state = 341}, + [8141] = {.lex_state = 341, .external_lex_state = 16}, + [8142] = {.lex_state = 341, .external_lex_state = 23}, + [8143] = {.lex_state = 341, .external_lex_state = 23}, + [8144] = {.lex_state = 341}, + [8145] = {.lex_state = 341, .external_lex_state = 21}, + [8146] = {.lex_state = 341}, + [8147] = {.lex_state = 341}, + [8148] = {.lex_state = 341}, + [8149] = {.lex_state = 341}, + [8150] = {.lex_state = 341}, + [8151] = {.lex_state = 341}, + [8152] = {.lex_state = 341}, + [8153] = {.lex_state = 341, .external_lex_state = 16}, + [8154] = {.lex_state = 341, .external_lex_state = 23}, + [8155] = {.lex_state = 341}, + [8156] = {.lex_state = 341}, + [8157] = {.lex_state = 341}, + [8158] = {.lex_state = 341, .external_lex_state = 25}, + [8159] = {.lex_state = 341, .external_lex_state = 16}, + [8160] = {.lex_state = 341, .external_lex_state = 16}, + [8161] = {.lex_state = 341, .external_lex_state = 23}, + [8162] = {.lex_state = 341}, + [8163] = {.lex_state = 341}, + [8164] = {.lex_state = 341, .external_lex_state = 16}, + [8165] = {.lex_state = 341}, + [8166] = {.lex_state = 341}, + [8167] = {.lex_state = 131}, + [8168] = {.lex_state = 131}, + [8169] = {.lex_state = 341}, + [8170] = {.lex_state = 341, .external_lex_state = 21}, + [8171] = {.lex_state = 341}, + [8172] = {.lex_state = 341, .external_lex_state = 23}, + [8173] = {.lex_state = 341}, + [8174] = {.lex_state = 341}, + [8175] = {.lex_state = 341}, + [8176] = {.lex_state = 341, .external_lex_state = 16}, + [8177] = {.lex_state = 341, .external_lex_state = 16}, + [8178] = {.lex_state = 131}, + [8179] = {.lex_state = 341, .external_lex_state = 23}, + [8180] = {.lex_state = 341, .external_lex_state = 16}, + [8181] = {.lex_state = 341}, + [8182] = {.lex_state = 341, .external_lex_state = 16}, + [8183] = {.lex_state = 341}, + [8184] = {.lex_state = 131}, + [8185] = {.lex_state = 341}, + [8186] = {.lex_state = 341}, + [8187] = {.lex_state = 341, .external_lex_state = 16}, + [8188] = {.lex_state = 341, .external_lex_state = 16}, + [8189] = {.lex_state = 341}, + [8190] = {.lex_state = 341}, + [8191] = {.lex_state = 341}, + [8192] = {.lex_state = 341, .external_lex_state = 18}, + [8193] = {.lex_state = 341}, + [8194] = {.lex_state = 341}, + [8195] = {.lex_state = 341, .external_lex_state = 16}, + [8196] = {.lex_state = 341}, + [8197] = {.lex_state = 341}, + [8198] = {.lex_state = 341}, + [8199] = {.lex_state = 131}, + [8200] = {.lex_state = 341}, + [8201] = {.lex_state = 341, .external_lex_state = 25}, + [8202] = {.lex_state = 341, .external_lex_state = 25}, + [8203] = {.lex_state = 341}, + [8204] = {.lex_state = 341, .external_lex_state = 16}, + [8205] = {.lex_state = 341, .external_lex_state = 16}, + [8206] = {.lex_state = 341, .external_lex_state = 16}, + [8207] = {.lex_state = 341, .external_lex_state = 23}, + [8208] = {.lex_state = 341}, + [8209] = {.lex_state = 341}, + [8210] = {.lex_state = 341}, + [8211] = {.lex_state = 341, .external_lex_state = 25}, + [8212] = {.lex_state = 341}, + [8213] = {.lex_state = 341}, + [8214] = {.lex_state = 341}, + [8215] = {.lex_state = 341, .external_lex_state = 23}, + [8216] = {.lex_state = 341, .external_lex_state = 23}, + [8217] = {.lex_state = 341, .external_lex_state = 23}, + [8218] = {.lex_state = 341, .external_lex_state = 23}, + [8219] = {.lex_state = 341, .external_lex_state = 23}, + [8220] = {.lex_state = 341}, + [8221] = {.lex_state = 341}, + [8222] = {.lex_state = 341}, + [8223] = {.lex_state = 341}, + [8224] = {.lex_state = 341}, + [8225] = {.lex_state = 341}, + [8226] = {.lex_state = 341, .external_lex_state = 23}, + [8227] = {.lex_state = 341}, + [8228] = {.lex_state = 341, .external_lex_state = 21}, + [8229] = {.lex_state = 341}, + [8230] = {.lex_state = 341, .external_lex_state = 21}, + [8231] = {.lex_state = 341}, + [8232] = {.lex_state = 131}, + [8233] = {.lex_state = 131}, + [8234] = {.lex_state = 341, .external_lex_state = 18}, + [8235] = {.lex_state = 341}, + [8236] = {.lex_state = 341}, + [8237] = {.lex_state = 341, .external_lex_state = 23}, + [8238] = {.lex_state = 341, .external_lex_state = 23}, + [8239] = {.lex_state = 341}, + [8240] = {.lex_state = 341, .external_lex_state = 23}, + [8241] = {.lex_state = 341, .external_lex_state = 23}, + [8242] = {.lex_state = 341}, + [8243] = {.lex_state = 341}, + [8244] = {.lex_state = 341}, + [8245] = {.lex_state = 341}, + [8246] = {.lex_state = 341}, + [8247] = {.lex_state = 341}, + [8248] = {.lex_state = 341, .external_lex_state = 23}, + [8249] = {.lex_state = 131}, + [8250] = {.lex_state = 131}, + [8251] = {.lex_state = 341}, + [8252] = {.lex_state = 341}, + [8253] = {.lex_state = 341}, + [8254] = {.lex_state = 341, .external_lex_state = 16}, + [8255] = {.lex_state = 341}, + [8256] = {.lex_state = 341}, + [8257] = {.lex_state = 341, .external_lex_state = 23}, + [8258] = {.lex_state = 341, .external_lex_state = 23}, + [8259] = {.lex_state = 341, .external_lex_state = 25}, + [8260] = {.lex_state = 341, .external_lex_state = 23}, + [8261] = {.lex_state = 341, .external_lex_state = 23}, + [8262] = {.lex_state = 341, .external_lex_state = 16}, + [8263] = {.lex_state = 341, .external_lex_state = 16}, + [8264] = {.lex_state = 341}, + [8265] = {.lex_state = 341}, + [8266] = {.lex_state = 341}, + [8267] = {.lex_state = 131}, + [8268] = {.lex_state = 341, .external_lex_state = 23}, + [8269] = {.lex_state = 341}, + [8270] = {.lex_state = 341}, + [8271] = {.lex_state = 341}, + [8272] = {.lex_state = 341, .external_lex_state = 16}, + [8273] = {.lex_state = 341, .external_lex_state = 23}, + [8274] = {.lex_state = 341}, + [8275] = {.lex_state = 341}, + [8276] = {.lex_state = 341}, + [8277] = {.lex_state = 341, .external_lex_state = 23}, + [8278] = {.lex_state = 341, .external_lex_state = 23}, + [8279] = {.lex_state = 341}, + [8280] = {.lex_state = 341, .external_lex_state = 23}, + [8281] = {.lex_state = 341, .external_lex_state = 23}, + [8282] = {.lex_state = 341, .external_lex_state = 18}, + [8283] = {.lex_state = 341}, + [8284] = {.lex_state = 341}, + [8285] = {.lex_state = 341, .external_lex_state = 23}, + [8286] = {.lex_state = 341, .external_lex_state = 23}, + [8287] = {.lex_state = 341, .external_lex_state = 21}, + [8288] = {.lex_state = 341, .external_lex_state = 23}, + [8289] = {.lex_state = 341, .external_lex_state = 23}, + [8290] = {.lex_state = 341, .external_lex_state = 25}, + [8291] = {.lex_state = 341}, + [8292] = {.lex_state = 341, .external_lex_state = 23}, + [8293] = {.lex_state = 341, .external_lex_state = 23}, + [8294] = {.lex_state = 131}, + [8295] = {.lex_state = 341, .external_lex_state = 23}, + [8296] = {.lex_state = 341, .external_lex_state = 23}, + [8297] = {.lex_state = 131}, + [8298] = {.lex_state = 341}, + [8299] = {.lex_state = 341, .external_lex_state = 23}, + [8300] = {.lex_state = 341, .external_lex_state = 23}, + [8301] = {.lex_state = 341}, + [8302] = {.lex_state = 341, .external_lex_state = 23}, + [8303] = {.lex_state = 341, .external_lex_state = 23}, + [8304] = {.lex_state = 341, .external_lex_state = 16}, + [8305] = {.lex_state = 341}, + [8306] = {.lex_state = 341, .external_lex_state = 23}, + [8307] = {.lex_state = 341, .external_lex_state = 23}, + [8308] = {.lex_state = 341}, + [8309] = {.lex_state = 341, .external_lex_state = 23}, + [8310] = {.lex_state = 341, .external_lex_state = 23}, + [8311] = {.lex_state = 341, .external_lex_state = 18}, + [8312] = {.lex_state = 131}, + [8313] = {.lex_state = 341, .external_lex_state = 23}, + [8314] = {.lex_state = 341, .external_lex_state = 23}, + [8315] = {.lex_state = 341}, + [8316] = {.lex_state = 341, .external_lex_state = 23}, + [8317] = {.lex_state = 341, .external_lex_state = 23}, + [8318] = {.lex_state = 341}, + [8319] = {.lex_state = 341}, + [8320] = {.lex_state = 341, .external_lex_state = 23}, + [8321] = {.lex_state = 341, .external_lex_state = 23}, + [8322] = {.lex_state = 341}, + [8323] = {.lex_state = 341, .external_lex_state = 23}, + [8324] = {.lex_state = 341, .external_lex_state = 23}, + [8325] = {.lex_state = 341}, + [8326] = {.lex_state = 341}, + [8327] = {.lex_state = 341, .external_lex_state = 23}, + [8328] = {.lex_state = 341, .external_lex_state = 23}, + [8329] = {.lex_state = 341, .external_lex_state = 26}, + [8330] = {.lex_state = 341, .external_lex_state = 23}, + [8331] = {.lex_state = 341, .external_lex_state = 23}, + [8332] = {.lex_state = 341}, + [8333] = {.lex_state = 341, .external_lex_state = 18}, + [8334] = {.lex_state = 341, .external_lex_state = 23}, + [8335] = {.lex_state = 341}, + [8336] = {.lex_state = 341, .external_lex_state = 23}, + [8337] = {.lex_state = 341}, + [8338] = {.lex_state = 341, .external_lex_state = 23}, + [8339] = {.lex_state = 341, .external_lex_state = 16}, + [8340] = {.lex_state = 341, .external_lex_state = 23}, + [8341] = {.lex_state = 341, .external_lex_state = 23}, + [8342] = {.lex_state = 341, .external_lex_state = 23}, + [8343] = {.lex_state = 341, .external_lex_state = 23}, + [8344] = {.lex_state = 341, .external_lex_state = 23}, + [8345] = {.lex_state = 341, .external_lex_state = 23}, + [8346] = {.lex_state = 341, .external_lex_state = 23}, + [8347] = {.lex_state = 341, .external_lex_state = 23}, + [8348] = {.lex_state = 341, .external_lex_state = 23}, + [8349] = {.lex_state = 341, .external_lex_state = 23}, + [8350] = {.lex_state = 341, .external_lex_state = 23}, + [8351] = {.lex_state = 341, .external_lex_state = 23}, + [8352] = {.lex_state = 341, .external_lex_state = 23}, + [8353] = {.lex_state = 341, .external_lex_state = 23}, + [8354] = {.lex_state = 341, .external_lex_state = 23}, + [8355] = {.lex_state = 341, .external_lex_state = 23}, + [8356] = {.lex_state = 341, .external_lex_state = 23}, + [8357] = {.lex_state = 341, .external_lex_state = 23}, + [8358] = {.lex_state = 341}, + [8359] = {.lex_state = 131}, + [8360] = {.lex_state = 341}, + [8361] = {.lex_state = 341, .external_lex_state = 28}, + [8362] = {.lex_state = 341}, + [8363] = {.lex_state = 341}, + [8364] = {.lex_state = 341}, + [8365] = {.lex_state = 341}, + [8366] = {.lex_state = 341}, + [8367] = {.lex_state = 341}, + [8368] = {.lex_state = 341, .external_lex_state = 23}, + [8369] = {.lex_state = 341, .external_lex_state = 23}, + [8370] = {.lex_state = 341}, + [8371] = {.lex_state = 341}, + [8372] = {.lex_state = 341}, + [8373] = {.lex_state = 341, .external_lex_state = 16}, + [8374] = {.lex_state = 341, .external_lex_state = 23}, + [8375] = {.lex_state = 341, .external_lex_state = 23}, + [8376] = {.lex_state = 341}, + [8377] = {.lex_state = 341}, + [8378] = {.lex_state = 341}, + [8379] = {.lex_state = 1}, + [8380] = {.lex_state = 341, .external_lex_state = 23}, + [8381] = {.lex_state = 341, .external_lex_state = 23}, + [8382] = {.lex_state = 341}, + [8383] = {.lex_state = 341}, + [8384] = {.lex_state = 341}, + [8385] = {.lex_state = 341}, + [8386] = {.lex_state = 341}, + [8387] = {.lex_state = 341, .external_lex_state = 23}, + [8388] = {.lex_state = 341}, + [8389] = {.lex_state = 131}, + [8390] = {.lex_state = 131}, + [8391] = {.lex_state = 341}, + [8392] = {.lex_state = 1}, + [8393] = {.lex_state = 341}, + [8394] = {.lex_state = 341, .external_lex_state = 21}, + [8395] = {.lex_state = 163}, + [8396] = {.lex_state = 341}, + [8397] = {.lex_state = 341, .external_lex_state = 26}, + [8398] = {.lex_state = 341, .external_lex_state = 16}, + [8399] = {.lex_state = 341}, + [8400] = {.lex_state = 341}, + [8401] = {.lex_state = 341}, + [8402] = {.lex_state = 341}, + [8403] = {.lex_state = 341}, + [8404] = {.lex_state = 341, .external_lex_state = 27}, + [8405] = {.lex_state = 341, .external_lex_state = 27}, + [8406] = {.lex_state = 341, .external_lex_state = 16}, + [8407] = {.lex_state = 341, .external_lex_state = 23}, + [8408] = {.lex_state = 341}, + [8409] = {.lex_state = 341}, + [8410] = {.lex_state = 341, .external_lex_state = 23}, + [8411] = {.lex_state = 341}, + [8412] = {.lex_state = 341, .external_lex_state = 16}, + [8413] = {.lex_state = 341, .external_lex_state = 23}, + [8414] = {.lex_state = 341, .external_lex_state = 23}, + [8415] = {.lex_state = 341}, + [8416] = {.lex_state = 131}, + [8417] = {.lex_state = 341}, + [8418] = {.lex_state = 341}, + [8419] = {(TSStateId)(-1)}, + [8420] = {(TSStateId)(-1)}, + [8421] = {(TSStateId)(-1)}, + [8422] = {(TSStateId)(-1)}, + [8423] = {(TSStateId)(-1)}, + [8424] = {(TSStateId)(-1)}, + [8425] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29869,92 +30211,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_file] = STATE(8232), - [sym_namespace] = STATE(6410), - [sym_named_module] = STATE(8230), - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5730), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_file] = STATE(8401), + [sym_namespace] = STATE(6455), + [sym_named_module] = STATE(8399), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5665), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(1), [sym_compiler_directive_decl] = STATE(1), [sym_fsi_directive_decl] = STATE(1), [sym_preproc_line] = STATE(1), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat1] = STATE(6115), - [aux_sym_file_repeat2] = STATE(378), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat1] = STATE(6073), + [aux_sym_file_repeat2] = STATE(383), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(17), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(21), @@ -30027,78 +30369,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [2] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(121), [sym_identifier] = ACTIONS(123), [anon_sym_namespace] = ACTIONS(123), @@ -30125,7 +30467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_LT_AT] = ACTIONS(123), [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_LBRACE_PIPE] = ACTIONS(121), [anon_sym_new] = ACTIONS(123), [anon_sym_return_BANG] = ACTIONS(121), @@ -30146,13 +30488,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(121), [anon_sym_function] = ACTIONS(123), [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), [anon_sym_use] = ACTIONS(123), [anon_sym_use_BANG] = ACTIONS(121), [anon_sym_do_BANG] = ACTIONS(121), [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(131), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_or] = ACTIONS(123), [anon_sym_exception] = ACTIONS(123), [aux_sym_char_token1] = ACTIONS(121), @@ -30162,7 +30504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(121), [anon_sym_LPAREN_PIPE] = ACTIONS(123), [sym_op_identifier] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(123), @@ -30183,7 +30525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(123), [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(121), @@ -30193,116 +30535,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(121), }, [3] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(139), - [anon_sym_module] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_open] = ACTIONS(139), - [anon_sym_LBRACK_LT] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(139), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_namespace] = ACTIONS(129), + [anon_sym_module] = ACTIONS(129), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_open] = ACTIONS(129), + [anon_sym_LBRACK_LT] = ACTIONS(127), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_type] = ACTIONS(129), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -30311,16 +30653,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), - [anon_sym_exception] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), + [anon_sym_exception] = ACTIONS(129), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), [anon_sym_DQUOTE] = ACTIONS(91), @@ -30328,7 +30670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -30339,136 +30681,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(137), - [anon_sym_POUNDload] = ACTIONS(137), + [anon_sym_POUNDr] = ACTIONS(127), + [anon_sym_POUNDload] = ACTIONS(127), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(127), }, [4] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(185), [anon_sym_module] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(185), [anon_sym_LBRACK_LT] = ACTIONS(183), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(185), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -30477,15 +30819,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(185), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -30494,7 +30836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -30505,17 +30847,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(183), @@ -30525,116 +30867,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(187), }, [5] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(189), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(191), [anon_sym_module] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(191), [anon_sym_LBRACK_LT] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(191), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -30643,15 +30985,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(191), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -30660,7 +31002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -30671,17 +31013,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(189), @@ -30691,282 +31033,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(187), }, [6] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(193), - [sym_identifier] = ACTIONS(19), + [sym_identifier] = ACTIONS(195), [anon_sym_namespace] = ACTIONS(195), [anon_sym_module] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(193), [anon_sym_open] = ACTIONS(195), [anon_sym_LBRACK_LT] = ACTIONS(193), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), [anon_sym_type] = ACTIONS(195), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(195), [anon_sym_exception] = ACTIONS(195), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(171), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(193), [anon_sym_POUNDload] = ACTIONS(193), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(187), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [7] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(197), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(199), [anon_sym_module] = ACTIONS(199), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(199), [anon_sym_LBRACK_LT] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(199), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -30975,15 +31317,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(199), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -30992,7 +31334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -31003,136 +31345,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(197), [anon_sym_POUNDload] = ACTIONS(197), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(197), + [sym__newline] = ACTIONS(187), }, [8] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(201), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(203), [anon_sym_module] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(203), [anon_sym_LBRACK_LT] = ACTIONS(201), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(203), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -31141,15 +31483,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(203), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -31158,7 +31500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -31169,136 +31511,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(201), [anon_sym_POUNDload] = ACTIONS(201), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(201), + [sym__newline] = ACTIONS(187), }, [9] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(205), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(207), [anon_sym_module] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(207), [anon_sym_LBRACK_LT] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(207), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -31307,15 +31649,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(167), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(207), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -31324,7 +31666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -31335,98 +31677,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(177), [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(205), [anon_sym_POUNDload] = ACTIONS(205), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(187), + [sym__newline] = ACTIONS(205), }, [10] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(209), [sym_identifier] = ACTIONS(211), [anon_sym_namespace] = ACTIONS(211), @@ -31453,7 +31795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), @@ -31474,13 +31816,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(131), + [anon_sym_LPAREN2] = ACTIONS(169), [anon_sym_or] = ACTIONS(211), [anon_sym_exception] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), @@ -31490,7 +31832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -31511,7 +31853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(209), @@ -31521,270 +31863,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(209), }, [11] = { - [sym_function_or_value_defn] = STATE(737), + [sym_function_or_value_defn] = STATE(630), [sym__expression] = STATE(10), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(684), - [sym_infix_op] = STATE(634), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(672), + [sym_infix_op] = STATE(583), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(998), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1026), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(215), + [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(215), [anon_sym_module] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(215), [anon_sym_LBRACK_LT] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_null] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_LT_DASH] = ACTIONS(159), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(171), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(213), [anon_sym_POUNDload] = ACTIONS(213), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), + [anon_sym_POUNDif] = ACTIONS(181), [sym__newline] = ACTIONS(213), }, [12] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(189), [sym_identifier] = ACTIONS(19), [anon_sym_module] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(191), [anon_sym_LBRACK_LT] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), [anon_sym_type] = ACTIONS(191), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -31794,8 +32136,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -31805,14 +32147,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(191), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -31821,7 +32163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -31832,17 +32174,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(189), @@ -31852,143 +32194,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(221), }, [13] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(205), - [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_open] = ACTIONS(207), - [anon_sym_LBRACK_LT] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(29), - [anon_sym_type] = ACTIONS(207), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(217), - [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(189), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(191), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(191), + [anon_sym_downto] = ACTIONS(191), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), - [anon_sym_exception] = ACTIONS(207), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(173), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -31997,124 +32339,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(205), - [anon_sym_POUNDload] = ACTIONS(205), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(221), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [14] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(201), [sym_identifier] = ACTIONS(19), [anon_sym_module] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(203), [anon_sym_LBRACK_LT] = ACTIONS(201), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), [anon_sym_type] = ACTIONS(203), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -32124,8 +32466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -32135,14 +32477,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(203), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -32151,7 +32493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -32162,268 +32504,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(201), [anon_sym_POUNDload] = ACTIONS(201), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(201), + [sym__newline] = ACTIONS(221), }, [15] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(121), - [sym_identifier] = ACTIONS(123), - [anon_sym_module] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_open] = ACTIONS(123), - [anon_sym_LBRACK_LT] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_type] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(197), + [sym_identifier] = ACTIONS(19), + [anon_sym_module] = ACTIONS(199), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_open] = ACTIONS(199), + [anon_sym_LBRACK_LT] = ACTIONS(197), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_return] = ACTIONS(29), + [anon_sym_type] = ACTIONS(199), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_null] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(125), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(123), - [anon_sym_exception] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(133), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_LT_DASH] = ACTIONS(219), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), + [anon_sym_exception] = ACTIONS(199), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(171), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(121), - [anon_sym_POUNDload] = ACTIONS(121), + [anon_sym_POUNDr] = ACTIONS(197), + [anon_sym_POUNDload] = ACTIONS(197), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(181), + [sym__newline] = ACTIONS(221), }, [16] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(127), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(127), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(129), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(129), + [anon_sym_downto] = ACTIONS(129), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(127), + }, + [17] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(193), + [sym_identifier] = ACTIONS(195), + [anon_sym_module] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_open] = ACTIONS(195), + [anon_sym_LBRACK_LT] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_type] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(195), + [anon_sym_exception] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(171), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(193), + [anon_sym_POUNDload] = ACTIONS(193), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + }, + [18] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(183), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(185), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(185), + [anon_sym_downto] = ACTIONS(185), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), + }, + [19] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(209), [sym_identifier] = ACTIONS(211), + [anon_sym_module] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), - [anon_sym_GT_RBRACK] = ACTIONS(209), + [anon_sym_open] = ACTIONS(211), + [anon_sym_LBRACK_LT] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), [anon_sym_return] = ACTIONS(211), + [anon_sym_type] = ACTIONS(211), [anon_sym_do] = ACTIONS(211), [anon_sym_let] = ACTIONS(211), [anon_sym_let_BANG] = ACTIONS(209), @@ -32436,15 +33277,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_RBRACK] = ACTIONS(209), [anon_sym_LBRACK_PIPE] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(209), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(211), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), [anon_sym_yield] = ACTIONS(211), @@ -32456,8 +33294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(209), [anon_sym_COLON_QMARK_GT] = ACTIONS(209), [anon_sym_for] = ACTIONS(211), - [anon_sym_to] = ACTIONS(211), - [anon_sym_downto] = ACTIONS(211), [anon_sym_while] = ACTIONS(211), [anon_sym_if] = ACTIONS(211), [anon_sym_fun] = ACTIONS(211), @@ -32466,14 +33302,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(169), [anon_sym_or] = ACTIONS(211), + [anon_sym_exception] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(211), @@ -32481,7 +33318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(231), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -32502,774 +33339,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(209), + [anon_sym_POUNDload] = ACTIONS(209), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), [sym__newline] = ACTIONS(209), }, - [17] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(183), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_RBRACE] = ACTIONS(183), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(185), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(185), - [anon_sym_downto] = ACTIONS(185), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), - }, - [18] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(215), - [anon_sym_module] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_open] = ACTIONS(215), - [anon_sym_LBRACK_LT] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_type] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [anon_sym_exception] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(213), - [anon_sym_POUNDload] = ACTIONS(213), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - }, - [19] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(139), - [anon_sym_downto] = ACTIONS(139), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(137), - }, [20] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(193), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(193), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_RBRACE] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(195), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(195), - [anon_sym_downto] = ACTIONS(195), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), - }, - [21] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(197), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(199), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_open] = ACTIONS(199), - [anon_sym_LBRACK_LT] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(129), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_open] = ACTIONS(129), + [anon_sym_LBRACK_LT] = ACTIONS(127), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), - [anon_sym_type] = ACTIONS(199), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(129), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -33279,8 +33456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -33290,15 +33467,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), - [anon_sym_exception] = ACTIONS(199), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), + [anon_sym_exception] = ACTIONS(129), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), [anon_sym_DQUOTE] = ACTIONS(91), @@ -33306,7 +33483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -33317,161 +33494,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(197), - [anon_sym_POUNDload] = ACTIONS(197), + [anon_sym_POUNDr] = ACTIONS(127), + [anon_sym_POUNDload] = ACTIONS(127), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(197), + [sym__newline] = ACTIONS(127), + }, + [21] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT_RBRACK] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_to] = ACTIONS(123), + [anon_sym_downto] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [22] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(201), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(199), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(199), - [anon_sym_downto] = ACTIONS(199), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(201), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(201), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(203), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(203), + [anon_sym_downto] = ACTIONS(203), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -33482,326 +33824,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(197), + [sym__newline] = ACTIONS(313), }, [23] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(209), - [sym_identifier] = ACTIONS(211), - [anon_sym_module] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_LBRACK_LT] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(125), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(211), - [anon_sym_exception] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(133), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(213), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(215), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(215), + [anon_sym_downto] = ACTIONS(215), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(209), - [anon_sym_POUNDload] = ACTIONS(209), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(213), }, [24] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_GT_RBRACK] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_RBRACK] = ACTIONS(205), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_RBRACE] = ACTIONS(205), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), [anon_sym_with] = ACTIONS(207), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), [anon_sym_to] = ACTIONS(207), [anon_sym_downto] = ACTIONS(207), - [anon_sym_while] = ACTIONS(267), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -33812,124 +34154,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [sym__newline] = ACTIONS(205), }, [25] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_GT_RBRACK] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_with] = ACTIONS(195), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_to] = ACTIONS(195), + [anon_sym_downto] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + }, + [26] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(19), [anon_sym_module] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_open] = ACTIONS(185), [anon_sym_LBRACK_LT] = ACTIONS(183), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), [anon_sym_type] = ACTIONS(185), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(147), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -33939,8 +34446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -33950,14 +34457,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), [anon_sym_exception] = ACTIONS(185), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), @@ -33966,7 +34473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -33977,17 +34484,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(183), @@ -33996,105 +34503,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(181), [sym__newline] = ACTIONS(221), }, - [26] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(137), + [27] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(121), + [sym_identifier] = ACTIONS(123), + [anon_sym_module] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(123), + [anon_sym_LBRACK_LT] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [anon_sym_exception] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(121), + [anon_sym_POUNDload] = ACTIONS(121), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), + }, + [28] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(205), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_open] = ACTIONS(139), - [anon_sym_LBRACK_LT] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_open] = ACTIONS(207), + [anon_sym_LBRACK_LT] = ACTIONS(205), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), - [anon_sym_type] = ACTIONS(139), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(207), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -34104,8 +34776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -34115,15 +34787,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), - [anon_sym_exception] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), + [anon_sym_exception] = ACTIONS(207), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), [anon_sym_DQUOTE] = ACTIONS(91), @@ -34131,7 +34803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -34142,289 +34814,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(137), - [anon_sym_POUNDload] = ACTIONS(137), + [anon_sym_POUNDr] = ACTIONS(205), + [anon_sym_POUNDload] = ACTIONS(205), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(137), - }, - [27] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_GT_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_to] = ACTIONS(215), - [anon_sym_downto] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym__newline] = ACTIONS(205), }, - [28] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(23), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(597), - [sym_infix_op] = STATE(647), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_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(1084), - [aux_sym_sequential_expression_repeat1] = STATE(1086), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(193), + [29] = { + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(543), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_sequential_expression_repeat1] = STATE(1044), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(213), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_open] = ACTIONS(195), - [anon_sym_LBRACK_LT] = ACTIONS(193), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_open] = ACTIONS(215), + [anon_sym_LBRACK_LT] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(133), [anon_sym_return] = ACTIONS(29), - [anon_sym_type] = ACTIONS(195), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(215), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(217), [anon_sym_null] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(133), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(125), + [anon_sym_LT_AT_AT] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_LBRACE_PIPE] = ACTIONS(55), [anon_sym_new] = ACTIONS(57), [anon_sym_return_BANG] = ACTIONS(59), @@ -34434,8 +34941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(29), [anon_sym_upcast] = ACTIONS(29), [anon_sym_downcast] = ACTIONS(29), - [anon_sym_COLON_GT] = ACTIONS(165), - [anon_sym_COLON_QMARK_GT] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -34445,15 +34952,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_DOT_LBRACK] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), + [anon_sym_DOT_LBRACK] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(163), [anon_sym_use] = ACTIONS(77), [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_or] = ACTIONS(155), - [anon_sym_exception] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(169), + [anon_sym_or] = ACTIONS(145), + [anon_sym_exception] = ACTIONS(215), [aux_sym_char_token1] = ACTIONS(87), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), [anon_sym_DQUOTE] = ACTIONS(91), @@ -34461,7 +34968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(133), + [sym_unit] = ACTIONS(171), [anon_sym_LPAREN_PIPE] = ACTIONS(103), [sym_op_identifier] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(43), @@ -34472,442 +34979,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(113), [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(193), - [anon_sym_POUNDload] = ACTIONS(193), + [anon_sym_POUNDr] = ACTIONS(213), + [anon_sym_POUNDload] = ACTIONS(213), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(181), - [sym__newline] = ACTIONS(221), - }, - [29] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_GT_RBRACK] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_RBRACK] = ACTIONS(121), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_with] = ACTIONS(123), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_to] = ACTIONS(123), - [anon_sym_downto] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [sym__newline] = ACTIONS(213), }, [30] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(201), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_GT_RBRACK] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(203), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(203), - [anon_sym_downto] = ACTIONS(203), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(209), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_with] = ACTIONS(211), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_to] = ACTIONS(211), + [anon_sym_downto] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, [31] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_comment] = STATE(31), [sym_compiler_directive_decl] = STATE(31), [sym_fsi_directive_decl] = STATE(31), [sym_preproc_line] = STATE(31), - [sym_preproc_else] = STATE(7310), - [sym_preproc_if_in_expression] = STATE(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_COLON] = ACTIONS(317), [anon_sym_return] = ACTIONS(319), [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(323), [anon_sym_COMMA] = ACTIONS(325), [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(145), [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(329), @@ -34917,6 +35259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(337), [anon_sym_DOT] = ACTIONS(339), [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(129), [anon_sym_new] = ACTIONS(343), [anon_sym_return_BANG] = ACTIONS(345), [anon_sym_yield] = ACTIONS(319), @@ -34943,7 +35286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(373), [anon_sym_begin] = ACTIONS(375), [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), + [anon_sym_or] = ACTIONS(145), [aux_sym_char_token1] = ACTIONS(379), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), [anon_sym_DQUOTE] = ACTIONS(383), @@ -34962,276 +35305,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(399), [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(405), - [anon_sym_POUNDelse] = ACTIONS(408), - [sym__newline] = ACTIONS(411), + [sym__newline] = ACTIONS(127), + [sym__dedent] = ACTIONS(127), }, [32] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_as] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - [sym__dedent] = ACTIONS(213), + [sym_preproc_else] = STATE(7772), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [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(65), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(495), + [anon_sym_POUNDelse] = ACTIONS(498), + [sym__newline] = ACTIONS(501), }, [33] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_comment] = STATE(33), [sym_compiler_directive_decl] = STATE(33), [sym_fsi_directive_decl] = STATE(33), [sym_preproc_line] = STATE(33), - [sym_preproc_else] = STATE(8107), - [sym_preproc_if_in_expression] = STATE(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_as] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_with] = ACTIONS(195), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(393), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + [sym__dedent] = ACTIONS(193), + }, + [34] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_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(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_COLON] = ACTIONS(317), [anon_sym_return] = ACTIONS(319), [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(191), [anon_sym_LPAREN] = ACTIONS(323), [anon_sym_COMMA] = ACTIONS(325), [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(145), [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(329), @@ -35241,6 +35745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(337), [anon_sym_DOT] = ACTIONS(339), [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(191), [anon_sym_new] = ACTIONS(343), [anon_sym_return_BANG] = ACTIONS(345), [anon_sym_yield] = ACTIONS(319), @@ -35267,7 +35772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(373), [anon_sym_begin] = ACTIONS(375), [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), + [anon_sym_or] = ACTIONS(145), [aux_sym_char_token1] = ACTIONS(379), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), [anon_sym_DQUOTE] = ACTIONS(383), @@ -35286,323 +35791,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(399), [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(415), - [anon_sym_POUNDelse] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - }, - [34] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_comment] = STATE(34), - [sym_compiler_directive_decl] = STATE(34), - [sym_fsi_directive_decl] = STATE(34), - [sym_preproc_line] = STATE(34), - [sym_preproc_else] = STATE(7671), - [sym_preproc_if_in_expression] = STATE(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(418), - [anon_sym_POUNDelse] = ACTIONS(408), - [sym__newline] = ACTIONS(411), + [sym__newline] = ACTIONS(503), + [sym__dedent] = ACTIONS(189), }, [35] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_else] = STATE(7777), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(207), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [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(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -35611,160 +35952,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(511), - [sym__dedent] = ACTIONS(205), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(505), + [anon_sym_POUNDelse] = ACTIONS(498), + [sym__newline] = ACTIONS(501), }, [36] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_else] = STATE(8102), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(185), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [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(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -35773,99 +36114,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(511), - [sym__dedent] = ACTIONS(183), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(508), + [anon_sym_POUNDelse] = ACTIONS(498), + [sym__newline] = ACTIONS(501), }, [37] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(123), [anon_sym_EQ] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(123), @@ -35887,7 +36229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_LT_AT] = ACTIONS(123), [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_LBRACE_PIPE] = ACTIONS(121), [anon_sym_with] = ACTIONS(123), [anon_sym_new] = ACTIONS(123), @@ -35909,13 +36251,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(121), [anon_sym_function] = ACTIONS(123), [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), [anon_sym_use] = ACTIONS(123), [anon_sym_use_BANG] = ACTIONS(121), [anon_sym_do_BANG] = ACTIONS(121), [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_or] = ACTIONS(123), [aux_sym_char_token1] = ACTIONS(121), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), @@ -35924,7 +36266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(499), + [sym_unit] = ACTIONS(121), [anon_sym_LPAREN_PIPE] = ACTIONS(123), [sym_op_identifier] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(123), @@ -35945,7 +36287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(123), [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -35956,749 +36298,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(121), }, [38] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1561), - [aux_sym__list_elements_repeat1] = STATE(6315), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(577), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(605), - [sym__dedent] = ACTIONS(607), - }, - [39] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_as] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - [sym__dedent] = ACTIONS(213), - }, - [40] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(203), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(201), - [sym__dedent] = ACTIONS(201), - }, - [41] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_comment] = STATE(41), - [sym_compiler_directive_decl] = STATE(41), - [sym_fsi_directive_decl] = STATE(41), - [sym_preproc_line] = STATE(41), - [sym_preproc_if_in_expression] = STATE(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), - }, - [42] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_comment] = STATE(42), - [sym_compiler_directive_decl] = STATE(42), - [sym_fsi_directive_decl] = STATE(42), - [sym_preproc_line] = STATE(42), - [sym_preproc_else] = STATE(7578), - [sym_preproc_if_in_expression] = STATE(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_COLON] = ACTIONS(317), [anon_sym_return] = ACTIONS(319), [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(207), [anon_sym_LPAREN] = ACTIONS(323), [anon_sym_COMMA] = ACTIONS(325), [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(145), [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(329), [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_LT_AT] = ACTIONS(335), [anon_sym_LT_AT_AT] = ACTIONS(337), [anon_sym_DOT] = ACTIONS(339), [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(207), [anon_sym_new] = ACTIONS(343), [anon_sym_return_BANG] = ACTIONS(345), [anon_sym_yield] = ACTIONS(319), @@ -36725,7 +36420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(373), [anon_sym_begin] = ACTIONS(375), [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), + [anon_sym_or] = ACTIONS(145), [aux_sym_char_token1] = ACTIONS(379), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), [anon_sym_DQUOTE] = ACTIONS(383), @@ -36744,323 +36439,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(399), [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(609), - [anon_sym_POUNDelse] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - }, - [43] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(199), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(197), - [sym__dedent] = ACTIONS(197), + [sym__newline] = ACTIONS(205), + [sym__dedent] = ACTIONS(205), }, - [44] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_null] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(141), + [39] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_comment] = STATE(39), + [sym_compiler_directive_decl] = STATE(39), + [sym_fsi_directive_decl] = STATE(39), + [sym_preproc_line] = STATE(39), + [sym_preproc_else] = STATE(7176), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(195), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_COLON_GT] = ACTIONS(453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(453), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [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(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_LT_DASH] = ACTIONS(469), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_LPAREN2] = ACTIONS(483), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(499), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(503), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -37069,99 +36600,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(509), - [sym__newline] = ACTIONS(511), - [sym__dedent] = ACTIONS(193), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(511), + [anon_sym_POUNDelse] = ACTIONS(498), + [sym__newline] = ACTIONS(501), }, - [45] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(45), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(682), - [sym_infix_op] = STATE(779), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), - [sym_block_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(1570), - [aux_sym_sequential_expression_repeat1] = STATE(1547), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [40] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_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(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -37183,7 +36715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(339), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_with] = ACTIONS(211), [anon_sym_new] = ACTIONS(211), @@ -37205,13 +36737,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), + [anon_sym_DOT_LBRACK] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(367), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_LPAREN2] = ACTIONS(377), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -37220,7 +36752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(499), + [sym_unit] = ACTIONS(393), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -37241,7 +36773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -37251,92 +36783,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(209), [sym__dedent] = ACTIONS(209), }, - [46] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [41] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_comment] = STATE(41), + [sym_compiler_directive_decl] = STATE(41), + [sym_fsi_directive_decl] = STATE(41), + [sym_preproc_line] = STATE(41), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(131), [anon_sym_COLON] = ACTIONS(317), [anon_sym_return] = ACTIONS(319), [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(323), [anon_sym_COMMA] = ACTIONS(325), [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_QMARK] = ACTIONS(145), [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(329), @@ -37346,6 +36879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(337), [anon_sym_DOT] = ACTIONS(339), [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(185), [anon_sym_new] = ACTIONS(343), [anon_sym_return_BANG] = ACTIONS(345), [anon_sym_yield] = ACTIONS(319), @@ -37372,7 +36906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(373), [anon_sym_begin] = ACTIONS(375), [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), + [anon_sym_or] = ACTIONS(145), [aux_sym_char_token1] = ACTIONS(379), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), [anon_sym_DQUOTE] = ACTIONS(383), @@ -37391,161 +36925,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(399), [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(193), - [anon_sym_POUNDelse] = ACTIONS(193), - [sym__newline] = ACTIONS(411), + [sym__newline] = ACTIONS(503), + [sym__dedent] = ACTIONS(183), }, - [47] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [42] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_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(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(317), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_null] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(612), - [anon_sym_downto] = ACTIONS(612), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(203), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_COLON_GT] = ACTIONS(347), + [anon_sym_COLON_QMARK_GT] = ACTIONS(347), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_LT_DASH] = ACTIONS(363), + [anon_sym_DOT_LBRACK] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(393), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -37554,158 +37087,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(403), + [sym__newline] = ACTIONS(503), + [sym__dedent] = ACTIONS(201), }, - [48] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [43] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_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(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(317), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_COMMA] = ACTIONS(325), + [anon_sym_null] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(199), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(215), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_COLON_GT] = ACTIONS(347), + [anon_sym_COLON_QMARK_GT] = ACTIONS(347), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_LT_DASH] = ACTIONS(363), + [anon_sym_DOT_LBRACK] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(393), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -37714,260 +37249,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(197), - [sym__dedent] = ACTIONS(197), - }, - [49] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [anon_sym_POUNDendif] = ACTIONS(213), - [anon_sym_POUNDelse] = ACTIONS(213), + [anon_sym_POUNDif] = ACTIONS(403), [sym__newline] = ACTIONS(213), + [sym__dedent] = ACTIONS(213), }, - [50] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [44] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(742), + [sym_infix_op] = STATE(709), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), + [sym_block_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(1659), + [aux_sym_sequential_expression_repeat1] = STATE(1523), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_as] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), + [sym__dedent] = ACTIONS(121), + }, + [45] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym__list_elements_repeat1] = STATE(6304), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(580), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(608), + [sym__dedent] = ACTIONS(610), + }, + [46] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_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(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -37988,9 +37686,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(429), [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(211), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), [anon_sym_yield] = ACTIONS(211), @@ -38010,13 +37707,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(575), + [anon_sym_LPAREN2] = ACTIONS(467), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -38025,7 +37722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(593), + [sym_unit] = ACTIONS(483), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -38046,150 +37743,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), + [anon_sym_POUNDendif] = ACTIONS(209), + [anon_sym_POUNDelse] = ACTIONS(209), [sym__newline] = ACTIONS(209), - [sym__dedent] = ACTIONS(209), }, - [51] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [47] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(636), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(129), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(127), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -38198,319 +37896,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(127), }, - [52] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(195), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(193), + [48] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(193), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, - [53] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_comment] = STATE(53), - [sym_compiler_directive_decl] = STATE(53), - [sym_fsi_directive_decl] = STATE(53), - [sym_preproc_line] = STATE(53), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [49] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(203), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(205), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -38519,159 +38218,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(201), - [sym__dedent] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(205), }, - [54] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_comment] = STATE(54), - [sym_compiler_directive_decl] = STATE(54), - [sym_fsi_directive_decl] = STATE(54), - [sym_preproc_line] = STATE(54), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [50] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(185), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(213), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(213), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -38680,158 +38379,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(183), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(213), }, - [55] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [51] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(658), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(201), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(201), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -38842,420 +38540,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(720), }, - [56] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [52] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_DASH_GT] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + }, + [53] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_comment] = STATE(53), + [sym_compiler_directive_decl] = STATE(53), + [sym_fsi_directive_decl] = STATE(53), + [sym_preproc_line] = STATE(53), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(207), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_DOT_DOT2] = ACTIONS(121), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(205), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, - [57] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [54] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_comment] = STATE(54), + [sym_compiler_directive_decl] = STATE(54), + [sym_fsi_directive_decl] = STATE(54), + [sym_preproc_line] = STATE(54), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(209), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(209), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, - [58] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [55] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -39276,7 +39135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(636), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), @@ -39292,18 +39151,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(211), [anon_sym_if] = ACTIONS(211), [anon_sym_fun] = ACTIONS(211), + [anon_sym_DASH_GT] = ACTIONS(211), [anon_sym_try] = ACTIONS(211), [anon_sym_match] = ACTIONS(211), [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LPAREN2] = ACTIONS(674), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -39312,7 +39173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(393), + [sym_unit] = ACTIONS(690), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -39333,90 +39194,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), - [anon_sym_POUNDendif] = ACTIONS(209), - [anon_sym_POUNDelse] = ACTIONS(209), [sym__newline] = ACTIONS(209), }, - [59] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [56] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(189), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), + }, + [57] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(123), [anon_sym_EQ] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(123), @@ -39437,7 +39457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_LT_AT] = ACTIONS(123), [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_LBRACE_PIPE] = ACTIONS(121), [anon_sym_new] = ACTIONS(123), [anon_sym_return_BANG] = ACTIONS(121), @@ -39453,18 +39473,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(123), [anon_sym_if] = ACTIONS(123), [anon_sym_fun] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(123), [anon_sym_try] = ACTIONS(123), [anon_sym_match] = ACTIONS(123), [anon_sym_match_BANG] = ACTIONS(121), [anon_sym_function] = ACTIONS(123), [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), [anon_sym_use] = ACTIONS(123), [anon_sym_use_BANG] = ACTIONS(121), [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_or] = ACTIONS(123), [aux_sym_char_token1] = ACTIONS(121), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), @@ -39473,7 +39495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(393), + [sym_unit] = ACTIONS(121), [anon_sym_LPAREN_PIPE] = ACTIONS(123), [sym_op_identifier] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(123), @@ -39494,149 +39516,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(123), [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(121), - [anon_sym_POUNDendif] = ACTIONS(121), - [anon_sym_POUNDelse] = ACTIONS(121), [sym__newline] = ACTIONS(121), }, + [58] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(722), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), + }, + [59] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(127), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(127), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(127), + }, [60] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(660), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -39647,159 +39989,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(720), }, [61] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(199), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), [anon_sym_use] = ACTIONS(714), [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -39808,157 +40150,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [62] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -39967,159 +40311,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(137), - [anon_sym_POUNDelse] = ACTIONS(137), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [63] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(738), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -40128,161 +40472,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(183), - [anon_sym_POUNDelse] = ACTIONS(183), - [sym__newline] = ACTIONS(411), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), }, [64] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -40291,159 +40631,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(740), + [anon_sym_POUNDelse] = ACTIONS(740), + [sym__newline] = ACTIONS(501), }, [65] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(752), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(129), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -40452,320 +40794,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(127), }, [66] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_as] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_as] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_with] = ACTIONS(195), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [67] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(760), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(191), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -40774,158 +41116,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(832), }, [68] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym__list_elements_repeat1] = STATE(6221), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(834), + [anon_sym_downto] = ACTIONS(834), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -40934,158 +41277,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(850), - [sym__dedent] = ACTIONS(852), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [69] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -41094,322 +41438,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(197), - [anon_sym_POUNDelse] = ACTIONS(197), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [70] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(209), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(201), - [anon_sym_POUNDelse] = ACTIONS(201), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), + [sym__dedent] = ACTIONS(209), }, [71] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(854), - [anon_sym_downto] = ACTIONS(854), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(203), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -41418,159 +41760,641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(832), }, [72] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_DOT_DOT2] = ACTIONS(121), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), + [sym__dedent] = ACTIONS(121), + }, + [73] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_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(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [anon_sym_POUNDendif] = ACTIONS(193), + [anon_sym_POUNDelse] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + }, + [74] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(193), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + [sym__dedent] = ACTIONS(193), + }, + [75] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(127), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -41579,157 +42403,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(127), + [sym__dedent] = ACTIONS(127), }, - [73] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [76] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(189), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -41738,161 +42564,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(205), - [anon_sym_POUNDelse] = ACTIONS(205), - [sym__newline] = ACTIONS(411), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(838), + [sym__dedent] = ACTIONS(189), }, - [74] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [77] = { + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), + [sym_block_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(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(858), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(215), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -41901,158 +42726,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(213), }, - [75] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [78] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_with] = ACTIONS(860), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(201), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -42061,99 +42886,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(862), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(838), + [sym__dedent] = ACTIONS(201), }, - [76] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [79] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -42161,7 +42986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(211), [anon_sym_let] = ACTIONS(211), [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_as] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_COMMA] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), @@ -42175,7 +42999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(540), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_with] = ACTIONS(211), [anon_sym_new] = ACTIONS(211), @@ -42197,13 +43021,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(722), + [anon_sym_LPAREN2] = ACTIONS(578), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -42212,7 +43036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(738), + [sym_unit] = ACTIONS(596), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -42233,7 +43057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -42241,139 +43065,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), [sym__newline] = ACTIONS(209), + [sym__dedent] = ACTIONS(209), }, - [77] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [80] = { + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), + [sym_block_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(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(207), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(205), + }, + [81] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(864), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -42384,157 +43370,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(720), }, - [78] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [82] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(866), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(842), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -42545,158 +43531,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(720), }, - [79] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym__module_body_repeat1] = STATE(6154), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [83] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_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(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [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(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -42705,160 +43690,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(868), - [sym__dedent] = ACTIONS(870), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(127), + [anon_sym_POUNDelse] = ACTIONS(127), + [sym__newline] = ACTIONS(127), }, - [80] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [84] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(137), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(213), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -42867,157 +43852,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(213), + [sym__dedent] = ACTIONS(213), }, - [81] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), - [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [85] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(205), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -43026,159 +44013,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(872), - [anon_sym_POUNDelse] = ACTIONS(872), - [sym__newline] = ACTIONS(411), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(205), + [sym__dedent] = ACTIONS(205), }, - [82] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [86] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(183), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -43189,98 +44175,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(720), }, - [83] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [87] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(123), [anon_sym_EQ] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(123), @@ -43288,7 +44274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(123), [anon_sym_let] = ACTIONS(123), [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_as] = ACTIONS(123), [anon_sym_LPAREN] = ACTIONS(123), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_null] = ACTIONS(123), @@ -43302,7 +44287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_LT_AT] = ACTIONS(123), [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_LBRACE_PIPE] = ACTIONS(121), [anon_sym_with] = ACTIONS(123), [anon_sym_new] = ACTIONS(123), @@ -43324,13 +44309,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(121), [anon_sym_function] = ACTIONS(123), [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), [anon_sym_use] = ACTIONS(123), [anon_sym_use_BANG] = ACTIONS(121), [anon_sym_do_BANG] = ACTIONS(121), [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(722), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_or] = ACTIONS(123), [aux_sym_char_token1] = ACTIONS(121), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), @@ -43339,7 +44324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(738), + [sym_unit] = ACTIONS(121), [anon_sym_LPAREN_PIPE] = ACTIONS(123), [sym_op_identifier] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(123), @@ -43360,7 +44345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(123), [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -43368,624 +44353,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(121), [sym__newline] = ACTIONS(121), + [sym__dedent] = ACTIONS(121), }, - [84] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(137), - }, - [85] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), - }, - [86] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(185), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(878), - }, - [87] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), + [88] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(195), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(183), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -43994,320 +44496,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(878), - }, - [88] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(209), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(838), + [sym__dedent] = ACTIONS(183), }, [89] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(880), - [anon_sym_downto] = ACTIONS(880), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(201), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -44316,159 +44657,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(846), + [sym__dedent] = ACTIONS(846), }, [90] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(882), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(848), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -44477,159 +44819,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [91] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(207), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), [anon_sym_use] = ACTIONS(714), [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(183), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -44638,159 +44980,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(878), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [92] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(884), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(884), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(886), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -44799,320 +45141,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), }, [93] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_DOT_DOT2] = ACTIONS(213), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_null] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(185), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_COLON_GT] = ACTIONS(774), + [anon_sym_COLON_QMARK_GT] = ACTIONS(774), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_LT_DASH] = ACTIONS(790), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(830), + [sym__newline] = ACTIONS(832), }, [94] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(193), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(201), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -45121,157 +45463,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), }, [95] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(197), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -45282,157 +45624,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(197), + [sym__newline] = ACTIONS(720), }, [96] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_with] = ACTIONS(195), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + [sym__dedent] = ACTIONS(193), + }, + [97] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(852), + [anon_sym_downto] = ACTIONS(852), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(201), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -45443,320 +45946,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(201), - }, - [97] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_RBRACK] = ACTIONS(121), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(121), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [sym__newline] = ACTIONS(313), }, [98] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(888), - [anon_sym_downto] = ACTIONS(888), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(215), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(213), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -45765,479 +46107,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(213), }, [99] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_DASH_GT] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [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(65), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(189), + [anon_sym_POUNDelse] = ACTIONS(189), + [sym__newline] = ACTIONS(501), }, [100] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(854), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_DASH_GT] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(854), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(856), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), }, [101] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(205), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(858), + [anon_sym_downto] = ACTIONS(858), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(205), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -46248,481 +46590,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [sym__newline] = ACTIONS(313), }, [102] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym__list_elements_repeat1] = STATE(6233), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_DASH_GT] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(878), + [sym__dedent] = ACTIONS(880), }, [103] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_with] = ACTIONS(123), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(882), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [104] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(890), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -46731,157 +47073,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(205), }, [105] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(746), + [sym_infix_op] = STATE(605), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(1582), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_COLON_GT] = ACTIONS(644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(644), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(183), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(728), + }, + [106] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(892), - [anon_sym_downto] = ACTIONS(892), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(884), + [anon_sym_downto] = ACTIONS(884), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -46892,17 +47395,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -46911,79 +47414,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), [sym__newline] = ACTIONS(313), }, - [106] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [107] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_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(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [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(65), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(886), + [anon_sym_POUNDelse] = ACTIONS(886), + [sym__newline] = ACTIONS(501), + }, + [108] = { + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(733), + [sym_infix_op] = STATE(795), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(564), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_DOT_DOT2] = ACTIONS(580), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(838), + [sym__dedent] = ACTIONS(888), + }, + [109] = { + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), + }, + [110] = { + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), + [sym_block_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(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(123), [anon_sym_EQ] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(123), @@ -46991,6 +47977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(123), [anon_sym_let] = ACTIONS(123), [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_as] = ACTIONS(514), [anon_sym_LPAREN] = ACTIONS(123), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_null] = ACTIONS(123), @@ -47004,8 +47991,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_LT_AT] = ACTIONS(123), [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), [anon_sym_new] = ACTIONS(123), [anon_sym_return_BANG] = ACTIONS(121), [anon_sym_yield] = ACTIONS(123), @@ -47025,14 +48013,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(121), [anon_sym_function] = ACTIONS(123), [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), [anon_sym_use] = ACTIONS(123), [anon_sym_use_BANG] = ACTIONS(121), [anon_sym_do_BANG] = ACTIONS(121), [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(121), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_or] = ACTIONS(123), [aux_sym_char_token1] = ACTIONS(121), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), @@ -47041,7 +48028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(593), + [sym_unit] = ACTIONS(121), [anon_sym_LPAREN_PIPE] = ACTIONS(123), [sym_op_identifier] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(123), @@ -47062,7 +48049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(123), [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -47070,625 +48057,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(121), [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), - }, - [107] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(894), - [anon_sym_downto] = ACTIONS(894), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), - }, - [108] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), - [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_as] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - }, - [109] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), - [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(207), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(205), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), }, - [110] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), - [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [111] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(185), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -47697,159 +48199,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(183), }, - [111] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), - [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [112] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), + [sym_block_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(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(207), + [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(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(199), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(197), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -47858,319 +48359,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(197), - }, - [112] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_DOT_DOT2] = ACTIONS(213), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - [sym__dedent] = ACTIONS(213), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(205), + [anon_sym_POUNDelse] = ACTIONS(205), + [sym__newline] = ACTIONS(205), }, [113] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(183), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -48179,160 +48522,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(898), - [sym__dedent] = ACTIONS(183), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [114] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(894), + [anon_sym_downto] = ACTIONS(894), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(195), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -48341,157 +48683,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [115] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(900), - [anon_sym_downto] = ACTIONS(900), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(896), + [anon_sym_downto] = ACTIONS(896), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -48502,17 +48844,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -48522,139 +48864,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [116] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(898), + [anon_sym_downto] = ACTIONS(898), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(183), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -48663,159 +49005,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(848), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [117] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(100), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(676), - [sym_infix_op] = STATE(749), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(1651), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_COLON_GT] = ACTIONS(786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(207), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(139), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(804), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -48824,158 +49165,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(205), + [sym__dedent] = ACTIONS(205), }, [118] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(215), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -48984,160 +49326,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(902), - [sym__dedent] = ACTIONS(902), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(213), + [sym__dedent] = ACTIONS(213), }, [119] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(904), - [anon_sym_downto] = ACTIONS(904), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(900), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -49146,318 +49487,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(902), }, [120] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(209), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(203), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), - [sym__dedent] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(201), }, [121] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(906), - [anon_sym_downto] = ACTIONS(906), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(904), + [anon_sym_downto] = ACTIONS(904), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -49468,17 +49810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -49488,298 +49830,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [122] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(908), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(121), + [anon_sym_POUNDendif] = ACTIONS(121), + [anon_sym_POUNDelse] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [123] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(910), - [anon_sym_downto] = ACTIONS(910), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(906), + [anon_sym_downto] = ACTIONS(906), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -49790,17 +50132,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -49810,138 +50152,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [124] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(754), + [sym_infix_op] = STATE(767), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1588), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_COLON_GT] = ACTIONS(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(201), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(712), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_DOT_DOT2] = ACTIONS(732), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -49950,159 +50293,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(201), - [sym__dedent] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(720), }, [125] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(191), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(197), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -50111,160 +50453,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(197), - [sym__dedent] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(189), }, [126] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(912), - [anon_sym_downto] = ACTIONS(912), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(215), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -50273,158 +50613,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(213), + [anon_sym_POUNDelse] = ACTIONS(213), + [sym__newline] = ACTIONS(213), }, [127] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(910), + [anon_sym_downto] = ACTIONS(910), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -50433,320 +50776,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(898), - [sym__dedent] = ACTIONS(193), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [128] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(88), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(573), - [sym_infix_op] = STATE(651), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1581), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_as] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(914), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(644), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_with] = ACTIONS(211), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(804), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(820), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(654), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, [129] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(912), + [anon_sym_downto] = ACTIONS(912), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(205), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -50755,159 +51098,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(898), - [sym__dedent] = ACTIONS(205), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [130] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_with] = ACTIONS(129), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(577), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -50916,160 +51258,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(898), - [sym__dedent] = ACTIONS(914), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(127), + [sym__dedent] = ACTIONS(127), }, [131] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_to] = ACTIONS(916), - [anon_sym_downto] = ACTIONS(916), - [anon_sym_while] = ACTIONS(267), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -51078,320 +51418,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(201), + [anon_sym_POUNDelse] = ACTIONS(201), + [sym__newline] = ACTIONS(501), }, [132] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_with] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - [sym__dedent] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_to] = ACTIONS(914), + [anon_sym_downto] = ACTIONS(914), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [133] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(76), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(675), - [sym_infix_op] = STATE(757), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(533), + [sym_infix_op] = STATE(613), + [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(1497), [sym_block_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(1965), - [aux_sym_sequential_expression_repeat1] = STATE(1665), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_null] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(664), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_sequential_expression_repeat1] = STATE(1697), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(684), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(203), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_COLON_GT] = ACTIONS(692), - [anon_sym_COLON_QMARK_GT] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [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(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_LT_DASH] = ACTIONS(708), - [anon_sym_DOT_LBRACK] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [anon_sym_LPAREN2] = ACTIONS(722), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(738), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(742), + [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(145), + [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(483), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -51400,157 +51740,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(748), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(183), + [anon_sym_POUNDelse] = ACTIONS(183), + [sym__newline] = ACTIONS(501), }, [134] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(58), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(565), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1951), - [aux_sym_sequential_expression_repeat1] = STATE(1743), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_null] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(317), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym__module_body_repeat1] = STATE(6219), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(337), - [anon_sym_DOT] = ACTIONS(339), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_COLON_GT] = ACTIONS(347), - [anon_sym_COLON_QMARK_GT] = ACTIONS(347), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_DOT_LBRACK] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_LPAREN2] = ACTIONS(377), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(393), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(397), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -51559,320 +51902,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(918), - [anon_sym_POUNDelse] = ACTIONS(918), - [sym__newline] = ACTIONS(411), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(916), + [sym__dedent] = ACTIONS(918), }, [135] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(120), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(712), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1585), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_sequential_expression_repeat1] = STATE(1729), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_DOT_DOT2] = ACTIONS(137), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [136] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(974), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -51881,158 +52224,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(920), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(1012), }, [137] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -52041,479 +52383,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1014), }, [138] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [139] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), - }, - [140] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), - [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(203), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1064), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -52522,157 +52704,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), + }, + [140] = { + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), + [sym_block_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(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_AT_GT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [141] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(207), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -52681,319 +53024,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1022), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(205), }, [142] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_AT_GT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1136), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [143] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53002,157 +53344,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [144] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(215), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53161,159 +53504,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(183), - [sym__newline] = ACTIONS(1198), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(213), }, [145] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(203), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53322,157 +53664,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [146] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53481,158 +53823,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1226), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1230), }, [147] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53641,319 +53983,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(137), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1232), }, [148] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_AT_GT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [149] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -53962,157 +54303,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1234), }, [150] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(129), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -54121,159 +54464,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1232), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(127), }, [151] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1236), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -54282,158 +54624,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [152] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(207), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -54442,156 +54784,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [153] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1236), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -54602,158 +54944,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [sym__newline] = ACTIONS(1242), }, [154] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -54762,158 +55104,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [155] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -54922,158 +55263,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(1246), + [sym__dedent] = ACTIONS(1246), }, [156] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1244), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55082,158 +55423,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1248), }, [157] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55242,157 +55583,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1250), }, [158] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55401,159 +55744,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1340), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [159] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55562,158 +55903,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1252), }, [160] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55722,157 +56064,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(1012), }, [161] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -55881,318 +56224,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1346), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [162] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(872), - [sym__newline] = ACTIONS(1198), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, [163] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -56201,159 +56543,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(1348), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), [sym__dedent] = ACTIONS(1348), }, [164] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -56362,318 +56703,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1352), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1350), }, [165] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_AT_GT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1354), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, [166] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -56682,157 +57023,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1352), }, [167] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(191), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -56841,159 +57184,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1358), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [168] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2307), + [sym_preproc_if_in_expression] = STATE(2501), [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1360), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(183), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57002,158 +57344,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [169] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1360), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57162,157 +57504,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [170] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57321,158 +57663,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1362), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1358), }, [171] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57481,159 +57823,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1356), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1360), }, [172] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1364), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57642,157 +57984,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [173] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1244), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -57801,319 +58144,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1366), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [174] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [anon_sym_POUNDendif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1364), }, [175] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58122,157 +58463,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(886), + [sym__newline] = ACTIONS(1456), }, [176] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58281,159 +58623,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1368), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1458), }, [177] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(207), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58442,158 +58783,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1460), }, [178] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1462), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58602,158 +58944,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [179] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(129), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58762,158 +59104,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(127), }, [180] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -58922,158 +59263,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1464), }, [181] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(195), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -59082,157 +59423,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1466), }, [182] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -59241,159 +59583,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1376), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1468), }, [183] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(199), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -59402,318 +59743,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1470), }, [184] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(918), - [sym__newline] = ACTIONS(1198), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [185] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(195), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -59722,157 +60063,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1472), }, [186] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -59881,159 +60223,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1378), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1474), }, [187] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -60042,158 +60383,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1476), }, [188] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -60202,157 +60543,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1478), }, [189] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -60361,159 +60704,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(193), - [sym__newline] = ACTIONS(1198), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [190] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1382), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -60522,157 +60863,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1482), }, [191] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -60681,579 +61023,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1384), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1484), }, [192] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1386), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), - }, - [193] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1388), - }, - [194] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), - [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), - }, - [195] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), - [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -61274,7 +61136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(944), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), @@ -61295,13 +61157,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(211), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(984), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -61310,7 +61173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(1186), + [sym_unit] = ACTIONS(1000), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -61331,148 +61194,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), - [anon_sym_POUNDendif] = ACTIONS(209), [sym__newline] = ACTIONS(209), }, - [196] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), - [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [193] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -61481,159 +61343,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(197), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1486), }, - [197] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), - [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [194] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1488), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -61642,157 +61504,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1490), }, - [198] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [195] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -61801,158 +61663,639 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1390), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1492), + }, + [196] = { + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), + [sym_block_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(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), + }, + [197] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), + }, + [198] = { + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [199] = { [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -61961,159 +62304,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(201), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [200] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -62122,157 +62463,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1500), }, [201] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -62281,159 +62624,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1394), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [202] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(139), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -62442,158 +62783,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1504), }, [203] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1396), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -62602,317 +62943,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1506), }, [204] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_AT_GT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1508), }, [205] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -62921,159 +63263,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(205), - [sym__newline] = ACTIONS(1198), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(127), + [sym__newline] = ACTIONS(127), }, [206] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -63082,158 +63423,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1510), }, [207] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1512), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -63242,158 +63584,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [208] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1392), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(185), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -63402,318 +63744,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [209] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_DASH_GT] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [210] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1514), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -63722,158 +64064,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [211] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -63882,158 +64223,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(740), + [sym__newline] = ACTIONS(1456), }, [212] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -64042,158 +64383,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1406), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1516), }, [213] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1408), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -64202,157 +64544,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [214] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1520), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -64361,158 +64704,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1410), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1522), }, [215] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -64521,319 +64863,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1412), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1524), }, [216] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [anon_sym_POUNDendif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1526), }, [217] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1502), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -64842,158 +65184,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [218] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -65002,317 +65344,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1530), }, [219] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_DASH_GT] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1518), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [220] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -65321,319 +65663,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1418), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1532), }, [221] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1420), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1422), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [222] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -65642,158 +65984,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [223] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(207), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -65802,158 +66143,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(1516), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1536), }, [224] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -65962,158 +66304,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [225] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -66122,158 +66463,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1520), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1496), }, [226] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -66282,158 +66623,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1540), }, [227] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(185), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -66442,478 +66783,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1542), }, [228] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_let] = ACTIONS(211), - [anon_sym_let_BANG] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(211), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LBRACK_PIPE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LT_AT] = ACTIONS(211), - [anon_sym_AT_GT] = ACTIONS(211), - [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(211), - [anon_sym_return_BANG] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(211), - [anon_sym_yield_BANG] = ACTIONS(209), - [anon_sym_lazy] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_upcast] = ACTIONS(211), - [anon_sym_downcast] = ACTIONS(211), - [anon_sym_COLON_GT] = ACTIONS(209), - [anon_sym_COLON_QMARK_GT] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_match] = ACTIONS(211), - [anon_sym_match_BANG] = ACTIONS(209), - [anon_sym_function] = ACTIONS(211), - [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(211), - [anon_sym_use_BANG] = ACTIONS(209), - [anon_sym_do_BANG] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(211), - [aux_sym_char_token1] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_AT_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), - [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(211), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_DOT] = ACTIONS(211), - [anon_sym_DASH_DOT] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(209), - [aux_sym_prefix_op_token1] = ACTIONS(211), - [aux_sym_infix_op_token1] = ACTIONS(209), - [aux_sym_infix_op_token2] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_COLON_EQ] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_QMARK_LT_DASH] = ACTIONS(211), - [sym_int] = ACTIONS(211), - [sym_xint] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(209), - [sym__newline] = ACTIONS(209), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [229] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), - }, - [230] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), - [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -66922,158 +67104,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(1516), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, - [231] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), - [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [230] = { + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1544), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -67082,98 +67264,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, - [232] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), - [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [231] = { + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), + [sym_block_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(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -67194,8 +67376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_AT_AT_GT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(1272), + [anon_sym_DOT] = ACTIONS(1390), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), @@ -67216,13 +67397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1428), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -67231,7 +67412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(1326), + [sym_unit] = ACTIONS(1444), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -67252,147 +67433,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(209), + [anon_sym_POUNDendif] = ACTIONS(209), [sym__newline] = ACTIONS(209), }, + [232] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1546), + }, [233] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -67401,159 +67743,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1526), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1548), }, [234] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -67562,157 +67904,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [235] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -67721,158 +68064,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1530), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [236] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -67881,159 +68224,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1532), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [237] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -68042,158 +68384,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [238] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -68202,317 +68544,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(1516), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [239] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_DASH_GT] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(185), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [240] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -68521,159 +68863,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(1534), - [sym__dedent] = ACTIONS(1534), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1560), }, [241] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(185), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -68682,157 +69023,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1562), }, [242] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -68841,158 +69183,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1536), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1564), }, [243] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69001,159 +69343,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1538), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(201), + [sym__newline] = ACTIONS(1456), }, [244] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69162,157 +69503,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1566), }, [245] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69321,159 +69664,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1542), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [246] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(185), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69482,157 +69824,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(1516), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [247] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69641,159 +69983,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1544), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1572), }, [248] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1546), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69802,157 +70144,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1548), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [249] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1576), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -69961,159 +70304,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(1534), - [sym__dedent] = ACTIONS(1534), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [250] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1550), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70122,158 +70463,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1578), }, [251] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(1552), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70282,158 +70624,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1552), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [252] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_COLON_GT] = ACTIONS(1458), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1580), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_LT_DASH] = ACTIONS(1474), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(1508), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70442,157 +70784,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1514), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1582), }, [253] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_GT_RBRACK] = ACTIONS(1584), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70601,159 +70944,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1554), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1584), }, [254] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70762,158 +71103,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1586), }, [255] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(127), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -70922,157 +71264,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1558), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(127), }, [256] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1588), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -71081,159 +71424,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1560), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1590), }, [257] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(199), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -71242,158 +71583,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1592), }, [258] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -71402,318 +71744,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1564), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(1012), }, [259] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_AT_AT_GT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1594), }, [260] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -71722,158 +72063,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(189), + [sym__newline] = ACTIONS(1456), }, [261] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2307), + [sym_preproc_if_in_expression] = STATE(2501), [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(199), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -71882,158 +72224,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [262] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(203), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -72042,157 +72384,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1600), }, [263] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1602), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -72201,319 +72544,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(902), - [sym__dedent] = ACTIONS(902), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [264] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_AT_AT_GT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [anon_sym_POUNDendif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [265] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1566), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1604), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -72522,158 +72864,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [266] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1370), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -72682,158 +73024,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [267] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1552), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -72842,157 +73184,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [268] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73001,158 +73344,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1568), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(205), }, [269] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73161,158 +73503,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1570), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1606), }, [270] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73321,159 +73664,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1572), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [271] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1574), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73482,158 +73824,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(213), }, [272] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73642,158 +73983,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(846), + [sym__dedent] = ACTIONS(846), }, [273] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -73802,317 +74143,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1608), }, [274] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(123), - [anon_sym_do] = ACTIONS(123), - [anon_sym_let] = ACTIONS(123), - [anon_sym_let_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(123), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(121), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LT_AT] = ACTIONS(123), - [anon_sym_LT_AT_AT] = ACTIONS(123), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_LBRACE_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(123), - [anon_sym_return_BANG] = ACTIONS(121), - [anon_sym_yield] = ACTIONS(123), - [anon_sym_yield_BANG] = ACTIONS(121), - [anon_sym_lazy] = ACTIONS(123), - [anon_sym_assert] = ACTIONS(123), - [anon_sym_upcast] = ACTIONS(123), - [anon_sym_downcast] = ACTIONS(123), - [anon_sym_COLON_GT] = ACTIONS(121), - [anon_sym_COLON_QMARK_GT] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_while] = ACTIONS(123), - [anon_sym_if] = ACTIONS(123), - [anon_sym_fun] = ACTIONS(123), - [anon_sym_try] = ACTIONS(123), - [anon_sym_match] = ACTIONS(123), - [anon_sym_match_BANG] = ACTIONS(121), - [anon_sym_function] = ACTIONS(123), - [anon_sym_LT_DASH] = ACTIONS(123), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(123), - [anon_sym_use] = ACTIONS(123), - [anon_sym_use_BANG] = ACTIONS(121), - [anon_sym_do_BANG] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_or] = ACTIONS(123), - [aux_sym_char_token1] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_AT_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), - [sym_bool] = ACTIONS(123), - [sym_unit] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(123), - [sym_op_identifier] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PLUS_DOT] = ACTIONS(123), - [anon_sym_DASH_DOT] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(121), - [aux_sym_prefix_op_token1] = ACTIONS(123), - [aux_sym_infix_op_token1] = ACTIONS(121), - [aux_sym_infix_op_token2] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_COLON_EQ] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_QMARK_LT_DASH] = ACTIONS(123), - [sym_int] = ACTIONS(123), - [sym_xint] = ACTIONS(121), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), - }, - [275] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74121,158 +74303,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1610), + }, + [275] = { + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_DASH_GT] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), }, [276] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74281,158 +74624,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1582), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [277] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74441,158 +74783,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1584), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(213), + [sym__newline] = ACTIONS(213), }, [278] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1614), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74601,159 +74944,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1586), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1616), }, [279] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1588), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74762,158 +75103,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1590), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(183), + [sym__newline] = ACTIONS(1456), }, [280] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1592), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -74922,157 +75263,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1594), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1618), }, [281] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75081,159 +75424,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1236), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(127), }, [282] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1620), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75242,158 +75584,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [283] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75402,158 +75744,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(127), }, [284] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1598), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75562,158 +75904,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [285] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75722,158 +76063,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1624), }, [286] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -75882,157 +76224,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [287] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -76041,158 +76384,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1602), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [288] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -76201,319 +76544,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1604), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(205), }, [289] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1606), + [anon_sym_POUNDif] = ACTIONS(121), + [anon_sym_POUNDendif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [290] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(219), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(614), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_sequential_expression_repeat1] = STATE(2104), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_null] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(778), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_COLON_GT] = ACTIONS(1210), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_LT_DASH] = ACTIONS(1216), - [anon_sym_DOT_LBRACK] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(836), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(840), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -76522,158 +76863,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - [sym__newline] = ACTIONS(1224), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1626), }, [291] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(183), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -76682,157 +77023,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1628), }, [292] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -76841,158 +77183,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(902), - [sym__dedent] = ACTIONS(902), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1630), }, [293] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -77001,158 +77343,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1610), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1632), }, [294] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1634), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -77161,99 +77504,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1612), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [295] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(205), + [sym__newline] = ACTIONS(205), + }, + [296] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1636), + }, + [297] = { + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), + [sym_block_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(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(43), + [anon_sym_DASH_DOT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_AMP_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(175), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), + }, + [298] = { + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), + [sym_block_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(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(211), [anon_sym_EQ] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(211), @@ -77274,7 +78096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_LT_AT] = ACTIONS(211), [anon_sym_LT_AT_AT] = ACTIONS(211), - [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(636), [anon_sym_LBRACE_PIPE] = ACTIONS(209), [anon_sym_new] = ACTIONS(211), [anon_sym_return_BANG] = ACTIONS(209), @@ -77290,19 +78112,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(211), [anon_sym_if] = ACTIONS(211), [anon_sym_fun] = ACTIONS(211), + [anon_sym_DASH_GT] = ACTIONS(211), [anon_sym_try] = ACTIONS(211), [anon_sym_match] = ACTIONS(211), [anon_sym_match_BANG] = ACTIONS(209), [anon_sym_function] = ACTIONS(211), [anon_sym_LT_DASH] = ACTIONS(211), - [anon_sym_DOT_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), [anon_sym_use] = ACTIONS(211), [anon_sym_use_BANG] = ACTIONS(209), [anon_sym_do_BANG] = ACTIONS(209), [anon_sym_begin] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(674), [anon_sym_or] = ACTIONS(211), [aux_sym_char_token1] = ACTIONS(209), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), @@ -77311,7 +78133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), [sym_bool] = ACTIONS(211), - [sym_unit] = ACTIONS(1504), + [sym_unit] = ACTIONS(690), [anon_sym_LPAREN_PIPE] = ACTIONS(211), [sym_op_identifier] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(211), @@ -77332,7 +78154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(211), [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -77341,619 +78163,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(209), [sym__newline] = ACTIONS(209), }, - [296] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), - [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), - }, - [297] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1616), - }, - [298] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(860), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(313), - }, [299] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(207), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(215), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -77962,637 +78304,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(213), }, [300] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_return] = ACTIONS(211), + [anon_sym_do] = ACTIONS(211), + [anon_sym_let] = ACTIONS(211), + [anon_sym_let_BANG] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_COLON_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK_PIPE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LT_AT] = ACTIONS(211), + [anon_sym_LT_AT_AT] = ACTIONS(211), + [anon_sym_AT_AT_GT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_new] = ACTIONS(211), + [anon_sym_return_BANG] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(211), + [anon_sym_yield_BANG] = ACTIONS(209), + [anon_sym_lazy] = ACTIONS(211), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_upcast] = ACTIONS(211), + [anon_sym_downcast] = ACTIONS(211), + [anon_sym_COLON_GT] = ACTIONS(209), + [anon_sym_COLON_QMARK_GT] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_while] = ACTIONS(211), + [anon_sym_if] = ACTIONS(211), + [anon_sym_fun] = ACTIONS(211), + [anon_sym_try] = ACTIONS(211), + [anon_sym_match] = ACTIONS(211), + [anon_sym_match_BANG] = ACTIONS(209), + [anon_sym_function] = ACTIONS(211), + [anon_sym_LT_DASH] = ACTIONS(211), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(211), + [anon_sym_use_BANG] = ACTIONS(209), + [anon_sym_do_BANG] = ACTIONS(209), + [anon_sym_begin] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(211), + [aux_sym_char_token1] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_AT_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(209), + [sym_bool] = ACTIONS(211), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(211), + [sym_op_identifier] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_PLUS_DOT] = ACTIONS(211), + [anon_sym_DASH_DOT] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(209), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(209), + [aux_sym_infix_op_token2] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_COLON_EQ] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_QMARK_LT_DASH] = ACTIONS(211), + [sym_int] = ACTIONS(211), + [sym_xint] = ACTIONS(209), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1618), + [anon_sym_POUNDif] = ACTIONS(209), + [sym__newline] = ACTIONS(209), }, [301] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1620), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [302] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1622), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [303] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -78601,159 +78943,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1624), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1640), }, [304] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -78762,157 +79103,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(1642), + [sym__dedent] = ACTIONS(1642), }, [305] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1644), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -78921,159 +79264,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1626), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [306] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(232), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(771), - [sym_infix_op] = STATE(603), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_sequential_expression_repeat1] = STATE(1957), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(1270), - [anon_sym_AT_AT_GT] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1272), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_COLON_GT] = ACTIONS(1280), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_LT_DASH] = ACTIONS(1296), - [anon_sym_DOT_LBRACK] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(1326), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(1330), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79082,157 +79423,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(1642), + [sym__dedent] = ACTIONS(1642), }, [307] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79241,158 +79584,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1630), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [308] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1646), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79401,159 +79744,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1632), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1648), }, [309] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(228), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(637), - [sym_infix_op] = STATE(796), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2323), - [aux_sym_sequential_expression_repeat1] = STATE(1891), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(936), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_null] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_AT_GT] = ACTIONS(1628), - [anon_sym_LT_AT_AT] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_COLON_GT] = ACTIONS(964), - [anon_sym_COLON_QMARK_GT] = ACTIONS(964), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_LT_DASH] = ACTIONS(980), - [anon_sym_DOT_LBRACK] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(1010), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(1014), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79562,157 +79904,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1020), - [sym__newline] = ACTIONS(1246), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(205), }, [310] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79721,159 +80064,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1634), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [311] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(787), + [sym_infix_op] = STATE(664), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(884), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_sequential_expression_repeat1] = STATE(2138), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(624), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_COLON_GT] = ACTIONS(1026), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_LT_DASH] = ACTIONS(1032), + [anon_sym_DOT_LBRACK] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(690), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(694), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -79882,157 +80224,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(700), + [sym__newline] = ACTIONS(1040), }, [312] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80041,158 +80383,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1638), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1652), }, [313] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(609), + [sym_infix_op] = STATE(607), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_sequential_expression_repeat1] = STATE(1839), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_null] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_COLON_GT] = ACTIONS(952), + [anon_sym_COLON_QMARK_GT] = ACTIONS(952), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_LT_DASH] = ACTIONS(968), + [anon_sym_DOT_LBRACK] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(1000), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80201,158 +80544,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1640), + [anon_sym_POUNDif] = ACTIONS(1010), + [sym__newline] = ACTIONS(1012), }, [314] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80361,158 +80704,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1642), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1656), }, [315] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(752), + [sym_infix_op] = STATE(647), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_sequential_expression_repeat1] = STATE(1972), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_null] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_COLON_GT] = ACTIONS(1398), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_LT_DASH] = ACTIONS(1414), + [anon_sym_DOT_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(1444), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(1448), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80521,159 +80863,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1644), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(1658), + [sym__newline] = ACTIONS(1456), }, [316] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1646), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80682,157 +81023,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1648), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1660), }, [317] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1638), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -80841,158 +81184,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1650), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [318] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81001,159 +81344,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1652), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [319] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(854), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81162,158 +81504,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [320] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(900), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(205), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81322,157 +81664,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(313), }, [321] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81481,158 +81824,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1656), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [322] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81641,158 +81983,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1658), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1668), }, [323] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(531), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_sequential_expression_repeat1] = STATE(1956), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_AT_GT] = ACTIONS(1670), + [anon_sym_LT_AT_AT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_COLON_GT] = ACTIONS(1076), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(1092), + [anon_sym_DOT_LBRACK] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(1122), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(1126), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81801,158 +82144,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1660), + [anon_sym_POUNDif] = ACTIONS(1132), + [sym__newline] = ACTIONS(1134), }, [324] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -81961,158 +82303,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1662), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(846), + [sym__dedent] = ACTIONS(846), }, [325] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82121,159 +82464,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1664), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [326] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82282,158 +82623,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(201), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1672), }, [327] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(197), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82442,157 +82783,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(197), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1674), }, [328] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82601,159 +82944,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1666), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(1678), }, [329] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(138), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(545), - [sym_infix_op] = STATE(736), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_sequential_expression_repeat1] = STATE(2001), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [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_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(932), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(1098), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82762,157 +83103,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - [sym__newline] = ACTIONS(1106), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1680), }, [330] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -82921,158 +83263,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1668), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1682), }, [331] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -83081,318 +83423,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1670), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1684), }, [332] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(43), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(123), + [anon_sym_let_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_COLON_QMARK] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_LBRACK_PIPE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LT_AT] = ACTIONS(123), + [anon_sym_LT_AT_AT] = ACTIONS(123), + [anon_sym_AT_AT_GT] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(121), + [anon_sym_new] = ACTIONS(123), + [anon_sym_return_BANG] = ACTIONS(121), + [anon_sym_yield] = ACTIONS(123), + [anon_sym_yield_BANG] = ACTIONS(121), + [anon_sym_lazy] = ACTIONS(123), + [anon_sym_assert] = ACTIONS(123), + [anon_sym_upcast] = ACTIONS(123), + [anon_sym_downcast] = ACTIONS(123), + [anon_sym_COLON_GT] = ACTIONS(121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(121), + [anon_sym_for] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_match] = ACTIONS(123), + [anon_sym_match_BANG] = ACTIONS(121), + [anon_sym_function] = ACTIONS(123), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_DOT_LBRACK] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_use] = ACTIONS(123), + [anon_sym_use_BANG] = ACTIONS(121), + [anon_sym_do_BANG] = ACTIONS(121), + [anon_sym_begin] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(123), + [aux_sym_char_token1] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_AT_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(121), + [sym_bool] = ACTIONS(123), + [sym_unit] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(123), + [sym_op_identifier] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_PLUS_DOT] = ACTIONS(123), + [anon_sym_DASH_DOT] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(123), + [anon_sym_TILDE] = ACTIONS(121), + [aux_sym_prefix_op_token1] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(121), + [aux_sym_infix_op_token2] = ACTIONS(123), + [anon_sym_PIPE_PIPE] = ACTIONS(123), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(123), + [sym_int] = ACTIONS(123), + [sym_xint] = ACTIONS(121), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1672), + [anon_sym_POUNDif] = ACTIONS(121), + [sym__newline] = ACTIONS(121), }, [333] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(203), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -83401,158 +83744,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1674), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(1228), }, [334] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -83561,158 +83904,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1676), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(213), }, [335] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(1160), + [anon_sym_AT_AT_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_COLON_GT] = ACTIONS(1170), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_LT_DASH] = ACTIONS(1186), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(1220), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -83721,158 +84064,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1678), + [anon_sym_POUNDif] = ACTIONS(1226), + [sym__newline] = ACTIONS(205), }, [336] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(50), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(758), - [sym_infix_op] = STATE(624), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(789), + [sym_infix_op] = STATE(564), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_sequential_expression_repeat1] = STATE(1554), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_null] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_sequential_expression_repeat1] = STATE(2134), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_return] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_let] = ACTIONS(195), + [anon_sym_let_BANG] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_COLON_QMARK] = ACTIONS(195), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_AMP] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK_PIPE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_LT_AT] = ACTIONS(195), + [anon_sym_LT_AT_AT] = ACTIONS(195), + [anon_sym_AT_AT_GT] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_LBRACE_PIPE] = ACTIONS(193), + [anon_sym_new] = ACTIONS(195), + [anon_sym_return_BANG] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(195), + [anon_sym_yield_BANG] = ACTIONS(193), + [anon_sym_lazy] = ACTIONS(195), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_upcast] = ACTIONS(195), + [anon_sym_downcast] = ACTIONS(195), + [anon_sym_COLON_GT] = ACTIONS(193), + [anon_sym_COLON_QMARK_GT] = ACTIONS(193), + [anon_sym_for] = ACTIONS(195), + [anon_sym_while] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_fun] = ACTIONS(195), + [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(195), + [anon_sym_match_BANG] = ACTIONS(193), + [anon_sym_function] = ACTIONS(195), + [anon_sym_LT_DASH] = ACTIONS(195), + [anon_sym_DOT_LBRACK] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(195), + [anon_sym_use_BANG] = ACTIONS(193), + [anon_sym_do_BANG] = ACTIONS(193), + [anon_sym_begin] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_or] = ACTIONS(195), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_AT_DQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(193), + [sym_bool] = ACTIONS(195), + [sym_unit] = ACTIONS(1216), + [anon_sym_LPAREN_PIPE] = ACTIONS(195), + [sym_op_identifier] = ACTIONS(195), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PLUS_DOT] = ACTIONS(195), + [anon_sym_DASH_DOT] = ACTIONS(195), + [anon_sym_PERCENT] = ACTIONS(195), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(193), + [aux_sym_prefix_op_token1] = ACTIONS(195), + [aux_sym_infix_op_token1] = ACTIONS(193), + [aux_sym_infix_op_token2] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(195), + [anon_sym_COLON_EQ] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_QMARK_LT_DASH] = ACTIONS(195), + [sym_int] = ACTIONS(195), + [sym_xint] = ACTIONS(193), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(193), + [sym__newline] = ACTIONS(193), + }, + [337] = { + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), + [sym_block_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(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_COLON_GT] = ACTIONS(545), - [anon_sym_COLON_QMARK_GT] = ACTIONS(545), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_LT_DASH] = ACTIONS(624), - [anon_sym_DOT_LBRACK] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(575), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(593), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(597), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(213), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -83881,159 +84384,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(656), - [sym__dedent] = ACTIONS(1680), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(213), }, - [337] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [338] = { + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(640), + [sym_infix_op] = STATE(748), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), + [sym_block_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(2501), + [aux_sym_sequential_expression_repeat1] = STATE(1957), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_COLON_GT] = ACTIONS(1286), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_LT_DASH] = ACTIONS(1302), + [anon_sym_DOT_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(201), + [anon_sym_begin] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(1334), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(1338), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -84042,316 +84544,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(1684), - }, - [338] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(295), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(585), - [sym_infix_op] = STATE(582), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), - [sym_block_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(2374), - [aux_sym_sequential_expression_repeat1] = STATE(1903), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_return] = ACTIONS(215), - [anon_sym_do] = ACTIONS(215), - [anon_sym_let] = ACTIONS(215), - [anon_sym_let_BANG] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_null] = ACTIONS(215), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_COLON_QMARK] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_LBRACK_PIPE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT_AT] = ACTIONS(215), - [anon_sym_LT_AT_AT] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_LBRACE_PIPE] = ACTIONS(213), - [anon_sym_new] = ACTIONS(215), - [anon_sym_return_BANG] = ACTIONS(213), - [anon_sym_yield] = ACTIONS(215), - [anon_sym_yield_BANG] = ACTIONS(213), - [anon_sym_lazy] = ACTIONS(215), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_upcast] = ACTIONS(215), - [anon_sym_downcast] = ACTIONS(215), - [anon_sym_COLON_GT] = ACTIONS(213), - [anon_sym_COLON_QMARK_GT] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_while] = ACTIONS(215), - [anon_sym_if] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(215), - [anon_sym_try] = ACTIONS(215), - [anon_sym_match] = ACTIONS(215), - [anon_sym_match_BANG] = ACTIONS(213), - [anon_sym_function] = ACTIONS(215), - [anon_sym_LT_DASH] = ACTIONS(215), - [anon_sym_DOT_LBRACK] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(215), - [anon_sym_use] = ACTIONS(215), - [anon_sym_use_BANG] = ACTIONS(213), - [anon_sym_do_BANG] = ACTIONS(213), - [anon_sym_begin] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [aux_sym_char_token1] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [anon_sym_AT_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [sym_bool] = ACTIONS(215), - [sym_unit] = ACTIONS(213), - [anon_sym_LPAREN_PIPE] = ACTIONS(215), - [sym_op_identifier] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_PLUS_DOT] = ACTIONS(215), - [anon_sym_DASH_DOT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(215), - [anon_sym_AMP_AMP] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(213), - [aux_sym_prefix_op_token1] = ACTIONS(215), - [aux_sym_infix_op_token1] = ACTIONS(213), - [aux_sym_infix_op_token2] = ACTIONS(215), - [anon_sym_PIPE_PIPE] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_COLON_EQ] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_QMARK_LT_DASH] = ACTIONS(215), - [sym_int] = ACTIONS(215), - [sym_xint] = ACTIONS(213), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(213), - [sym__newline] = ACTIONS(213), + [anon_sym_POUNDif] = ACTIONS(1344), + [sym__newline] = ACTIONS(1346), }, [339] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), [anon_sym_with] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -84362,17 +84704,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -84382,137 +84724,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1688), }, [340] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(195), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(664), - [sym_infix_op] = STATE(677), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(610), + [sym_infix_op] = STATE(646), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_sequential_expression_repeat1] = STATE(1861), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_sequential_expression_repeat1] = STATE(1820), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_null] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1132), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_COLON_GT] = ACTIONS(1140), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_COLON_GT] = ACTIONS(548), + [anon_sym_COLON_QMARK_GT] = ACTIONS(548), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_LT_DASH] = ACTIONS(1156), - [anon_sym_DOT_LBRACK] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(1186), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(1190), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(870), + [anon_sym_DOT_LBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_LPAREN2] = ACTIONS(578), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(596), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(600), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(43), @@ -84521,156 +84863,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(1690), - [sym__newline] = ACTIONS(1198), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(892), + [sym__dedent] = ACTIONS(1690), }, [341] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -84681,17 +85023,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -84701,135 +85043,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [342] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(342), [sym_compiler_directive_decl] = STATE(342), [sym_fsi_directive_decl] = STATE(342), [sym_preproc_line] = STATE(342), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -84840,17 +85182,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -84860,135 +85202,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [343] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(343), [sym_compiler_directive_decl] = STATE(343), [sym_fsi_directive_decl] = STATE(343), [sym_preproc_line] = STATE(343), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -84999,17 +85341,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85019,135 +85361,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [344] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(344), [sym_compiler_directive_decl] = STATE(344), [sym_fsi_directive_decl] = STATE(344), [sym_preproc_line] = STATE(344), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85158,17 +85500,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85178,135 +85520,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [345] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(345), [sym_compiler_directive_decl] = STATE(345), [sym_fsi_directive_decl] = STATE(345), [sym_preproc_line] = STATE(345), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85317,17 +85659,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85337,135 +85679,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [346] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(346), [sym_compiler_directive_decl] = STATE(346), [sym_fsi_directive_decl] = STATE(346), [sym_preproc_line] = STATE(346), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1702), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85476,17 +85818,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85496,135 +85838,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [347] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(347), [sym_compiler_directive_decl] = STATE(347), [sym_fsi_directive_decl] = STATE(347), [sym_preproc_line] = STATE(347), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85635,17 +85977,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85655,135 +85997,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [348] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(348), [sym_compiler_directive_decl] = STATE(348), [sym_fsi_directive_decl] = STATE(348), [sym_preproc_line] = STATE(348), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85794,17 +86136,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85814,135 +86156,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [349] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(349), [sym_compiler_directive_decl] = STATE(349), [sym_fsi_directive_decl] = STATE(349), [sym_preproc_line] = STATE(349), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1706), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -85953,17 +86295,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -85973,135 +86315,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [350] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(350), [sym_compiler_directive_decl] = STATE(350), [sym_fsi_directive_decl] = STATE(350), [sym_preproc_line] = STATE(350), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86112,17 +86454,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86132,135 +86474,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [351] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(351), [sym_compiler_directive_decl] = STATE(351), [sym_fsi_directive_decl] = STATE(351), [sym_preproc_line] = STATE(351), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86271,17 +86613,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86291,135 +86633,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [352] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(352), [sym_compiler_directive_decl] = STATE(352), [sym_fsi_directive_decl] = STATE(352), [sym_preproc_line] = STATE(352), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1712), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86430,17 +86772,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86450,135 +86792,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [353] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(353), [sym_compiler_directive_decl] = STATE(353), [sym_fsi_directive_decl] = STATE(353), [sym_preproc_line] = STATE(353), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86589,17 +86931,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86609,135 +86951,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [354] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(354), [sym_compiler_directive_decl] = STATE(354), [sym_fsi_directive_decl] = STATE(354), [sym_preproc_line] = STATE(354), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86748,17 +87090,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86768,135 +87110,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [355] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(355), [sym_compiler_directive_decl] = STATE(355), [sym_fsi_directive_decl] = STATE(355), [sym_preproc_line] = STATE(355), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -86907,17 +87249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -86927,135 +87269,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [356] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(356), [sym_compiler_directive_decl] = STATE(356), [sym_fsi_directive_decl] = STATE(356), [sym_preproc_line] = STATE(356), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87066,17 +87408,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87086,135 +87428,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [357] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(357), [sym_compiler_directive_decl] = STATE(357), [sym_fsi_directive_decl] = STATE(357), [sym_preproc_line] = STATE(357), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87225,17 +87567,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87245,135 +87587,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [358] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(358), [sym_compiler_directive_decl] = STATE(358), [sym_fsi_directive_decl] = STATE(358), [sym_preproc_line] = STATE(358), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87384,17 +87726,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87404,135 +87746,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [359] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(359), [sym_compiler_directive_decl] = STATE(359), [sym_fsi_directive_decl] = STATE(359), [sym_preproc_line] = STATE(359), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1726), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87543,17 +87885,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87563,135 +87905,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [360] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(360), [sym_compiler_directive_decl] = STATE(360), [sym_fsi_directive_decl] = STATE(360), [sym_preproc_line] = STATE(360), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87702,17 +88044,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87722,135 +88064,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [361] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(361), [sym_compiler_directive_decl] = STATE(361), [sym_fsi_directive_decl] = STATE(361), [sym_preproc_line] = STATE(361), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -87861,17 +88203,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -87881,135 +88223,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [362] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(362), [sym_compiler_directive_decl] = STATE(362), [sym_fsi_directive_decl] = STATE(362), [sym_preproc_line] = STATE(362), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -88020,17 +88362,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -88040,135 +88382,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [363] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(363), [sym_compiler_directive_decl] = STATE(363), [sym_fsi_directive_decl] = STATE(363), [sym_preproc_line] = STATE(363), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -88179,17 +88521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -88199,135 +88541,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [364] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(364), [sym_compiler_directive_decl] = STATE(364), [sym_fsi_directive_decl] = STATE(364), [sym_preproc_line] = STATE(364), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -88338,17 +88680,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -88358,135 +88700,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [365] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(16), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3183), - [sym_prefix_op] = STATE(558), - [sym_infix_op] = STATE(730), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3200), + [sym_prefix_op] = STATE(680), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_comment] = STATE(365), [sym_compiler_directive_decl] = STATE(365), [sym_fsi_directive_decl] = STATE(365), [sym_preproc_line] = STATE(365), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_return] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_sequential_expression_repeat1] = STATE(1186), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(227), [anon_sym_do] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_COLON_QMARK] = ACTIONS(235), - [anon_sym_COLON_COLON] = ACTIONS(141), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_COLON_COLON] = ACTIONS(131), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(255), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(263), - [anon_sym_COLON_QMARK_GT] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [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(255), + [anon_sym_COLON_QMARK_GT] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_LT_DASH] = ACTIONS(279), - [anon_sym_DOT_LBRACK] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(229), - [anon_sym_or] = ACTIONS(155), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(231), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_DOT_LBRACK] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_LPAREN2] = ACTIONS(285), + [anon_sym_or] = ACTIONS(145), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(301), [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(305), [anon_sym_PLUS] = ACTIONS(43), @@ -88497,17 +88839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(175), - [aux_sym_infix_op_token1] = ACTIONS(141), - [aux_sym_infix_op_token2] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(155), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_QMARK_LT_DASH] = ACTIONS(155), + [aux_sym_infix_op_token1] = ACTIONS(131), + [aux_sym_infix_op_token2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(145), + [anon_sym_BANG_EQ] = ACTIONS(145), + [anon_sym_COLON_EQ] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_QMARK_LT_DASH] = ACTIONS(145), [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -88517,138 +88859,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(313), }, [366] = { - [sym_module_abbrev] = STATE(6370), - [sym_module_defn] = STATE(6370), - [sym_import_decl] = STATE(6370), - [sym_attributes] = STATE(5662), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6370), - [sym_do] = STATE(5076), + [sym_module_abbrev] = STATE(6282), + [sym_module_defn] = STATE(6282), + [sym_import_decl] = STATE(6282), + [sym_attributes] = STATE(5749), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6282), + [sym_do] = STATE(5107), [sym_function_or_value_defn] = STATE(499), - [sym__expression] = STATE(34), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_exception_definition] = STATE(6370), - [sym_type_definition] = STATE(6370), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_exception_definition] = STATE(6282), + [sym_type_definition] = STATE(6282), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_comment] = STATE(366), [sym_compiler_directive_decl] = STATE(366), [sym_fsi_directive_decl] = STATE(366), [sym_preproc_line] = STATE(366), - [sym_preproc_if] = STATE(6370), - [sym_preproc_if_in_expression] = STATE(1951), - [sym_preproc_else_in_expression] = STATE(7770), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(315), + [sym_preproc_if] = STATE(6282), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8000), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(405), [anon_sym_module] = ACTIONS(1740), [anon_sym_open] = ACTIONS(1742), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), [anon_sym_type] = ACTIONS(1744), [anon_sym_do] = ACTIONS(1746), [anon_sym_let] = ACTIONS(1748), [anon_sym_let_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), + [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), [anon_sym_exception] = ACTIONS(1756), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -88658,8 +89000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -88673,138 +89015,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1770), }, [367] = { - [sym_module_abbrev] = STATE(6127), - [sym_module_defn] = STATE(6127), - [sym_import_decl] = STATE(6127), - [sym_attributes] = STATE(5662), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6127), - [sym_do] = STATE(5076), + [sym_module_abbrev] = STATE(6235), + [sym_module_defn] = STATE(6235), + [sym_import_decl] = STATE(6235), + [sym_attributes] = STATE(5749), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6235), + [sym_do] = STATE(5107), [sym_function_or_value_defn] = STATE(499), - [sym__expression] = STATE(31), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_exception_definition] = STATE(6127), - [sym_type_definition] = STATE(6127), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym__expression] = STATE(32), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_exception_definition] = STATE(6235), + [sym_type_definition] = STATE(6235), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_comment] = STATE(367), [sym_compiler_directive_decl] = STATE(367), [sym_fsi_directive_decl] = STATE(367), [sym_preproc_line] = STATE(367), - [sym_preproc_if] = STATE(6127), - [sym_preproc_if_in_expression] = STATE(1951), - [sym_preproc_else_in_expression] = STATE(7037), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(315), + [sym_preproc_if] = STATE(6235), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7561), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(447), + [sym_identifier] = ACTIONS(405), [anon_sym_module] = ACTIONS(1740), [anon_sym_open] = ACTIONS(1742), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), [anon_sym_type] = ACTIONS(1744), [anon_sym_do] = ACTIONS(1746), [anon_sym_let] = ACTIONS(1748), [anon_sym_let_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), + [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), [anon_sym_exception] = ACTIONS(1756), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -88814,8 +89156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -88829,138 +89171,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1770), }, [368] = { - [sym_module_abbrev] = STATE(6298), - [sym_module_defn] = STATE(6298), - [sym_import_decl] = STATE(6298), - [sym_attributes] = STATE(5662), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6298), - [sym_do] = STATE(5076), + [sym_module_abbrev] = STATE(6291), + [sym_module_defn] = STATE(6291), + [sym_import_decl] = STATE(6291), + [sym_attributes] = STATE(5749), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6291), + [sym_do] = STATE(5107), [sym_function_or_value_defn] = STATE(499), - [sym__expression] = STATE(33), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_exception_definition] = STATE(6298), - [sym_type_definition] = STATE(6298), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym__expression] = STATE(39), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_exception_definition] = STATE(6291), + [sym_type_definition] = STATE(6291), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_comment] = STATE(368), [sym_compiler_directive_decl] = STATE(368), [sym_fsi_directive_decl] = STATE(368), [sym_preproc_line] = STATE(368), - [sym_preproc_if] = STATE(6298), - [sym_preproc_if_in_expression] = STATE(1951), - [sym_preproc_else_in_expression] = STATE(8000), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(315), + [sym_preproc_if] = STATE(6291), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8234), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(405), [anon_sym_module] = ACTIONS(1740), [anon_sym_open] = ACTIONS(1742), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), [anon_sym_type] = ACTIONS(1744), [anon_sym_do] = ACTIONS(1746), [anon_sym_let] = ACTIONS(1748), [anon_sym_let_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), + [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), [anon_sym_exception] = ACTIONS(1756), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -88970,8 +89312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -88985,138 +89327,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1770), }, [369] = { - [sym_module_abbrev] = STATE(6356), - [sym_module_defn] = STATE(6356), - [sym_import_decl] = STATE(6356), - [sym_attributes] = STATE(5662), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6356), - [sym_do] = STATE(5076), + [sym_module_abbrev] = STATE(6395), + [sym_module_defn] = STATE(6395), + [sym_import_decl] = STATE(6395), + [sym_attributes] = STATE(5749), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6395), + [sym_do] = STATE(5107), [sym_function_or_value_defn] = STATE(499), - [sym__expression] = STATE(42), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_exception_definition] = STATE(6356), - [sym_type_definition] = STATE(6356), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym__expression] = STATE(36), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_exception_definition] = STATE(6395), + [sym_type_definition] = STATE(6395), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_comment] = STATE(369), [sym_compiler_directive_decl] = STATE(369), [sym_fsi_directive_decl] = STATE(369), [sym_preproc_line] = STATE(369), - [sym_preproc_if] = STATE(6356), - [sym_preproc_if_in_expression] = STATE(1951), - [sym_preproc_else_in_expression] = STATE(7694), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(315), + [sym_preproc_if] = STATE(6395), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7425), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(405), [anon_sym_module] = ACTIONS(1740), [anon_sym_open] = ACTIONS(1742), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), [anon_sym_type] = ACTIONS(1744), [anon_sym_do] = ACTIONS(1746), [anon_sym_let] = ACTIONS(1748), [anon_sym_let_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), + [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), [anon_sym_exception] = ACTIONS(1756), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -89126,8 +89468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -89141,249 +89483,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1770), }, [370] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(370), [sym_compiler_directive_decl] = STATE(370), [sym_fsi_directive_decl] = STATE(370), [sym_preproc_line] = STATE(370), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(370), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(371), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_open] = ACTIONS(1788), - [anon_sym_LBRACK_LT] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_let_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_null] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACK_PIPE] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LT_AT] = ACTIONS(1827), - [anon_sym_LT_AT_AT] = ACTIONS(1830), - [anon_sym_LBRACE_PIPE] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_return_BANG] = ACTIONS(1839), - [anon_sym_yield] = ACTIONS(1794), - [anon_sym_yield_BANG] = ACTIONS(1839), - [anon_sym_lazy] = ACTIONS(1794), - [anon_sym_assert] = ACTIONS(1794), - [anon_sym_upcast] = ACTIONS(1794), - [anon_sym_downcast] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_fun] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_match_BANG] = ACTIONS(1860), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_use_BANG] = ACTIONS(1869), - [anon_sym_do_BANG] = ACTIONS(1872), - [anon_sym_begin] = ACTIONS(1875), - [anon_sym_exception] = ACTIONS(1878), - [aux_sym_char_token1] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_AT_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1896), - [sym_bool] = ACTIONS(1899), - [sym_unit] = ACTIONS(1902), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [sym_op_identifier] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS_DOT] = ACTIONS(1911), - [anon_sym_DASH_DOT] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1914), - [aux_sym_prefix_op_token1] = ACTIONS(1917), - [sym_int] = ACTIONS(1920), - [sym_xint] = ACTIONS(1923), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1926), - [anon_sym_POUNDload] = ACTIONS(1926), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1929), - }, - [371] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_comment] = STATE(371), - [sym_compiler_directive_decl] = STATE(371), - [sym_fsi_directive_decl] = STATE(371), - [sym_preproc_line] = STATE(371), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(374), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(1932), [sym_identifier] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(1934), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1780), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -89398,14 +89586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -89414,8 +89602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -89448,96 +89636,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(119), }, - [372] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_comment] = STATE(372), - [sym_compiler_directive_decl] = STATE(372), - [sym_fsi_directive_decl] = STATE(372), - [sym_preproc_line] = STATE(372), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(376), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(1938), + [371] = { + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_comment] = STATE(371), + [sym_compiler_directive_decl] = STATE(371), + [sym_fsi_directive_decl] = STATE(371), + [sym_preproc_line] = STATE(371), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(373), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(1784), [sym_identifier] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -89552,14 +89740,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -89568,8 +89756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -89602,96 +89790,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(119), }, - [373] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), - [sym_block_comment] = STATE(373), - [sym_compiler_directive_decl] = STATE(373), - [sym_fsi_directive_decl] = STATE(373), - [sym_preproc_line] = STATE(373), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(370), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(1942), + [372] = { + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_comment] = STATE(372), + [sym_compiler_directive_decl] = STATE(372), + [sym_fsi_directive_decl] = STATE(372), + [sym_preproc_line] = STATE(372), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(375), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(1788), [sym_identifier] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(1944), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1790), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -89706,14 +89894,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -89722,8 +89910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -89756,96 +89944,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(119), }, + [373] = { + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_comment] = STATE(373), + [sym_compiler_directive_decl] = STATE(373), + [sym_fsi_directive_decl] = STATE(373), + [sym_preproc_line] = STATE(373), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(373), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_LBRACK_LT] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_null] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_LBRACK_PIPE] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LT_AT] = ACTIONS(1841), + [anon_sym_LT_AT_AT] = ACTIONS(1844), + [anon_sym_LBRACE_PIPE] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_return_BANG] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_yield_BANG] = ACTIONS(1853), + [anon_sym_lazy] = ACTIONS(1808), + [anon_sym_assert] = ACTIONS(1808), + [anon_sym_upcast] = ACTIONS(1808), + [anon_sym_downcast] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_fun] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_match_BANG] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_use_BANG] = ACTIONS(1883), + [anon_sym_do_BANG] = ACTIONS(1886), + [anon_sym_begin] = ACTIONS(1889), + [anon_sym_exception] = ACTIONS(1892), + [aux_sym_char_token1] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_AT_DQUOTE] = ACTIONS(1904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1907), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1910), + [sym_bool] = ACTIONS(1913), + [sym_unit] = ACTIONS(1916), + [anon_sym_LPAREN_PIPE] = ACTIONS(1919), + [sym_op_identifier] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PLUS_DOT] = ACTIONS(1925), + [anon_sym_DASH_DOT] = ACTIONS(1925), + [anon_sym_PERCENT] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1928), + [aux_sym_prefix_op_token1] = ACTIONS(1931), + [sym_int] = ACTIONS(1934), + [sym_xint] = ACTIONS(1937), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(1940), + [anon_sym_POUNDload] = ACTIONS(1940), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1943), + }, [374] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(374), [sym_compiler_directive_decl] = STATE(374), [sym_fsi_directive_decl] = STATE(374), [sym_preproc_line] = STATE(374), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(370), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(376), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -89860,14 +90202,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -89876,8 +90218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -89911,95 +90253,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [375] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(375), [sym_compiler_directive_decl] = STATE(375), [sym_fsi_directive_decl] = STATE(375), [sym_preproc_line] = STATE(375), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), [aux_sym_file_repeat2] = STATE(373), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1950), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -90014,14 +90356,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -90030,8 +90372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -90065,95 +90407,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [376] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(5), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(411), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(376), [sym_compiler_directive_decl] = STATE(376), [sym_fsi_directive_decl] = STATE(376), [sym_preproc_line] = STATE(376), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(370), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(373), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(19), [anon_sym_namespace] = ACTIONS(1956), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(145), + [anon_sym_return] = ACTIONS(135), [anon_sym_type] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_let] = ACTIONS(35), @@ -90168,14 +90510,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -90184,8 +90526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [anon_sym_exception] = ACTIONS(85), @@ -90219,91 +90561,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [377] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(377), [sym_compiler_directive_decl] = STATE(377), [sym_fsi_directive_decl] = STATE(377), [sym_preproc_line] = STATE(377), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), [aux_sym_file_repeat2] = STATE(380), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -90372,91 +90714,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [378] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(378), [sym_compiler_directive_decl] = STATE(378), [sym_fsi_directive_decl] = STATE(378), [sym_preproc_line] = STATE(378), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(380), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(381), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1960), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -90525,91 +90867,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [379] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(379), [sym_compiler_directive_decl] = STATE(379), [sym_fsi_directive_decl] = STATE(379), [sym_preproc_line] = STATE(379), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(384), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(377), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -90678,108 +91020,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [380] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(380), [sym_compiler_directive_decl] = STATE(380), [sym_fsi_directive_decl] = STATE(380), [sym_preproc_line] = STATE(380), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), [aux_sym_file_repeat2] = STATE(380), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_open] = ACTIONS(1788), - [anon_sym_LBRACK_LT] = ACTIONS(1791), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_LBRACK_LT] = ACTIONS(1805), [anon_sym_return] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_let_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_null] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACK_PIPE] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LT_AT] = ACTIONS(1827), - [anon_sym_LT_AT_AT] = ACTIONS(1830), - [anon_sym_LBRACE_PIPE] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_null] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_LBRACK_PIPE] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LT_AT] = ACTIONS(1841), + [anon_sym_LT_AT_AT] = ACTIONS(1844), + [anon_sym_LBRACE_PIPE] = ACTIONS(1847), [anon_sym_new] = ACTIONS(1967), [anon_sym_return_BANG] = ACTIONS(1970), [anon_sym_yield] = ACTIONS(1964), @@ -90788,134 +91130,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(1964), [anon_sym_upcast] = ACTIONS(1964), [anon_sym_downcast] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_fun] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_match_BANG] = ACTIONS(1860), - [anon_sym_function] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_fun] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_match_BANG] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1877), [anon_sym_use] = ACTIONS(1973), [anon_sym_use_BANG] = ACTIONS(1976), - [anon_sym_do_BANG] = ACTIONS(1872), - [anon_sym_begin] = ACTIONS(1875), - [anon_sym_exception] = ACTIONS(1878), - [aux_sym_char_token1] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_AT_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1896), - [sym_bool] = ACTIONS(1899), - [sym_unit] = ACTIONS(1902), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [sym_op_identifier] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS_DOT] = ACTIONS(1911), - [anon_sym_DASH_DOT] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1914), - [aux_sym_prefix_op_token1] = ACTIONS(1917), + [anon_sym_do_BANG] = ACTIONS(1886), + [anon_sym_begin] = ACTIONS(1889), + [anon_sym_exception] = ACTIONS(1892), + [aux_sym_char_token1] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_AT_DQUOTE] = ACTIONS(1904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1907), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1910), + [sym_bool] = ACTIONS(1913), + [sym_unit] = ACTIONS(1916), + [anon_sym_LPAREN_PIPE] = ACTIONS(1919), + [sym_op_identifier] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PLUS_DOT] = ACTIONS(1925), + [anon_sym_DASH_DOT] = ACTIONS(1925), + [anon_sym_PERCENT] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1928), + [aux_sym_prefix_op_token1] = ACTIONS(1931), [sym_int] = ACTIONS(1979), [sym_xint] = ACTIONS(1982), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1926), - [anon_sym_POUNDload] = ACTIONS(1926), + [anon_sym_POUNDr] = ACTIONS(1940), + [anon_sym_POUNDload] = ACTIONS(1940), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1929), + [anon_sym_POUNDif] = ACTIONS(1943), }, [381] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(381), [sym_compiler_directive_decl] = STATE(381), [sym_fsi_directive_decl] = STATE(381), [sym_preproc_line] = STATE(381), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(382), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(380), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1985), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -90984,91 +91326,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [382] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(382), [sym_compiler_directive_decl] = STATE(382), [sym_fsi_directive_decl] = STATE(382), [sym_preproc_line] = STATE(382), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(380), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(384), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -91137,91 +91479,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [383] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(383), [sym_compiler_directive_decl] = STATE(383), [sym_fsi_directive_decl] = STATE(383), [sym_preproc_line] = STATE(383), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), - [aux_sym_file_repeat2] = STATE(377), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_file_repeat2] = STATE(380), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1989), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -91290,91 +91632,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [384] = { - [sym_module_abbrev] = STATE(2985), - [sym_module_defn] = STATE(2985), - [sym_import_decl] = STATE(2985), - [sym_attributes] = STATE(5664), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(2985), - [sym_do] = STATE(2775), - [sym_function_or_value_defn] = STATE(415), - [sym__expression] = STATE(12), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_exception_definition] = STATE(2985), - [sym_type_definition] = STATE(2985), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_module_abbrev] = STATE(3044), + [sym_module_defn] = STATE(3044), + [sym_import_decl] = STATE(3044), + [sym_attributes] = STATE(5708), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(3044), + [sym_do] = STATE(2827), + [sym_function_or_value_defn] = STATE(427), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_exception_definition] = STATE(3044), + [sym_type_definition] = STATE(3044), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_comment] = STATE(384), [sym_compiler_directive_decl] = STATE(384), [sym_fsi_directive_decl] = STATE(384), [sym_preproc_line] = STATE(384), - [sym_preproc_if] = STATE(2985), - [sym_preproc_if_in_expression] = STATE(1084), + [sym_preproc_if] = STATE(3044), + [sym_preproc_if_in_expression] = STATE(1196), [aux_sym_file_repeat2] = STATE(380), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), [ts_builtin_sym_end] = ACTIONS(1991), [sym_identifier] = ACTIONS(19), - [anon_sym_module] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1782), [anon_sym_open] = ACTIONS(25), [anon_sym_LBRACK_LT] = ACTIONS(27), [anon_sym_return] = ACTIONS(29), @@ -91443,137 +91785,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(119), }, [385] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(8177), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7783), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2149), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(385), [sym_compiler_directive_decl] = STATE(385), [sym_fsi_directive_decl] = STATE(385), [sym_preproc_line] = STATE(385), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -91583,8 +91925,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -91595,137 +91937,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [386] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7509), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7374), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2217), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2436), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(386), [sym_compiler_directive_decl] = STATE(386), [sym_fsi_directive_decl] = STATE(386), [sym_preproc_line] = STATE(386), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -91735,8 +92077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -91747,137 +92089,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [387] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7558), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7133), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(387), [sym_compiler_directive_decl] = STATE(387), [sym_fsi_directive_decl] = STATE(387), [sym_preproc_line] = STATE(387), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -91887,8 +92229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -91899,137 +92241,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [388] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7427), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(8141), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2355), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2233), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(388), [sym_compiler_directive_decl] = STATE(388), [sym_fsi_directive_decl] = STATE(388), [sym_preproc_line] = STATE(388), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92039,8 +92381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92051,137 +92393,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [389] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7898), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(8141), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(389), [sym_compiler_directive_decl] = STATE(389), [sym_fsi_directive_decl] = STATE(389), [sym_preproc_line] = STATE(389), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92191,8 +92533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92203,137 +92545,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [390] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7277), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(8263), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(390), [sym_compiler_directive_decl] = STATE(390), [sym_fsi_directive_decl] = STATE(390), [sym_preproc_line] = STATE(390), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92343,8 +92685,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92355,137 +92697,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [391] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(8018), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7967), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2414), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(391), [sym_compiler_directive_decl] = STATE(391), [sym_fsi_directive_decl] = STATE(391), [sym_preproc_line] = STATE(391), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92495,8 +92837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92507,137 +92849,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [392] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(8095), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7133), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2155), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2246), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(392), [sym_compiler_directive_decl] = STATE(392), [sym_fsi_directive_decl] = STATE(392), [sym_preproc_line] = STATE(392), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92647,8 +92989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92659,137 +93001,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [393] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7716), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7766), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2194), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2148), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(393), [sym_compiler_directive_decl] = STATE(393), [sym_fsi_directive_decl] = STATE(393), [sym_preproc_line] = STATE(393), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92799,8 +93141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92811,137 +93153,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [394] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7297), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7766), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(394), [sym_compiler_directive_decl] = STATE(394), [sym_fsi_directive_decl] = STATE(394), [sym_preproc_line] = STATE(394), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -92951,8 +93293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -92963,137 +93305,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [395] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7277), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7533), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2331), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2422), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(395), [sym_compiler_directive_decl] = STATE(395), [sym_fsi_directive_decl] = STATE(395), [sym_preproc_line] = STATE(395), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93103,8 +93445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93115,137 +93457,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [396] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(6981), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7962), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2541), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(396), [sym_compiler_directive_decl] = STATE(396), [sym_fsi_directive_decl] = STATE(396), [sym_preproc_line] = STATE(396), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93255,8 +93597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93267,137 +93609,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [397] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7716), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7970), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(397), [sym_compiler_directive_decl] = STATE(397), [sym_fsi_directive_decl] = STATE(397), [sym_preproc_line] = STATE(397), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93407,8 +93749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93419,137 +93761,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [398] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7684), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7098), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2381), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(398), [sym_compiler_directive_decl] = STATE(398), [sym_fsi_directive_decl] = STATE(398), [sym_preproc_line] = STATE(398), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93559,8 +93901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93571,137 +93913,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [399] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(8095), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7783), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(2468), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(399), [sym_compiler_directive_decl] = STATE(399), [sym_fsi_directive_decl] = STATE(399), [sym_preproc_line] = STATE(399), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93711,8 +94053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93723,137 +94065,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [400] = { - [sym_module_abbrev] = STATE(6367), - [sym_module_defn] = STATE(6367), - [sym__module_body] = STATE(7558), - [sym_import_decl] = STATE(6367), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6367), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6273), + [sym_module_defn] = STATE(6273), + [sym__module_body] = STATE(7563), + [sym_import_decl] = STATE(6273), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6273), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(79), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6367), - [sym_type_definition] = STATE(6367), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(2464), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6273), + [sym_type_definition] = STATE(6273), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(400), [sym_compiler_directive_decl] = STATE(400), [sym_fsi_directive_decl] = STATE(400), [sym_preproc_line] = STATE(400), - [sym_preproc_if] = STATE(6367), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6273), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -93863,8 +94205,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -93875,136 +94217,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [401] = { - [sym_module_abbrev] = STATE(6738), - [sym_module_defn] = STATE(6738), - [sym_import_decl] = STATE(6738), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6738), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6725), + [sym_module_defn] = STATE(6725), + [sym_import_decl] = STATE(6725), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6725), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(240), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6738), - [sym_type_definition] = STATE(6738), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(306), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6725), + [sym_type_definition] = STATE(6725), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(401), [sym_compiler_directive_decl] = STATE(401), [sym_fsi_directive_decl] = STATE(401), [sym_preproc_line] = STATE(401), - [sym_preproc_if] = STATE(6738), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6725), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94014,8 +94356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94026,136 +94368,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [402] = { - [sym_module_abbrev] = STATE(6738), - [sym_module_defn] = STATE(6738), - [sym_import_decl] = STATE(6738), - [sym_attributes] = STATE(5659), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(6738), - [sym_do] = STATE(4970), + [sym_module_abbrev] = STATE(6725), + [sym_module_defn] = STATE(6725), + [sym_import_decl] = STATE(6725), + [sym_attributes] = STATE(5722), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(6725), + [sym_do] = STATE(4998), [sym_function_or_value_defn] = STATE(498), - [sym__expression] = STATE(249), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_exception_definition] = STATE(6738), - [sym_type_definition] = STATE(6738), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym__expression] = STATE(304), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_exception_definition] = STATE(6725), + [sym_type_definition] = STATE(6725), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(402), [sym_compiler_directive_decl] = STATE(402), [sym_fsi_directive_decl] = STATE(402), [sym_preproc_line] = STATE(402), - [sym_preproc_if] = STATE(6738), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), + [sym_preproc_if] = STATE(6725), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), [anon_sym_module] = ACTIONS(1993), [anon_sym_open] = ACTIONS(1995), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(614), + [anon_sym_return] = ACTIONS(860), [anon_sym_type] = ACTIONS(1997), [anon_sym_do] = ACTIONS(1999), [anon_sym_let] = ACTIONS(2001), [anon_sym_let_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_exception] = ACTIONS(2009), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94165,8 +94507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94177,136 +94519,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2017), }, [403] = { - [sym_module_abbrev] = STATE(7422), - [sym_module_defn] = STATE(7422), - [sym_import_decl] = STATE(7422), - [sym_attributes] = STATE(5725), - [sym__attribute_set] = STATE(3962), - [sym_value_declaration] = STATE(7422), - [sym_do] = STATE(5141), - [sym_function_or_value_defn] = STATE(511), - [sym__expression] = STATE(340), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_exception_definition] = STATE(7422), - [sym_type_definition] = STATE(7422), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_module_abbrev] = STATE(7649), + [sym_module_defn] = STATE(7649), + [sym_import_decl] = STATE(7649), + [sym_attributes] = STATE(5672), + [sym__attribute_set] = STATE(4224), + [sym_value_declaration] = STATE(7649), + [sym_do] = STATE(5168), + [sym_function_or_value_defn] = STATE(527), + [sym__expression] = STATE(315), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_exception_definition] = STATE(7649), + [sym_type_definition] = STATE(7649), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_comment] = STATE(403), [sym_compiler_directive_decl] = STATE(403), [sym_fsi_directive_decl] = STATE(403), [sym_preproc_line] = STATE(403), - [sym_preproc_if] = STATE(7422), - [sym_preproc_if_in_expression] = STATE(2302), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), + [sym_preproc_if] = STATE(7649), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), [anon_sym_module] = ACTIONS(2019), [anon_sym_open] = ACTIONS(2021), [anon_sym_LBRACK_LT] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1370), [anon_sym_type] = ACTIONS(2023), [anon_sym_do] = ACTIONS(2025), [anon_sym_let] = ACTIONS(2027), [anon_sym_let_BANG] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), + [anon_sym_LT_AT] = ACTIONS(1386), [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), [anon_sym_exception] = ACTIONS(2035), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94316,8 +94658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94328,128 +94670,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2043), }, [404] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(38), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym__list_elements] = STATE(8002), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(8002), - [sym_short_comp_expression] = STATE(8001), - [sym_slice_ranges] = STATE(8002), - [sym__slice_range_special] = STATE(6505), - [sym_slice_range] = STATE(6185), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(45), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym__list_elements] = STATE(8188), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(8188), + [sym_short_comp_expression] = STATE(8187), + [sym_slice_ranges] = STATE(8188), + [sym__slice_range_special] = STATE(6516), + [sym_slice_range] = STATE(6379), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), [anon_sym_for] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(549), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_DOT_DOT3] = ACTIONS(2047), [anon_sym_STAR] = ACTIONS(2049), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94459,8 +94801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94468,132 +94810,131 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), [sym__newline] = ACTIONS(2051), }, [405] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(108), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_type_arguments] = STATE(3028), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1299), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_type_arguments] = STATE(3066), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1355), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1965), - [aux_sym_compound_type_repeat1] = STATE(2991), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_compound_type_repeat1] = STATE(3023), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [anon_sym_GT_RBRACK] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), + [anon_sym_LT_AT] = ACTIONS(243), [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), + [anon_sym_fun] = ACTIONS(261), [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), [anon_sym_STAR] = ACTIONS(2063), [anon_sym_LT2] = ACTIONS(2065), [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94603,8 +94944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94612,132 +94953,133 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(311), + [sym__newline] = ACTIONS(2055), }, [406] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(32), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_type_arguments] = STATE(3028), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1129), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(44), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_type_arguments] = STATE(3085), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1168), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1570), - [aux_sym_compound_type_repeat1] = STATE(2991), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_compound_type_repeat1] = STATE(3042), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_with] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2065), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -94746,8 +95088,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94755,130 +95097,131 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(403), }, [407] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(251), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_type_arguments] = STATE(3048), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1445), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(110), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_type_arguments] = STATE(3085), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1272), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1217), - [aux_sym_compound_type_repeat1] = STATE(2998), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2083), - [anon_sym_GT_RBRACK] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_compound_type_repeat1] = STATE(3042), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_with] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_DASH_GT] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2095), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2097), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -94888,8 +95231,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -94897,272 +95240,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), - [sym__newline] = ACTIONS(2085), + [anon_sym_POUNDif] = ACTIONS(830), }, [408] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(4), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(296), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_type_arguments] = STATE(3097), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1437), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_open] = ACTIONS(2105), - [anon_sym_LBRACK_LT] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_BANG] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LBRACK_PIPE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LT_AT] = ACTIONS(2105), - [anon_sym_LT_AT_AT] = ACTIONS(2103), - [anon_sym_LBRACE_PIPE] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_return_BANG] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_yield_BANG] = ACTIONS(2103), - [anon_sym_lazy] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_upcast] = ACTIONS(2105), - [anon_sym_downcast] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_fun] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_match_BANG] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_use_BANG] = ACTIONS(2103), - [anon_sym_do_BANG] = ACTIONS(2103), - [anon_sym_begin] = ACTIONS(2105), - [anon_sym_exception] = ACTIONS(2105), - [aux_sym_char_token1] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_AT_DQUOTE] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [sym_bool] = ACTIONS(2105), - [sym_unit] = ACTIONS(2103), - [anon_sym_LPAREN_PIPE] = ACTIONS(2105), - [sym_op_identifier] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_PLUS_DOT] = ACTIONS(2103), - [anon_sym_DASH_DOT] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [aux_sym_prefix_op_token1] = ACTIONS(2103), - [sym_int] = ACTIONS(2105), - [sym_xint] = ACTIONS(2103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2103), - [anon_sym_POUNDload] = ACTIONS(2103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2103), - }, - [409] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(247), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_type_arguments] = STATE(3078), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1349), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_compound_type_repeat1] = STATE(3058), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_compound_type_repeat1] = STATE(3061), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -95172,8 +95372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95181,130 +95381,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__dedent] = ACTIONS(2117), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__dedent] = ACTIONS(2113), }, - [410] = { - [sym_function_or_value_defn] = STATE(719), + [409] = { + [sym_function_or_value_defn] = STATE(565), [sym__expression] = STATE(233), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_type_arguments] = STATE(3078), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1349), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_compound_type_repeat1] = STATE(3058), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_type_arguments] = STATE(3097), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1437), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_compound_type_repeat1] = STATE(3061), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -95314,8 +95514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95323,130 +95523,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__dedent] = ACTIONS(2119), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__dedent] = ACTIONS(2115), }, - [411] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(173), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_type_arguments] = STATE(3078), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1349), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_compound_type_repeat1] = STATE(3058), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [410] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(174), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_type_arguments] = STATE(3097), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1437), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_compound_type_repeat1] = STATE(3061), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -95456,8 +95656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95465,130 +95665,272 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__dedent] = ACTIONS(2121), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__dedent] = ACTIONS(2117), + }, + [411] = { + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(5), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), + [sym_block_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(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_open] = ACTIONS(2121), + [anon_sym_LBRACK_LT] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_let_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACK_PIPE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LT_AT] = ACTIONS(2121), + [anon_sym_LT_AT_AT] = ACTIONS(2119), + [anon_sym_LBRACE_PIPE] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_return_BANG] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_yield_BANG] = ACTIONS(2119), + [anon_sym_lazy] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2121), + [anon_sym_upcast] = ACTIONS(2121), + [anon_sym_downcast] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_fun] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_match_BANG] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_use_BANG] = ACTIONS(2119), + [anon_sym_do_BANG] = ACTIONS(2119), + [anon_sym_begin] = ACTIONS(2121), + [anon_sym_exception] = ACTIONS(2121), + [aux_sym_char_token1] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_AT_DQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [sym_bool] = ACTIONS(2121), + [sym_unit] = ACTIONS(2119), + [anon_sym_LPAREN_PIPE] = ACTIONS(2121), + [sym_op_identifier] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_PLUS_DOT] = ACTIONS(2119), + [anon_sym_DASH_DOT] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [aux_sym_prefix_op_token1] = ACTIONS(2119), + [sym_int] = ACTIONS(2121), + [sym_xint] = ACTIONS(2119), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2119), + [anon_sym_POUNDload] = ACTIONS(2119), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2119), }, [412] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(239), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1482), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(332), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(1367), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), + [anon_sym_LT_AT] = ACTIONS(1158), [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), + [anon_sym_fun] = ACTIONS(1176), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -95599,7 +95941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95607,130 +95949,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1226), }, [413] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(338), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(1438), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7458), + [sym_object_expression] = STATE(7458), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7474), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7458), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2374), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -95739,8 +96081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95748,130 +96090,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(606), }, [414] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7329), - [sym_object_expression] = STATE(7329), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7347), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7329), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(2), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(901), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -95880,8 +96222,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -95889,271 +96231,271 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [415] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(25), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1193), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_open] = ACTIONS(2105), - [anon_sym_LBRACK_LT] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_BANG] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LBRACK_PIPE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LT_AT] = ACTIONS(2105), - [anon_sym_LT_AT_AT] = ACTIONS(2103), - [anon_sym_LBRACE_PIPE] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_return_BANG] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_yield_BANG] = ACTIONS(2103), - [anon_sym_lazy] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_upcast] = ACTIONS(2105), - [anon_sym_downcast] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_fun] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_match_BANG] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_use_BANG] = ACTIONS(2103), - [anon_sym_do_BANG] = ACTIONS(2103), - [anon_sym_begin] = ACTIONS(2105), - [anon_sym_exception] = ACTIONS(2105), - [aux_sym_char_token1] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_AT_DQUOTE] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [sym_bool] = ACTIONS(2105), - [sym_unit] = ACTIONS(2103), - [anon_sym_LPAREN_PIPE] = ACTIONS(2105), - [sym_op_identifier] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_PLUS_DOT] = ACTIONS(2103), - [anon_sym_DASH_DOT] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [aux_sym_prefix_op_token1] = ACTIONS(2103), - [sym_int] = ACTIONS(2105), - [sym_xint] = ACTIONS(2103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2103), - [anon_sym_POUNDload] = ACTIONS(2103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2103), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(107), + [anon_sym_DASH_DOT] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(107), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(111), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(403), }, [416] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7275), - [sym_object_expression] = STATE(7275), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7293), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7275), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(135), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1328), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -96162,8 +96504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96171,130 +96513,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(830), }, [417] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(93), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(896), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(301), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(1469), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1217), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), + [anon_sym_fun] = ACTIONS(958), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -96303,8 +96645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96312,129 +96654,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1010), }, [418] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7463), - [sym_object_expression] = STATE(7463), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7478), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7463), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7289), + [sym_object_expression] = STATE(7289), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7309), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7289), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -96444,8 +96786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96453,130 +96795,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [419] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(204), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(1398), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(57), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1429), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), + [anon_sym_fun] = ACTIONS(650), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -96585,8 +96927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96594,129 +96936,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(700), }, [420] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7009), - [sym_object_expression] = STATE(7009), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(6978), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7009), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7348), + [sym_object_expression] = STATE(7348), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7367), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7348), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -96726,8 +97068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96735,130 +97077,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [421] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(39), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1099), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(871), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1570), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), + [anon_sym_fun] = ACTIONS(261), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -96867,8 +97209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -96876,130 +97218,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(311), }, [422] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(216), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(1467), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(72), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1161), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), + [anon_sym_fun] = ACTIONS(554), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -97008,8 +97350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97017,130 +97359,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(606), }, [423] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(259), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(1369), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(27), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(901), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(2307), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), + [anon_sym_fun] = ACTIONS(67), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -97149,8 +97491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97158,130 +97500,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(181), }, [424] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(27), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(896), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1161), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), + [anon_sym_fun] = ACTIONS(554), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -97290,8 +97632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97299,129 +97641,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [425] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7997), - [sym_object_expression] = STATE(7997), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7692), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7997), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7403), + [sym_object_expression] = STATE(7403), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7422), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7403), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -97431,8 +97773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97440,130 +97782,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [426] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(18), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(878), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(148), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(1449), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1084), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), + [anon_sym_fun] = ACTIONS(1082), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -97572,8 +97914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97581,271 +97923,271 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(1132), }, [427] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(49), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1318), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(12), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1951), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(107), - [anon_sym_DASH_DOT] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(403), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_open] = ACTIONS(2121), + [anon_sym_LBRACK_LT] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_let_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACK_PIPE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LT_AT] = ACTIONS(2121), + [anon_sym_LT_AT_AT] = ACTIONS(2119), + [anon_sym_LBRACE_PIPE] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_return_BANG] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_yield_BANG] = ACTIONS(2119), + [anon_sym_lazy] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2121), + [anon_sym_upcast] = ACTIONS(2121), + [anon_sym_downcast] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_fun] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_match_BANG] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_use_BANG] = ACTIONS(2119), + [anon_sym_do_BANG] = ACTIONS(2119), + [anon_sym_begin] = ACTIONS(2121), + [anon_sym_exception] = ACTIONS(2121), + [aux_sym_char_token1] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_AT_DQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [sym_bool] = ACTIONS(2121), + [sym_unit] = ACTIONS(2119), + [anon_sym_LPAREN_PIPE] = ACTIONS(2121), + [sym_op_identifier] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_PLUS_DOT] = ACTIONS(2119), + [anon_sym_DASH_DOT] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [aux_sym_prefix_op_token1] = ACTIONS(2119), + [sym_int] = ACTIONS(2121), + [sym_xint] = ACTIONS(2119), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2119), + [anon_sym_POUNDload] = ACTIONS(2119), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2119), }, [428] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7383), - [sym_object_expression] = STATE(7383), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7398), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7383), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(289), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(1450), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -97854,8 +98196,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -97863,129 +98205,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1454), }, [429] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7424), - [sym_object_expression] = STATE(7424), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7439), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7424), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7203), + [sym_object_expression] = STATE(7203), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7227), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7203), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -97995,8 +98337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98004,129 +98346,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [430] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7040), - [sym_object_expression] = STATE(7040), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7063), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7040), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7500), + [sym_object_expression] = STATE(7500), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7516), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7500), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -98136,8 +98478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98145,129 +98487,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [431] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(132), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1158), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7540), + [sym_object_expression] = STATE(7540), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7556), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7540), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -98277,8 +98619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98286,129 +98628,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [432] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7217), - [sym_object_expression] = STATE(7217), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7236), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7217), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7580), + [sym_object_expression] = STATE(7580), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7596), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7580), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -98418,8 +98760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98427,129 +98769,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [433] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(66), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1332), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(53), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(871), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1965), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), + [anon_sym_LT_AT] = ACTIONS(243), [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), + [anon_sym_fun] = ACTIONS(261), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), [anon_sym_use] = ACTIONS(714), [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -98559,8 +98901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98568,130 +98910,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(311), }, [434] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(11), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(878), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(8182), + [sym_object_expression] = STATE(8182), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7997), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(8182), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -98700,8 +99042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98709,129 +99051,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(606), }, [435] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7132), - [sym_object_expression] = STATE(7132), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7155), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7132), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7110), + [sym_object_expression] = STATE(7110), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7134), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7110), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -98841,8 +99183,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98850,130 +99192,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [436] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(99), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1363), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7093), + [sym_object_expression] = STATE(7093), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7046), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7093), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -98982,8 +99324,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -98991,130 +99333,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [437] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7540), - [sym_object_expression] = STATE(7540), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7554), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7540), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(122), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1340), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(2129), + [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(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99123,8 +99465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99132,130 +99474,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(493), }, [438] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(139), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(1446), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_with_field_expression] = STATE(7619), + [sym_object_expression] = STATE(7619), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__comp_or_range_expression] = STATE(7634), + [sym_short_comp_expression] = STATE(8187), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7619), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1829), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1060), - [anon_sym_DASH_GT] = ACTIONS(2129), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99264,8 +99606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99273,130 +99615,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(606), }, [439] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(112), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_type_arguments] = STATE(3105), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1158), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(302), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(1414), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_compound_type_repeat1] = STATE(3091), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), + [anon_sym_fun] = ACTIONS(1292), [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), [anon_sym_STAR] = ACTIONS(2131), [anon_sym_LT2] = ACTIONS(2133), [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99405,8 +99747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99414,130 +99756,130 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1344), }, [440] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(75), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_with_field_expression] = STATE(7502), - [sym_object_expression] = STATE(7502), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__comp_or_range_expression] = STATE(7517), - [sym_short_comp_expression] = STATE(8001), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7502), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1794), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(198), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_type_arguments] = STATE(3135), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1511), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_compound_type_repeat1] = STATE(3102), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99546,8 +99888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99555,126 +99897,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [441] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(103), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(8068), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7685), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99683,8 +100028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99692,128 +100037,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2195), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [442] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8067), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7056), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -99823,8 +100165,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99832,129 +100174,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2197), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2199), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [443] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(62), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7327), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(6999), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -99963,8 +100308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -99972,128 +100317,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2199), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [444] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8105), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8333), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -100103,8 +100445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100112,132 +100454,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(493), [anon_sym_POUNDendif] = ACTIONS(2201), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [445] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(72), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7414), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(61), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7681), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -100246,7 +100588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -100258,122 +100600,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [446] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7037), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8234), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -100383,8 +100725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100392,132 +100734,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(1772), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(1774), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [447] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(122), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(8124), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7622), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -100526,8 +100865,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100535,125 +100874,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2203), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [448] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7706), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7399), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -100663,8 +101005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100672,128 +101014,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2207), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2205), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [449] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7289), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7377), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -100803,8 +101145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100812,128 +101154,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2209), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2207), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [450] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7305), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7385), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -100943,8 +101285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -100952,132 +101294,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2211), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2209), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [451] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(78), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7071), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8083), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(455), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -101086,8 +101425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101095,125 +101434,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2211), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [452] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7694), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7172), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -101223,8 +101565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101232,128 +101574,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(1776), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2213), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [453] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7731), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8000), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(462), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -101363,8 +101705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101372,132 +101714,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2213), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(1766), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [454] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(60), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7907), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7561), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(447), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -101506,8 +101845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101515,129 +101854,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(1772), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [455] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(85), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7286), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8192), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -101646,8 +101985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101655,125 +101994,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2215), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [456] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7770), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7781), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -101783,8 +102125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101792,128 +102134,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(1766), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2217), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [457] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7251), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7212), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(472), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -101923,8 +102265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -101932,128 +102274,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2215), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2219), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [458] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7576), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7199), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -102063,8 +102405,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102072,128 +102414,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2217), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2221), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [459] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8202), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7425), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -102203,8 +102545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102212,129 +102554,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2219), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(1776), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [460] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(109), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7921), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7508), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -102343,8 +102688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102352,128 +102697,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2221), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [461] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7454), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8116), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -102483,8 +102825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102492,132 +102834,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(493), [anon_sym_POUNDendif] = ACTIONS(2223), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [462] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(55), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7950), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7776), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -102626,8 +102965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102635,126 +102974,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2225), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [463] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(90), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7765), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7472), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -102763,8 +103108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -102772,132 +103117,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2225), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [464] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(77), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7387), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7470), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -102906,7 +103248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -102918,126 +103260,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [465] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(74), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7195), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(69), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(8208), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -103046,7 +103388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -103058,122 +103400,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [466] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8022), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7938), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -103183,8 +103525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103192,132 +103534,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(493), [anon_sym_POUNDendif] = ACTIONS(2227), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [467] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(51), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7815), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7071), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -103326,8 +103665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103335,125 +103674,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2229), + [anon_sym_POUNDelse] = ACTIONS(1768), + [sym__newline] = ACTIONS(1770), }, [468] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8000), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7946), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -103463,8 +103805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103472,129 +103814,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(1774), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2231), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [469] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(60), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7205), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7237), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -103603,8 +103948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103612,128 +103957,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2229), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [470] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(8183), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(8007), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -103743,8 +104085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103752,128 +104094,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2231), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2233), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [471] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7698), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(453), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7082), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -103883,8 +104225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -103892,128 +104234,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2233), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2235), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [472] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7438), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [sym_preproc_else_in_expression] = STATE(7316), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -104023,8 +104365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -104032,132 +104374,132 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2235), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2237), [anon_sym_POUNDelse] = ACTIONS(1768), [sym__newline] = ACTIONS(1770), }, [473] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(64), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7639), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(124), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(8152), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -104166,7 +104508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -104178,126 +104520,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [474] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(104), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(8229), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(82), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7568), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -104306,7 +104648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -104318,123 +104660,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [475] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(95), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7092), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [sym_preproc_else_in_expression] = STATE(7244), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -104443,8 +104788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -104452,132 +104797,129 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2237), - [anon_sym_POUNDelse] = ACTIONS(1768), - [sym__newline] = ACTIONS(1770), + [anon_sym_POUNDif] = ACTIONS(311), }, [476] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(65), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_slice_ranges] = STATE(7637), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6339), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(86), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_slice_ranges] = STATE(7230), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6268), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -104586,7 +104928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -104598,264 +104940,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [477] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(81), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7619), + [sym_object_expression] = STATE(7619), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7619), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(477), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_BANG] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LBRACK_PIPE] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LT_AT] = ACTIONS(2272), - [anon_sym_LT_AT_AT] = ACTIONS(2275), - [anon_sym_LBRACE_PIPE] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_return_BANG] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_yield_BANG] = ACTIONS(2284), - [anon_sym_lazy] = ACTIONS(2242), - [anon_sym_assert] = ACTIONS(2242), - [anon_sym_upcast] = ACTIONS(2242), - [anon_sym_downcast] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_fun] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_use_BANG] = ACTIONS(2314), - [anon_sym_do_BANG] = ACTIONS(2317), - [anon_sym_begin] = ACTIONS(2320), - [aux_sym_char_token1] = ACTIONS(2323), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2329), - [anon_sym_AT_DQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2338), - [sym_bool] = ACTIONS(2341), - [sym_unit] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [sym_op_identifier] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS_DOT] = ACTIONS(2353), - [anon_sym_DASH_DOT] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2356), - [aux_sym_prefix_op_token1] = ACTIONS(2359), - [sym_int] = ACTIONS(2362), - [sym_xint] = ACTIONS(2365), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2368), - [anon_sym_POUNDendif] = ACTIONS(918), - [anon_sym_POUNDelse] = ACTIONS(918), - [sym__newline] = ACTIONS(2371), - }, - [478] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7383), - [sym_object_expression] = STATE(7383), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7383), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -104875,126 +105078,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), }, - [479] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7997), - [sym_object_expression] = STATE(7997), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7997), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [478] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7540), + [sym_object_expression] = STATE(7540), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7540), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105014,126 +105217,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), }, - [480] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7329), - [sym_object_expression] = STATE(7329), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7329), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [479] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7203), + [sym_object_expression] = STATE(7203), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7203), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105153,126 +105356,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), }, - [481] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7463), - [sym_object_expression] = STATE(7463), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7463), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), - [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [480] = { + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7580), + [sym_object_expression] = STATE(7580), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7580), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), + [sym_block_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(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105292,126 +105495,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(311), }, + [481] = { + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), + [sym_block_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(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LBRACK_PIPE] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_LT_AT] = ACTIONS(2276), + [anon_sym_LT_AT_AT] = ACTIONS(2279), + [anon_sym_LBRACE_PIPE] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_return_BANG] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2246), + [anon_sym_yield_BANG] = ACTIONS(2288), + [anon_sym_lazy] = ACTIONS(2246), + [anon_sym_assert] = ACTIONS(2246), + [anon_sym_upcast] = ACTIONS(2246), + [anon_sym_downcast] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_fun] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_match_BANG] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_use_BANG] = ACTIONS(2318), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2324), + [aux_sym_char_token1] = ACTIONS(2327), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2333), + [anon_sym_AT_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2342), + [sym_bool] = ACTIONS(2345), + [sym_unit] = ACTIONS(2348), + [anon_sym_LPAREN_PIPE] = ACTIONS(2351), + [sym_op_identifier] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS_DOT] = ACTIONS(2357), + [anon_sym_DASH_DOT] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2360), + [aux_sym_prefix_op_token1] = ACTIONS(2363), + [sym_int] = ACTIONS(2366), + [sym_xint] = ACTIONS(2369), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2372), + [anon_sym_POUNDendif] = ACTIONS(740), + [anon_sym_POUNDelse] = ACTIONS(740), + [sym__newline] = ACTIONS(2375), + }, [482] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7424), - [sym_object_expression] = STATE(7424), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7424), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7500), + [sym_object_expression] = STATE(7500), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7500), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105432,125 +105774,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [483] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(128), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym__slice_range_special] = STATE(6911), - [sym_slice_range] = STATE(6931), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7093), + [sym_object_expression] = STATE(7093), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7093), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_DOT_DOT3] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2205), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105559,7 +105901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -105571,124 +105913,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [484] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(130), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym__slice_range_special] = STATE(6505), - [sym_slice_range] = STATE(6685), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym__slice_range_special] = STATE(6516), + [sym_slice_range] = STATE(6669), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), [anon_sym_DOT_DOT3] = ACTIONS(2047), [anon_sym_STAR] = ACTIONS(2049), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -105698,8 +106040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -105707,128 +106049,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [485] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7040), - [sym_object_expression] = STATE(7040), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7040), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7348), + [sym_object_expression] = STATE(7348), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7348), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105849,125 +106191,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [486] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7217), - [sym_object_expression] = STATE(7217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7110), + [sym_object_expression] = STATE(7110), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7110), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -105988,125 +106330,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [487] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7132), - [sym_object_expression] = STATE(7132), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7132), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7458), + [sym_object_expression] = STATE(7458), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7458), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -106127,125 +106469,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [488] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7275), - [sym_object_expression] = STATE(7275), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7275), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(8182), + [sym_object_expression] = STATE(8182), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(8182), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -106266,125 +106608,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [489] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7009), - [sym_object_expression] = STATE(7009), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7009), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7403), + [sym_object_expression] = STATE(7403), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7403), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -106405,125 +106747,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [490] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7540), - [sym_object_expression] = STATE(7540), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7540), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_with_field_expression] = STATE(7289), + [sym_object_expression] = STATE(7289), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_field_initializer] = STATE(6378), + [sym_field_initializers] = STATE(7289), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(2059), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -106544,125 +106886,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [491] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(298), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_with_field_expression] = STATE(7502), - [sym_object_expression] = STATE(7502), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_field_initializer] = STATE(6180), - [sym_field_initializers] = STATE(7502), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1944), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(113), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym__slice_range_special] = STATE(6866), + [sym_slice_range] = STATE(6887), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [anon_sym_DOT_DOT3] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -106671,7 +107013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -106683,121 +107025,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [492] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(162), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(175), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_null] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_LBRACK_PIPE] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LT_AT] = ACTIONS(2402), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_yield_BANG] = ACTIONS(2414), + [anon_sym_lazy] = ACTIONS(2381), + [anon_sym_assert] = ACTIONS(2381), + [anon_sym_upcast] = ACTIONS(2381), + [anon_sym_downcast] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_fun] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_match_BANG] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_use_BANG] = ACTIONS(2441), + [anon_sym_do_BANG] = ACTIONS(2444), + [anon_sym_begin] = ACTIONS(2447), + [aux_sym_char_token1] = ACTIONS(2450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_AT_DQUOTE] = ACTIONS(2459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2462), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2465), + [sym_bool] = ACTIONS(2468), + [sym_unit] = ACTIONS(2471), + [anon_sym_LPAREN_PIPE] = ACTIONS(2474), + [sym_op_identifier] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS_DOT] = ACTIONS(2357), + [anon_sym_DASH_DOT] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2360), + [aux_sym_prefix_op_token1] = ACTIONS(2363), + [sym_int] = ACTIONS(2480), + [sym_xint] = ACTIONS(2483), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2486), + [anon_sym_POUNDendif] = ACTIONS(740), + [sym__newline] = ACTIONS(2489), + }, + [493] = { + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(175), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), + [sym_block_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(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), + [anon_sym_LT_AT] = ACTIONS(1386), [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -106807,8 +107287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -106816,264 +107296,126 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(2378), - [sym__newline] = ACTIONS(2380), - }, - [493] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(162), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), - [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_BANG] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_null] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_LBRACK_PIPE] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LT_AT] = ACTIONS(2406), - [anon_sym_LT_AT_AT] = ACTIONS(2409), - [anon_sym_LBRACE_PIPE] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2415), - [anon_sym_return_BANG] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_yield_BANG] = ACTIONS(2418), - [anon_sym_lazy] = ACTIONS(2385), - [anon_sym_assert] = ACTIONS(2385), - [anon_sym_upcast] = ACTIONS(2385), - [anon_sym_downcast] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_fun] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_match_BANG] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_use_BANG] = ACTIONS(2445), - [anon_sym_do_BANG] = ACTIONS(2448), - [anon_sym_begin] = ACTIONS(2451), - [aux_sym_char_token1] = ACTIONS(2454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2460), - [anon_sym_AT_DQUOTE] = ACTIONS(2463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2466), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2469), - [sym_bool] = ACTIONS(2472), - [sym_unit] = ACTIONS(2475), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [sym_op_identifier] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS_DOT] = ACTIONS(2353), - [anon_sym_DASH_DOT] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2356), - [aux_sym_prefix_op_token1] = ACTIONS(2359), - [sym_int] = ACTIONS(2484), - [sym_xint] = ACTIONS(2487), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2490), - [anon_sym_POUNDendif] = ACTIONS(918), - [sym__newline] = ACTIONS(2493), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(2492), + [sym__newline] = ACTIONS(2494), }, [494] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(162), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(175), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), + [anon_sym_LT_AT] = ACTIONS(1386), [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -107083,8 +107425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107092,127 +107434,128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(1454), [anon_sym_POUNDendif] = ACTIONS(2496), - [sym__newline] = ACTIONS(2380), + [sym__newline] = ACTIONS(2494), }, [495] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(171), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(136), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), [anon_sym_COMMA] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(525), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -107221,8 +107564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107230,127 +107573,126 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__dedent] = ACTIONS(2498), + [anon_sym_POUNDif] = ACTIONS(1010), }, [496] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(230), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(2500), - [anon_sym_null] = ACTIONS(1438), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(2500), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -107359,8 +107701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107368,126 +107710,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(311), }, [497] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(166), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(225), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_COMMA] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(2500), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(2498), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -107496,8 +107837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107505,123 +107846,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__dedent] = ACTIONS(2500), }, [498] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(54), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(125), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -107631,8 +107973,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107640,125 +107982,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - [sym__newline] = ACTIONS(2103), - [sym__dedent] = ACTIONS(2103), + [anon_sym_POUNDif] = ACTIONS(606), + [sym__newline] = ACTIONS(2119), + [sym__dedent] = ACTIONS(2119), }, [499] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(63), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(99), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -107768,8 +108110,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107777,127 +108119,127 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), - [anon_sym_POUNDendif] = ACTIONS(2103), - [anon_sym_POUNDelse] = ACTIONS(2103), + [anon_sym_POUNDif] = ACTIONS(493), + [anon_sym_POUNDendif] = ACTIONS(2119), + [anon_sym_POUNDelse] = ACTIONS(2119), }, [500] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(154), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7473), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(276), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(8034), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -107906,8 +108248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -107915,125 +108257,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [501] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), [anon_sym_with] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108054,122 +108396,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [502] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), [anon_sym_with] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108190,122 +108532,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [503] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(90), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_range_expression] = STATE(6723), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2506), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108314,8 +108656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -108323,125 +108665,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [504] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(155), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7288), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7551), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108450,8 +108792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -108459,125 +108801,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [505] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(226), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7150), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(196), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7362), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108586,8 +108928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -108595,125 +108937,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [506] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(283), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7231), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(261), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7511), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108722,8 +109064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -108731,125 +109073,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [507] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108870,122 +109212,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [508] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(210), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7434), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2510), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -108994,8 +109336,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109003,125 +109345,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [509] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(305), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7591), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2508), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109130,8 +109472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109139,125 +109481,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [510] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(189), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7044), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109266,8 +109608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109275,124 +109617,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [511] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(144), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(236), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7129), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109401,8 +109744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109410,126 +109753,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), - [anon_sym_POUNDendif] = ACTIONS(2103), + [anon_sym_POUNDif] = ACTIONS(1344), }, [512] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(238), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7304), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2512), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109538,8 +109880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109547,125 +109889,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [513] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(148), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7058), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109674,8 +110016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109683,125 +110025,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [514] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(272), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7738), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109810,8 +110152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109819,125 +110161,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [515] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(149), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7512), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(58), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_range_expression] = STATE(6713), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -109946,8 +110288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -109955,125 +110297,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(700), }, [516] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(234), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7150), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110082,8 +110424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110091,125 +110433,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [517] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(222), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(6976), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110218,8 +110560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110227,125 +110569,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [518] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110366,122 +110708,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [519] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(172), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7222), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110490,8 +110832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110499,125 +110841,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [520] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(143), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7473), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(245), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7469), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110626,8 +110968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110635,125 +110977,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [521] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(63), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_range_expression] = STATE(6713), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110762,8 +111104,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110771,125 +111113,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(700), }, [522] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(321), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7629), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -110898,8 +111240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -110907,125 +111249,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [523] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(296), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7342), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111034,8 +111376,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111043,125 +111385,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [524] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(160), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7549), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(222), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7417), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111170,8 +111512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111179,125 +111521,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [525] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(273), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7393), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(234), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7222), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111306,8 +111648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111315,125 +111657,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [526] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(67), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_range_expression] = STATE(6723), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(318), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7551), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111442,8 +111784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111451,125 +111793,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1344), }, [527] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(260), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111578,8 +111919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111587,125 +111928,126 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1454), + [anon_sym_POUNDendif] = ACTIONS(2119), }, [528] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(161), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_range_expression] = STATE(7304), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_with] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111714,8 +112056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111723,125 +112065,125 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [529] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(319), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_range_expression] = STATE(7231), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111850,8 +112192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111859,124 +112201,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [530] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(258), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(337), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -111985,8 +112327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -111994,124 +112336,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [531] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(86), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(140), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112120,8 +112462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -112129,124 +112471,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(1132), }, [532] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(364), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(13), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112267,121 +112609,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [533] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(299), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(83), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112390,8 +112732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -112399,124 +112741,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(493), }, [534] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(163), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112525,8 +112867,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -112534,124 +112876,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [535] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(184), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(23), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112660,8 +113002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -112669,124 +113011,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(311), }, [536] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(73), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(24), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112795,8 +113137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -112804,124 +113146,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [537] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(347), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(25), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -112942,121 +113284,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [538] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(344), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113065,8 +113407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113074,124 +113416,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [539] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(356), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(249), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113200,8 +113542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113209,124 +113551,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [540] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(309), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(138), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113335,8 +113677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113344,123 +113686,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(700), }, [541] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(218), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(251), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), + [anon_sym_LT_AT] = ACTIONS(1158), [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -113471,7 +113813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113479,124 +113821,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1226), }, [542] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(306), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(322), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113605,8 +113947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113614,124 +113956,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [543] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(244), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113740,8 +114082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113749,124 +114091,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(181), }, [544] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(355), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(195), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -113875,8 +114217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -113884,258 +114226,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [545] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(286), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(155), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(107), - [anon_sym_DASH_DOT] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(1104), - }, - [546] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(118), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -114145,8 +114352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114154,124 +114361,259 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), + }, + [546] = { + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(142), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), + [sym_block_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(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(107), + [anon_sym_DASH_DOT] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(107), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(111), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1132), }, [547] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(263), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(143), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114280,8 +114622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114289,124 +114631,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [548] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(159), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(355), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114415,8 +114757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114424,124 +114766,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [549] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(362), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(153), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114562,121 +114904,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [550] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(150), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(18), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114685,8 +115027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114694,124 +115036,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [551] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(92), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(364), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114820,8 +115162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114829,124 +115171,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [552] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(300), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(239), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -114955,8 +115297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -114964,124 +115306,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [553] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(13), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(146), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115090,8 +115432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115099,124 +115441,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(606), }, [554] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(236), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(201), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115225,8 +115567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115234,124 +115576,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [555] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(62), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(362), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115360,8 +115702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115369,124 +115711,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [556] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(48), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(151), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115495,8 +115837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115504,124 +115846,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [557] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(206), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(133), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115630,8 +115972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115639,124 +115981,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(493), }, [558] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(19), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(217), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115765,8 +116107,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -115774,124 +116116,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [559] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(351), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(132), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -115912,121 +116254,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [560] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(63), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(68), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116035,8 +116377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116044,124 +116386,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [561] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(268), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(26), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116170,8 +116512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116179,124 +116521,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [562] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(270), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(230), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116305,8 +116647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116314,124 +116656,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [563] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(134), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(129), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116440,8 +116782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116449,124 +116791,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [564] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(153), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(336), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116575,8 +116917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116584,124 +116926,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [565] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(59), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(125), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116710,8 +117052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116719,124 +117061,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(606), }, [566] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(278), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(335), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -116845,8 +117187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116854,123 +117196,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [567] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(180), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(334), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), + [anon_sym_LT_AT] = ACTIONS(1158), [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -116981,7 +117323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -116989,124 +117331,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1226), }, [568] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(293), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(333), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117115,8 +117457,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117124,124 +117466,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [569] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(70), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(345), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117250,8 +117592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117259,124 +117601,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [570] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(297), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(127), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117385,8 +117727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117394,123 +117736,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [571] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(69), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(64), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT] = ACTIONS(425), [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [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(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), + [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(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -117520,8 +117862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117529,124 +117871,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(493), }, [572] = { - [sym_function_or_value_defn] = STATE(560), - [sym__expression] = STATE(46), - [sym_literal_expression] = STATE(1951), - [sym_long_identifier_or_op] = STATE(1951), - [sym_tuple_expression] = STATE(1951), - [sym_brace_expression] = STATE(1951), - [sym_anon_record_expression] = STATE(1951), - [sym_prefixed_expression] = STATE(1951), - [sym_typecast_expression] = STATE(1951), - [sym_for_expression] = STATE(1951), - [sym_while_expression] = STATE(1951), - [sym__if_branch] = STATE(6966), - [sym_if_expression] = STATE(1951), - [sym_fun_expression] = STATE(1951), - [sym_try_expression] = STATE(1951), - [sym_match_expression] = STATE(1951), - [sym_function_expression] = STATE(1951), - [sym_object_instantiation_expression] = STATE(1951), - [sym_mutate_expression] = STATE(1951), - [sym_index_expression] = STATE(1951), - [sym_typed_expression] = STATE(1951), - [sym_declaration_expression] = STATE(1951), - [sym_do_expression] = STATE(1951), - [sym_list_expression] = STATE(1951), - [sym_array_expression] = STATE(1951), - [sym_begin_end_expression] = STATE(1951), - [sym_paren_expression] = STATE(1951), - [sym__high_prec_app] = STATE(1948), - [sym__low_prec_app] = STATE(1948), - [sym_application_expression] = STATE(1951), - [sym_dot_expression] = STATE(1951), - [sym_infix_expression] = STATE(1951), - [sym_ce_expression] = STATE(1951), - [sym_sequential_expression] = STATE(1951), - [sym_char] = STATE(1834), - [sym_format_string] = STATE(1835), - [sym__string_literal] = STATE(1835), - [sym_string] = STATE(1834), - [sym_verbatim_string] = STATE(1834), - [sym_bytearray] = STATE(1834), - [sym_verbatim_bytearray] = STATE(1834), - [sym_format_triple_quoted_string] = STATE(1899), - [sym_triple_quoted_string] = STATE(1834), - [sym_const] = STATE(1951), - [sym_long_identifier] = STATE(1853), - [sym_active_pattern] = STATE(1912), - [sym__identifier_or_op] = STATE(1858), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1834), - [sym_byte] = STATE(1834), - [sym_int16] = STATE(1834), - [sym_uint16] = STATE(1834), - [sym_int32] = STATE(1834), - [sym_uint32] = STATE(1834), - [sym_nativeint] = STATE(1834), - [sym_unativeint] = STATE(1834), - [sym_int64] = STATE(1834), - [sym_uint64] = STATE(1834), - [sym_ieee32] = STATE(1834), - [sym_ieee64] = STATE(1834), - [sym_bignum] = STATE(1834), - [sym_decimal] = STATE(1834), - [sym_float] = STATE(1510), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1951), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(315), - [anon_sym_return] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_null] = ACTIONS(327), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_LBRACK_PIPE] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LT_AT] = ACTIONS(335), - [anon_sym_LT_AT_AT] = ACTIONS(1754), - [anon_sym_LBRACE_PIPE] = ACTIONS(341), - [anon_sym_new] = ACTIONS(343), - [anon_sym_return_BANG] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(319), - [anon_sym_yield_BANG] = ACTIONS(345), - [anon_sym_lazy] = ACTIONS(319), - [anon_sym_assert] = ACTIONS(319), - [anon_sym_upcast] = ACTIONS(319), - [anon_sym_downcast] = ACTIONS(319), - [anon_sym_for] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_match] = ACTIONS(357), - [anon_sym_match_BANG] = ACTIONS(359), - [anon_sym_function] = ACTIONS(361), - [anon_sym_use] = ACTIONS(369), - [anon_sym_use_BANG] = ACTIONS(371), - [anon_sym_do_BANG] = ACTIONS(373), - [anon_sym_begin] = ACTIONS(375), - [aux_sym_char_token1] = ACTIONS(379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(383), - [anon_sym_AT_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), - [sym_bool] = ACTIONS(391), - [sym_unit] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(395), - [sym_op_identifier] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117655,8 +117997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(399), - [sym_xint] = ACTIONS(401), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117664,124 +118006,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(403), + [anon_sym_POUNDif] = ACTIONS(311), }, [573] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(80), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(139), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117790,8 +118132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117799,124 +118141,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [574] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(217), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(121), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -117925,8 +118267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -117934,124 +118276,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [575] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(345), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118072,120 +118414,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [576] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(302), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(244), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -118195,8 +118537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118204,124 +118546,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [577] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(238), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(99), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118330,8 +118672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118339,124 +118681,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(493), }, [578] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(237), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(8), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118465,8 +118807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118474,124 +118816,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(181), }, [579] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(231), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(11), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118600,8 +118942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118609,124 +118951,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(181), }, [580] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(305), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118735,8 +119077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118744,124 +119086,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [581] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(215), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(270), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -118870,8 +119212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -118879,124 +119221,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [582] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(274), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(286), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119005,8 +119347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119014,124 +119356,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(1226), }, [583] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(307), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(6), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119140,8 +119482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119149,123 +119491,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [584] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(308), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(202), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -119275,8 +119617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119284,124 +119626,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [585] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(252), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(115), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119410,8 +119752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119419,124 +119761,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(311), }, [586] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(53), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(92), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119545,8 +119887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119554,124 +119896,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [587] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(294), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(114), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119680,8 +120022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119689,124 +120031,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [588] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(310), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(106), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119815,8 +120157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119824,124 +120166,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [589] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(314), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(101), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -119950,8 +120292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -119959,124 +120301,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [590] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(315), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(12), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120085,8 +120427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120094,124 +120436,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [591] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(317), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(361), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120220,8 +120562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120229,124 +120571,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [592] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(318), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120355,8 +120697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120364,124 +120706,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [593] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(152), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(94), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120490,8 +120832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120499,124 +120841,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(700), }, [594] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(82), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(173), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120625,8 +120967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120634,124 +120976,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [595] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(246), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(154), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -120760,8 +121102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120769,123 +121111,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(1226), }, [596] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(321), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(163), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -120895,8 +121237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -120904,124 +121246,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [597] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(26), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121030,8 +121372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121039,124 +121381,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(311), }, [598] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(290), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(98), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121165,8 +121507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121174,124 +121516,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(700), }, [599] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(322), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(258), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121300,8 +121642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121309,124 +121651,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1010), }, [600] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(323), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(104), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121435,8 +121777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121444,124 +121786,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [601] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(324), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(271), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121570,8 +121912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121579,124 +121921,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1010), }, [602] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(342), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(157), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121705,8 +122047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121714,124 +122056,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [603] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(264), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(288), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121840,8 +122182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121849,124 +122191,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(1010), }, [604] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(266), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(282), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -121975,8 +122317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -121984,124 +122326,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(700), }, [605] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(348), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(52), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122110,8 +122452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122119,124 +122461,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(700), }, [606] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(203), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(291), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122245,8 +122587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122254,124 +122596,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [607] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(341), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(221), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122380,8 +122722,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122389,124 +122731,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1010), }, [608] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(262), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(105), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122515,8 +122857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122524,124 +122866,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(700), }, [609] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(261), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(283), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122650,8 +122992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122659,124 +123001,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(1010), }, [610] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(260), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(130), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122785,8 +123127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122794,124 +123136,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [611] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(328), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(97), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -122920,8 +123262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -122929,124 +123271,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [612] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(346), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(209), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -123055,8 +123397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -123064,123 +123406,393 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [613] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(331), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(73), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(107), + [anon_sym_DASH_DOT] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(107), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(111), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(493), + }, + [614] = { + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(208), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), + [sym_block_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(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(65), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_PLUS_DOT] = ACTIONS(107), + [anon_sym_DASH_DOT] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(107), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(111), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(1132), + }, + [615] = { + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(223), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), + [sym_block_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(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -123190,8 +123802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -123199,394 +123811,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), - }, - [614] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(209), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), - [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(107), - [anon_sym_DASH_DOT] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(846), - }, - [615] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(245), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), - [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_PLUS_DOT] = ACTIONS(107), - [anon_sym_DASH_DOT] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(109), - [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [616] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(334), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(169), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -123595,8 +123937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -123604,124 +123946,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [617] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(175), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(112), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -123730,8 +124072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -123739,124 +124081,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(493), }, [618] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(190), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(126), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -123865,8 +124207,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -123874,124 +124216,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(493), }, [619] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(188), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(215), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124000,8 +124342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124009,124 +124351,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [620] = { - [sym_function_or_value_defn] = STATE(595), - [sym__expression] = STATE(223), - [sym_literal_expression] = STATE(2374), - [sym_long_identifier_or_op] = STATE(2374), - [sym_tuple_expression] = STATE(2374), - [sym_brace_expression] = STATE(2374), - [sym_anon_record_expression] = STATE(2374), - [sym_prefixed_expression] = STATE(2374), - [sym_typecast_expression] = STATE(2374), - [sym_for_expression] = STATE(2374), - [sym_while_expression] = STATE(2374), - [sym__if_branch] = STATE(7370), - [sym_if_expression] = STATE(2374), - [sym_fun_expression] = STATE(2374), - [sym_try_expression] = STATE(2374), - [sym_match_expression] = STATE(2374), - [sym_function_expression] = STATE(2374), - [sym_object_instantiation_expression] = STATE(2374), - [sym_mutate_expression] = STATE(2374), - [sym_index_expression] = STATE(2374), - [sym_typed_expression] = STATE(2374), - [sym_declaration_expression] = STATE(2374), - [sym_do_expression] = STATE(2374), - [sym_list_expression] = STATE(2374), - [sym_array_expression] = STATE(2374), - [sym_begin_end_expression] = STATE(2374), - [sym_paren_expression] = STATE(2374), - [sym__high_prec_app] = STATE(2347), - [sym__low_prec_app] = STATE(2347), - [sym_application_expression] = STATE(2374), - [sym_dot_expression] = STATE(2374), - [sym_infix_expression] = STATE(2374), - [sym_ce_expression] = STATE(2374), - [sym_sequential_expression] = STATE(2374), - [sym_char] = STATE(2280), - [sym_format_string] = STATE(2285), - [sym__string_literal] = STATE(2285), - [sym_string] = STATE(2280), - [sym_verbatim_string] = STATE(2280), - [sym_bytearray] = STATE(2280), - [sym_verbatim_bytearray] = STATE(2280), - [sym_format_triple_quoted_string] = STATE(2289), - [sym_triple_quoted_string] = STATE(2280), - [sym_const] = STATE(2374), - [sym_long_identifier] = STATE(2201), - [sym_active_pattern] = STATE(2242), - [sym__identifier_or_op] = STATE(2200), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(585), - [sym_sbyte] = STATE(2280), - [sym_byte] = STATE(2280), - [sym_int16] = STATE(2280), - [sym_uint16] = STATE(2280), - [sym_int32] = STATE(2280), - [sym_uint32] = STATE(2280), - [sym_nativeint] = STATE(2280), - [sym_unativeint] = STATE(2280), - [sym_int64] = STATE(2280), - [sym_uint64] = STATE(2280), - [sym_ieee32] = STATE(2280), - [sym_ieee64] = STATE(2280), - [sym_bignum] = STATE(2280), - [sym_decimal] = STATE(2280), - [sym_float] = STATE(1684), + [sym_function_or_value_defn] = STATE(577), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2013), + [sym_long_identifier_or_op] = STATE(2013), + [sym_tuple_expression] = STATE(2013), + [sym_brace_expression] = STATE(2013), + [sym_anon_record_expression] = STATE(2013), + [sym_prefixed_expression] = STATE(2013), + [sym_typecast_expression] = STATE(2013), + [sym_for_expression] = STATE(2013), + [sym_while_expression] = STATE(2013), + [sym__if_branch] = STATE(7390), + [sym_if_expression] = STATE(2013), + [sym_fun_expression] = STATE(2013), + [sym_try_expression] = STATE(2013), + [sym_match_expression] = STATE(2013), + [sym_function_expression] = STATE(2013), + [sym_object_instantiation_expression] = STATE(2013), + [sym_mutate_expression] = STATE(2013), + [sym_index_expression] = STATE(2013), + [sym_typed_expression] = STATE(2013), + [sym_declaration_expression] = STATE(2013), + [sym_do_expression] = STATE(2013), + [sym_list_expression] = STATE(2013), + [sym_array_expression] = STATE(2013), + [sym_begin_end_expression] = STATE(2013), + [sym_paren_expression] = STATE(2013), + [sym__high_prec_app] = STATE(2003), + [sym__low_prec_app] = STATE(2003), + [sym_application_expression] = STATE(2013), + [sym_dot_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_ce_expression] = STATE(2013), + [sym_sequential_expression] = STATE(2013), + [sym_char] = STATE(1959), + [sym_format_string] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_string] = STATE(1959), + [sym_verbatim_string] = STATE(1959), + [sym_bytearray] = STATE(1959), + [sym_verbatim_bytearray] = STATE(1959), + [sym_format_triple_quoted_string] = STATE(1955), + [sym_triple_quoted_string] = STATE(1959), + [sym_const] = STATE(2013), + [sym_long_identifier] = STATE(1999), + [sym_active_pattern] = STATE(1884), + [sym__identifier_or_op] = STATE(1993), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(533), + [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(1497), [sym_block_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(2374), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1438), + [sym_preproc_if_in_expression] = STATE(2013), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LBRACK_PIPE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LT_AT] = ACTIONS(1446), - [anon_sym_LT_AT_AT] = ACTIONS(2145), - [anon_sym_LBRACE_PIPE] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_return_BANG] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_yield_BANG] = ACTIONS(1456), - [anon_sym_lazy] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_upcast] = ACTIONS(1430), - [anon_sym_downcast] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1754), + [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(65), - [anon_sym_fun] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_match_BANG] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_use_BANG] = ACTIONS(1482), - [anon_sym_do_BANG] = ACTIONS(1484), - [anon_sym_begin] = ACTIONS(1486), - [aux_sym_char_token1] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_AT_DQUOTE] = ACTIONS(1496), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1500), - [sym_bool] = ACTIONS(1502), - [sym_unit] = ACTIONS(2147), - [anon_sym_LPAREN_PIPE] = ACTIONS(1506), - [sym_op_identifier] = ACTIONS(2149), + [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(1758), + [anon_sym_LPAREN_PIPE] = ACTIONS(485), + [sym_op_identifier] = ACTIONS(1760), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124135,8 +124477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1510), - [sym_xint] = ACTIONS(1512), + [sym_int] = ACTIONS(489), + [sym_xint] = ACTIONS(491), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124144,124 +124486,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(493), }, [621] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(242), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(207), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124270,8 +124612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124279,124 +124621,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1132), }, [622] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(336), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(308), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124405,8 +124747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124414,123 +124756,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [623] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(178), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(265), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), + [anon_sym_LT_AT] = ACTIONS(1062), [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -124540,8 +124882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124549,124 +124891,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(1132), }, [624] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(103), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(354), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124675,8 +125017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124684,124 +125026,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [625] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(287), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(360), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124810,8 +125152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -124819,124 +125161,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [626] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(94), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(214), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -124945,7 +125287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), + [sym_int] = ACTIONS(307), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -124957,121 +125299,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [627] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(227), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(346), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125080,8 +125422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125089,124 +125431,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(311), }, [628] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(95), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(266), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125215,8 +125557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125224,124 +125566,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [629] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(96), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(137), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125350,8 +125692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125359,124 +125701,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [630] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(277), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(5), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125485,8 +125827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(177), + [sym_xint] = ACTIONS(179), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125494,124 +125836,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [631] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(325), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(350), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125620,8 +125962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125629,124 +125971,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [632] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(183), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(262), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125755,8 +126097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125764,124 +126106,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [633] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(185), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(240), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -125890,8 +126232,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -125899,124 +126241,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [634] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(2), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(237), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126025,8 +126367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126034,124 +126376,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(311), }, [635] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(197), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(120), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126160,8 +126502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126169,123 +126511,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [636] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(243), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(118), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -126295,8 +126637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126304,124 +126646,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [637] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(282), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(117), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126430,8 +126772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126439,123 +126781,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [638] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(141), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(193), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -126565,8 +126907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126574,124 +126916,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [639] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(235), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(178), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126700,8 +127042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126709,124 +127051,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [640] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(350), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(255), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126835,8 +127177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126844,124 +127186,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [641] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(313), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(279), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -126970,8 +127312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -126979,124 +127321,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1454), }, [642] = { [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(144), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym__expression] = STATE(228), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127105,8 +127447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127114,124 +127456,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(700), }, [643] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(343), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(160), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127240,8 +127582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127249,124 +127591,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1010), }, [644] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(145), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(307), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127375,8 +127717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127384,124 +127726,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(700), }, [645] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(349), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(299), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127510,8 +127852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127519,124 +127861,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(700), }, [646] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(358), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127645,8 +127987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127654,124 +127996,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [647] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(15), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(264), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127780,8 +128122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127789,124 +128131,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(1454), }, [648] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(156), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(141), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -127915,8 +128257,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -127924,124 +128266,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(1132), }, [649] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(158), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(144), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128050,8 +128392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128059,123 +128401,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1132), }, [650] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(157), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(145), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), + [anon_sym_LT_AT] = ACTIONS(1062), [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -128185,8 +128527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128194,124 +128536,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(1132), }, [651] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(97), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(280), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128320,8 +128662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128329,124 +128671,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [652] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(335), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(268), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128455,8 +128797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128464,124 +128806,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [653] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(320), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(199), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128590,8 +128932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128599,124 +128941,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(700), }, [654] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(14), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(342), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128725,8 +129067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128734,124 +129076,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(311), }, [655] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(151), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(295), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128860,8 +129202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -128869,124 +129211,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1454), }, [656] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(330), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(357), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -128995,8 +129337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129004,124 +129346,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [657] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(361), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(314), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129142,120 +129484,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [658] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(189), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(277), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), + [anon_sym_LT_AT] = ACTIONS(1386), [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -129265,8 +129607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129274,124 +129616,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(1454), }, [659] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(333), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(341), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129400,8 +129742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129409,124 +129751,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [660] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(21), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(252), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129535,8 +129877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129544,124 +129886,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(311), }, [661] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(28), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(218), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129670,8 +130012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129679,124 +130021,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(311), }, [662] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(253), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(323), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129805,8 +130147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129814,124 +130156,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1132), }, [663] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(179), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(167), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -129940,8 +130282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -129949,124 +130291,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1132), }, [664] = { [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(147), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym__expression] = STATE(275), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130075,8 +130417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130084,124 +130426,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(700), }, [665] = { [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(196), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym__expression] = STATE(311), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130210,8 +130552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130219,124 +130561,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(700), }, [666] = { - [sym_function_or_value_defn] = STATE(594), - [sym__expression] = STATE(101), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(573), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(325), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(632), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(638), - [anon_sym_return_BANG] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_yield_BANG] = ACTIONS(640), - [anon_sym_lazy] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_upcast] = ACTIONS(632), - [anon_sym_downcast] = ACTIONS(632), - [anon_sym_for] = ACTIONS(642), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(646), - [anon_sym_use_BANG] = ACTIONS(648), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130345,8 +130687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(652), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130354,124 +130696,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [667] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(193), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(349), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130480,8 +130822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130489,124 +130831,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [668] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(199), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(326), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130615,8 +130957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130624,123 +130966,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(606), }, [669] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(137), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(111), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -130750,8 +131092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130759,124 +131101,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [670] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(211), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(328), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -130885,8 +131227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -130894,124 +131236,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(311), }, [671] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(172), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(256), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131020,8 +131362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131029,84 +131371,84 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(311), }, [672] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(9), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(3), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(672), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_return] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), @@ -131117,14 +131459,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(153), + [anon_sym_return_BANG] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_yield_BANG] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(135), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_upcast] = ACTIONS(135), + [anon_sym_downcast] = ACTIONS(135), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -131133,8 +131475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(165), + [anon_sym_use_BANG] = ACTIONS(167), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [aux_sym_char_token1] = ACTIONS(87), @@ -131167,121 +131509,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(181), }, [673] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(357), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(179), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131290,8 +131632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131299,124 +131641,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [674] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(182), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(260), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131425,8 +131767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131434,124 +131776,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1454), }, [675] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(84), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(152), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131560,8 +131902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131569,124 +131911,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(700), }, [676] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(117), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(65), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131695,8 +132037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131704,124 +132046,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(830), }, [677] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(174), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(212), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131830,8 +132172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131839,124 +132181,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(606), }, [678] = { - [sym_function_or_value_defn] = STATE(642), - [sym__expression] = STATE(205), - [sym_literal_expression] = STATE(2302), - [sym_long_identifier_or_op] = STATE(2302), - [sym_tuple_expression] = STATE(2302), - [sym_brace_expression] = STATE(2302), - [sym_anon_record_expression] = STATE(2302), - [sym_prefixed_expression] = STATE(2302), - [sym_typecast_expression] = STATE(2302), - [sym_for_expression] = STATE(2302), - [sym_while_expression] = STATE(2302), - [sym__if_branch] = STATE(7489), - [sym_if_expression] = STATE(2302), - [sym_fun_expression] = STATE(2302), - [sym_try_expression] = STATE(2302), - [sym_match_expression] = STATE(2302), - [sym_function_expression] = STATE(2302), - [sym_object_instantiation_expression] = STATE(2302), - [sym_mutate_expression] = STATE(2302), - [sym_index_expression] = STATE(2302), - [sym_typed_expression] = STATE(2302), - [sym_declaration_expression] = STATE(2302), - [sym_do_expression] = STATE(2302), - [sym_list_expression] = STATE(2302), - [sym_array_expression] = STATE(2302), - [sym_begin_end_expression] = STATE(2302), - [sym_paren_expression] = STATE(2302), - [sym__high_prec_app] = STATE(2298), - [sym__low_prec_app] = STATE(2298), - [sym_application_expression] = STATE(2302), - [sym_dot_expression] = STATE(2302), - [sym_infix_expression] = STATE(2302), - [sym_ce_expression] = STATE(2302), - [sym_sequential_expression] = STATE(2302), - [sym_char] = STATE(2417), - [sym_format_string] = STATE(2422), - [sym__string_literal] = STATE(2422), - [sym_string] = STATE(2417), - [sym_verbatim_string] = STATE(2417), - [sym_bytearray] = STATE(2417), - [sym_verbatim_bytearray] = STATE(2417), - [sym_format_triple_quoted_string] = STATE(2424), - [sym_triple_quoted_string] = STATE(2417), - [sym_const] = STATE(2302), - [sym_long_identifier] = STATE(2290), - [sym_active_pattern] = STATE(2371), - [sym__identifier_or_op] = STATE(2340), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(664), - [sym_sbyte] = STATE(2417), - [sym_byte] = STATE(2417), - [sym_int16] = STATE(2417), - [sym_uint16] = STATE(2417), - [sym_int32] = STATE(2417), - [sym_uint32] = STATE(2417), - [sym_nativeint] = STATE(2417), - [sym_unativeint] = STATE(2417), - [sym_int64] = STATE(2417), - [sym_uint64] = STATE(2417), - [sym_ieee32] = STATE(2417), - [sym_ieee64] = STATE(2417), - [sym_bignum] = STATE(2417), - [sym_decimal] = STATE(2417), - [sym_float] = STATE(1627), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(219), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2302), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1120), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_LBRACK_PIPE] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_LT_AT] = ACTIONS(1128), - [anon_sym_LT_AT_AT] = ACTIONS(2033), - [anon_sym_LBRACE_PIPE] = ACTIONS(1134), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_return_BANG] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_yield_BANG] = ACTIONS(1138), - [anon_sym_lazy] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1112), - [anon_sym_upcast] = ACTIONS(1112), - [anon_sym_downcast] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_match_BANG] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_use_BANG] = ACTIONS(1164), - [anon_sym_do_BANG] = ACTIONS(1166), - [anon_sym_begin] = ACTIONS(1168), - [aux_sym_char_token1] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_AT_DQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [sym_bool] = ACTIONS(1184), - [sym_unit] = ACTIONS(2037), - [anon_sym_LPAREN_PIPE] = ACTIONS(1188), - [sym_op_identifier] = ACTIONS(2039), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -131965,8 +132307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1192), - [sym_xint] = ACTIONS(1194), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -131974,124 +132316,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1196), + [anon_sym_POUNDif] = ACTIONS(1132), }, [679] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(250), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(213), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -132100,8 +132442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132109,124 +132451,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(1226), }, [680] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(254), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(16), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -132235,8 +132577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132244,123 +132586,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(311), }, [681] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(167), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(159), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -132370,8 +132712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132379,124 +132721,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [682] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(41), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(14), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -132505,8 +132847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132514,124 +132856,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(181), }, [683] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(365), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(29), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -132640,8 +132982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132649,84 +132991,84 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(181), }, [684] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(3), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(28), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), @@ -132737,14 +133079,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT] = ACTIONS(51), [anon_sym_LT_AT_AT] = ACTIONS(53), [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), [anon_sym_for] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), @@ -132753,8 +133095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(71), [anon_sym_match_BANG] = ACTIONS(73), [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), [anon_sym_do_BANG] = ACTIONS(81), [anon_sym_begin] = ACTIONS(83), [aux_sym_char_token1] = ACTIONS(87), @@ -132775,8 +133117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132787,121 +133129,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(181), }, [685] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(170), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(194), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -132910,8 +133252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -132919,124 +133261,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [686] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(256), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(590), + [sym__expression] = STATE(17), + [sym_literal_expression] = STATE(1196), + [sym_long_identifier_or_op] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_brace_expression] = STATE(1196), + [sym_anon_record_expression] = STATE(1196), + [sym_prefixed_expression] = STATE(1196), + [sym_typecast_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym__if_branch] = STATE(8397), + [sym_if_expression] = STATE(1196), + [sym_fun_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_function_expression] = STATE(1196), + [sym_object_instantiation_expression] = STATE(1196), + [sym_mutate_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_typed_expression] = STATE(1196), + [sym_declaration_expression] = STATE(1196), + [sym_do_expression] = STATE(1196), + [sym_list_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_begin_end_expression] = STATE(1196), + [sym_paren_expression] = STATE(1196), + [sym__high_prec_app] = STATE(1147), + [sym__low_prec_app] = STATE(1147), + [sym_application_expression] = STATE(1196), + [sym_dot_expression] = STATE(1196), + [sym_infix_expression] = STATE(1196), + [sym_ce_expression] = STATE(1196), + [sym_sequential_expression] = STATE(1196), + [sym_char] = STATE(1067), + [sym_format_string] = STATE(1158), + [sym__string_literal] = STATE(1158), + [sym_string] = STATE(1067), + [sym_verbatim_string] = STATE(1067), + [sym_bytearray] = STATE(1067), + [sym_verbatim_bytearray] = STATE(1067), + [sym_format_triple_quoted_string] = STATE(1160), + [sym_triple_quoted_string] = STATE(1067), + [sym_const] = STATE(1196), + [sym_long_identifier] = STATE(1162), + [sym_active_pattern] = STATE(1079), + [sym__identifier_or_op] = STATE(1163), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(543), + [sym_sbyte] = STATE(1067), + [sym_byte] = STATE(1067), + [sym_int16] = STATE(1067), + [sym_uint16] = STATE(1067), + [sym_int32] = STATE(1067), + [sym_uint32] = STATE(1067), + [sym_nativeint] = STATE(1067), + [sym_unativeint] = STATE(1067), + [sym_int64] = STATE(1067), + [sym_uint64] = STATE(1067), + [sym_ieee32] = STATE(1067), + [sym_ieee64] = STATE(1067), + [sym_bignum] = STATE(1067), + [sym_decimal] = STATE(1067), + [sym_float] = STATE(931), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1196), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(19), + [anon_sym_return] = ACTIONS(29), + [anon_sym_do] = ACTIONS(137), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_null] = ACTIONS(41), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LBRACK_PIPE] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LT_AT] = ACTIONS(51), + [anon_sym_LT_AT_AT] = ACTIONS(53), + [anon_sym_LBRACE_PIPE] = ACTIONS(55), + [anon_sym_new] = ACTIONS(57), + [anon_sym_return_BANG] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield_BANG] = ACTIONS(59), + [anon_sym_lazy] = ACTIONS(29), + [anon_sym_assert] = ACTIONS(29), + [anon_sym_upcast] = ACTIONS(29), + [anon_sym_downcast] = ACTIONS(29), + [anon_sym_for] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_match_BANG] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_use] = ACTIONS(77), + [anon_sym_use_BANG] = ACTIONS(79), + [anon_sym_do_BANG] = ACTIONS(81), + [anon_sym_begin] = ACTIONS(83), + [aux_sym_char_token1] = ACTIONS(87), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_AT_DQUOTE] = ACTIONS(93), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), + [sym_bool] = ACTIONS(99), + [sym_unit] = ACTIONS(101), + [anon_sym_LPAREN_PIPE] = ACTIONS(103), + [sym_op_identifier] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133045,8 +133387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(113), + [sym_xint] = ACTIONS(115), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133054,124 +133396,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(181), }, [687] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(113), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(278), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133180,8 +133522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133189,124 +133531,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [688] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(280), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(267), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133315,8 +133657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133324,124 +133666,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1132), }, [689] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(164), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(188), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133450,8 +133792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133459,124 +133801,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [690] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(56), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(235), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133585,8 +133927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133594,124 +133936,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1226), }, [691] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(187), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(340), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133720,8 +134062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133729,124 +134071,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [692] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(292), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(158), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133855,8 +134197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133864,124 +134206,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [693] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(191), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(339), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -133990,8 +134332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -133999,124 +134341,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [694] = { [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(116), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym__expression] = STATE(34), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -134125,8 +134467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134134,124 +134476,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(403), }, [695] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(71), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(42), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -134260,8 +134602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134269,124 +134611,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(403), }, [696] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(316), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(43), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -134395,8 +134737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134404,124 +134746,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(403), }, [697] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(332), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(351), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -134530,8 +134872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134539,124 +134881,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [698] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(207), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(224), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -134665,8 +135007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134674,123 +135016,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(700), }, [699] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(127), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(181), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -134800,8 +135142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134809,123 +135151,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [700] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(220), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(182), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -134935,8 +135277,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -134944,124 +135286,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [701] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(192), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(183), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -135070,8 +135412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135079,124 +135421,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [702] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(198), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(348), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -135205,8 +135547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135214,123 +135556,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [703] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(125), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(187), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -135340,8 +135682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135349,124 +135691,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [704] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(124), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(344), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -135475,8 +135817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135484,124 +135826,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [705] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(194), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(38), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -135610,8 +135952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135619,124 +135961,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(403), }, [706] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(363), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(241), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -135745,8 +136087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135754,123 +136096,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [707] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(214), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(324), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -135880,8 +136222,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -135889,124 +136231,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [708] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(311), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(190), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136015,8 +136357,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136024,124 +136366,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(606), }, [709] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(186), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(33), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136150,8 +136492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136159,124 +136501,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(403), }, [710] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(339), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(203), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136285,8 +136627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136294,124 +136636,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [711] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(177), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(204), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136420,8 +136762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136429,123 +136771,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [712] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(106), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(292), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -136555,8 +136897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136564,124 +136906,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [713] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(105), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(327), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136690,8 +137032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136699,124 +137041,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [714] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(265), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(210), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136825,8 +137167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136834,124 +137176,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(1132), }, [715] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(24), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(329), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -136960,8 +137302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -136969,124 +137311,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [716] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(248), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(229), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137095,8 +137437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137104,124 +137446,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [717] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(202), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(330), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137230,8 +137572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137239,124 +137581,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [718] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(267), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(331), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137365,8 +137707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137374,124 +137716,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [719] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(54), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(358), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137500,8 +137842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137509,123 +137851,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [720] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(201), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(272), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -137635,8 +137977,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137644,124 +137986,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [721] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(360), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(343), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137782,121 +138124,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [722] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(221), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(242), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -137905,8 +138247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -137914,124 +138256,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [723] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(68), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(319), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -138040,8 +138382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138049,123 +138391,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1344), }, [724] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(281), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(316), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -138175,8 +138517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138184,123 +138526,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [725] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(146), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(254), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -138310,8 +138652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138319,123 +138661,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [726] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(269), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(220), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -138445,8 +138787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138454,124 +138796,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [727] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(114), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(287), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -138580,8 +138922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138589,124 +138931,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(1344), }, [728] = { [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(111), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym__expression] = STATE(41), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -138715,8 +139057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138724,124 +139066,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(403), }, [729] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(352), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(243), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -138850,8 +139192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138859,124 +139201,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1454), }, [730] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(29), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(247), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -138985,8 +139327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -138994,124 +139336,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [731] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(8), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(290), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139120,8 +139462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139129,123 +139471,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(606), }, [732] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(136), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(186), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -139255,8 +139597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139264,124 +139606,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [733] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(337), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(75), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139390,8 +139732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139399,124 +139741,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [734] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(30), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(211), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139525,8 +139867,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139534,124 +139876,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1454), }, [735] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(107), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(185), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139660,8 +140002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139669,124 +140011,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [736] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(229), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(663), + [sym__expression] = STATE(317), + [sym_literal_expression] = STATE(2472), + [sym_long_identifier_or_op] = STATE(2472), + [sym_tuple_expression] = STATE(2472), + [sym_brace_expression] = STATE(2472), + [sym_anon_record_expression] = STATE(2472), + [sym_prefixed_expression] = STATE(2472), + [sym_typecast_expression] = STATE(2472), + [sym_for_expression] = STATE(2472), + [sym_while_expression] = STATE(2472), + [sym__if_branch] = STATE(7154), + [sym_if_expression] = STATE(2472), + [sym_fun_expression] = STATE(2472), + [sym_try_expression] = STATE(2472), + [sym_match_expression] = STATE(2472), + [sym_function_expression] = STATE(2472), + [sym_object_instantiation_expression] = STATE(2472), + [sym_mutate_expression] = STATE(2472), + [sym_index_expression] = STATE(2472), + [sym_typed_expression] = STATE(2472), + [sym_declaration_expression] = STATE(2472), + [sym_do_expression] = STATE(2472), + [sym_list_expression] = STATE(2472), + [sym_array_expression] = STATE(2472), + [sym_begin_end_expression] = STATE(2472), + [sym_paren_expression] = STATE(2472), + [sym__high_prec_app] = STATE(2462), + [sym__low_prec_app] = STATE(2462), + [sym_application_expression] = STATE(2472), + [sym_dot_expression] = STATE(2472), + [sym_infix_expression] = STATE(2472), + [sym_ce_expression] = STATE(2472), + [sym_sequential_expression] = STATE(2472), + [sym_char] = STATE(2207), + [sym_format_string] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_string] = STATE(2207), + [sym_verbatim_string] = STATE(2207), + [sym_bytearray] = STATE(2207), + [sym_verbatim_bytearray] = STATE(2207), + [sym_format_triple_quoted_string] = STATE(2198), + [sym_triple_quoted_string] = STATE(2207), + [sym_const] = STATE(2472), + [sym_long_identifier] = STATE(2197), + [sym_active_pattern] = STATE(2206), + [sym__identifier_or_op] = STATE(2453), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(2207), + [sym_byte] = STATE(2207), + [sym_int16] = STATE(2207), + [sym_uint16] = STATE(2207), + [sym_int32] = STATE(2207), + [sym_uint32] = STATE(2207), + [sym_nativeint] = STATE(2207), + [sym_unativeint] = STATE(2207), + [sym_int64] = STATE(2207), + [sym_uint64] = STATE(2207), + [sym_ieee32] = STATE(2207), + [sym_ieee64] = STATE(2207), + [sym_bignum] = STATE(2207), + [sym_decimal] = STATE(2207), + [sym_float] = STATE(1579), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2472), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK_PIPE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LT_AT] = ACTIONS(1062), + [anon_sym_LT_AT_AT] = ACTIONS(2173), + [anon_sym_LBRACE_PIPE] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_return_BANG] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_yield_BANG] = ACTIONS(1074), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_upcast] = ACTIONS(1046), + [anon_sym_downcast] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1080), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_match_BANG] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_use_BANG] = ACTIONS(1100), + [anon_sym_do_BANG] = ACTIONS(1102), + [anon_sym_begin] = ACTIONS(1104), + [aux_sym_char_token1] = ACTIONS(1108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_AT_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [sym_bool] = ACTIONS(1120), + [sym_unit] = ACTIONS(2175), + [anon_sym_LPAREN_PIPE] = ACTIONS(1124), + [sym_op_identifier] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139795,8 +140137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1128), + [sym_xint] = ACTIONS(1130), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139804,124 +140146,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1132), }, [737] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(4), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(248), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -139930,8 +140272,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -139939,124 +140281,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(700), }, [738] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(131), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(297), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -140065,8 +140407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140074,123 +140416,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1226), }, [739] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(303), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(164), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -140200,8 +140542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140209,123 +140551,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [740] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(129), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(180), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -140335,8 +140677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140344,124 +140686,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [741] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(276), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(100), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -140470,8 +140812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140479,124 +140821,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [742] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(326), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(31), + [sym_literal_expression] = STATE(1659), + [sym_long_identifier_or_op] = STATE(1659), + [sym_tuple_expression] = STATE(1659), + [sym_brace_expression] = STATE(1659), + [sym_anon_record_expression] = STATE(1659), + [sym_prefixed_expression] = STATE(1659), + [sym_typecast_expression] = STATE(1659), + [sym_for_expression] = STATE(1659), + [sym_while_expression] = STATE(1659), + [sym__if_branch] = STATE(7607), + [sym_if_expression] = STATE(1659), + [sym_fun_expression] = STATE(1659), + [sym_try_expression] = STATE(1659), + [sym_match_expression] = STATE(1659), + [sym_function_expression] = STATE(1659), + [sym_object_instantiation_expression] = STATE(1659), + [sym_mutate_expression] = STATE(1659), + [sym_index_expression] = STATE(1659), + [sym_typed_expression] = STATE(1659), + [sym_declaration_expression] = STATE(1659), + [sym_do_expression] = STATE(1659), + [sym_list_expression] = STATE(1659), + [sym_array_expression] = STATE(1659), + [sym_begin_end_expression] = STATE(1659), + [sym_paren_expression] = STATE(1659), + [sym__high_prec_app] = STATE(1648), + [sym__low_prec_app] = STATE(1648), + [sym_application_expression] = STATE(1659), + [sym_dot_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_ce_expression] = STATE(1659), + [sym_sequential_expression] = STATE(1659), + [sym_char] = STATE(1756), + [sym_format_string] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_string] = STATE(1756), + [sym_verbatim_string] = STATE(1756), + [sym_bytearray] = STATE(1756), + [sym_verbatim_bytearray] = STATE(1756), + [sym_format_triple_quoted_string] = STATE(1763), + [sym_triple_quoted_string] = STATE(1756), + [sym_const] = STATE(1659), + [sym_long_identifier] = STATE(1691), + [sym_active_pattern] = STATE(1584), + [sym__identifier_or_op] = STATE(1586), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(742), + [sym_sbyte] = STATE(1756), + [sym_byte] = STATE(1756), + [sym_int16] = STATE(1756), + [sym_uint16] = STATE(1756), + [sym_int32] = STATE(1756), + [sym_uint32] = STATE(1756), + [sym_nativeint] = STATE(1756), + [sym_unativeint] = STATE(1756), + [sym_int64] = STATE(1756), + [sym_uint64] = STATE(1756), + [sym_ieee32] = STATE(1756), + [sym_ieee64] = STATE(1756), + [sym_bignum] = STATE(1756), + [sym_decimal] = STATE(1756), + [sym_float] = STATE(1371), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1659), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(315), + [anon_sym_return] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_null] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_LBRACK_PIPE] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LT_AT] = ACTIONS(335), + [anon_sym_LT_AT_AT] = ACTIONS(2079), + [anon_sym_LBRACE_PIPE] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_return_BANG] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(319), + [anon_sym_yield_BANG] = ACTIONS(345), + [anon_sym_lazy] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(319), + [anon_sym_upcast] = ACTIONS(319), + [anon_sym_downcast] = ACTIONS(319), + [anon_sym_for] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(353), + [anon_sym_try] = ACTIONS(355), + [anon_sym_match] = ACTIONS(357), + [anon_sym_match_BANG] = ACTIONS(359), + [anon_sym_function] = ACTIONS(361), + [anon_sym_use] = ACTIONS(369), + [anon_sym_use_BANG] = ACTIONS(371), + [anon_sym_do_BANG] = ACTIONS(373), + [anon_sym_begin] = ACTIONS(375), + [aux_sym_char_token1] = ACTIONS(379), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_AT_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(389), + [sym_bool] = ACTIONS(391), + [sym_unit] = ACTIONS(2089), + [anon_sym_LPAREN_PIPE] = ACTIONS(395), + [sym_op_identifier] = ACTIONS(2091), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -140605,8 +140947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(399), + [sym_xint] = ACTIONS(401), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140614,124 +140956,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(403), }, [743] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(327), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(365), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -140740,8 +141082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140749,124 +141091,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(311), }, [744] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(329), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -140875,8 +141217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -140884,124 +141226,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(1344), }, [745] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(275), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(309), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141010,8 +141352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141019,124 +141361,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(1344), }, [746] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(110), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(746), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(616), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_return_BANG] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_yield_BANG] = ACTIONS(642), + [anon_sym_lazy] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_upcast] = ACTIONS(616), + [anon_sym_downcast] = ACTIONS(616), + [anon_sym_for] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(666), + [anon_sym_use_BANG] = ACTIONS(668), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141145,8 +141487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(696), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141154,124 +141496,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(700), }, [747] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(121), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(177), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141280,8 +141622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141289,124 +141631,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [748] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(212), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(184), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141415,8 +141757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141424,124 +141766,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [749] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(102), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(246), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141550,8 +141892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141559,124 +141901,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(700), }, [750] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(87), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(312), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141685,8 +142027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141694,124 +142036,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(606), }, [751] = { - [sym_function_or_value_defn] = STATE(694), - [sym__expression] = STATE(109), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(676), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(363), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(758), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(782), - [anon_sym_return_BANG] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_yield_BANG] = ACTIONS(784), - [anon_sym_lazy] = ACTIONS(758), - [anon_sym_assert] = ACTIONS(758), - [anon_sym_upcast] = ACTIONS(758), - [anon_sym_downcast] = ACTIONS(758), - [anon_sym_for] = ACTIONS(788), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(810), - [anon_sym_use_BANG] = ACTIONS(812), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141820,8 +142162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(842), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141829,124 +142171,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [752] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(123), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(674), + [sym__expression] = STATE(205), + [sym_literal_expression] = STATE(2334), + [sym_long_identifier_or_op] = STATE(2334), + [sym_tuple_expression] = STATE(2334), + [sym_brace_expression] = STATE(2334), + [sym_anon_record_expression] = STATE(2334), + [sym_prefixed_expression] = STATE(2334), + [sym_typecast_expression] = STATE(2334), + [sym_for_expression] = STATE(2334), + [sym_while_expression] = STATE(2334), + [sym__if_branch] = STATE(7567), + [sym_if_expression] = STATE(2334), + [sym_fun_expression] = STATE(2334), + [sym_try_expression] = STATE(2334), + [sym_match_expression] = STATE(2334), + [sym_function_expression] = STATE(2334), + [sym_object_instantiation_expression] = STATE(2334), + [sym_mutate_expression] = STATE(2334), + [sym_index_expression] = STATE(2334), + [sym_typed_expression] = STATE(2334), + [sym_declaration_expression] = STATE(2334), + [sym_do_expression] = STATE(2334), + [sym_list_expression] = STATE(2334), + [sym_array_expression] = STATE(2334), + [sym_begin_end_expression] = STATE(2334), + [sym_paren_expression] = STATE(2334), + [sym__high_prec_app] = STATE(2363), + [sym__low_prec_app] = STATE(2363), + [sym_application_expression] = STATE(2334), + [sym_dot_expression] = STATE(2334), + [sym_infix_expression] = STATE(2334), + [sym_ce_expression] = STATE(2334), + [sym_sequential_expression] = STATE(2334), + [sym_char] = STATE(2189), + [sym_format_string] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_string] = STATE(2189), + [sym_verbatim_string] = STATE(2189), + [sym_bytearray] = STATE(2189), + [sym_verbatim_bytearray] = STATE(2189), + [sym_format_triple_quoted_string] = STATE(2181), + [sym_triple_quoted_string] = STATE(2189), + [sym_const] = STATE(2334), + [sym_long_identifier] = STATE(2389), + [sym_active_pattern] = STATE(2388), + [sym__identifier_or_op] = STATE(2547), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(752), + [sym_sbyte] = STATE(2189), + [sym_byte] = STATE(2189), + [sym_int16] = STATE(2189), + [sym_uint16] = STATE(2189), + [sym_int32] = STATE(2189), + [sym_uint32] = STATE(2189), + [sym_nativeint] = STATE(2189), + [sym_unativeint] = STATE(2189), + [sym_int64] = STATE(2189), + [sym_uint64] = STATE(2189), + [sym_ieee32] = STATE(2189), + [sym_ieee64] = STATE(2189), + [sym_bignum] = STATE(2189), + [sym_decimal] = STATE(2189), + [sym_float] = STATE(1639), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2334), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_LBRACK_PIPE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LT_AT] = ACTIONS(1386), + [anon_sym_LT_AT_AT] = ACTIONS(2033), + [anon_sym_LBRACE_PIPE] = ACTIONS(1392), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_return_BANG] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_yield_BANG] = ACTIONS(1396), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_assert] = ACTIONS(1370), + [anon_sym_upcast] = ACTIONS(1370), + [anon_sym_downcast] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1402), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_match_BANG] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_use_BANG] = ACTIONS(1422), + [anon_sym_do_BANG] = ACTIONS(1424), + [anon_sym_begin] = ACTIONS(1426), + [aux_sym_char_token1] = ACTIONS(1430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_AT_DQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), + [sym_bool] = ACTIONS(1442), + [sym_unit] = ACTIONS(2037), + [anon_sym_LPAREN_PIPE] = ACTIONS(1446), + [sym_op_identifier] = ACTIONS(2039), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -141955,8 +142297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1450), + [sym_xint] = ACTIONS(1452), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -141964,124 +142306,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1454), }, [753] = { - [sym_function_or_value_defn] = STATE(753), - [sym__expression] = STATE(291), - [sym_literal_expression] = STATE(2158), - [sym_long_identifier_or_op] = STATE(2158), - [sym_tuple_expression] = STATE(2158), - [sym_brace_expression] = STATE(2158), - [sym_anon_record_expression] = STATE(2158), - [sym_prefixed_expression] = STATE(2158), - [sym_typecast_expression] = STATE(2158), - [sym_for_expression] = STATE(2158), - [sym_while_expression] = STATE(2158), - [sym__if_branch] = STATE(7262), - [sym_if_expression] = STATE(2158), - [sym_fun_expression] = STATE(2158), - [sym_try_expression] = STATE(2158), - [sym_match_expression] = STATE(2158), - [sym_function_expression] = STATE(2158), - [sym_object_instantiation_expression] = STATE(2158), - [sym_mutate_expression] = STATE(2158), - [sym_index_expression] = STATE(2158), - [sym_typed_expression] = STATE(2158), - [sym_declaration_expression] = STATE(2158), - [sym_do_expression] = STATE(2158), - [sym_list_expression] = STATE(2158), - [sym_array_expression] = STATE(2158), - [sym_begin_end_expression] = STATE(2158), - [sym_paren_expression] = STATE(2158), - [sym__high_prec_app] = STATE(2146), - [sym__low_prec_app] = STATE(2146), - [sym_application_expression] = STATE(2158), - [sym_dot_expression] = STATE(2158), - [sym_infix_expression] = STATE(2158), - [sym_ce_expression] = STATE(2158), - [sym_sequential_expression] = STATE(2158), - [sym_char] = STATE(2483), - [sym_format_string] = STATE(2439), - [sym__string_literal] = STATE(2439), - [sym_string] = STATE(2483), - [sym_verbatim_string] = STATE(2483), - [sym_bytearray] = STATE(2483), - [sym_verbatim_bytearray] = STATE(2483), - [sym_format_triple_quoted_string] = STATE(2429), - [sym_triple_quoted_string] = STATE(2483), - [sym_const] = STATE(2158), - [sym_long_identifier] = STATE(2372), - [sym_active_pattern] = STATE(2421), - [sym__identifier_or_op] = STATE(2375), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(545), - [sym_sbyte] = STATE(2483), - [sym_byte] = STATE(2483), - [sym_int16] = STATE(2483), - [sym_uint16] = STATE(2483), - [sym_int32] = STATE(2483), - [sym_uint32] = STATE(2483), - [sym_nativeint] = STATE(2483), - [sym_unativeint] = STATE(2483), - [sym_int64] = STATE(2483), - [sym_uint64] = STATE(2483), - [sym_ieee32] = STATE(2483), - [sym_ieee64] = STATE(2483), - [sym_bignum] = STATE(2483), - [sym_decimal] = STATE(2483), - [sym_float] = STATE(1631), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(176), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2158), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1036), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_LBRACK_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LT_AT] = ACTIONS(1044), - [anon_sym_LT_AT_AT] = ACTIONS(2189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_return_BANG] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_yield_BANG] = ACTIONS(1052), - [anon_sym_lazy] = ACTIONS(1028), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_upcast] = ACTIONS(1028), - [anon_sym_downcast] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [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(1072), - [anon_sym_use_BANG] = ACTIONS(1074), - [anon_sym_do_BANG] = ACTIONS(1076), - [anon_sym_begin] = ACTIONS(1080), - [aux_sym_char_token1] = ACTIONS(1082), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_AT_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1092), - [sym_bool] = ACTIONS(1094), - [sym_unit] = ACTIONS(2191), - [anon_sym_LPAREN_PIPE] = ACTIONS(1096), - [sym_op_identifier] = ACTIONS(2193), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142090,8 +142432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1100), - [sym_xint] = ACTIONS(1102), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142099,123 +142441,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1104), + [anon_sym_POUNDif] = ACTIONS(606), }, [754] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(61), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(59), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), + [anon_sym_LT_AT] = ACTIONS(243), [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), [anon_sym_use] = ACTIONS(714), [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -142225,8 +142567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142234,124 +142576,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(311), }, [755] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(279), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(293), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142360,8 +142702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142369,124 +142711,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [756] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(133), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(643), + [sym__expression] = STATE(313), + [sym_literal_expression] = STATE(2490), + [sym_long_identifier_or_op] = STATE(2490), + [sym_tuple_expression] = STATE(2490), + [sym_brace_expression] = STATE(2490), + [sym_anon_record_expression] = STATE(2490), + [sym_prefixed_expression] = STATE(2490), + [sym_typecast_expression] = STATE(2490), + [sym_for_expression] = STATE(2490), + [sym_while_expression] = STATE(2490), + [sym__if_branch] = STATE(7445), + [sym_if_expression] = STATE(2490), + [sym_fun_expression] = STATE(2490), + [sym_try_expression] = STATE(2490), + [sym_match_expression] = STATE(2490), + [sym_function_expression] = STATE(2490), + [sym_object_instantiation_expression] = STATE(2490), + [sym_mutate_expression] = STATE(2490), + [sym_index_expression] = STATE(2490), + [sym_typed_expression] = STATE(2490), + [sym_declaration_expression] = STATE(2490), + [sym_do_expression] = STATE(2490), + [sym_list_expression] = STATE(2490), + [sym_array_expression] = STATE(2490), + [sym_begin_end_expression] = STATE(2490), + [sym_paren_expression] = STATE(2490), + [sym__high_prec_app] = STATE(2435), + [sym__low_prec_app] = STATE(2435), + [sym_application_expression] = STATE(2490), + [sym_dot_expression] = STATE(2490), + [sym_infix_expression] = STATE(2490), + [sym_ce_expression] = STATE(2490), + [sym_sequential_expression] = STATE(2490), + [sym_char] = STATE(2413), + [sym_format_string] = STATE(2399), + [sym__string_literal] = STATE(2399), + [sym_string] = STATE(2413), + [sym_verbatim_string] = STATE(2413), + [sym_bytearray] = STATE(2413), + [sym_verbatim_bytearray] = STATE(2413), + [sym_format_triple_quoted_string] = STATE(2396), + [sym_triple_quoted_string] = STATE(2413), + [sym_const] = STATE(2490), + [sym_long_identifier] = STATE(2499), + [sym_active_pattern] = STATE(2407), + [sym__identifier_or_op] = STATE(2500), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(609), + [sym_sbyte] = STATE(2413), + [sym_byte] = STATE(2413), + [sym_int16] = STATE(2413), + [sym_uint16] = STATE(2413), + [sym_int32] = STATE(2413), + [sym_uint32] = STATE(2413), + [sym_nativeint] = STATE(2413), + [sym_unativeint] = STATE(2413), + [sym_int64] = STATE(2413), + [sym_uint64] = STATE(2413), + [sym_ieee32] = STATE(2413), + [sym_ieee64] = STATE(2413), + [sym_bignum] = STATE(2413), + [sym_decimal] = STATE(2413), + [sym_float] = STATE(1719), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(2490), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(920), + [anon_sym_return] = ACTIONS(924), + [anon_sym_do] = ACTIONS(926), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_null] = ACTIONS(932), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LBRACK_PIPE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LT_AT] = ACTIONS(940), + [anon_sym_LT_AT_AT] = ACTIONS(2153), + [anon_sym_LBRACE_PIPE] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_return_BANG] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_yield_BANG] = ACTIONS(950), + [anon_sym_lazy] = ACTIONS(924), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_upcast] = ACTIONS(924), + [anon_sym_downcast] = ACTIONS(924), + [anon_sym_for] = ACTIONS(954), + [anon_sym_while] = ACTIONS(956), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(958), + [anon_sym_try] = ACTIONS(960), + [anon_sym_match] = ACTIONS(962), + [anon_sym_match_BANG] = ACTIONS(964), + [anon_sym_function] = ACTIONS(966), + [anon_sym_use] = ACTIONS(976), + [anon_sym_use_BANG] = ACTIONS(978), + [anon_sym_do_BANG] = ACTIONS(980), + [anon_sym_begin] = ACTIONS(982), + [aux_sym_char_token1] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [anon_sym_AT_DQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), + [sym_bool] = ACTIONS(998), + [sym_unit] = ACTIONS(2155), + [anon_sym_LPAREN_PIPE] = ACTIONS(1002), + [sym_op_identifier] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142495,8 +142837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(1006), + [sym_xint] = ACTIONS(1008), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142504,124 +142846,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(1010), }, [757] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(83), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(285), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142630,8 +142972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142639,124 +142981,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(606), }, [758] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(57), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(56), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142765,8 +143107,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142774,124 +143116,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [759] = { - [sym_function_or_value_defn] = STATE(531), - [sym__expression] = STATE(91), - [sym_literal_expression] = STATE(1965), - [sym_long_identifier_or_op] = STATE(1965), - [sym_tuple_expression] = STATE(1965), - [sym_brace_expression] = STATE(1965), - [sym_anon_record_expression] = STATE(1965), - [sym_prefixed_expression] = STATE(1965), - [sym_typecast_expression] = STATE(1965), - [sym_for_expression] = STATE(1965), - [sym_while_expression] = STATE(1965), - [sym__if_branch] = STATE(7411), - [sym_if_expression] = STATE(1965), - [sym_fun_expression] = STATE(1965), - [sym_try_expression] = STATE(1965), - [sym_match_expression] = STATE(1965), - [sym_function_expression] = STATE(1965), - [sym_object_instantiation_expression] = STATE(1965), - [sym_mutate_expression] = STATE(1965), - [sym_index_expression] = STATE(1965), - [sym_typed_expression] = STATE(1965), - [sym_declaration_expression] = STATE(1965), - [sym_do_expression] = STATE(1965), - [sym_list_expression] = STATE(1965), - [sym_array_expression] = STATE(1965), - [sym_begin_end_expression] = STATE(1965), - [sym_paren_expression] = STATE(1965), - [sym__high_prec_app] = STATE(1966), - [sym__low_prec_app] = STATE(1966), - [sym_application_expression] = STATE(1965), - [sym_dot_expression] = STATE(1965), - [sym_infix_expression] = STATE(1965), - [sym_ce_expression] = STATE(1965), - [sym_sequential_expression] = STATE(1965), - [sym_char] = STATE(2067), - [sym_format_string] = STATE(2072), - [sym__string_literal] = STATE(2072), - [sym_string] = STATE(2067), - [sym_verbatim_string] = STATE(2067), - [sym_bytearray] = STATE(2067), - [sym_verbatim_bytearray] = STATE(2067), - [sym_format_triple_quoted_string] = STATE(2073), - [sym_triple_quoted_string] = STATE(2067), - [sym_const] = STATE(1965), - [sym_long_identifier] = STATE(1871), - [sym_active_pattern] = STATE(1875), - [sym__identifier_or_op] = STATE(1843), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(675), - [sym_sbyte] = STATE(2067), - [sym_byte] = STATE(2067), - [sym_int16] = STATE(2067), - [sym_uint16] = STATE(2067), - [sym_int32] = STATE(2067), - [sym_uint32] = STATE(2067), - [sym_nativeint] = STATE(2067), - [sym_unativeint] = STATE(2067), - [sym_int64] = STATE(2067), - [sym_uint64] = STATE(2067), - [sym_ieee32] = STATE(2067), - [sym_ieee64] = STATE(2067), - [sym_bignum] = STATE(2067), - [sym_decimal] = STATE(2067), - [sym_float] = STATE(1481), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(310), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1965), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(662), - [anon_sym_return] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_null] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACK_PIPE] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_LT_AT] = ACTIONS(680), - [anon_sym_LT_AT_AT] = ACTIONS(2059), - [anon_sym_LBRACE_PIPE] = ACTIONS(686), - [anon_sym_new] = ACTIONS(688), - [anon_sym_return_BANG] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_yield_BANG] = ACTIONS(690), - [anon_sym_lazy] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_upcast] = ACTIONS(666), - [anon_sym_downcast] = ACTIONS(666), - [anon_sym_for] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_match] = ACTIONS(702), - [anon_sym_match_BANG] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_use] = ACTIONS(714), - [anon_sym_use_BANG] = ACTIONS(716), - [anon_sym_do_BANG] = ACTIONS(718), - [anon_sym_begin] = ACTIONS(720), - [aux_sym_char_token1] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_AT_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), - [sym_bool] = ACTIONS(736), - [sym_unit] = ACTIONS(2069), - [anon_sym_LPAREN_PIPE] = ACTIONS(740), - [sym_op_identifier] = ACTIONS(2071), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -142900,8 +143242,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(744), - [sym_xint] = ACTIONS(746), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -142909,123 +143251,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(748), + [anon_sym_POUNDif] = ACTIONS(700), }, [760] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(161), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(171), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -143035,8 +143377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143044,124 +143386,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [761] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(255), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(274), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143170,8 +143512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143179,124 +143521,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [762] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(241), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(51), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143305,8 +143647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143314,124 +143656,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(311), }, [763] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(213), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(50), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143440,8 +143782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143449,123 +143791,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(311), }, [764] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(289), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(269), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -143575,8 +143917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143584,124 +143926,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [765] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(165), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(49), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143710,8 +144052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143719,124 +144061,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [766] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(284), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(102), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143845,8 +144187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -143854,124 +144196,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [767] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(225), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(48), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -143980,7 +144322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), + [sym_int] = ACTIONS(718), [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), @@ -143992,121 +144334,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [768] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(168), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(259), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144115,8 +144457,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144124,124 +144466,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [769] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(285), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(170), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144250,8 +144592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144259,124 +144601,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [770] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(7), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(147), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144385,8 +144727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144394,124 +144736,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(606), }, [771] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(224), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(250), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144520,8 +144862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144529,124 +144871,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [772] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(169), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(353), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144655,8 +144997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144664,124 +145006,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(311), }, [773] = { - [sym_function_or_value_defn] = STATE(773), - [sym__expression] = STATE(25), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(597), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(294), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(29), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(57), - [anon_sym_return_BANG] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_yield_BANG] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(29), - [anon_sym_assert] = ACTIONS(29), - [anon_sym_upcast] = ACTIONS(29), - [anon_sym_downcast] = ACTIONS(29), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(77), - [anon_sym_use_BANG] = ACTIONS(79), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144790,8 +145132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144799,124 +145141,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(700), }, [774] = { - [sym_function_or_value_defn] = STATE(687), - [sym__expression] = STATE(135), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(758), + [sym__expression] = STATE(91), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(754), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(517), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(702), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(541), - [anon_sym_return_BANG] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_yield_BANG] = ACTIONS(543), - [anon_sym_lazy] = ACTIONS(517), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_upcast] = ACTIONS(517), - [anon_sym_downcast] = ACTIONS(517), - [anon_sym_for] = ACTIONS(547), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(706), + [anon_sym_return_BANG] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_yield_BANG] = ACTIONS(708), + [anon_sym_lazy] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(702), + [anon_sym_upcast] = ACTIONS(702), + [anon_sym_downcast] = ACTIONS(702), + [anon_sym_for] = ACTIONS(710), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(567), - [anon_sym_use_BANG] = ACTIONS(569), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(714), + [anon_sym_use_BANG] = ACTIONS(716), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -144925,8 +145267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(599), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(718), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -144934,124 +145276,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(311), }, [775] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(35), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(166), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145060,8 +145402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145069,123 +145411,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(606), }, [776] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(288), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(232), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -145195,8 +145537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145204,124 +145546,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [777] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(22), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(257), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145330,8 +145672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145339,124 +145681,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [778] = { - [sym_function_or_value_defn] = STATE(635), - [sym__expression] = STATE(271), - [sym_literal_expression] = STATE(2055), - [sym_long_identifier_or_op] = STATE(2055), - [sym_tuple_expression] = STATE(2055), - [sym_brace_expression] = STATE(2055), - [sym_anon_record_expression] = STATE(2055), - [sym_prefixed_expression] = STATE(2055), - [sym_typecast_expression] = STATE(2055), - [sym_for_expression] = STATE(2055), - [sym_while_expression] = STATE(2055), - [sym__if_branch] = STATE(7450), - [sym_if_expression] = STATE(2055), - [sym_fun_expression] = STATE(2055), - [sym_try_expression] = STATE(2055), - [sym_match_expression] = STATE(2055), - [sym_function_expression] = STATE(2055), - [sym_object_instantiation_expression] = STATE(2055), - [sym_mutate_expression] = STATE(2055), - [sym_index_expression] = STATE(2055), - [sym_typed_expression] = STATE(2055), - [sym_declaration_expression] = STATE(2055), - [sym_do_expression] = STATE(2055), - [sym_list_expression] = STATE(2055), - [sym_array_expression] = STATE(2055), - [sym_begin_end_expression] = STATE(2055), - [sym_paren_expression] = STATE(2055), - [sym__high_prec_app] = STATE(2057), - [sym__low_prec_app] = STATE(2057), - [sym_application_expression] = STATE(2055), - [sym_dot_expression] = STATE(2055), - [sym_infix_expression] = STATE(2055), - [sym_ce_expression] = STATE(2055), - [sym_sequential_expression] = STATE(2055), - [sym_char] = STATE(2111), - [sym_format_string] = STATE(2115), - [sym__string_literal] = STATE(2115), - [sym_string] = STATE(2111), - [sym_verbatim_string] = STATE(2111), - [sym_bytearray] = STATE(2111), - [sym_verbatim_bytearray] = STATE(2111), - [sym_format_triple_quoted_string] = STATE(2116), - [sym_triple_quoted_string] = STATE(2111), - [sym_const] = STATE(2055), - [sym_long_identifier] = STATE(1842), - [sym_active_pattern] = STATE(2033), - [sym__identifier_or_op] = STATE(1967), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2111), - [sym_byte] = STATE(2111), - [sym_int16] = STATE(2111), - [sym_uint16] = STATE(2111), - [sym_int32] = STATE(2111), - [sym_uint32] = STATE(2111), - [sym_nativeint] = STATE(2111), - [sym_unativeint] = STATE(2111), - [sym_int64] = STATE(2111), - [sym_uint64] = STATE(2111), - [sym_ieee32] = STATE(2111), - [sym_ieee64] = STATE(2111), - [sym_bignum] = STATE(2111), - [sym_decimal] = STATE(2111), - [sym_float] = STATE(1474), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(76), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2055), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(754), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(896), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_null] = ACTIONS(766), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LBRACK_PIPE] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LT_AT] = ACTIONS(774), - [anon_sym_LT_AT_AT] = ACTIONS(2127), - [anon_sym_LBRACE_PIPE] = ACTIONS(780), - [anon_sym_new] = ACTIONS(1206), - [anon_sym_return_BANG] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_yield_BANG] = ACTIONS(1208), - [anon_sym_lazy] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1202), - [anon_sym_upcast] = ACTIONS(1202), - [anon_sym_downcast] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(792), - [anon_sym_try] = ACTIONS(796), - [anon_sym_match] = ACTIONS(798), - [anon_sym_match_BANG] = ACTIONS(800), - [anon_sym_function] = ACTIONS(802), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_use_BANG] = ACTIONS(1220), - [anon_sym_do_BANG] = ACTIONS(814), - [anon_sym_begin] = ACTIONS(818), - [aux_sym_char_token1] = ACTIONS(822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_AT_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), - [sym_bool] = ACTIONS(834), - [sym_unit] = ACTIONS(2137), - [anon_sym_LPAREN_PIPE] = ACTIONS(838), - [sym_op_identifier] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145465,8 +145807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1222), - [sym_xint] = ACTIONS(844), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145474,124 +145816,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(846), + [anon_sym_POUNDif] = ACTIONS(606), }, [779] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(37), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(149), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145600,8 +145942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145609,124 +145951,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(606), }, [780] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(98), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(273), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145735,8 +146077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145744,124 +146086,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [781] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(40), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(116), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), + [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -145870,8 +146212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(307), + [sym_xint] = ACTIONS(309), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -145879,124 +146221,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(311), }, [782] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(89), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(216), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146005,8 +146347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146014,124 +146356,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [783] = { - [sym_function_or_value_defn] = STATE(737), - [sym__expression] = STATE(6), - [sym_literal_expression] = STATE(1084), - [sym_long_identifier_or_op] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_brace_expression] = STATE(1084), - [sym_anon_record_expression] = STATE(1084), - [sym_prefixed_expression] = STATE(1084), - [sym_typecast_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym__if_branch] = STATE(8228), - [sym_if_expression] = STATE(1084), - [sym_fun_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_function_expression] = STATE(1084), - [sym_object_instantiation_expression] = STATE(1084), - [sym_mutate_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_typed_expression] = STATE(1084), - [sym_declaration_expression] = STATE(1084), - [sym_do_expression] = STATE(1084), - [sym_list_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_begin_end_expression] = STATE(1084), - [sym_paren_expression] = STATE(1084), - [sym__high_prec_app] = STATE(1071), - [sym__low_prec_app] = STATE(1071), - [sym_application_expression] = STATE(1084), - [sym_dot_expression] = STATE(1084), - [sym_infix_expression] = STATE(1084), - [sym_ce_expression] = STATE(1084), - [sym_sequential_expression] = STATE(1084), - [sym_char] = STATE(1066), - [sym_format_string] = STATE(1081), - [sym__string_literal] = STATE(1081), - [sym_string] = STATE(1066), - [sym_verbatim_string] = STATE(1066), - [sym_bytearray] = STATE(1066), - [sym_verbatim_bytearray] = STATE(1066), - [sym_format_triple_quoted_string] = STATE(1082), - [sym_triple_quoted_string] = STATE(1066), - [sym_const] = STATE(1084), - [sym_long_identifier] = STATE(1091), - [sym_active_pattern] = STATE(1069), - [sym__identifier_or_op] = STATE(1117), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(684), - [sym_sbyte] = STATE(1066), - [sym_byte] = STATE(1066), - [sym_int16] = STATE(1066), - [sym_uint16] = STATE(1066), - [sym_int32] = STATE(1066), - [sym_uint32] = STATE(1066), - [sym_nativeint] = STATE(1066), - [sym_unativeint] = STATE(1066), - [sym_int64] = STATE(1066), - [sym_uint64] = STATE(1066), - [sym_ieee32] = STATE(1066), - [sym_ieee64] = STATE(1066), - [sym_bignum] = STATE(1066), - [sym_decimal] = STATE(1066), - [sym_float] = STATE(927), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(156), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1084), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(19), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_null] = ACTIONS(41), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LBRACK_PIPE] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LT_AT] = ACTIONS(51), - [anon_sym_LT_AT_AT] = ACTIONS(53), - [anon_sym_LBRACE_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_match] = ACTIONS(71), - [anon_sym_match_BANG] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_use] = ACTIONS(169), - [anon_sym_use_BANG] = ACTIONS(171), - [anon_sym_do_BANG] = ACTIONS(81), - [anon_sym_begin] = ACTIONS(83), - [aux_sym_char_token1] = ACTIONS(87), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_AT_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(97), - [sym_bool] = ACTIONS(99), - [sym_unit] = ACTIONS(101), - [anon_sym_LPAREN_PIPE] = ACTIONS(103), - [sym_op_identifier] = ACTIONS(105), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146140,8 +146482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(177), - [sym_xint] = ACTIONS(179), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146149,124 +146491,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(606), }, [784] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(20), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(356), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146287,121 +146629,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [785] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(354), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(532), + [sym__expression] = STATE(359), + [sym_literal_expression] = STATE(1088), + [sym_long_identifier_or_op] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_brace_expression] = STATE(1088), + [sym_anon_record_expression] = STATE(1088), + [sym_prefixed_expression] = STATE(1088), + [sym_typecast_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym__if_branch] = STATE(7184), + [sym_if_expression] = STATE(1088), + [sym_fun_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_function_expression] = STATE(1088), + [sym_object_instantiation_expression] = STATE(1088), + [sym_mutate_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_typed_expression] = STATE(1088), + [sym_declaration_expression] = STATE(1088), + [sym_do_expression] = STATE(1088), + [sym_list_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_begin_end_expression] = STATE(1088), + [sym_paren_expression] = STATE(1088), + [sym__high_prec_app] = STATE(1078), + [sym__low_prec_app] = STATE(1078), + [sym_application_expression] = STATE(1088), + [sym_dot_expression] = STATE(1088), + [sym_infix_expression] = STATE(1088), + [sym_ce_expression] = STATE(1088), + [sym_sequential_expression] = STATE(1088), + [sym_char] = STATE(1167), + [sym_format_string] = STATE(1175), + [sym__string_literal] = STATE(1175), + [sym_string] = STATE(1167), + [sym_verbatim_string] = STATE(1167), + [sym_bytearray] = STATE(1167), + [sym_verbatim_bytearray] = STATE(1167), + [sym_format_triple_quoted_string] = STATE(1176), + [sym_triple_quoted_string] = STATE(1167), + [sym_const] = STATE(1088), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1227), + [sym__identifier_or_op] = STATE(1179), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(680), + [sym_sbyte] = STATE(1167), + [sym_byte] = STATE(1167), + [sym_int16] = STATE(1167), + [sym_uint16] = STATE(1167), + [sym_int32] = STATE(1167), + [sym_uint32] = STATE(1167), + [sym_nativeint] = STATE(1167), + [sym_unativeint] = STATE(1167), + [sym_int64] = STATE(1167), + [sym_uint64] = STATE(1167), + [sym_ieee32] = STATE(1167), + [sym_ieee64] = STATE(1167), + [sym_bignum] = STATE(1167), + [sym_decimal] = STATE(1167), + [sym_float] = STATE(933), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1088), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(223), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_null] = ACTIONS(235), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_LT_AT] = ACTIONS(243), + [anon_sym_LT_AT_AT] = ACTIONS(2059), + [anon_sym_LBRACE_PIPE] = ACTIONS(249), + [anon_sym_new] = ACTIONS(251), + [anon_sym_return_BANG] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(253), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_for] = ACTIONS(257), + [anon_sym_while] = ACTIONS(259), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), + [anon_sym_fun] = ACTIONS(261), + [anon_sym_try] = ACTIONS(263), + [anon_sym_match] = ACTIONS(265), + [anon_sym_match_BANG] = ACTIONS(267), + [anon_sym_function] = ACTIONS(269), + [anon_sym_use] = ACTIONS(277), + [anon_sym_use_BANG] = ACTIONS(279), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(283), + [aux_sym_char_token1] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(2069), [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [sym_op_identifier] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146422,121 +146764,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(311), }, [786] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(43), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(191), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146545,8 +146887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146554,124 +146896,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(606), }, [787] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(52), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(150), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), - [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), - [sym_op_identifier] = ACTIONS(2013), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146680,8 +147022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146689,124 +147031,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(700), }, [788] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(359), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(727), + [sym__expression] = STATE(168), + [sym_literal_expression] = STATE(2501), + [sym_long_identifier_or_op] = STATE(2501), + [sym_tuple_expression] = STATE(2501), + [sym_brace_expression] = STATE(2501), + [sym_anon_record_expression] = STATE(2501), + [sym_prefixed_expression] = STATE(2501), + [sym_typecast_expression] = STATE(2501), + [sym_for_expression] = STATE(2501), + [sym_while_expression] = STATE(2501), + [sym__if_branch] = STATE(7335), + [sym_if_expression] = STATE(2501), + [sym_fun_expression] = STATE(2501), + [sym_try_expression] = STATE(2501), + [sym_match_expression] = STATE(2501), + [sym_function_expression] = STATE(2501), + [sym_object_instantiation_expression] = STATE(2501), + [sym_mutate_expression] = STATE(2501), + [sym_index_expression] = STATE(2501), + [sym_typed_expression] = STATE(2501), + [sym_declaration_expression] = STATE(2501), + [sym_do_expression] = STATE(2501), + [sym_list_expression] = STATE(2501), + [sym_array_expression] = STATE(2501), + [sym_begin_end_expression] = STATE(2501), + [sym_paren_expression] = STATE(2501), + [sym__high_prec_app] = STATE(2498), + [sym__low_prec_app] = STATE(2498), + [sym_application_expression] = STATE(2501), + [sym_dot_expression] = STATE(2501), + [sym_infix_expression] = STATE(2501), + [sym_ce_expression] = STATE(2501), + [sym_sequential_expression] = STATE(2501), + [sym_char] = STATE(2416), + [sym_format_string] = STATE(2381), + [sym__string_literal] = STATE(2381), + [sym_string] = STATE(2416), + [sym_verbatim_string] = STATE(2416), + [sym_bytearray] = STATE(2416), + [sym_verbatim_bytearray] = STATE(2416), + [sym_format_triple_quoted_string] = STATE(2380), + [sym_triple_quoted_string] = STATE(2416), + [sym_const] = STATE(2501), + [sym_long_identifier] = STATE(2383), + [sym_active_pattern] = STATE(2188), + [sym__identifier_or_op] = STATE(2382), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(640), + [sym_sbyte] = STATE(2416), + [sym_byte] = STATE(2416), + [sym_int16] = STATE(2416), + [sym_uint16] = STATE(2416), + [sym_int32] = STATE(2416), + [sym_uint32] = STATE(2416), + [sym_nativeint] = STATE(2416), + [sym_unativeint] = STATE(2416), + [sym_int64] = STATE(2416), + [sym_uint64] = STATE(2416), + [sym_ieee32] = STATE(2416), + [sym_ieee64] = STATE(2416), + [sym_bignum] = STATE(2416), + [sym_decimal] = STATE(2416), + [sym_float] = STATE(1677), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(2501), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LBRACK_PIPE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LT_AT] = ACTIONS(1274), + [anon_sym_LT_AT_AT] = ACTIONS(2187), + [anon_sym_LBRACE_PIPE] = ACTIONS(1280), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_return_BANG] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_yield_BANG] = ACTIONS(1284), + [anon_sym_lazy] = ACTIONS(1258), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_upcast] = ACTIONS(1258), + [anon_sym_downcast] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(1292), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_match_BANG] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_use_BANG] = ACTIONS(1310), + [anon_sym_do_BANG] = ACTIONS(1312), + [anon_sym_begin] = ACTIONS(1316), + [aux_sym_char_token1] = ACTIONS(1320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_AT_DQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1330), + [sym_bool] = ACTIONS(1332), + [sym_unit] = ACTIONS(2189), + [anon_sym_LPAREN_PIPE] = ACTIONS(1336), + [sym_op_identifier] = ACTIONS(2191), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146815,8 +147157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(1340), + [sym_xint] = ACTIONS(1342), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146824,124 +147166,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(1344), }, [789] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(44), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(582), + [sym__expression] = STATE(281), + [sym_literal_expression] = STATE(2209), + [sym_long_identifier_or_op] = STATE(2209), + [sym_tuple_expression] = STATE(2209), + [sym_brace_expression] = STATE(2209), + [sym_anon_record_expression] = STATE(2209), + [sym_prefixed_expression] = STATE(2209), + [sym_typecast_expression] = STATE(2209), + [sym_for_expression] = STATE(2209), + [sym_while_expression] = STATE(2209), + [sym__if_branch] = STATE(7088), + [sym_if_expression] = STATE(2209), + [sym_fun_expression] = STATE(2209), + [sym_try_expression] = STATE(2209), + [sym_match_expression] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_object_instantiation_expression] = STATE(2209), + [sym_mutate_expression] = STATE(2209), + [sym_index_expression] = STATE(2209), + [sym_typed_expression] = STATE(2209), + [sym_declaration_expression] = STATE(2209), + [sym_do_expression] = STATE(2209), + [sym_list_expression] = STATE(2209), + [sym_array_expression] = STATE(2209), + [sym_begin_end_expression] = STATE(2209), + [sym_paren_expression] = STATE(2209), + [sym__high_prec_app] = STATE(2200), + [sym__low_prec_app] = STATE(2200), + [sym_application_expression] = STATE(2209), + [sym_dot_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_ce_expression] = STATE(2209), + [sym_sequential_expression] = STATE(2209), + [sym_char] = STATE(2518), + [sym_format_string] = STATE(2529), + [sym__string_literal] = STATE(2529), + [sym_string] = STATE(2518), + [sym_verbatim_string] = STATE(2518), + [sym_bytearray] = STATE(2518), + [sym_verbatim_bytearray] = STATE(2518), + [sym_format_triple_quoted_string] = STATE(2530), + [sym_triple_quoted_string] = STATE(2518), + [sym_const] = STATE(2209), + [sym_long_identifier] = STATE(2533), + [sym_active_pattern] = STATE(2520), + [sym__identifier_or_op] = STATE(2196), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(789), + [sym_sbyte] = STATE(2518), + [sym_byte] = STATE(2518), + [sym_int16] = STATE(2518), + [sym_uint16] = STATE(2518), + [sym_int32] = STATE(2518), + [sym_uint32] = STATE(2518), + [sym_nativeint] = STATE(2518), + [sym_unativeint] = STATE(2518), + [sym_int64] = STATE(2518), + [sym_uint64] = STATE(2518), + [sym_ieee32] = STATE(2518), + [sym_ieee64] = STATE(2518), + [sym_bignum] = STATE(2518), + [sym_decimal] = STATE(2518), + [sym_float] = STATE(1815), [sym_block_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(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(2209), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1150), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK_PIPE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LT_AT] = ACTIONS(1158), + [anon_sym_LT_AT_AT] = ACTIONS(2127), + [anon_sym_LBRACE_PIPE] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_return_BANG] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_yield_BANG] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1142), + [anon_sym_upcast] = ACTIONS(1142), + [anon_sym_downcast] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1174), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_match_BANG] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_use_BANG] = ACTIONS(1194), + [anon_sym_do_BANG] = ACTIONS(1196), + [anon_sym_begin] = ACTIONS(1198), + [aux_sym_char_token1] = ACTIONS(1202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_AT_DQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [sym_bool] = ACTIONS(1214), + [sym_unit] = ACTIONS(2137), + [anon_sym_LPAREN_PIPE] = ACTIONS(1218), + [sym_op_identifier] = ACTIONS(2139), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -146950,8 +147292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(1222), + [sym_xint] = ACTIONS(1224), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -146959,124 +147301,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(1226), }, [790] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(47), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(200), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147085,8 +147427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147094,123 +147436,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [791] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(176), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(206), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -147220,8 +147562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147229,124 +147571,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [792] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(353), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(78), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147355,8 +147697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147364,124 +147706,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [793] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(200), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(84), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_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(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147490,8 +147832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147499,124 +147841,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(606), }, [794] = { - [sym_function_or_value_defn] = STATE(794), - [sym__expression] = STATE(36), - [sym_literal_expression] = STATE(1570), - [sym_long_identifier_or_op] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [sym_brace_expression] = STATE(1570), - [sym_anon_record_expression] = STATE(1570), - [sym_prefixed_expression] = STATE(1570), - [sym_typecast_expression] = STATE(1570), - [sym_for_expression] = STATE(1570), - [sym_while_expression] = STATE(1570), - [sym__if_branch] = STATE(7528), - [sym_if_expression] = STATE(1570), - [sym_fun_expression] = STATE(1570), - [sym_try_expression] = STATE(1570), - [sym_match_expression] = STATE(1570), - [sym_function_expression] = STATE(1570), - [sym_object_instantiation_expression] = STATE(1570), - [sym_mutate_expression] = STATE(1570), - [sym_index_expression] = STATE(1570), - [sym_typed_expression] = STATE(1570), - [sym_declaration_expression] = STATE(1570), - [sym_do_expression] = STATE(1570), - [sym_list_expression] = STATE(1570), - [sym_array_expression] = STATE(1570), - [sym_begin_end_expression] = STATE(1570), - [sym_paren_expression] = STATE(1570), - [sym__high_prec_app] = STATE(1575), - [sym__low_prec_app] = STATE(1575), - [sym_application_expression] = STATE(1570), - [sym_dot_expression] = STATE(1570), - [sym_infix_expression] = STATE(1570), - [sym_ce_expression] = STATE(1570), - [sym_sequential_expression] = STATE(1570), - [sym_char] = STATE(1766), - [sym_format_string] = STATE(1786), - [sym__string_literal] = STATE(1786), - [sym_string] = STATE(1766), - [sym_verbatim_string] = STATE(1766), - [sym_bytearray] = STATE(1766), - [sym_verbatim_bytearray] = STATE(1766), - [sym_format_triple_quoted_string] = STATE(1801), - [sym_triple_quoted_string] = STATE(1766), - [sym_const] = STATE(1570), - [sym_long_identifier] = STATE(1592), - [sym_active_pattern] = STATE(1557), - [sym__identifier_or_op] = STATE(1591), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(682), - [sym_sbyte] = STATE(1766), - [sym_byte] = STATE(1766), - [sym_int16] = STATE(1766), - [sym_uint16] = STATE(1766), - [sym_int32] = STATE(1766), - [sym_uint32] = STATE(1766), - [sym_nativeint] = STATE(1766), - [sym_unativeint] = STATE(1766), - [sym_int64] = STATE(1766), - [sym_uint64] = STATE(1766), - [sym_ieee32] = STATE(1766), - [sym_ieee64] = STATE(1766), - [sym_bignum] = STATE(1766), - [sym_decimal] = STATE(1766), - [sym_float] = STATE(1382), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(85), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(794), [sym_compiler_directive_decl] = STATE(794), [sym_fsi_directive_decl] = STATE(794), [sym_preproc_line] = STATE(794), - [sym_preproc_if_in_expression] = STATE(1570), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(421), - [anon_sym_return] = ACTIONS(425), - [anon_sym_do] = ACTIONS(427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_null] = ACTIONS(433), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_PIPE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_LT_AT] = ACTIONS(441), - [anon_sym_LT_AT_AT] = ACTIONS(2077), - [anon_sym_LBRACE_PIPE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(449), - [anon_sym_return_BANG] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_yield_BANG] = ACTIONS(451), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(425), - [anon_sym_upcast] = ACTIONS(425), - [anon_sym_downcast] = ACTIONS(425), - [anon_sym_for] = ACTIONS(455), - [anon_sym_while] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(459), - [anon_sym_try] = ACTIONS(461), - [anon_sym_match] = ACTIONS(463), - [anon_sym_match_BANG] = ACTIONS(465), - [anon_sym_function] = ACTIONS(467), - [anon_sym_use] = ACTIONS(475), - [anon_sym_use_BANG] = ACTIONS(477), - [anon_sym_do_BANG] = ACTIONS(479), - [anon_sym_begin] = ACTIONS(481), - [aux_sym_char_token1] = ACTIONS(485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_AT_DQUOTE] = ACTIONS(491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(495), - [sym_bool] = ACTIONS(497), - [sym_unit] = ACTIONS(2079), - [anon_sym_LPAREN_PIPE] = ACTIONS(501), - [sym_op_identifier] = ACTIONS(2081), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147625,8 +147967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(505), - [sym_xint] = ACTIONS(507), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147634,124 +147976,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(509), + [anon_sym_POUNDif] = ACTIONS(606), }, [795] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(208), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(74), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(795), [sym_compiler_directive_decl] = STATE(795), [sym_fsi_directive_decl] = STATE(795), [sym_preproc_line] = STATE(795), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147760,8 +148102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147769,124 +148111,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [796] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(142), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(642), + [sym__expression] = STATE(263), + [sym_literal_expression] = STATE(2093), + [sym_long_identifier_or_op] = STATE(2093), + [sym_tuple_expression] = STATE(2093), + [sym_brace_expression] = STATE(2093), + [sym_anon_record_expression] = STATE(2093), + [sym_prefixed_expression] = STATE(2093), + [sym_typecast_expression] = STATE(2093), + [sym_for_expression] = STATE(2093), + [sym_while_expression] = STATE(2093), + [sym__if_branch] = STATE(7527), + [sym_if_expression] = STATE(2093), + [sym_fun_expression] = STATE(2093), + [sym_try_expression] = STATE(2093), + [sym_match_expression] = STATE(2093), + [sym_function_expression] = STATE(2093), + [sym_object_instantiation_expression] = STATE(2093), + [sym_mutate_expression] = STATE(2093), + [sym_index_expression] = STATE(2093), + [sym_typed_expression] = STATE(2093), + [sym_declaration_expression] = STATE(2093), + [sym_do_expression] = STATE(2093), + [sym_list_expression] = STATE(2093), + [sym_array_expression] = STATE(2093), + [sym_begin_end_expression] = STATE(2093), + [sym_paren_expression] = STATE(2093), + [sym__high_prec_app] = STATE(2100), + [sym__low_prec_app] = STATE(2100), + [sym_application_expression] = STATE(2093), + [sym_dot_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_ce_expression] = STATE(2093), + [sym_sequential_expression] = STATE(2093), + [sym_char] = STATE(2041), + [sym_format_string] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_string] = STATE(2041), + [sym_verbatim_string] = STATE(2041), + [sym_bytearray] = STATE(2041), + [sym_verbatim_bytearray] = STATE(2041), + [sym_format_triple_quoted_string] = STATE(2061), + [sym_triple_quoted_string] = STATE(2041), + [sym_const] = STATE(2093), + [sym_long_identifier] = STATE(1947), + [sym_active_pattern] = STATE(1923), + [sym__identifier_or_op] = STATE(1844), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(787), + [sym_sbyte] = STATE(2041), + [sym_byte] = STATE(2041), + [sym_int16] = STATE(2041), + [sym_uint16] = STATE(2041), + [sym_int32] = STATE(2041), + [sym_uint32] = STATE(2041), + [sym_nativeint] = STATE(2041), + [sym_unativeint] = STATE(2041), + [sym_int64] = STATE(2041), + [sym_uint64] = STATE(2041), + [sym_ieee32] = STATE(2041), + [sym_ieee64] = STATE(2041), + [sym_bignum] = STATE(2041), + [sym_decimal] = STATE(2041), + [sym_float] = STATE(1524), [sym_block_comment] = STATE(796), [sym_compiler_directive_decl] = STATE(796), [sym_fsi_directive_decl] = STATE(796), [sym_preproc_line] = STATE(796), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(2093), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(612), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(618), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_null] = ACTIONS(624), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_LBRACK_PIPE] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LT_AT] = ACTIONS(632), + [anon_sym_LT_AT_AT] = ACTIONS(2163), + [anon_sym_LBRACE_PIPE] = ACTIONS(638), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_return_BANG] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1018), + [anon_sym_yield_BANG] = ACTIONS(1024), + [anon_sym_lazy] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1018), + [anon_sym_upcast] = ACTIONS(1018), + [anon_sym_downcast] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(648), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(650), + [anon_sym_try] = ACTIONS(652), + [anon_sym_match] = ACTIONS(654), + [anon_sym_match_BANG] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_use_BANG] = ACTIONS(1036), + [anon_sym_do_BANG] = ACTIONS(670), + [anon_sym_begin] = ACTIONS(672), + [aux_sym_char_token1] = ACTIONS(676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_bool] = ACTIONS(688), + [sym_unit] = ACTIONS(2165), + [anon_sym_LPAREN_PIPE] = ACTIONS(692), + [sym_op_identifier] = ACTIONS(2167), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -147895,8 +148237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(1038), + [sym_xint] = ACTIONS(698), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -147904,124 +148246,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(700), }, [797] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(115), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(303), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(797), [sym_compiler_directive_decl] = STATE(797), [sym_fsi_directive_decl] = STATE(797), [sym_preproc_line] = STATE(797), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148030,8 +148372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148039,124 +148381,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [798] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(119), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(778), + [sym__expression] = STATE(88), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(733), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(798), [sym_compiler_directive_decl] = STATE(798), [sym_fsi_directive_decl] = STATE(798), [sym_preproc_line] = STATE(798), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(520), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_return_BANG] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_yield_BANG] = ACTIONS(546), + [anon_sym_lazy] = ACTIONS(520), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_upcast] = ACTIONS(520), + [anon_sym_downcast] = ACTIONS(520), + [anon_sym_for] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), - [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), - [sym_op_identifier] = ACTIONS(2101), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(570), + [anon_sym_use_BANG] = ACTIONS(572), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148165,8 +148507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(602), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148174,124 +148516,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(606), }, [799] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(140), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(67), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(799), [sym_compiler_directive_decl] = STATE(799), [sym_fsi_directive_decl] = STATE(799), [sym_preproc_line] = STATE(799), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148300,8 +148642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148309,124 +148651,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(830), }, [800] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(257), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(93), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(800), [sym_compiler_directive_decl] = STATE(800), [sym_fsi_directive_decl] = STATE(800), [sym_preproc_line] = STATE(800), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148435,8 +148777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148444,124 +148786,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(830), }, [801] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(301), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(226), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(801), [sym_compiler_directive_decl] = STATE(801), [sym_fsi_directive_decl] = STATE(801), [sym_preproc_line] = STATE(801), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_LT_AT] = ACTIONS(536), + [anon_sym_LT_AT_AT] = ACTIONS(2007), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), + [sym_unit] = ACTIONS(2011), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), + [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148570,8 +148912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148579,124 +148921,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(606), }, [802] = { - [sym_function_or_value_defn] = STATE(762), - [sym__expression] = STATE(181), - [sym_literal_expression] = STATE(2323), - [sym_long_identifier_or_op] = STATE(2323), - [sym_tuple_expression] = STATE(2323), - [sym_brace_expression] = STATE(2323), - [sym_anon_record_expression] = STATE(2323), - [sym_prefixed_expression] = STATE(2323), - [sym_typecast_expression] = STATE(2323), - [sym_for_expression] = STATE(2323), - [sym_while_expression] = STATE(2323), - [sym__if_branch] = STATE(7059), - [sym_if_expression] = STATE(2323), - [sym_fun_expression] = STATE(2323), - [sym_try_expression] = STATE(2323), - [sym_match_expression] = STATE(2323), - [sym_function_expression] = STATE(2323), - [sym_object_instantiation_expression] = STATE(2323), - [sym_mutate_expression] = STATE(2323), - [sym_index_expression] = STATE(2323), - [sym_typed_expression] = STATE(2323), - [sym_declaration_expression] = STATE(2323), - [sym_do_expression] = STATE(2323), - [sym_list_expression] = STATE(2323), - [sym_array_expression] = STATE(2323), - [sym_begin_end_expression] = STATE(2323), - [sym_paren_expression] = STATE(2323), - [sym__high_prec_app] = STATE(2284), - [sym__low_prec_app] = STATE(2284), - [sym_application_expression] = STATE(2323), - [sym_dot_expression] = STATE(2323), - [sym_infix_expression] = STATE(2323), - [sym_ce_expression] = STATE(2323), - [sym_sequential_expression] = STATE(2323), - [sym_char] = STATE(2309), - [sym_format_string] = STATE(2317), - [sym__string_literal] = STATE(2317), - [sym_string] = STATE(2309), - [sym_verbatim_string] = STATE(2309), - [sym_bytearray] = STATE(2309), - [sym_verbatim_bytearray] = STATE(2309), - [sym_format_triple_quoted_string] = STATE(2318), - [sym_triple_quoted_string] = STATE(2309), - [sym_const] = STATE(2323), - [sym_long_identifier] = STATE(2320), - [sym_active_pattern] = STATE(2310), - [sym__identifier_or_op] = STATE(2276), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(637), - [sym_sbyte] = STATE(2309), - [sym_byte] = STATE(2309), - [sym_int16] = STATE(2309), - [sym_uint16] = STATE(2309), - [sym_int32] = STATE(2309), - [sym_uint32] = STATE(2309), - [sym_nativeint] = STATE(2309), - [sym_unativeint] = STATE(2309), - [sym_int64] = STATE(2309), - [sym_uint64] = STATE(2309), - [sym_ieee32] = STATE(2309), - [sym_ieee64] = STATE(2309), - [sym_bignum] = STATE(2309), - [sym_decimal] = STATE(2309), - [sym_float] = STATE(1560), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(66), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(802), [sym_compiler_directive_decl] = STATE(802), [sym_fsi_directive_decl] = STATE(802), [sym_preproc_line] = STATE(802), - [sym_preproc_if_in_expression] = STATE(2323), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(934), - [anon_sym_return] = ACTIONS(938), - [anon_sym_do] = ACTIONS(940), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_null] = ACTIONS(946), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACK_PIPE] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_LT_AT] = ACTIONS(952), - [anon_sym_LT_AT_AT] = ACTIONS(2161), - [anon_sym_LBRACE_PIPE] = ACTIONS(958), - [anon_sym_new] = ACTIONS(960), - [anon_sym_return_BANG] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_yield_BANG] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(938), - [anon_sym_assert] = ACTIONS(938), - [anon_sym_upcast] = ACTIONS(938), - [anon_sym_downcast] = ACTIONS(938), - [anon_sym_for] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(970), - [anon_sym_try] = ACTIONS(972), - [anon_sym_match] = ACTIONS(974), - [anon_sym_match_BANG] = ACTIONS(976), - [anon_sym_function] = ACTIONS(978), - [anon_sym_use] = ACTIONS(986), - [anon_sym_use_BANG] = ACTIONS(988), - [anon_sym_do_BANG] = ACTIONS(990), - [anon_sym_begin] = ACTIONS(992), - [aux_sym_char_token1] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [anon_sym_AT_DQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), - [sym_bool] = ACTIONS(1008), - [sym_unit] = ACTIONS(2163), - [anon_sym_LPAREN_PIPE] = ACTIONS(1012), - [sym_op_identifier] = ACTIONS(2165), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148705,8 +149047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1016), - [sym_xint] = ACTIONS(1018), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148714,124 +149056,124 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1020), + [anon_sym_POUNDif] = ACTIONS(830), }, [803] = { - [sym_function_or_value_defn] = STATE(627), - [sym__expression] = STATE(304), - [sym_literal_expression] = STATE(2307), - [sym_long_identifier_or_op] = STATE(2307), - [sym_tuple_expression] = STATE(2307), - [sym_brace_expression] = STATE(2307), - [sym_anon_record_expression] = STATE(2307), - [sym_prefixed_expression] = STATE(2307), - [sym_typecast_expression] = STATE(2307), - [sym_for_expression] = STATE(2307), - [sym_while_expression] = STATE(2307), - [sym__if_branch] = STATE(7018), - [sym_if_expression] = STATE(2307), - [sym_fun_expression] = STATE(2307), - [sym_try_expression] = STATE(2307), - [sym_match_expression] = STATE(2307), - [sym_function_expression] = STATE(2307), - [sym_object_instantiation_expression] = STATE(2307), - [sym_mutate_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_typed_expression] = STATE(2307), - [sym_declaration_expression] = STATE(2307), - [sym_do_expression] = STATE(2307), - [sym_list_expression] = STATE(2307), - [sym_array_expression] = STATE(2307), - [sym_begin_end_expression] = STATE(2307), - [sym_paren_expression] = STATE(2307), - [sym__high_prec_app] = STATE(2316), - [sym__low_prec_app] = STATE(2316), - [sym_application_expression] = STATE(2307), - [sym_dot_expression] = STATE(2307), - [sym_infix_expression] = STATE(2307), - [sym_ce_expression] = STATE(2307), - [sym_sequential_expression] = STATE(2307), - [sym_char] = STATE(2277), - [sym_format_string] = STATE(2351), - [sym__string_literal] = STATE(2351), - [sym_string] = STATE(2277), - [sym_verbatim_string] = STATE(2277), - [sym_bytearray] = STATE(2277), - [sym_verbatim_bytearray] = STATE(2277), - [sym_format_triple_quoted_string] = STATE(2356), - [sym_triple_quoted_string] = STATE(2277), - [sym_const] = STATE(2307), - [sym_long_identifier] = STATE(2364), - [sym_active_pattern] = STATE(2315), - [sym__identifier_or_op] = STATE(2321), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(771), - [sym_sbyte] = STATE(2277), - [sym_byte] = STATE(2277), - [sym_int16] = STATE(2277), - [sym_uint16] = STATE(2277), - [sym_int32] = STATE(2277), - [sym_uint32] = STATE(2277), - [sym_nativeint] = STATE(2277), - [sym_unativeint] = STATE(2277), - [sym_int64] = STATE(2277), - [sym_uint64] = STATE(2277), - [sym_ieee32] = STATE(2277), - [sym_ieee64] = STATE(2277), - [sym_bignum] = STATE(2277), - [sym_decimal] = STATE(2277), - [sym_float] = STATE(1808), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(80), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(803), [sym_compiler_directive_decl] = STATE(803), [sym_fsi_directive_decl] = STATE(803), [sym_preproc_line] = STATE(803), - [sym_preproc_if_in_expression] = STATE(2307), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1260), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_LBRACK_PIPE] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LT_AT] = ACTIONS(1268), - [anon_sym_LT_AT_AT] = ACTIONS(2173), - [anon_sym_LBRACE_PIPE] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_return_BANG] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_yield_BANG] = ACTIONS(1278), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1252), - [anon_sym_upcast] = ACTIONS(1252), - [anon_sym_downcast] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_match_BANG] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_use_BANG] = ACTIONS(1304), - [anon_sym_do_BANG] = ACTIONS(1306), - [anon_sym_begin] = ACTIONS(1308), - [aux_sym_char_token1] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_AT_DQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1322), - [sym_bool] = ACTIONS(1324), - [sym_unit] = ACTIONS(2175), - [anon_sym_LPAREN_PIPE] = ACTIONS(1328), - [sym_op_identifier] = ACTIONS(2177), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), + [sym_unit] = ACTIONS(2099), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), + [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_DOT] = ACTIONS(107), @@ -148840,8 +149182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(1332), - [sym_xint] = ACTIONS(1334), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148849,123 +149191,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(830), }, [804] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(126), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(804), [sym_compiler_directive_decl] = STATE(804), [sym_fsi_directive_decl] = STATE(804), [sym_preproc_line] = STATE(804), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -148975,8 +149317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -148984,123 +149326,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(830), }, [805] = { - [sym_function_or_value_defn] = STATE(805), - [sym__expression] = STATE(17), - [sym_literal_expression] = STATE(1217), - [sym_long_identifier_or_op] = STATE(1217), - [sym_tuple_expression] = STATE(1217), - [sym_brace_expression] = STATE(1217), - [sym_anon_record_expression] = STATE(1217), - [sym_prefixed_expression] = STATE(1217), - [sym_typecast_expression] = STATE(1217), - [sym_for_expression] = STATE(1217), - [sym_while_expression] = STATE(1217), - [sym__if_branch] = STATE(7113), - [sym_if_expression] = STATE(1217), - [sym_fun_expression] = STATE(1217), - [sym_try_expression] = STATE(1217), - [sym_match_expression] = STATE(1217), - [sym_function_expression] = STATE(1217), - [sym_object_instantiation_expression] = STATE(1217), - [sym_mutate_expression] = STATE(1217), - [sym_index_expression] = STATE(1217), - [sym_typed_expression] = STATE(1217), - [sym_declaration_expression] = STATE(1217), - [sym_do_expression] = STATE(1217), - [sym_list_expression] = STATE(1217), - [sym_array_expression] = STATE(1217), - [sym_begin_end_expression] = STATE(1217), - [sym_paren_expression] = STATE(1217), - [sym__high_prec_app] = STATE(1216), - [sym__low_prec_app] = STATE(1216), - [sym_application_expression] = STATE(1217), - [sym_dot_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_ce_expression] = STATE(1217), - [sym_sequential_expression] = STATE(1217), - [sym_char] = STATE(1171), - [sym_format_string] = STATE(1134), - [sym__string_literal] = STATE(1134), - [sym_string] = STATE(1171), - [sym_verbatim_string] = STATE(1171), - [sym_bytearray] = STATE(1171), - [sym_verbatim_bytearray] = STATE(1171), - [sym_format_triple_quoted_string] = STATE(1130), - [sym_triple_quoted_string] = STATE(1171), - [sym_const] = STATE(1217), - [sym_long_identifier] = STATE(1122), - [sym_active_pattern] = STATE(1120), - [sym__identifier_or_op] = STATE(1126), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(558), - [sym_sbyte] = STATE(1171), - [sym_byte] = STATE(1171), - [sym_int16] = STATE(1171), - [sym_uint16] = STATE(1171), - [sym_int32] = STATE(1171), - [sym_uint32] = STATE(1171), - [sym_nativeint] = STATE(1171), - [sym_unativeint] = STATE(1171), - [sym_int64] = STATE(1171), - [sym_uint64] = STATE(1171), - [sym_ieee32] = STATE(1171), - [sym_ieee64] = STATE(1171), - [sym_bignum] = STATE(1171), - [sym_decimal] = STATE(1171), - [sym_float] = STATE(921), + [sym_function_or_value_defn] = STATE(799), + [sym__expression] = STATE(71), + [sym_literal_expression] = STATE(1891), + [sym_long_identifier_or_op] = STATE(1891), + [sym_tuple_expression] = STATE(1891), + [sym_brace_expression] = STATE(1891), + [sym_anon_record_expression] = STATE(1891), + [sym_prefixed_expression] = STATE(1891), + [sym_typecast_expression] = STATE(1891), + [sym_for_expression] = STATE(1891), + [sym_while_expression] = STATE(1891), + [sym__if_branch] = STATE(7487), + [sym_if_expression] = STATE(1891), + [sym_fun_expression] = STATE(1891), + [sym_try_expression] = STATE(1891), + [sym_match_expression] = STATE(1891), + [sym_function_expression] = STATE(1891), + [sym_object_instantiation_expression] = STATE(1891), + [sym_mutate_expression] = STATE(1891), + [sym_index_expression] = STATE(1891), + [sym_typed_expression] = STATE(1891), + [sym_declaration_expression] = STATE(1891), + [sym_do_expression] = STATE(1891), + [sym_list_expression] = STATE(1891), + [sym_array_expression] = STATE(1891), + [sym_begin_end_expression] = STATE(1891), + [sym_paren_expression] = STATE(1891), + [sym__high_prec_app] = STATE(1904), + [sym__low_prec_app] = STATE(1904), + [sym_application_expression] = STATE(1891), + [sym_dot_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_ce_expression] = STATE(1891), + [sym_sequential_expression] = STATE(1891), + [sym_char] = STATE(1976), + [sym_format_string] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_string] = STATE(1976), + [sym_verbatim_string] = STATE(1976), + [sym_bytearray] = STATE(1976), + [sym_verbatim_bytearray] = STATE(1976), + [sym_format_triple_quoted_string] = STATE(1980), + [sym_triple_quoted_string] = STATE(1976), + [sym_const] = STATE(1891), + [sym_long_identifier] = STATE(1855), + [sym_active_pattern] = STATE(1854), + [sym__identifier_or_op] = STATE(1941), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1976), + [sym_byte] = STATE(1976), + [sym_int16] = STATE(1976), + [sym_uint16] = STATE(1976), + [sym_int32] = STATE(1976), + [sym_uint32] = STATE(1976), + [sym_nativeint] = STATE(1976), + [sym_unativeint] = STATE(1976), + [sym_int64] = STATE(1976), + [sym_uint64] = STATE(1976), + [sym_ieee32] = STATE(1976), + [sym_ieee64] = STATE(1976), + [sym_bignum] = STATE(1976), + [sym_decimal] = STATE(1976), + [sym_float] = STATE(1517), [sym_block_comment] = STATE(805), [sym_compiler_directive_decl] = STATE(805), [sym_fsi_directive_decl] = STATE(805), [sym_preproc_line] = STATE(805), - [sym_preproc_if_in_expression] = STATE(1217), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(233), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_null] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1891), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(742), + [anon_sym_return] = ACTIONS(746), + [anon_sym_do] = ACTIONS(748), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_null] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_LT_AT] = ACTIONS(253), - [anon_sym_LT_AT_AT] = ACTIONS(2089), - [anon_sym_LBRACE_PIPE] = ACTIONS(257), - [anon_sym_new] = ACTIONS(259), - [anon_sym_return_BANG] = ACTIONS(261), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(261), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK_PIPE] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_LT_AT] = ACTIONS(762), + [anon_sym_LT_AT_AT] = ACTIONS(2097), + [anon_sym_LBRACE_PIPE] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_return_BANG] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_yield_BANG] = ACTIONS(772), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_upcast] = ACTIONS(746), + [anon_sym_downcast] = ACTIONS(746), + [anon_sym_for] = ACTIONS(776), + [anon_sym_while] = ACTIONS(778), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_try] = ACTIONS(271), - [anon_sym_match] = ACTIONS(273), - [anon_sym_match_BANG] = ACTIONS(275), - [anon_sym_function] = ACTIONS(277), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(285), - [anon_sym_begin] = ACTIONS(287), - [aux_sym_char_token1] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(299), - [sym_bool] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(780), + [anon_sym_try] = ACTIONS(782), + [anon_sym_match] = ACTIONS(784), + [anon_sym_match_BANG] = ACTIONS(786), + [anon_sym_function] = ACTIONS(788), + [anon_sym_use] = ACTIONS(796), + [anon_sym_use_BANG] = ACTIONS(798), + [anon_sym_do_BANG] = ACTIONS(800), + [anon_sym_begin] = ACTIONS(802), + [aux_sym_char_token1] = ACTIONS(806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_AT_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_bool] = ACTIONS(818), [sym_unit] = ACTIONS(2099), - [anon_sym_LPAREN_PIPE] = ACTIONS(303), + [anon_sym_LPAREN_PIPE] = ACTIONS(822), [sym_op_identifier] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -149110,8 +149452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(307), - [sym_xint] = ACTIONS(309), + [sym_int] = ACTIONS(826), + [sym_xint] = ACTIONS(828), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -149119,123 +149461,123 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(311), + [anon_sym_POUNDif] = ACTIONS(830), }, [806] = { - [sym_function_or_value_defn] = STATE(719), - [sym__expression] = STATE(312), - [sym_literal_expression] = STATE(1561), - [sym_long_identifier_or_op] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [sym_brace_expression] = STATE(1561), - [sym_anon_record_expression] = STATE(1561), - [sym_prefixed_expression] = STATE(1561), - [sym_typecast_expression] = STATE(1561), - [sym_for_expression] = STATE(1561), - [sym_while_expression] = STATE(1561), - [sym__if_branch] = STATE(7203), - [sym_if_expression] = STATE(1561), - [sym_fun_expression] = STATE(1561), - [sym_try_expression] = STATE(1561), - [sym_match_expression] = STATE(1561), - [sym_function_expression] = STATE(1561), - [sym_object_instantiation_expression] = STATE(1561), - [sym_mutate_expression] = STATE(1561), - [sym_index_expression] = STATE(1561), - [sym_typed_expression] = STATE(1561), - [sym_declaration_expression] = STATE(1561), - [sym_do_expression] = STATE(1561), - [sym_list_expression] = STATE(1561), - [sym_array_expression] = STATE(1561), - [sym_begin_end_expression] = STATE(1561), - [sym_paren_expression] = STATE(1561), - [sym__high_prec_app] = STATE(1558), - [sym__low_prec_app] = STATE(1558), - [sym_application_expression] = STATE(1561), - [sym_dot_expression] = STATE(1561), - [sym_infix_expression] = STATE(1561), - [sym_ce_expression] = STATE(1561), - [sym_sequential_expression] = STATE(1561), - [sym_char] = STATE(1807), - [sym_format_string] = STATE(1800), - [sym__string_literal] = STATE(1800), - [sym_string] = STATE(1807), - [sym_verbatim_string] = STATE(1807), - [sym_bytearray] = STATE(1807), - [sym_verbatim_bytearray] = STATE(1807), - [sym_format_triple_quoted_string] = STATE(1796), - [sym_triple_quoted_string] = STATE(1807), - [sym_const] = STATE(1561), - [sym_long_identifier] = STATE(1795), - [sym_active_pattern] = STATE(1806), - [sym__identifier_or_op] = STATE(1717), - [sym__infix_or_prefix_op] = STATE(3185), - [sym_prefix_op] = STATE(758), - [sym_sbyte] = STATE(1807), - [sym_byte] = STATE(1807), - [sym_int16] = STATE(1807), - [sym_uint16] = STATE(1807), - [sym_int32] = STATE(1807), - [sym_uint32] = STATE(1807), - [sym_nativeint] = STATE(1807), - [sym_unativeint] = STATE(1807), - [sym_int64] = STATE(1807), - [sym_uint64] = STATE(1807), - [sym_ieee32] = STATE(1807), - [sym_ieee64] = STATE(1807), - [sym_bignum] = STATE(1807), - [sym_decimal] = STATE(1807), - [sym_float] = STATE(1461), + [sym_function_or_value_defn] = STATE(565), + [sym__expression] = STATE(227), + [sym_literal_expression] = STATE(1575), + [sym_long_identifier_or_op] = STATE(1575), + [sym_tuple_expression] = STATE(1575), + [sym_brace_expression] = STATE(1575), + [sym_anon_record_expression] = STATE(1575), + [sym_prefixed_expression] = STATE(1575), + [sym_typecast_expression] = STATE(1575), + [sym_for_expression] = STATE(1575), + [sym_while_expression] = STATE(1575), + [sym__if_branch] = STATE(7275), + [sym_if_expression] = STATE(1575), + [sym_fun_expression] = STATE(1575), + [sym_try_expression] = STATE(1575), + [sym_match_expression] = STATE(1575), + [sym_function_expression] = STATE(1575), + [sym_object_instantiation_expression] = STATE(1575), + [sym_mutate_expression] = STATE(1575), + [sym_index_expression] = STATE(1575), + [sym_typed_expression] = STATE(1575), + [sym_declaration_expression] = STATE(1575), + [sym_do_expression] = STATE(1575), + [sym_list_expression] = STATE(1575), + [sym_array_expression] = STATE(1575), + [sym_begin_end_expression] = STATE(1575), + [sym_paren_expression] = STATE(1575), + [sym__high_prec_app] = STATE(1570), + [sym__low_prec_app] = STATE(1570), + [sym_application_expression] = STATE(1575), + [sym_dot_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_ce_expression] = STATE(1575), + [sym_sequential_expression] = STATE(1575), + [sym_char] = STATE(1734), + [sym_format_string] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_string] = STATE(1734), + [sym_verbatim_string] = STATE(1734), + [sym_bytearray] = STATE(1734), + [sym_verbatim_bytearray] = STATE(1734), + [sym_format_triple_quoted_string] = STATE(1778), + [sym_triple_quoted_string] = STATE(1734), + [sym_const] = STATE(1575), + [sym_long_identifier] = STATE(1779), + [sym_active_pattern] = STATE(1738), + [sym__identifier_or_op] = STATE(1725), + [sym__infix_or_prefix_op] = STATE(3203), + [sym_prefix_op] = STATE(610), + [sym_sbyte] = STATE(1734), + [sym_byte] = STATE(1734), + [sym_int16] = STATE(1734), + [sym_uint16] = STATE(1734), + [sym_int32] = STATE(1734), + [sym_uint32] = STATE(1734), + [sym_nativeint] = STATE(1734), + [sym_unativeint] = STATE(1734), + [sym_int64] = STATE(1734), + [sym_uint64] = STATE(1734), + [sym_ieee32] = STATE(1734), + [sym_ieee64] = STATE(1734), + [sym_bignum] = STATE(1734), + [sym_decimal] = STATE(1734), + [sym_float] = STATE(1361), [sym_block_comment] = STATE(806), [sym_compiler_directive_decl] = STATE(806), [sym_fsi_directive_decl] = STATE(806), [sym_preproc_line] = STATE(806), - [sym_preproc_if_in_expression] = STATE(1561), - [aux_sym_prefix_op_repeat1] = STATE(3175), - [sym_identifier] = ACTIONS(513), - [anon_sym_return] = ACTIONS(614), - [anon_sym_do] = ACTIONS(519), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_null] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(1575), + [aux_sym_prefix_op_repeat1] = STATE(3190), + [sym_identifier] = ACTIONS(516), + [anon_sym_return] = ACTIONS(860), + [anon_sym_do] = ACTIONS(522), + [anon_sym_let] = ACTIONS(139), + [anon_sym_let_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_null] = ACTIONS(528), [anon_sym_AMP] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LBRACK_PIPE] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LBRACK_PIPE] = ACTIONS(532), [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LT_AT] = ACTIONS(533), + [anon_sym_LT_AT] = ACTIONS(536), [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_LBRACE_PIPE] = ACTIONS(539), - [anon_sym_new] = ACTIONS(618), - [anon_sym_return_BANG] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_yield_BANG] = ACTIONS(620), - [anon_sym_lazy] = ACTIONS(614), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_upcast] = ACTIONS(614), - [anon_sym_downcast] = ACTIONS(614), - [anon_sym_for] = ACTIONS(622), - [anon_sym_while] = ACTIONS(549), + [anon_sym_LBRACE_PIPE] = ACTIONS(542), + [anon_sym_new] = ACTIONS(864), + [anon_sym_return_BANG] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_yield_BANG] = ACTIONS(866), + [anon_sym_lazy] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(860), + [anon_sym_upcast] = ACTIONS(860), + [anon_sym_downcast] = ACTIONS(860), + [anon_sym_for] = ACTIONS(868), + [anon_sym_while] = ACTIONS(552), [anon_sym_if] = ACTIONS(65), - [anon_sym_fun] = ACTIONS(551), - [anon_sym_try] = ACTIONS(553), - [anon_sym_match] = ACTIONS(555), - [anon_sym_match_BANG] = ACTIONS(557), - [anon_sym_function] = ACTIONS(559), - [anon_sym_use] = ACTIONS(626), - [anon_sym_use_BANG] = ACTIONS(628), - [anon_sym_do_BANG] = ACTIONS(571), - [anon_sym_begin] = ACTIONS(573), - [aux_sym_char_token1] = ACTIONS(579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_AT_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(589), - [sym_bool] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(554), + [anon_sym_try] = ACTIONS(556), + [anon_sym_match] = ACTIONS(558), + [anon_sym_match_BANG] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_use] = ACTIONS(872), + [anon_sym_use_BANG] = ACTIONS(874), + [anon_sym_do_BANG] = ACTIONS(574), + [anon_sym_begin] = ACTIONS(576), + [aux_sym_char_token1] = ACTIONS(582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [sym_bool] = ACTIONS(594), [sym_unit] = ACTIONS(2011), - [anon_sym_LPAREN_PIPE] = ACTIONS(595), + [anon_sym_LPAREN_PIPE] = ACTIONS(598), [sym_op_identifier] = ACTIONS(2013), [anon_sym_PLUS] = ACTIONS(43), [anon_sym_DASH] = ACTIONS(43), @@ -149245,8 +149587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_TILDE] = ACTIONS(109), [aux_sym_prefix_op_token1] = ACTIONS(111), - [sym_int] = ACTIONS(630), - [sym_xint] = ACTIONS(601), + [sym_int] = ACTIONS(876), + [sym_xint] = ACTIONS(604), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -149254,7 +149596,7 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(603), + [anon_sym_POUNDif] = ACTIONS(606), }, [807] = { [sym_block_comment] = STATE(807), @@ -149359,7 +149701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2554), [aux_sym_float_token1] = ACTIONS(2556), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -149470,7 +149812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2582), [aux_sym_float_token1] = ACTIONS(2584), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -149581,7 +149923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2554), [aux_sym_float_token1] = ACTIONS(2556), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -149691,7 +150033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lf] = ACTIONS(2586), [anon_sym_LF] = ACTIONS(2588), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -149801,7 +150143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lf] = ACTIONS(2590), [anon_sym_LF] = ACTIONS(2592), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -149910,7 +150252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lf] = ACTIONS(2590), [anon_sym_LF] = ACTIONS(2592), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -150017,7 +150359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2618), [aux_sym_float_token1] = ACTIONS(2620), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150125,7 +150467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2646), [aux_sym_float_token1] = ACTIONS(2648), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150155,7 +150497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_RBRACK] = ACTIONS(2526), [anon_sym_LBRACK_PIPE] = ACTIONS(2526), [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), @@ -150217,22 +150558,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2558), - [anon_sym_uy] = ACTIONS(2560), - [anon_sym_s] = ACTIONS(2562), - [anon_sym_us] = ACTIONS(2564), - [anon_sym_l] = ACTIONS(2566), - [aux_sym_uint32_token1] = ACTIONS(2568), - [anon_sym_n] = ACTIONS(2570), - [anon_sym_un] = ACTIONS(2572), - [anon_sym_L] = ACTIONS(2574), - [aux_sym_uint64_token1] = ACTIONS(2576), - [aux_sym_bignum_token1] = ACTIONS(2578), - [aux_sym_decimal_token1] = ACTIONS(2580), - [anon_sym_DOT2] = ACTIONS(2582), - [aux_sym_float_token1] = ACTIONS(2584), + [anon_sym_y] = ACTIONS(2650), + [anon_sym_uy] = ACTIONS(2652), + [anon_sym_s] = ACTIONS(2654), + [anon_sym_us] = ACTIONS(2656), + [anon_sym_l] = ACTIONS(2658), + [aux_sym_uint32_token1] = ACTIONS(2660), + [anon_sym_n] = ACTIONS(2662), + [anon_sym_un] = ACTIONS(2664), + [anon_sym_L] = ACTIONS(2666), + [aux_sym_uint64_token1] = ACTIONS(2668), + [aux_sym_bignum_token1] = ACTIONS(2670), + [aux_sym_decimal_token1] = ACTIONS(2672), + [anon_sym_DOT2] = ACTIONS(2674), + [aux_sym_float_token1] = ACTIONS(2676), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150240,6 +150581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), + [sym__dedent] = ACTIONS(2526), }, [816] = { [sym_block_comment] = STATE(816), @@ -150322,22 +150664,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2650), - [anon_sym_uy] = ACTIONS(2652), - [anon_sym_s] = ACTIONS(2654), - [anon_sym_us] = ACTIONS(2656), - [anon_sym_l] = ACTIONS(2658), - [aux_sym_uint32_token1] = ACTIONS(2660), - [anon_sym_n] = ACTIONS(2662), - [anon_sym_un] = ACTIONS(2664), - [anon_sym_L] = ACTIONS(2666), - [aux_sym_uint64_token1] = ACTIONS(2668), - [aux_sym_bignum_token1] = ACTIONS(2670), - [aux_sym_decimal_token1] = ACTIONS(2672), - [anon_sym_DOT2] = ACTIONS(2674), - [aux_sym_float_token1] = ACTIONS(2676), + [anon_sym_y] = ACTIONS(2678), + [anon_sym_uy] = ACTIONS(2680), + [anon_sym_s] = ACTIONS(2682), + [anon_sym_us] = ACTIONS(2684), + [anon_sym_l] = ACTIONS(2686), + [aux_sym_uint32_token1] = ACTIONS(2688), + [anon_sym_n] = ACTIONS(2690), + [anon_sym_un] = ACTIONS(2692), + [anon_sym_L] = ACTIONS(2694), + [aux_sym_uint64_token1] = ACTIONS(2696), + [aux_sym_bignum_token1] = ACTIONS(2698), + [aux_sym_decimal_token1] = ACTIONS(2700), + [anon_sym_DOT2] = ACTIONS(2702), + [aux_sym_float_token1] = ACTIONS(2704), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150375,6 +150717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -150401,7 +150744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_DOT_DOT2] = ACTIONS(2526), [anon_sym_or] = ACTIONS(2528), [aux_sym_char_token1] = ACTIONS(2526), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), @@ -150430,22 +150772,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2678), - [anon_sym_uy] = ACTIONS(2680), - [anon_sym_s] = ACTIONS(2682), - [anon_sym_us] = ACTIONS(2684), - [anon_sym_l] = ACTIONS(2686), - [aux_sym_uint32_token1] = ACTIONS(2688), - [anon_sym_n] = ACTIONS(2690), - [anon_sym_un] = ACTIONS(2692), - [anon_sym_L] = ACTIONS(2694), - [aux_sym_uint64_token1] = ACTIONS(2696), - [aux_sym_bignum_token1] = ACTIONS(2698), - [aux_sym_decimal_token1] = ACTIONS(2700), - [anon_sym_DOT2] = ACTIONS(2702), - [aux_sym_float_token1] = ACTIONS(2704), + [anon_sym_y] = ACTIONS(2650), + [anon_sym_uy] = ACTIONS(2652), + [anon_sym_s] = ACTIONS(2654), + [anon_sym_us] = ACTIONS(2656), + [anon_sym_l] = ACTIONS(2658), + [aux_sym_uint32_token1] = ACTIONS(2660), + [anon_sym_n] = ACTIONS(2662), + [anon_sym_un] = ACTIONS(2664), + [anon_sym_L] = ACTIONS(2666), + [aux_sym_uint64_token1] = ACTIONS(2668), + [aux_sym_bignum_token1] = ACTIONS(2670), + [aux_sym_decimal_token1] = ACTIONS(2672), + [anon_sym_DOT2] = ACTIONS(2674), + [aux_sym_float_token1] = ACTIONS(2676), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150476,13 +150818,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_RBRACK] = ACTIONS(2526), [anon_sym_LBRACK_PIPE] = ACTIONS(2526), [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -150509,6 +150851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_DOT_DOT2] = ACTIONS(2526), [anon_sym_or] = ACTIONS(2528), [aux_sym_char_token1] = ACTIONS(2526), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), @@ -150537,22 +150880,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2678), - [anon_sym_uy] = ACTIONS(2680), - [anon_sym_s] = ACTIONS(2682), - [anon_sym_us] = ACTIONS(2684), - [anon_sym_l] = ACTIONS(2686), - [aux_sym_uint32_token1] = ACTIONS(2688), - [anon_sym_n] = ACTIONS(2690), - [anon_sym_un] = ACTIONS(2692), - [anon_sym_L] = ACTIONS(2694), - [aux_sym_uint64_token1] = ACTIONS(2696), - [aux_sym_bignum_token1] = ACTIONS(2698), - [aux_sym_decimal_token1] = ACTIONS(2700), - [anon_sym_DOT2] = ACTIONS(2702), - [aux_sym_float_token1] = ACTIONS(2704), + [anon_sym_y] = ACTIONS(2558), + [anon_sym_uy] = ACTIONS(2560), + [anon_sym_s] = ACTIONS(2562), + [anon_sym_us] = ACTIONS(2564), + [anon_sym_l] = ACTIONS(2566), + [aux_sym_uint32_token1] = ACTIONS(2568), + [anon_sym_n] = ACTIONS(2570), + [anon_sym_un] = ACTIONS(2572), + [anon_sym_L] = ACTIONS(2574), + [aux_sym_uint64_token1] = ACTIONS(2576), + [aux_sym_bignum_token1] = ACTIONS(2578), + [aux_sym_decimal_token1] = ACTIONS(2580), + [anon_sym_DOT2] = ACTIONS(2582), + [aux_sym_float_token1] = ACTIONS(2584), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150560,7 +150903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), - [sym__dedent] = ACTIONS(2526), }, [819] = { [sym_block_comment] = STATE(819), @@ -150660,7 +151002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2730), [aux_sym_float_token1] = ACTIONS(2732), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150766,7 +151108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(2646), [aux_sym_float_token1] = ACTIONS(2648), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -150787,7 +151129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2528), [anon_sym_let] = ACTIONS(2528), [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_as] = ACTIONS(2528), [anon_sym_LPAREN] = ACTIONS(2528), [anon_sym_COMMA] = ACTIONS(2526), [anon_sym_null] = ACTIONS(2528), @@ -150803,7 +151144,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -150858,28 +151198,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2594), - [anon_sym_uy] = ACTIONS(2596), - [anon_sym_s] = ACTIONS(2598), - [anon_sym_us] = ACTIONS(2600), - [anon_sym_l] = ACTIONS(2602), - [aux_sym_uint32_token1] = ACTIONS(2604), - [anon_sym_n] = ACTIONS(2606), - [anon_sym_un] = ACTIONS(2608), - [anon_sym_L] = ACTIONS(2610), - [aux_sym_uint64_token1] = ACTIONS(2612), - [anon_sym_lf] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2736), + [anon_sym_y] = ACTIONS(2734), + [anon_sym_uy] = ACTIONS(2736), + [anon_sym_s] = ACTIONS(2738), + [anon_sym_us] = ACTIONS(2740), + [anon_sym_l] = ACTIONS(2742), + [aux_sym_uint32_token1] = ACTIONS(2744), + [anon_sym_n] = ACTIONS(2746), + [anon_sym_un] = ACTIONS(2748), + [anon_sym_L] = ACTIONS(2750), + [aux_sym_uint64_token1] = ACTIONS(2752), + [aux_sym_bignum_token1] = ACTIONS(2754), + [aux_sym_decimal_token1] = ACTIONS(2756), + [anon_sym_DOT2] = ACTIONS(2758), + [aux_sym_float_token1] = ACTIONS(2760), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), - [sym__dedent] = ACTIONS(2526), }, [822] = { [sym_block_comment] = STATE(822), @@ -150905,218 +151247,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2526), [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_DOT_DOT2] = ACTIONS(2526), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2678), - [anon_sym_uy] = ACTIONS(2680), - [anon_sym_s] = ACTIONS(2682), - [anon_sym_us] = ACTIONS(2684), - [anon_sym_l] = ACTIONS(2686), - [aux_sym_uint32_token1] = ACTIONS(2688), - [anon_sym_n] = ACTIONS(2690), - [anon_sym_un] = ACTIONS(2692), - [anon_sym_L] = ACTIONS(2694), - [aux_sym_uint64_token1] = ACTIONS(2696), - [anon_sym_lf] = ACTIONS(2738), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - [sym__dedent] = ACTIONS(2526), - }, - [823] = { - [sym_block_comment] = STATE(823), - [sym_compiler_directive_decl] = STATE(823), - [sym_fsi_directive_decl] = STATE(823), - [sym_preproc_line] = STATE(823), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2742), - [anon_sym_uy] = ACTIONS(2744), - [anon_sym_s] = ACTIONS(2746), - [anon_sym_us] = ACTIONS(2748), - [anon_sym_l] = ACTIONS(2750), - [aux_sym_uint32_token1] = ACTIONS(2752), - [anon_sym_n] = ACTIONS(2754), - [anon_sym_un] = ACTIONS(2756), - [anon_sym_L] = ACTIONS(2758), - [aux_sym_uint64_token1] = ACTIONS(2760), - [aux_sym_bignum_token1] = ACTIONS(2762), - [aux_sym_decimal_token1] = ACTIONS(2764), - [anon_sym_DOT2] = ACTIONS(2766), - [aux_sym_float_token1] = ACTIONS(2768), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - }, - [824] = { - [sym_block_comment] = STATE(824), - [sym_compiler_directive_decl] = STATE(824), - [sym_fsi_directive_decl] = STATE(824), - [sym_preproc_line] = STATE(824), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), [anon_sym_AT_GT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), @@ -151175,22 +151305,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2770), - [anon_sym_uy] = ACTIONS(2772), - [anon_sym_s] = ACTIONS(2774), - [anon_sym_us] = ACTIONS(2776), - [anon_sym_l] = ACTIONS(2778), - [aux_sym_uint32_token1] = ACTIONS(2780), - [anon_sym_n] = ACTIONS(2782), - [anon_sym_un] = ACTIONS(2784), - [anon_sym_L] = ACTIONS(2786), - [aux_sym_uint64_token1] = ACTIONS(2788), - [aux_sym_bignum_token1] = ACTIONS(2790), - [aux_sym_decimal_token1] = ACTIONS(2792), - [anon_sym_DOT2] = ACTIONS(2794), - [aux_sym_float_token1] = ACTIONS(2796), + [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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [823] = { + [sym_block_comment] = STATE(823), + [sym_compiler_directive_decl] = STATE(823), + [sym_fsi_directive_decl] = STATE(823), + [sym_preproc_line] = STATE(823), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_y] = ACTIONS(2790), + [anon_sym_uy] = ACTIONS(2792), + [anon_sym_s] = ACTIONS(2794), + [anon_sym_us] = ACTIONS(2796), + [anon_sym_l] = ACTIONS(2798), + [aux_sym_uint32_token1] = ACTIONS(2800), + [anon_sym_n] = ACTIONS(2802), + [anon_sym_un] = ACTIONS(2804), + [anon_sym_L] = ACTIONS(2806), + [aux_sym_uint64_token1] = ACTIONS(2808), + [aux_sym_bignum_token1] = ACTIONS(2810), + [aux_sym_decimal_token1] = ACTIONS(2812), + [anon_sym_DOT2] = ACTIONS(2814), + [aux_sym_float_token1] = ACTIONS(2816), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [824] = { + [sym_block_comment] = STATE(824), + [sym_compiler_directive_decl] = STATE(824), + [sym_fsi_directive_decl] = STATE(824), + [sym_preproc_line] = STATE(824), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_y] = ACTIONS(2818), + [anon_sym_uy] = ACTIONS(2820), + [anon_sym_s] = ACTIONS(2822), + [anon_sym_us] = ACTIONS(2824), + [anon_sym_l] = ACTIONS(2826), + [aux_sym_uint32_token1] = ACTIONS(2828), + [anon_sym_n] = ACTIONS(2830), + [anon_sym_un] = ACTIONS(2832), + [anon_sym_L] = ACTIONS(2834), + [aux_sym_uint64_token1] = ACTIONS(2836), + [aux_sym_bignum_token1] = ACTIONS(2838), + [aux_sym_decimal_token1] = ACTIONS(2840), + [anon_sym_DOT2] = ACTIONS(2842), + [aux_sym_float_token1] = ACTIONS(2844), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -151211,6 +151553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2528), [anon_sym_let] = ACTIONS(2528), [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_as] = ACTIONS(2528), [anon_sym_LPAREN] = ACTIONS(2528), [anon_sym_COMMA] = ACTIONS(2526), [anon_sym_null] = ACTIONS(2528), @@ -151224,9 +151567,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_AT_AT_GT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -151281,22 +151624,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2798), - [anon_sym_uy] = ACTIONS(2800), - [anon_sym_s] = ACTIONS(2802), - [anon_sym_us] = ACTIONS(2804), - [anon_sym_l] = ACTIONS(2806), - [aux_sym_uint32_token1] = ACTIONS(2808), - [anon_sym_n] = ACTIONS(2810), - [anon_sym_un] = ACTIONS(2812), - [anon_sym_L] = ACTIONS(2814), - [aux_sym_uint64_token1] = ACTIONS(2816), - [aux_sym_bignum_token1] = ACTIONS(2818), - [aux_sym_decimal_token1] = ACTIONS(2820), - [anon_sym_DOT2] = ACTIONS(2822), - [aux_sym_float_token1] = ACTIONS(2824), + [anon_sym_y] = ACTIONS(2594), + [anon_sym_uy] = ACTIONS(2596), + [anon_sym_s] = ACTIONS(2598), + [anon_sym_us] = ACTIONS(2600), + [anon_sym_l] = ACTIONS(2602), + [aux_sym_uint32_token1] = ACTIONS(2604), + [anon_sym_n] = ACTIONS(2606), + [anon_sym_un] = ACTIONS(2608), + [anon_sym_L] = ACTIONS(2610), + [aux_sym_uint64_token1] = ACTIONS(2612), + [anon_sym_lf] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2848), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -151304,6 +151645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), + [sym__dedent] = ACTIONS(2526), }, [826] = { [sym_block_comment] = STATE(826), @@ -151330,6 +151672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_AT_AT_GT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), [anon_sym_new] = ACTIONS(2528), @@ -151386,29 +151729,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2826), - [anon_sym_uy] = ACTIONS(2828), - [anon_sym_s] = ACTIONS(2830), - [anon_sym_us] = ACTIONS(2832), - [anon_sym_l] = ACTIONS(2834), - [aux_sym_uint32_token1] = ACTIONS(2836), - [anon_sym_n] = ACTIONS(2838), - [anon_sym_un] = ACTIONS(2840), - [anon_sym_L] = ACTIONS(2842), - [aux_sym_uint64_token1] = ACTIONS(2844), - [aux_sym_bignum_token1] = ACTIONS(2846), - [aux_sym_decimal_token1] = ACTIONS(2848), - [anon_sym_DOT2] = ACTIONS(2850), - [aux_sym_float_token1] = ACTIONS(2852), + [anon_sym_y] = ACTIONS(2850), + [anon_sym_uy] = ACTIONS(2852), + [anon_sym_s] = ACTIONS(2854), + [anon_sym_us] = ACTIONS(2856), + [anon_sym_l] = ACTIONS(2858), + [aux_sym_uint32_token1] = ACTIONS(2860), + [anon_sym_n] = ACTIONS(2862), + [anon_sym_un] = ACTIONS(2864), + [anon_sym_L] = ACTIONS(2866), + [aux_sym_uint64_token1] = ACTIONS(2868), + [aux_sym_bignum_token1] = ACTIONS(2870), + [aux_sym_decimal_token1] = ACTIONS(2872), + [anon_sym_DOT2] = ACTIONS(2874), + [aux_sym_float_token1] = ACTIONS(2876), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, [827] = { @@ -151438,6 +151780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -151459,12 +151802,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(2528), [anon_sym_DOT_LBRACK] = ACTIONS(2526), [anon_sym_LT] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2528), [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_DOT_DOT2] = ACTIONS(2526), [anon_sym_or] = ACTIONS(2528), [aux_sym_char_token1] = ACTIONS(2526), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), @@ -151493,22 +151836,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2854), - [anon_sym_uy] = ACTIONS(2856), - [anon_sym_s] = ACTIONS(2858), - [anon_sym_us] = ACTIONS(2860), - [anon_sym_l] = ACTIONS(2862), - [aux_sym_uint32_token1] = ACTIONS(2864), - [anon_sym_n] = ACTIONS(2866), - [anon_sym_un] = ACTIONS(2868), - [anon_sym_L] = ACTIONS(2870), - [aux_sym_uint64_token1] = ACTIONS(2872), - [aux_sym_bignum_token1] = ACTIONS(2874), - [aux_sym_decimal_token1] = ACTIONS(2876), - [anon_sym_DOT2] = ACTIONS(2878), - [aux_sym_float_token1] = ACTIONS(2880), + [anon_sym_y] = ACTIONS(2650), + [anon_sym_uy] = ACTIONS(2652), + [anon_sym_s] = ACTIONS(2654), + [anon_sym_us] = ACTIONS(2656), + [anon_sym_l] = ACTIONS(2658), + [aux_sym_uint32_token1] = ACTIONS(2660), + [anon_sym_n] = ACTIONS(2662), + [anon_sym_un] = ACTIONS(2664), + [anon_sym_L] = ACTIONS(2666), + [aux_sym_uint64_token1] = ACTIONS(2668), + [anon_sym_lf] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2880), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -151516,83 +151857,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), + [sym__dedent] = ACTIONS(2526), }, [828] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), + [sym_type_arguments] = STATE(877), + [sym_long_identifier] = STATE(879), [sym_block_comment] = STATE(828), [sym_compiler_directive_decl] = STATE(828), [sym_fsi_directive_decl] = STATE(828), [sym_preproc_line] = STATE(828), [aux_sym_compound_type_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_GT_RBRACK] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_open] = ACTIONS(2886), + [anon_sym_LBRACK_LT] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_RBRACK] = ACTIONS(2884), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2884), [anon_sym_LT_AT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), - [anon_sym_to] = ACTIONS(2886), - [anon_sym_downto] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), [anon_sym_DASH_GT] = ACTIONS(2888), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_DOT_DOT2] = ACTIONS(2884), [anon_sym_STAR] = ACTIONS(2890), [anon_sym_LT2] = ACTIONS(2892), [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [anon_sym_exception] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -151601,208 +151943,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [829] = { - [sym_type_arguments] = STATE(885), - [sym_long_identifier] = STATE(889), [sym_block_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(852), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_open] = ACTIONS(2886), - [anon_sym_LBRACK_LT] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_exception] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token2] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_DASH_GT] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_y] = ACTIONS(2622), + [anon_sym_uy] = ACTIONS(2624), + [anon_sym_s] = ACTIONS(2626), + [anon_sym_us] = ACTIONS(2628), + [anon_sym_l] = ACTIONS(2630), + [aux_sym_uint32_token1] = ACTIONS(2632), + [anon_sym_n] = ACTIONS(2634), + [anon_sym_un] = ACTIONS(2636), + [anon_sym_L] = ACTIONS(2638), + [aux_sym_uint64_token1] = ACTIONS(2640), + [anon_sym_lf] = ACTIONS(2896), + [anon_sym_LF] = ACTIONS(2898), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2884), - [anon_sym_POUNDload] = ACTIONS(2884), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [830] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), + [sym_type_arguments] = STATE(877), + [sym_long_identifier] = STATE(879), [sym_block_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(866), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_GT_RBRACK] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2902), + [anon_sym_module] = ACTIONS(2902), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_open] = ACTIONS(2902), + [anon_sym_LBRACK_LT] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_LT2] = ACTIONS(2892), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2902), + [anon_sym_exception] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2900), + [anon_sym_POUNDload] = ACTIONS(2900), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [831] = { + [sym_type_arguments] = STATE(877), + [sym_long_identifier] = STATE(879), + [sym_block_comment] = STATE(831), + [sym_compiler_directive_decl] = STATE(831), + [sym_fsi_directive_decl] = STATE(831), + [sym_preproc_line] = STATE(831), + [aux_sym_compound_type_repeat1] = STATE(866), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_open] = ACTIONS(2906), + [anon_sym_LBRACK_LT] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_RBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2908), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_with] = ACTIONS(2906), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), - [anon_sym_to] = ACTIONS(2906), - [anon_sym_downto] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), [anon_sym_DASH_GT] = ACTIONS(2888), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_DOT_DOT2] = ACTIONS(2908), [anon_sym_STAR] = ACTIONS(2890), [anon_sym_LT2] = ACTIONS(2892), [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_exception] = ACTIONS(2906), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -151811,242 +152258,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2904), + [anon_sym_POUNDload] = ACTIONS(2904), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - }, - [831] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), - [sym_block_comment] = STATE(831), - [sym_compiler_directive_decl] = STATE(831), - [sym_fsi_directive_decl] = STATE(831), - [sym_preproc_line] = STATE(831), - [aux_sym_compound_type_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_GT_RBRACK] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_RBRACK] = ACTIONS(2910), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_to] = ACTIONS(2912), - [anon_sym_downto] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_DOT_DOT2] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LT2] = ACTIONS(2892), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, [832] = { - [sym_type_arguments] = STATE(885), - [sym_long_identifier] = STATE(889), + [sym_type_arguments] = STATE(877), + [sym_long_identifier] = STATE(879), [sym_block_comment] = STATE(832), [sym_compiler_directive_decl] = STATE(832), [sym_fsi_directive_decl] = STATE(832), [sym_preproc_line] = STATE(832), - [aux_sym_compound_type_repeat1] = STATE(852), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2916), - [anon_sym_module] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_open] = ACTIONS(2916), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_compound_type_repeat1] = STATE(866), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2910), + [anon_sym_module] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_open] = ACTIONS(2910), + [anon_sym_LBRACK_LT] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_LT2] = ACTIONS(2892), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2910), + [anon_sym_exception] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2908), + [anon_sym_POUNDload] = ACTIONS(2908), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), }, [833] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), [sym_block_comment] = STATE(833), [sym_compiler_directive_decl] = STATE(833), [sym_fsi_directive_decl] = STATE(833), [sym_preproc_line] = STATE(833), + [aux_sym_compound_type_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_GT_RBRACK] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_RBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_to] = ACTIONS(2910), + [anon_sym_downto] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_DOT_DOT2] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [834] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), + [sym_block_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(856), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_GT_RBRACK] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_RBRACK] = ACTIONS(2882), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_to] = ACTIONS(2886), + [anon_sym_downto] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [835] = { + [sym_type_arguments] = STATE(877), + [sym_long_identifier] = STATE(879), + [sym_block_comment] = STATE(835), + [sym_compiler_directive_decl] = STATE(835), + [sym_fsi_directive_decl] = STATE(835), + [sym_preproc_line] = STATE(835), + [aux_sym_compound_type_repeat1] = STATE(866), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_module] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_open] = ACTIONS(2924), + [anon_sym_LBRACK_LT] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(2888), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_LT2] = ACTIONS(2892), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2924), + [anon_sym_exception] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2922), + [anon_sym_POUNDload] = ACTIONS(2922), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [836] = { + [sym_block_comment] = STATE(836), + [sym_compiler_directive_decl] = STATE(836), + [sym_fsi_directive_decl] = STATE(836), + [sym_preproc_line] = STATE(836), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -152054,6 +152711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2528), [anon_sym_let] = ACTIONS(2528), [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_as] = ACTIONS(2528), [anon_sym_LPAREN] = ACTIONS(2528), [anon_sym_COMMA] = ACTIONS(2526), [anon_sym_null] = ACTIONS(2528), @@ -152069,6 +152727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), [anon_sym_new] = ACTIONS(2528), [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), @@ -152123,35 +152782,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2650), - [anon_sym_uy] = ACTIONS(2652), - [anon_sym_s] = ACTIONS(2654), - [anon_sym_us] = ACTIONS(2656), - [anon_sym_l] = ACTIONS(2658), - [aux_sym_uint32_token1] = ACTIONS(2660), - [anon_sym_n] = ACTIONS(2662), - [anon_sym_un] = ACTIONS(2664), - [anon_sym_L] = ACTIONS(2666), - [aux_sym_uint64_token1] = ACTIONS(2668), - [anon_sym_lf] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2920), + [anon_sym_y] = ACTIONS(2706), + [anon_sym_uy] = ACTIONS(2708), + [anon_sym_s] = ACTIONS(2710), + [anon_sym_us] = ACTIONS(2712), + [anon_sym_l] = ACTIONS(2714), + [aux_sym_uint32_token1] = ACTIONS(2716), + [anon_sym_n] = ACTIONS(2718), + [anon_sym_un] = ACTIONS(2720), + [anon_sym_L] = ACTIONS(2722), + [aux_sym_uint64_token1] = ACTIONS(2724), + [anon_sym_lf] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2928), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), - [anon_sym_POUNDelse] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [834] = { - [sym_block_comment] = STATE(834), - [sym_compiler_directive_decl] = STATE(834), - [sym_fsi_directive_decl] = STATE(834), - [sym_preproc_line] = STATE(834), + [837] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), + [sym_block_comment] = STATE(837), + [sym_compiler_directive_decl] = STATE(837), + [sym_fsi_directive_decl] = STATE(837), + [sym_preproc_line] = STATE(837), + [aux_sym_compound_type_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_GT_RBRACK] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(2914), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_DOT_DOT2] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [838] = { + [sym_block_comment] = STATE(838), + [sym_compiler_directive_decl] = STATE(838), + [sym_fsi_directive_decl] = STATE(838), + [sym_preproc_line] = STATE(838), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -152188,7 +152950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2528), [anon_sym_if] = ACTIONS(2528), [anon_sym_fun] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), [anon_sym_try] = ACTIONS(2528), [anon_sym_match] = ACTIONS(2528), [anon_sym_match_BANG] = ACTIONS(2526), @@ -152199,7 +152960,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -152230,209 +152990,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2622), - [anon_sym_uy] = ACTIONS(2624), - [anon_sym_s] = ACTIONS(2626), - [anon_sym_us] = ACTIONS(2628), - [anon_sym_l] = ACTIONS(2630), - [aux_sym_uint32_token1] = ACTIONS(2632), - [anon_sym_n] = ACTIONS(2634), - [anon_sym_un] = ACTIONS(2636), - [anon_sym_L] = ACTIONS(2638), - [aux_sym_uint64_token1] = ACTIONS(2640), - [anon_sym_lf] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2924), + [anon_sym_y] = ACTIONS(2678), + [anon_sym_uy] = ACTIONS(2680), + [anon_sym_s] = ACTIONS(2682), + [anon_sym_us] = ACTIONS(2684), + [anon_sym_l] = ACTIONS(2686), + [aux_sym_uint32_token1] = ACTIONS(2688), + [anon_sym_n] = ACTIONS(2690), + [anon_sym_un] = ACTIONS(2692), + [anon_sym_L] = ACTIONS(2694), + [aux_sym_uint64_token1] = ACTIONS(2696), + [anon_sym_lf] = ACTIONS(2930), + [anon_sym_LF] = ACTIONS(2932), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), + [anon_sym_POUNDelse] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [835] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), - [sym_block_comment] = STATE(835), - [sym_compiler_directive_decl] = STATE(835), - [sym_fsi_directive_decl] = STATE(835), - [sym_preproc_line] = STATE(835), - [aux_sym_compound_type_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_GT_RBRACK] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_RBRACK] = ACTIONS(2914), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_to] = ACTIONS(2916), - [anon_sym_downto] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_DOT_DOT2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LT2] = ACTIONS(2892), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [839] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), + [sym_block_comment] = STATE(839), + [sym_compiler_directive_decl] = STATE(839), + [sym_fsi_directive_decl] = STATE(839), + [sym_preproc_line] = STATE(839), + [aux_sym_compound_type_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_GT_RBRACK] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_RBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_to] = ACTIONS(2902), + [anon_sym_downto] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), }, - [836] = { - [sym_type_arguments] = STATE(885), - [sym_long_identifier] = STATE(889), - [sym_block_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(852), - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_open] = ACTIONS(2906), - [anon_sym_LBRACK_LT] = ACTIONS(2908), + [840] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), + [sym_block_comment] = STATE(840), + [sym_compiler_directive_decl] = STATE(840), + [sym_fsi_directive_decl] = STATE(840), + [sym_preproc_line] = STATE(840), + [aux_sym_compound_type_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_GT_RBRACK] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2904), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2906), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), + [anon_sym_to] = ACTIONS(2906), + [anon_sym_downto] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(2898), + [anon_sym_DASH_GT] = ACTIONS(2914), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2904), + [anon_sym_DOT_DOT2] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), [anon_sym_or] = ACTIONS(2906), - [anon_sym_exception] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -152441,446 +153203,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2908), - [anon_sym_POUNDload] = ACTIONS(2908), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - }, - [837] = { - [sym_type_arguments] = STATE(885), - [sym_long_identifier] = STATE(889), - [sym_block_comment] = STATE(837), - [sym_compiler_directive_decl] = STATE(837), - [sym_fsi_directive_decl] = STATE(837), - [sym_preproc_line] = STATE(837), - [aux_sym_compound_type_repeat1] = STATE(852), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_open] = ACTIONS(2928), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2928), - [anon_sym_exception] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, - [838] = { - [sym_block_comment] = STATE(838), - [sym_compiler_directive_decl] = STATE(838), - [sym_fsi_directive_decl] = STATE(838), - [sym_preproc_line] = STATE(838), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2706), - [anon_sym_uy] = ACTIONS(2708), - [anon_sym_s] = ACTIONS(2710), - [anon_sym_us] = ACTIONS(2712), - [anon_sym_l] = ACTIONS(2714), - [aux_sym_uint32_token1] = ACTIONS(2716), - [anon_sym_n] = ACTIONS(2718), - [anon_sym_un] = ACTIONS(2720), - [anon_sym_L] = ACTIONS(2722), - [aux_sym_uint64_token1] = ACTIONS(2724), - [anon_sym_lf] = ACTIONS(2930), - [anon_sym_LF] = ACTIONS(2932), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - }, - [839] = { - [sym_type_arguments] = STATE(885), - [sym_long_identifier] = STATE(889), - [sym_block_comment] = STATE(839), - [sym_compiler_directive_decl] = STATE(839), - [sym_fsi_directive_decl] = STATE(839), - [sym_preproc_line] = STATE(839), - [aux_sym_compound_type_repeat1] = STATE(852), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2912), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_open] = ACTIONS(2912), - [anon_sym_LBRACK_LT] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2902), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_exception] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2910), - [anon_sym_POUNDload] = ACTIONS(2910), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - }, - [840] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), - [sym_block_comment] = STATE(840), - [sym_compiler_directive_decl] = STATE(840), - [sym_fsi_directive_decl] = STATE(840), - [sym_preproc_line] = STATE(840), - [aux_sym_compound_type_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_to] = ACTIONS(2928), - [anon_sym_downto] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LT2] = ACTIONS(2892), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, [841] = { [sym_block_comment] = STATE(841), @@ -152933,7 +153275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -152964,26 +153305,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2742), - [anon_sym_uy] = ACTIONS(2744), - [anon_sym_s] = ACTIONS(2746), - [anon_sym_us] = ACTIONS(2748), - [anon_sym_l] = ACTIONS(2750), - [aux_sym_uint32_token1] = ACTIONS(2752), - [anon_sym_n] = ACTIONS(2754), - [anon_sym_un] = ACTIONS(2756), - [anon_sym_L] = ACTIONS(2758), - [aux_sym_uint64_token1] = ACTIONS(2760), + [anon_sym_y] = ACTIONS(2734), + [anon_sym_uy] = ACTIONS(2736), + [anon_sym_s] = ACTIONS(2738), + [anon_sym_us] = ACTIONS(2740), + [anon_sym_l] = ACTIONS(2742), + [aux_sym_uint32_token1] = ACTIONS(2744), + [anon_sym_n] = ACTIONS(2746), + [anon_sym_un] = ACTIONS(2748), + [anon_sym_L] = ACTIONS(2750), + [aux_sym_uint64_token1] = ACTIONS(2752), [anon_sym_lf] = ACTIONS(2934), [anon_sym_LF] = ACTIONS(2936), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, [842] = { @@ -153010,8 +153352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2526), [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_AT_GT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_AT_AT_GT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), [anon_sym_new] = ACTIONS(2528), @@ -153068,20 +153410,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2798), - [anon_sym_uy] = ACTIONS(2800), - [anon_sym_s] = ACTIONS(2802), - [anon_sym_us] = ACTIONS(2804), - [anon_sym_l] = ACTIONS(2806), - [aux_sym_uint32_token1] = ACTIONS(2808), - [anon_sym_n] = ACTIONS(2810), - [anon_sym_un] = ACTIONS(2812), - [anon_sym_L] = ACTIONS(2814), - [aux_sym_uint64_token1] = ACTIONS(2816), + [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(2938), [anon_sym_LF] = ACTIONS(2940), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -153138,6 +153480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(2528), [anon_sym_DOT_LBRACK] = ACTIONS(2526), [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2528), [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), @@ -153171,27 +153514,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2826), - [anon_sym_uy] = ACTIONS(2828), - [anon_sym_s] = ACTIONS(2830), - [anon_sym_us] = ACTIONS(2832), - [anon_sym_l] = ACTIONS(2834), - [aux_sym_uint32_token1] = ACTIONS(2836), - [anon_sym_n] = ACTIONS(2838), - [anon_sym_un] = ACTIONS(2840), - [anon_sym_L] = ACTIONS(2842), - [aux_sym_uint64_token1] = ACTIONS(2844), + [anon_sym_y] = ACTIONS(2818), + [anon_sym_uy] = ACTIONS(2820), + [anon_sym_s] = ACTIONS(2822), + [anon_sym_us] = ACTIONS(2824), + [anon_sym_l] = ACTIONS(2826), + [aux_sym_uint32_token1] = ACTIONS(2828), + [anon_sym_n] = ACTIONS(2830), + [anon_sym_un] = ACTIONS(2832), + [anon_sym_L] = ACTIONS(2834), + [aux_sym_uint64_token1] = ACTIONS(2836), [anon_sym_lf] = ACTIONS(2942), [anon_sym_LF] = ACTIONS(2944), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, [844] = { @@ -153218,7 +153560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2526), [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_AT_GT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), @@ -153246,6 +153587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -153276,20 +153618,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2770), - [anon_sym_uy] = ACTIONS(2772), - [anon_sym_s] = ACTIONS(2774), - [anon_sym_us] = ACTIONS(2776), - [anon_sym_l] = ACTIONS(2778), - [aux_sym_uint32_token1] = ACTIONS(2780), - [anon_sym_n] = ACTIONS(2782), - [anon_sym_un] = ACTIONS(2784), - [anon_sym_L] = ACTIONS(2786), - [aux_sym_uint64_token1] = ACTIONS(2788), + [anon_sym_y] = ACTIONS(2790), + [anon_sym_uy] = ACTIONS(2792), + [anon_sym_s] = ACTIONS(2794), + [anon_sym_us] = ACTIONS(2796), + [anon_sym_l] = ACTIONS(2798), + [aux_sym_uint32_token1] = ACTIONS(2800), + [anon_sym_n] = ACTIONS(2802), + [anon_sym_un] = ACTIONS(2804), + [anon_sym_L] = ACTIONS(2806), + [aux_sym_uint64_token1] = ACTIONS(2808), [anon_sym_lf] = ACTIONS(2946), [anon_sym_LF] = ACTIONS(2948), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -153323,6 +153665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2528), [anon_sym_LT_AT] = ACTIONS(2528), [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_AT_AT_GT] = ACTIONS(2528), [anon_sym_DOT] = ACTIONS(2528), [anon_sym_LBRACE_PIPE] = ACTIONS(2526), [anon_sym_new] = ACTIONS(2528), @@ -153346,7 +153689,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(2528), [anon_sym_DOT_LBRACK] = ACTIONS(2526), [anon_sym_LT] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2528), [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), @@ -153380,20 +153722,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(2854), - [anon_sym_uy] = ACTIONS(2856), - [anon_sym_s] = ACTIONS(2858), - [anon_sym_us] = ACTIONS(2860), - [anon_sym_l] = ACTIONS(2862), - [aux_sym_uint32_token1] = ACTIONS(2864), - [anon_sym_n] = ACTIONS(2866), - [anon_sym_un] = ACTIONS(2868), - [anon_sym_L] = ACTIONS(2870), - [aux_sym_uint64_token1] = ACTIONS(2872), + [anon_sym_y] = ACTIONS(2850), + [anon_sym_uy] = ACTIONS(2852), + [anon_sym_s] = ACTIONS(2854), + [anon_sym_us] = ACTIONS(2856), + [anon_sym_l] = ACTIONS(2858), + [aux_sym_uint32_token1] = ACTIONS(2860), + [anon_sym_n] = ACTIONS(2862), + [anon_sym_un] = ACTIONS(2864), + [anon_sym_L] = ACTIONS(2866), + [aux_sym_uint64_token1] = ACTIONS(2868), [anon_sym_lf] = ACTIONS(2950), [anon_sym_LF] = ACTIONS(2952), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -153407,796 +153749,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(846), [sym_fsi_directive_decl] = STATE(846), [sym_preproc_line] = STATE(846), - [aux_sym_compound_type_repeat1] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_namespace] = ACTIONS(2916), - [anon_sym_module] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_open] = ACTIONS(2916), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_long_identifier_repeat1] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_open] = ACTIONS(2956), + [anon_sym_LBRACK_LT] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [anon_sym_exception] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2954), + [anon_sym_POUNDload] = ACTIONS(2954), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [847] = { [sym_block_comment] = STATE(847), [sym_compiler_directive_decl] = STATE(847), [sym_fsi_directive_decl] = STATE(847), [sym_preproc_line] = STATE(847), - [aux_sym_long_identifier_repeat1] = STATE(849), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [aux_sym_type_argument_repeat1] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_module] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_open] = ACTIONS(2962), + [anon_sym_LBRACK_LT] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_exception] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2960), + [anon_sym_POUNDload] = ACTIONS(2960), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [848] = { - [sym__else_expression] = STATE(1093), - [sym_elif_expression] = STATE(919), [sym_block_comment] = STATE(848), [sym_compiler_directive_decl] = STATE(848), [sym_fsi_directive_decl] = STATE(848), [sym_preproc_line] = STATE(848), - [aux_sym_if_expression_repeat1] = STATE(860), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_GT_RBRACK] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_to] = ACTIONS(2963), - [anon_sym_downto] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_elif] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_DOT_DOT2] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [aux_sym_long_identifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2968), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_to] = ACTIONS(2964), + [anon_sym_downto] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [849] = { + [sym__else_expression] = STATE(1046), + [sym_elif_expression] = STATE(926), [sym_block_comment] = STATE(849), [sym_compiler_directive_decl] = STATE(849), [sym_fsi_directive_decl] = STATE(849), [sym_preproc_line] = STATE(849), - [aux_sym_long_identifier_repeat1] = STATE(855), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_module] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2973), - [anon_sym_LBRACK_LT] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [anon_sym_exception] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2971), - [anon_sym_POUNDload] = ACTIONS(2971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [aux_sym_if_expression_repeat1] = STATE(854), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_GT_RBRACK] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_to] = ACTIONS(2971), + [anon_sym_downto] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2975), + [anon_sym_elif] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_DOT_DOT2] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [850] = { [sym_block_comment] = STATE(850), [sym_compiler_directive_decl] = STATE(850), [sym_fsi_directive_decl] = STATE(850), [sym_preproc_line] = STATE(850), - [aux_sym_type_argument_repeat1] = STATE(850), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_module] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2977), - [anon_sym_LBRACK_LT] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2979), - [anon_sym_exception] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2975), - [anon_sym_POUNDload] = ACTIONS(2975), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [aux_sym_type_argument_repeat1] = STATE(865), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_GT_RBRACK] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2981), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_DOT_DOT2] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2983), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [851] = { [sym_block_comment] = STATE(851), [sym_compiler_directive_decl] = STATE(851), [sym_fsi_directive_decl] = STATE(851), [sym_preproc_line] = STATE(851), - [aux_sym_long_identifier_repeat1] = STATE(853), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_GT_RBRACK] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_RBRACK] = ACTIONS(2971), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2982), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_to] = ACTIONS(2973), - [anon_sym_downto] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_DOT_DOT2] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [852] = { - [sym_block_comment] = STATE(852), - [sym_compiler_directive_decl] = STATE(852), - [sym_fsi_directive_decl] = STATE(852), - [sym_preproc_line] = STATE(852), - [aux_sym_compound_type_repeat1] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [anon_sym_exception] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2984), - [anon_sym_POUNDload] = ACTIONS(2984), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - }, - [853] = { - [sym_block_comment] = STATE(853), - [sym_compiler_directive_decl] = STATE(853), - [sym_fsi_directive_decl] = STATE(853), - [sym_preproc_line] = STATE(853), - [aux_sym_long_identifier_repeat1] = STATE(853), + [aux_sym_long_identifier_repeat1] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2990), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), - [anon_sym_to] = ACTIONS(2988), - [anon_sym_downto] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_exception] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -154205,204 +154341,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + }, + [852] = { + [sym_block_comment] = STATE(852), + [sym_compiler_directive_decl] = STATE(852), + [sym_fsi_directive_decl] = STATE(852), + [sym_preproc_line] = STATE(852), + [aux_sym_type_argument_repeat1] = STATE(852), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_DOT_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(2994), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [853] = { + [sym_block_comment] = STATE(853), + [sym_compiler_directive_decl] = STATE(853), + [sym_fsi_directive_decl] = STATE(853), + [sym_preproc_line] = STATE(853), + [aux_sym_long_identifier_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_GT_RBRACK] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(3000), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_to] = ACTIONS(2997), + [anon_sym_downto] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_DOT_DOT2] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [854] = { + [sym__else_expression] = STATE(1075), + [sym_elif_expression] = STATE(926), [sym_block_comment] = STATE(854), [sym_compiler_directive_decl] = STATE(854), [sym_fsi_directive_decl] = STATE(854), [sym_preproc_line] = STATE(854), - [aux_sym_type_argument_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_GT_RBRACK] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_to] = ACTIONS(2977), - [anon_sym_downto] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_DOT_DOT2] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2995), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [aux_sym_if_expression_repeat1] = STATE(897), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_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_else] = ACTIONS(2975), + [anon_sym_elif] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [anon_sym_DOT_DOT2] = 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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [855] = { [sym_block_comment] = STATE(855), [sym_compiler_directive_decl] = STATE(855), [sym_fsi_directive_decl] = STATE(855), [sym_preproc_line] = STATE(855), - [aux_sym_long_identifier_repeat1] = STATE(855), - [ts_builtin_sym_end] = ACTIONS(2990), + [aux_sym_long_identifier_repeat1] = STATE(859), [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_GT_RBRACK] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2986), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), + [anon_sym_to] = ACTIONS(2988), + [anon_sym_downto] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_DOT_DOT2] = ACTIONS(2986), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -154411,1262 +154753,1262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, [856] = { [sym_block_comment] = STATE(856), [sym_compiler_directive_decl] = STATE(856), [sym_fsi_directive_decl] = STATE(856), [sym_preproc_line] = STATE(856), - [aux_sym_long_identifier_repeat1] = STATE(849), - [ts_builtin_sym_end] = ACTIONS(3001), - [sym_identifier] = ACTIONS(3004), - [anon_sym_namespace] = ACTIONS(3004), - [anon_sym_module] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_LBRACK_LT] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [anon_sym_exception] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3001), - [anon_sym_POUNDload] = ACTIONS(3001), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [857] = { - [sym_block_comment] = STATE(857), - [sym_compiler_directive_decl] = STATE(857), - [sym_fsi_directive_decl] = STATE(857), - [sym_preproc_line] = STATE(857), - [aux_sym_long_identifier_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_GT_RBRACK] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_to] = ACTIONS(3004), - [anon_sym_downto] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [858] = { - [sym_block_comment] = STATE(858), - [sym_compiler_directive_decl] = STATE(858), - [sym_fsi_directive_decl] = STATE(858), - [sym_preproc_line] = STATE(858), - [aux_sym_long_identifier_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_GT_RBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2982), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_to] = ACTIONS(2959), - [anon_sym_downto] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_DOT_DOT2] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - }, - [859] = { - [sym_block_comment] = STATE(859), - [sym_compiler_directive_decl] = STATE(859), - [sym_fsi_directive_decl] = STATE(859), - [sym_preproc_line] = STATE(859), - [aux_sym_type_argument_repeat1] = STATE(850), - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_namespace] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), + [aux_sym_compound_type_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(3013), [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [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_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(3017), + [anon_sym_LPAREN] = ACTIONS(3013), [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), + [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(3017), + [anon_sym_AMP] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_RBRACK] = ACTIONS(3015), [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), + [anon_sym_yield] = ACTIONS(3013), [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), + [anon_sym_lazy] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_upcast] = ACTIONS(3013), + [anon_sym_downcast] = ACTIONS(3013), [anon_sym_COLON_GT] = ACTIONS(3015), [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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_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(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), [anon_sym_DOT_LBRACK] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), + [anon_sym_use] = ACTIONS(3013), [anon_sym_use_BANG] = ACTIONS(3015), [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), + [anon_sym_begin] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3013), + [anon_sym_DOT_DOT2] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(3013), [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [anon_sym_exception] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3013), [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), + [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(3017), + [sym_bool] = ACTIONS(3013), [sym_unit] = ACTIONS(3015), - [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_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(3017), + [aux_sym_prefix_op_token1] = ACTIONS(3013), [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), + [aux_sym_infix_op_token2] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3013), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), + [sym_int] = ACTIONS(3013), [sym_xint] = ACTIONS(3015), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3015), [sym__newline] = ACTIONS(3015), }, + [857] = { + [sym_block_comment] = STATE(857), + [sym_compiler_directive_decl] = STATE(857), + [sym_fsi_directive_decl] = STATE(857), + [sym_preproc_line] = STATE(857), + [aux_sym_long_identifier_repeat1] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_open] = ACTIONS(2997), + [anon_sym_LBRACK_LT] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_exception] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3000), + [anon_sym_POUNDload] = ACTIONS(3000), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [858] = { + [sym_block_comment] = STATE(858), + [sym_compiler_directive_decl] = STATE(858), + [sym_fsi_directive_decl] = STATE(858), + [sym_preproc_line] = STATE(858), + [aux_sym_long_identifier_repeat1] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3021), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [859] = { + [sym_block_comment] = STATE(859), + [sym_compiler_directive_decl] = STATE(859), + [sym_fsi_directive_decl] = STATE(859), + [sym_preproc_line] = STATE(859), + [aux_sym_long_identifier_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_GT_RBRACK] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_RBRACK] = ACTIONS(2954), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_to] = ACTIONS(2956), + [anon_sym_downto] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_DOT_DOT2] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, [860] = { - [sym__else_expression] = STATE(1054), - [sym_elif_expression] = STATE(919), + [sym__else_expression] = STATE(1231), + [sym_elif_expression] = STATE(936), [sym_block_comment] = STATE(860), [sym_compiler_directive_decl] = STATE(860), [sym_fsi_directive_decl] = STATE(860), [sym_preproc_line] = STATE(860), - [aux_sym_if_expression_repeat1] = STATE(894), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_GT_RBRACK] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_to] = ACTIONS(3019), - [anon_sym_downto] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_elif] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_DOT_DOT2] = ACTIONS(3021), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [aux_sym_if_expression_repeat1] = STATE(891), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_elif] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [anon_sym_or] = ACTIONS(3007), + [anon_sym_exception] = 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(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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3009), + [anon_sym_POUNDload] = ACTIONS(3009), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [861] = { + [sym__else_expression] = STATE(1114), + [sym_elif_expression] = STATE(936), [sym_block_comment] = STATE(861), [sym_compiler_directive_decl] = STATE(861), [sym_fsi_directive_decl] = STATE(861), [sym_preproc_line] = STATE(861), - [aux_sym_type_argument_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_GT_RBRACK] = ACTIONS(3015), - [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(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_DOT_DOT2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), + [aux_sym_if_expression_repeat1] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_module] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_open] = ACTIONS(2971), + [anon_sym_LBRACK_LT] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_elif] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [anon_sym_exception] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2973), + [anon_sym_POUNDload] = ACTIONS(2973), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [862] = { [sym_block_comment] = STATE(862), [sym_compiler_directive_decl] = STATE(862), [sym_fsi_directive_decl] = STATE(862), [sym_preproc_line] = STATE(862), - [aux_sym_compound_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_GT_RBRACK] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_RBRACK] = ACTIONS(2914), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_to] = ACTIONS(2916), - [anon_sym_downto] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_DOT_DOT2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_type_argument_repeat1] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_open] = ACTIONS(2979), + [anon_sym_LBRACK_LT] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3028), + [anon_sym_exception] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2981), + [anon_sym_POUNDload] = ACTIONS(2981), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [863] = { [sym_block_comment] = STATE(863), [sym_compiler_directive_decl] = STATE(863), [sym_fsi_directive_decl] = STATE(863), [sym_preproc_line] = STATE(863), - [aux_sym_type_argument_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_GT_RBRACK] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_RBRACK] = ACTIONS(3028), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3028), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_to] = ACTIONS(3026), - [anon_sym_downto] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3030), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_type_argument_repeat1] = STATE(863), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_exception] = 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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2992), + [anon_sym_POUNDload] = ACTIONS(2992), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [864] = { [sym_block_comment] = STATE(864), [sym_compiler_directive_decl] = STATE(864), [sym_fsi_directive_decl] = STATE(864), [sym_preproc_line] = STATE(864), - [aux_sym_type_argument_repeat1] = STATE(859), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3033), - [anon_sym_exception] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_compound_type_repeat1] = STATE(864), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_open] = ACTIONS(2886), + [anon_sym_LBRACK_LT] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [anon_sym_exception] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [865] = { - [sym__else_expression] = STATE(1231), - [sym_elif_expression] = STATE(948), [sym_block_comment] = STATE(865), [sym_compiler_directive_decl] = STATE(865), [sym_fsi_directive_decl] = STATE(865), [sym_preproc_line] = STATE(865), - [aux_sym_if_expression_repeat1] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_LBRACK_LT] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_elif] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [anon_sym_exception] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3021), - [anon_sym_POUNDload] = ACTIONS(3021), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [aux_sym_type_argument_repeat1] = STATE(852), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_GT_RBRACK] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_RBRACK] = ACTIONS(2960), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2960), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_to] = ACTIONS(2962), + [anon_sym_downto] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_DOT_DOT2] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [866] = { [sym_block_comment] = STATE(866), [sym_compiler_directive_decl] = STATE(866), [sym_fsi_directive_decl] = STATE(866), [sym_preproc_line] = STATE(866), - [aux_sym_compound_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym_GT_RBRACK] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_RBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DOT_DOT2] = ACTIONS(2984), + [aux_sym_compound_type_repeat1] = STATE(864), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [anon_sym_LT2] = ACTIONS(3013), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3013), + [anon_sym_exception] = 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(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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3015), + [anon_sym_POUNDload] = ACTIONS(3015), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), }, [867] = { - [sym__else_expression] = STATE(1131), - [sym_elif_expression] = STATE(948), [sym_block_comment] = STATE(867), [sym_compiler_directive_decl] = STATE(867), [sym_fsi_directive_decl] = STATE(867), [sym_preproc_line] = STATE(867), - [aux_sym_if_expression_repeat1] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2963), - [anon_sym_namespace] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_LBRACK_LT] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_elif] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_exception] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2965), - [anon_sym_POUNDload] = ACTIONS(2965), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [aux_sym_compound_type_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_GT_RBRACK] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_RBRACK] = ACTIONS(2882), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_to] = ACTIONS(2886), + [anon_sym_downto] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [868] = { [sym_block_comment] = STATE(868), @@ -155761,7 +156103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3042), [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3040), @@ -155775,204 +156117,204 @@ 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), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_GT_RBRACK] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_to] = ACTIONS(3044), - [anon_sym_downto] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_DOT_DOT2] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_to] = ACTIONS(2964), + [anon_sym_downto] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [870] = { [sym_block_comment] = STATE(870), [sym_compiler_directive_decl] = STATE(870), [sym_fsi_directive_decl] = STATE(870), [sym_preproc_line] = STATE(870), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_GT_RBRACK] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_to] = ACTIONS(3042), - [anon_sym_downto] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_DOT_DOT2] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_open] = ACTIONS(3046), + [anon_sym_LBRACK_LT] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [anon_sym_exception] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3044), + [anon_sym_POUNDload] = ACTIONS(3044), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, [871] = { [sym_block_comment] = STATE(871), @@ -155982,33 +156324,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(3048), [anon_sym_EQ] = ACTIONS(3050), [anon_sym_GT_RBRACK] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), [anon_sym_COMMA] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_RBRACE] = ACTIONS(3050), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3052), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), @@ -156016,37 +156358,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(3050), [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), [anon_sym_for] = ACTIONS(3048), - [anon_sym_to] = ACTIONS(3048), - [anon_sym_downto] = ACTIONS(3048), + [anon_sym_to] = ACTIONS(3052), + [anon_sym_downto] = ACTIONS(3052), [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), [anon_sym_fun] = ACTIONS(3048), [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_LT] = ACTIONS(3050), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), [anon_sym_DOT_DOT2] = ACTIONS(3050), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -156055,25 +156397,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), [sym__newline] = ACTIONS(3050), }, [872] = { @@ -156081,650 +156423,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(872), [sym_fsi_directive_decl] = STATE(872), [sym_preproc_line] = STATE(872), - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_module] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3054), - [anon_sym_LBRACK_LT] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_exception] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3052), - [anon_sym_POUNDload] = ACTIONS(3052), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3060), + [anon_sym_LBRACK_LT] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_exception] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3058), + [anon_sym_POUNDload] = ACTIONS(3058), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [873] = { [sym_block_comment] = STATE(873), [sym_compiler_directive_decl] = STATE(873), [sym_fsi_directive_decl] = STATE(873), [sym_preproc_line] = STATE(873), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_GT_RBRACK] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_RBRACK] = ACTIONS(3028), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3028), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_to] = ACTIONS(3026), - [anon_sym_downto] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3060), + [anon_sym_LBRACK_LT] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [anon_sym_exception] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3058), + [anon_sym_POUNDload] = ACTIONS(3058), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [874] = { [sym_block_comment] = STATE(874), [sym_compiler_directive_decl] = STATE(874), [sym_fsi_directive_decl] = STATE(874), [sym_preproc_line] = STATE(874), - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_module] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3058), - [anon_sym_LBRACK_LT] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3060), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_exception] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_GT_RBRACK] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_to] = ACTIONS(3062), + [anon_sym_downto] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3056), - [anon_sym_POUNDload] = ACTIONS(3056), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [875] = { [sym_block_comment] = STATE(875), [sym_compiler_directive_decl] = STATE(875), [sym_fsi_directive_decl] = STATE(875), [sym_preproc_line] = STATE(875), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_exception] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_namespace] = ACTIONS(3068), + [anon_sym_module] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_open] = ACTIONS(3068), + [anon_sym_LBRACK_LT] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [anon_sym_exception] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), + [anon_sym_POUNDr] = ACTIONS(3066), + [anon_sym_POUNDload] = ACTIONS(3066), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, [876] = { [sym_block_comment] = STATE(876), [sym_compiler_directive_decl] = STATE(876), [sym_fsi_directive_decl] = STATE(876), [sym_preproc_line] = STATE(876), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_exception] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_DOT_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [877] = { [sym_block_comment] = STATE(877), [sym_compiler_directive_decl] = STATE(877), [sym_fsi_directive_decl] = STATE(877), [sym_preproc_line] = STATE(877), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_GT_RBRACK] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_RBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_to] = ACTIONS(3066), - [anon_sym_downto] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_DOT_DOT2] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - }, - [878] = { - [sym_block_comment] = STATE(878), - [sym_compiler_directive_decl] = STATE(878), - [sym_fsi_directive_decl] = STATE(878), - [sym_preproc_line] = STATE(878), [ts_builtin_sym_end] = ACTIONS(3070), [sym_identifier] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3072), + [anon_sym_module] = ACTIONS(3072), [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3072), [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -156738,29 +156978,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3072), [anon_sym_DOT_LBRACK] = ACTIONS(3070), [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [anon_sym_exception] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [anon_sym_exception] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -156769,610 +157009,916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3070), [anon_sym_POUNDload] = ACTIONS(3070), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), [sym__newline] = ACTIONS(3070), }, + [878] = { + [sym_block_comment] = STATE(878), + [sym_compiler_directive_decl] = STATE(878), + [sym_fsi_directive_decl] = STATE(878), + [sym_preproc_line] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_LBRACK_LT] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [anon_sym_exception] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3074), + [anon_sym_POUNDload] = ACTIONS(3074), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), + }, [879] = { [sym_block_comment] = STATE(879), [sym_compiler_directive_decl] = STATE(879), [sym_fsi_directive_decl] = STATE(879), [sym_preproc_line] = STATE(879), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_GT_RBRACK] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_to] = ACTIONS(3054), - [anon_sym_downto] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_DOT_DOT2] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_module] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_LBRACK_LT] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [anon_sym_exception] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3054), + [anon_sym_POUNDload] = ACTIONS(3054), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [880] = { [sym_block_comment] = STATE(880), [sym_compiler_directive_decl] = STATE(880), [sym_fsi_directive_decl] = STATE(880), [sym_preproc_line] = STATE(880), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_GT_RBRACK] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_to] = ACTIONS(2977), - [anon_sym_downto] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_DOT_DOT2] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_GT_RBRACK] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3080), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_to] = ACTIONS(3078), + [anon_sym_downto] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_DOT_DOT2] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), }, [881] = { [sym_block_comment] = STATE(881), [sym_compiler_directive_decl] = STATE(881), [sym_fsi_directive_decl] = STATE(881), [sym_preproc_line] = STATE(881), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_GT_RBRACK] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_RBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_to] = ACTIONS(3058), - [anon_sym_downto] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_DOT_DOT2] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3080), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_GT_RBRACK] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2981), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_DOT_DOT2] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [882] = { [sym_block_comment] = STATE(882), [sym_compiler_directive_decl] = STATE(882), [sym_fsi_directive_decl] = STATE(882), [sym_preproc_line] = STATE(882), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_GT_RBRACK] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_to] = ACTIONS(3082), - [anon_sym_downto] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_DOT_DOT2] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(2990), + [anon_sym_exception] = 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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2992), + [anon_sym_POUNDload] = ACTIONS(2992), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [883] = { [sym_block_comment] = STATE(883), [sym_compiler_directive_decl] = STATE(883), [sym_fsi_directive_decl] = STATE(883), [sym_preproc_line] = STATE(883), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_GT_RBRACK] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_to] = ACTIONS(3064), - [anon_sym_downto] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_namespace] = ACTIONS(3084), + [anon_sym_module] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_LBRACK_LT] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3086), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [anon_sym_exception] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3082), + [anon_sym_POUNDload] = ACTIONS(3082), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, [884] = { - [sym_elif_expression] = STATE(948), [sym_block_comment] = STATE(884), [sym_compiler_directive_decl] = STATE(884), [sym_fsi_directive_decl] = STATE(884), [sym_preproc_line] = STATE(884), - [aux_sym_if_expression_repeat1] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(3086), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_module] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_LBRACK_LT] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_type] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [anon_sym_exception] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3080), + [anon_sym_POUNDload] = ACTIONS(3080), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [885] = { + [sym_block_comment] = STATE(885), + [sym_compiler_directive_decl] = STATE(885), + [sym_fsi_directive_decl] = STATE(885), + [sym_preproc_line] = STATE(885), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_GT_RBRACK] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_to] = ACTIONS(3046), + [anon_sym_downto] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_DOT_DOT2] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + }, + [886] = { + [sym_block_comment] = STATE(886), + [sym_compiler_directive_decl] = STATE(886), + [sym_fsi_directive_decl] = STATE(886), + [sym_preproc_line] = STATE(886), [sym_identifier] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_module] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_LBRACK_LT] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_GT_RBRACK] = ACTIONS(3090), [anon_sym_COLON] = ACTIONS(3088), [anon_sym_return] = ACTIONS(3088), - [anon_sym_type] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), + [anon_sym_let_BANG] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_RBRACE] = ACTIONS(3090), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), + [anon_sym_to] = ACTIONS(3088), + [anon_sym_downto] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3090), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_DOT_DOT2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [anon_sym_exception] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -157381,1018 +157927,814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3086), - [anon_sym_POUNDload] = ACTIONS(3086), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - }, - [885] = { - [sym_block_comment] = STATE(885), - [sym_compiler_directive_decl] = STATE(885), - [sym_fsi_directive_decl] = STATE(885), - [sym_preproc_line] = STATE(885), - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_LBRACK_LT] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [anon_sym_exception] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3084), - [anon_sym_POUNDload] = ACTIONS(3084), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - }, - [886] = { - [sym_block_comment] = STATE(886), - [sym_compiler_directive_decl] = STATE(886), - [sym_fsi_directive_decl] = STATE(886), - [sym_preproc_line] = STATE(886), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_GT_RBRACK] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_to] = ACTIONS(3093), - [anon_sym_downto] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_DOT_DOT2] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [887] = { [sym_block_comment] = STATE(887), [sym_compiler_directive_decl] = STATE(887), [sym_fsi_directive_decl] = STATE(887), [sym_preproc_line] = STATE(887), - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_LBRACK_LT] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [anon_sym_exception] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3097), - [anon_sym_POUNDload] = ACTIONS(3097), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = 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_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_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_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(3092), + [anon_sym_DOT_DOT2] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, [888] = { [sym_block_comment] = STATE(888), [sym_compiler_directive_decl] = STATE(888), [sym_fsi_directive_decl] = STATE(888), [sym_preproc_line] = STATE(888), - [ts_builtin_sym_end] = ACTIONS(3046), - [sym_identifier] = ACTIONS(3044), - [anon_sym_namespace] = ACTIONS(3044), - [anon_sym_module] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_LBRACK_LT] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_exception] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_GT_RBRACK] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_to] = ACTIONS(3076), + [anon_sym_downto] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_DOT_DOT2] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3046), - [anon_sym_POUNDload] = ACTIONS(3046), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, [889] = { [sym_block_comment] = STATE(889), [sym_compiler_directive_decl] = STATE(889), [sym_fsi_directive_decl] = STATE(889), [sym_preproc_line] = STATE(889), - [ts_builtin_sym_end] = ACTIONS(3076), - [sym_identifier] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_open] = ACTIONS(3072), - [anon_sym_LBRACK_LT] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_exception] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3076), - [anon_sym_POUNDload] = ACTIONS(3076), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_open] = ACTIONS(2979), + [anon_sym_LBRACK_LT] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [anon_sym_exception] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2981), + [anon_sym_POUNDload] = ACTIONS(2981), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [890] = { [sym_block_comment] = STATE(890), [sym_compiler_directive_decl] = STATE(890), [sym_fsi_directive_decl] = STATE(890), [sym_preproc_line] = STATE(890), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_GT_RBRACK] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3097), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_to] = ACTIONS(3099), - [anon_sym_downto] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_DOT_DOT2] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_GT_RBRACK] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_to] = ACTIONS(3096), + [anon_sym_downto] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_DOT_DOT2] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, [891] = { + [sym_elif_expression] = STATE(936), [sym_block_comment] = STATE(891), [sym_compiler_directive_decl] = STATE(891), [sym_fsi_directive_decl] = STATE(891), [sym_preproc_line] = STATE(891), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_GT_RBRACK] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_to] = ACTIONS(3064), - [anon_sym_downto] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [aux_sym_if_expression_repeat1] = STATE(891), + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_LBRACK_LT] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [anon_sym_exception] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3100), + [anon_sym_POUNDload] = ACTIONS(3100), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [892] = { [sym_block_comment] = STATE(892), [sym_compiler_directive_decl] = STATE(892), [sym_fsi_directive_decl] = STATE(892), [sym_preproc_line] = STATE(892), - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3093), - [anon_sym_LBRACK_LT] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [anon_sym_exception] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3095), - [anon_sym_POUNDload] = ACTIONS(3095), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [893] = { [sym_block_comment] = STATE(893), [sym_compiler_directive_decl] = STATE(893), [sym_fsi_directive_decl] = STATE(893), [sym_preproc_line] = STATE(893), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_GT_RBRACK] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_to] = ACTIONS(3101), - [anon_sym_downto] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_DOT_DOT2] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_GT_RBRACK] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3040), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_to] = ACTIONS(3042), + [anon_sym_downto] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_DOT_DOT2] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), }, [894] = { - [sym_elif_expression] = STATE(919), [sym_block_comment] = STATE(894), [sym_compiler_directive_decl] = STATE(894), [sym_fsi_directive_decl] = STATE(894), [sym_preproc_line] = STATE(894), - [aux_sym_if_expression_repeat1] = STATE(894), + [ts_builtin_sym_end] = ACTIONS(3090), [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_GT_RBRACK] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_LBRACK_LT] = ACTIONS(3090), [anon_sym_COLON] = ACTIONS(3088), [anon_sym_return] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), + [anon_sym_let_BANG] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_RBRACK] = ACTIONS(3086), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3086), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), - [anon_sym_to] = ACTIONS(3088), - [anon_sym_downto] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3105), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_DOT_DOT2] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [anon_sym_exception] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -158401,164 +158743,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = 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(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [895] = { [sym_block_comment] = STATE(895), [sym_compiler_directive_decl] = STATE(895), [sym_fsi_directive_decl] = STATE(895), [sym_preproc_line] = STATE(895), - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_module] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_LBRACK_LT] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_exception] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3103), - [anon_sym_POUNDload] = ACTIONS(3103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - }, - [896] = { - [sym_block_comment] = STATE(896), - [sym_compiler_directive_decl] = STATE(896), - [sym_fsi_directive_decl] = STATE(896), - [sym_preproc_line] = STATE(896), [sym_identifier] = ACTIONS(3072), [anon_sym_EQ] = ACTIONS(3070), [anon_sym_GT_RBRACK] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), [anon_sym_RBRACK] = ACTIONS(3070), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_RBRACE] = ACTIONS(3070), [anon_sym_LT_AT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3072), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -158566,37 +158806,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(3070), [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), [anon_sym_for] = ACTIONS(3072), - [anon_sym_to] = ACTIONS(3074), - [anon_sym_downto] = ACTIONS(3074), + [anon_sym_to] = ACTIONS(3072), + [anon_sym_downto] = ACTIONS(3072), [anon_sym_while] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_fun] = ACTIONS(3072), [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3072), [anon_sym_DOT_LBRACK] = ACTIONS(3070), [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_DOT_DOT2] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -158605,434 +158845,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), [sym__newline] = ACTIONS(3070), }, + [896] = { + [sym_block_comment] = STATE(896), + [sym_compiler_directive_decl] = STATE(896), + [sym_fsi_directive_decl] = STATE(896), + [sym_preproc_line] = STATE(896), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_GT_RBRACK] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_RBRACK] = ACTIONS(3066), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_to] = ACTIONS(3068), + [anon_sym_downto] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_DOT_DOT2] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), + }, [897] = { + [sym_elif_expression] = STATE(926), [sym_block_comment] = STATE(897), [sym_compiler_directive_decl] = STATE(897), [sym_fsi_directive_decl] = STATE(897), [sym_preproc_line] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [aux_sym_if_expression_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_GT_RBRACK] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_to] = ACTIONS(3102), + [anon_sym_downto] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_DOT_DOT2] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), + }, + [898] = { + [sym_block_comment] = STATE(898), + [sym_compiler_directive_decl] = STATE(898), + [sym_fsi_directive_decl] = STATE(898), + [sym_preproc_line] = STATE(898), + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3096), + [anon_sym_namespace] = ACTIONS(3096), + [anon_sym_module] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_LBRACK_LT] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_exception] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3098), + [anon_sym_POUNDload] = ACTIONS(3098), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), + }, + [899] = { + [sym_block_comment] = STATE(899), + [sym_compiler_directive_decl] = STATE(899), + [sym_fsi_directive_decl] = STATE(899), + [sym_preproc_line] = STATE(899), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_GT_RBRACK] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [898] = { - [sym_block_comment] = STATE(898), - [sym_compiler_directive_decl] = STATE(898), - [sym_fsi_directive_decl] = STATE(898), - [sym_preproc_line] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_open] = ACTIONS(3066), - [anon_sym_LBRACK_LT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [anon_sym_exception] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_RBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_to] = ACTIONS(3048), + [anon_sym_downto] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_DOT_DOT2] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3068), - [anon_sym_POUNDload] = ACTIONS(3068), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - }, - [899] = { - [sym_block_comment] = STATE(899), - [sym_compiler_directive_decl] = STATE(899), - [sym_fsi_directive_decl] = STATE(899), - [sym_preproc_line] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_exception] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [900] = { [sym_block_comment] = STATE(900), [sym_compiler_directive_decl] = STATE(900), [sym_fsi_directive_decl] = STATE(900), [sym_preproc_line] = STATE(900), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_to] = ACTIONS(2988), - [anon_sym_downto] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_exception] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3094), + [anon_sym_POUNDload] = ACTIONS(3094), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, [901] = { [sym_block_comment] = STATE(901), @@ -159041,36 +159383,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_line] = STATE(901), [ts_builtin_sym_end] = ACTIONS(3050), [sym_identifier] = ACTIONS(3048), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_open] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3052), [anon_sym_LBRACK_LT] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3052), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), [anon_sym_COMMA] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), @@ -159084,29 +159426,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_LT] = ACTIONS(3050), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_exception] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_exception] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -159115,25 +159457,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3050), [anon_sym_POUNDload] = ACTIONS(3050), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), [sym__newline] = ACTIONS(3050), }, [902] = { @@ -159141,276 +159483,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(902), [sym_fsi_directive_decl] = STATE(902), [sym_preproc_line] = STATE(902), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_module] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2977), - [anon_sym_LBRACK_LT] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [anon_sym_exception] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2975), - [anon_sym_POUNDload] = ACTIONS(2975), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [903] = { - [sym_block_comment] = STATE(903), - [sym_compiler_directive_decl] = STATE(903), - [sym_fsi_directive_decl] = STATE(903), - [sym_preproc_line] = STATE(903), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_GT_RBRACK] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_RBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_to] = ACTIONS(3072), - [anon_sym_downto] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_DOT_DOT2] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_GT_RBRACK] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_to] = ACTIONS(3084), + [anon_sym_downto] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_DOT_DOT2] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3112), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), + }, + [903] = { + [sym_block_comment] = STATE(903), + [sym_compiler_directive_decl] = STATE(903), + [sym_fsi_directive_decl] = STATE(903), + [sym_preproc_line] = STATE(903), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_GT_RBRACK] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_RBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_to] = ACTIONS(3060), + [anon_sym_downto] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [904] = { - [sym_type_arguments] = STATE(1184), - [sym_long_identifier] = STATE(1200), [sym_block_comment] = STATE(904), [sym_compiler_directive_decl] = STATE(904), [sym_fsi_directive_decl] = STATE(904), [sym_preproc_line] = STATE(904), - [aux_sym_compound_type_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3062), + [anon_sym_namespace] = ACTIONS(3062), + [anon_sym_module] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_open] = ACTIONS(3062), + [anon_sym_LBRACK_LT] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_exception] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3064), + [anon_sym_POUNDload] = ACTIONS(3064), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + }, + [905] = { + [sym_block_comment] = STATE(905), + [sym_compiler_directive_decl] = STATE(905), + [sym_fsi_directive_decl] = STATE(905), + [sym_preproc_line] = STATE(905), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_GT_RBRACK] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_RBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_to] = ACTIONS(3060), + [anon_sym_downto] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [906] = { + [sym_type_arguments] = STATE(1057), + [sym_long_identifier] = STATE(1105), + [sym_block_comment] = STATE(906), + [sym_compiler_directive_decl] = STATE(906), + [sym_fsi_directive_decl] = STATE(906), + [sym_preproc_line] = STATE(906), + [aux_sym_compound_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_with] = ACTIONS(2906), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3110), + [anon_sym_DASH_GT] = ACTIONS(3116), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(3114), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_DOT_DOT2] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3120), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3122), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -159419,301 +159965,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - [sym__dedent] = ACTIONS(2908), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), + [sym__dedent] = ACTIONS(2904), }, - [905] = { - [sym_type_arguments] = STATE(1072), - [sym_long_identifier] = STATE(1090), - [sym_block_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(954), - [sym_identifier] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_DOT_DOT2] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(3124), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3126), - [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token2] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [907] = { + [sym_type_arguments] = STATE(1051), + [sym_long_identifier] = STATE(1085), + [sym_block_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(957), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3124), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_LT2] = ACTIONS(3128), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3130), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__dedent] = ACTIONS(2922), + }, + [908] = { + [sym_block_comment] = STATE(908), + [sym_compiler_directive_decl] = STATE(908), + [sym_fsi_directive_decl] = STATE(908), + [sym_preproc_line] = STATE(908), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_GT_RBRACK] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_to] = ACTIONS(3132), + [anon_sym_downto] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_DOT_DOT2] = ACTIONS(3134), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3136), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, - [906] = { - [sym_type_arguments] = STATE(1184), - [sym_long_identifier] = STATE(1200), - [sym_block_comment] = STATE(906), - [sym_compiler_directive_decl] = STATE(906), - [sym_fsi_directive_decl] = STATE(906), - [sym_preproc_line] = STATE(906), - [aux_sym_compound_type_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(3114), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [909] = { + [sym_type_arguments] = STATE(1057), + [sym_long_identifier] = STATE(1105), + [sym_block_comment] = STATE(909), + [sym_compiler_directive_decl] = STATE(909), + [sym_fsi_directive_decl] = STATE(909), + [sym_preproc_line] = STATE(909), + [aux_sym_compound_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3116), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_DOT_DOT2] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3120), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__dedent] = ACTIONS(2922), }, - [907] = { - [sym_type_arguments] = STATE(1072), - [sym_long_identifier] = STATE(1090), - [sym_block_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(954), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [910] = { + [sym_type_arguments] = STATE(1051), + [sym_long_identifier] = STATE(1085), + [sym_block_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(957), + [sym_identifier] = ACTIONS(3138), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_as] = ACTIONS(2906), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_with] = ACTIONS(2906), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3120), + [anon_sym_DASH_GT] = ACTIONS(3124), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_DOT_DOT2] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(3124), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_LT2] = ACTIONS(3128), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3130), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -159722,19 +160369,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), + [sym__dedent] = ACTIONS(2904), + }, + [911] = { + [sym_type_arguments] = STATE(1051), + [sym_long_identifier] = STATE(1085), + [sym_block_comment] = STATE(911), + [sym_compiler_directive_decl] = STATE(911), + [sym_fsi_directive_decl] = STATE(911), + [sym_preproc_line] = STATE(911), + [aux_sym_compound_type_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(3138), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_LT2] = ACTIONS(3128), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3130), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), [sym_xint] = ACTIONS(2908), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -159744,77 +160492,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(2908), [sym__dedent] = ACTIONS(2908), }, - [908] = { - [sym_type_arguments] = STATE(1184), - [sym_long_identifier] = STATE(1200), - [sym_block_comment] = STATE(908), - [sym_compiler_directive_decl] = STATE(908), - [sym_fsi_directive_decl] = STATE(908), - [sym_preproc_line] = STATE(908), - [aux_sym_compound_type_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(2884), + [912] = { + [sym_type_arguments] = STATE(1057), + [sym_long_identifier] = STATE(1105), + [sym_block_comment] = STATE(912), + [sym_compiler_directive_decl] = STATE(912), + [sym_fsi_directive_decl] = STATE(912), + [sym_preproc_line] = STATE(912), + [aux_sym_compound_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_DOT_DOT2] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3120), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + [sym__dedent] = ACTIONS(2908), + }, + [913] = { + [sym_type_arguments] = STATE(1057), + [sym_long_identifier] = STATE(1105), + [sym_block_comment] = STATE(913), + [sym_compiler_directive_decl] = STATE(913), + [sym_fsi_directive_decl] = STATE(913), + [sym_preproc_line] = STATE(913), + [aux_sym_compound_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_with] = ACTIONS(2886), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3110), + [anon_sym_DASH_GT] = ACTIONS(3116), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(3114), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3120), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3122), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -159823,1640 +160672,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), - }, - [909] = { - [sym_type_arguments] = STATE(1184), - [sym_long_identifier] = STATE(1200), - [sym_block_comment] = STATE(909), - [sym_compiler_directive_decl] = STATE(909), - [sym_fsi_directive_decl] = STATE(909), - [sym_preproc_line] = STATE(909), - [aux_sym_compound_type_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(3114), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), - }, - [910] = { - [sym_type_arguments] = STATE(1184), - [sym_long_identifier] = STATE(1200), - [sym_block_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(980), - [sym_identifier] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(3114), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), - }, - [911] = { - [sym_block_comment] = STATE(911), - [sym_compiler_directive_decl] = STATE(911), - [sym_fsi_directive_decl] = STATE(911), - [sym_preproc_line] = STATE(911), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_GT_RBRACK] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_to] = ACTIONS(3130), - [anon_sym_downto] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_DOT_DOT2] = ACTIONS(3132), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3134), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [912] = { - [sym_block_comment] = STATE(912), - [sym_compiler_directive_decl] = STATE(912), - [sym_fsi_directive_decl] = STATE(912), - [sym_preproc_line] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(3132), - [sym_identifier] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_LBRACK_LT] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [anon_sym_exception] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3136), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3132), - [anon_sym_POUNDload] = ACTIONS(3132), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [913] = { - [sym_type_arguments] = STATE(1072), - [sym_long_identifier] = STATE(1090), - [sym_block_comment] = STATE(913), - [sym_compiler_directive_decl] = STATE(913), - [sym_fsi_directive_decl] = STATE(913), - [sym_preproc_line] = STATE(913), - [aux_sym_compound_type_repeat1] = STATE(954), - [sym_identifier] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_DOT_DOT2] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(3124), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3126), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, [914] = { - [sym_type_arguments] = STATE(1072), - [sym_long_identifier] = STATE(1090), + [sym_type_arguments] = STATE(1051), + [sym_long_identifier] = STATE(1085), [sym_block_comment] = STATE(914), [sym_compiler_directive_decl] = STATE(914), [sym_fsi_directive_decl] = STATE(914), [sym_preproc_line] = STATE(914), - [aux_sym_compound_type_repeat1] = STATE(954), - [sym_identifier] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_DOT_DOT2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(3124), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3126), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), + [aux_sym_compound_type_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(3138), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_LT2] = ACTIONS(3128), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3130), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, [915] = { - [sym_type_arguments] = STATE(1072), - [sym_long_identifier] = STATE(1090), + [sym_type_arguments] = STATE(1051), + [sym_long_identifier] = STATE(1085), [sym_block_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(954), - [sym_identifier] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(3124), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3126), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [aux_sym_compound_type_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(3138), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_LT2] = ACTIONS(3128), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3130), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + [sym__dedent] = ACTIONS(2900), }, [916] = { [sym_block_comment] = STATE(916), [sym_compiler_directive_decl] = STATE(916), [sym_fsi_directive_decl] = STATE(916), [sym_preproc_line] = STATE(916), - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_LBRACK_LT] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [anon_sym_exception] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3138), - [anon_sym_POUNDload] = ACTIONS(3138), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_LBRACK_LT] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [anon_sym_exception] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3140), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3134), + [anon_sym_POUNDload] = ACTIONS(3134), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [917] = { + [sym_type_arguments] = STATE(1057), + [sym_long_identifier] = STATE(1105), [sym_block_comment] = STATE(917), [sym_compiler_directive_decl] = STATE(917), [sym_fsi_directive_decl] = STATE(917), [sym_preproc_line] = STATE(917), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_GT_RBRACK] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_RBRACK] = ACTIONS(3148), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_to] = ACTIONS(3146), - [anon_sym_downto] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_DOT_DOT2] = ACTIONS(3148), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3150), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [aux_sym_compound_type_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3120), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + [sym__dedent] = ACTIONS(2900), }, [918] = { [sym_block_comment] = STATE(918), [sym_compiler_directive_decl] = STATE(918), [sym_fsi_directive_decl] = STATE(918), [sym_preproc_line] = STATE(918), - [aux_sym_rules_repeat1] = STATE(936), - [ts_builtin_sym_end] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3154), - [anon_sym_LBRACK_LT] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [anon_sym_exception] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3152), - [anon_sym_POUNDload] = ACTIONS(3152), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(3158), + [aux_sym_rules_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3144), + [anon_sym_module] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_LBRACK_LT] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [anon_sym_exception] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3142), + [anon_sym_POUNDload] = ACTIONS(3142), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(3148), }, [919] = { [sym_block_comment] = STATE(919), [sym_compiler_directive_decl] = STATE(919), [sym_fsi_directive_decl] = STATE(919), [sym_preproc_line] = STATE(919), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_GT_RBRACK] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_to] = ACTIONS(3161), - [anon_sym_downto] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_DOT_DOT2] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_GT_RBRACK] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_to] = ACTIONS(3151), + [anon_sym_downto] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_DOT_DOT2] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [920] = { + [sym_type_arguments] = STATE(1301), + [sym_long_identifier] = STATE(1267), [sym_block_comment] = STATE(920), [sym_compiler_directive_decl] = STATE(920), [sym_fsi_directive_decl] = STATE(920), [sym_preproc_line] = STATE(920), - [sym_identifier] = ACTIONS(3165), + [aux_sym_compound_type_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_COLON] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_COLON_QMARK] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3163), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(2906), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2906), + [anon_sym_DASH_DOT] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [aux_sym_infix_op_token2] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2904), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), + }, + [921] = { + [sym_block_comment] = STATE(921), + [sym_compiler_directive_decl] = STATE(921), + [sym_fsi_directive_decl] = STATE(921), + [sym_preproc_line] = STATE(921), + [aux_sym_rules_repeat1] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_GT_RBRACK] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_open] = ACTIONS(3169), + [anon_sym_LBRACK_LT] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_to] = ACTIONS(3165), - [anon_sym_downto] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [anon_sym_exception] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3167), + [anon_sym_POUNDload] = ACTIONS(3167), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [921] = { - [sym_block_comment] = STATE(921), - [sym_compiler_directive_decl] = STATE(921), - [sym_fsi_directive_decl] = STATE(921), - [sym_preproc_line] = STATE(921), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_GT_RBRACK] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_RBRACK] = ACTIONS(2526), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_to] = ACTIONS(2528), - [anon_sym_downto] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_DOT_DOT2] = ACTIONS(2526), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2586), - [aux_sym_decimal_token1] = ACTIONS(2580), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [sym__newline] = ACTIONS(3171), }, [922] = { - [sym_type_arguments] = STATE(1275), - [sym_long_identifier] = STATE(1289), [sym_block_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(1087), + [aux_sym_rules_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(3167), [sym_identifier] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(3175), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [anon_sym_POUNDelse] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3169), + [anon_sym_LBRACK_LT] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_type] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [anon_sym_exception] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3167), + [anon_sym_POUNDload] = ACTIONS(3167), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3171), }, [923] = { [sym_block_comment] = STATE(923), [sym_compiler_directive_decl] = STATE(923), [sym_fsi_directive_decl] = STATE(923), [sym_preproc_line] = STATE(923), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_GT_RBRACK] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_to] = ACTIONS(3130), - [anon_sym_downto] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_DOT_DOT2] = ACTIONS(3132), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_GT_RBRACK] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_to] = ACTIONS(3174), + [anon_sym_downto] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_DOT_DOT2] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [924] = { [sym_block_comment] = STATE(924), [sym_compiler_directive_decl] = STATE(924), [sym_fsi_directive_decl] = STATE(924), [sym_preproc_line] = STATE(924), - [aux_sym_rules_repeat1] = STATE(946), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_GT_RBRACK] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_to] = ACTIONS(3179), - [anon_sym_downto] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_DOT_DOT2] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(3185), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3174), + [anon_sym_LBRACK_LT] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [anon_sym_exception] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3176), + [anon_sym_POUNDload] = ACTIONS(3176), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [925] = { [sym_block_comment] = STATE(925), [sym_compiler_directive_decl] = STATE(925), [sym_fsi_directive_decl] = STATE(925), [sym_preproc_line] = STATE(925), + [aux_sym_rules_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_GT_RBRACK] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_to] = ACTIONS(3178), + [anon_sym_downto] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_DOT_DOT2] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3185), + }, + [926] = { + [sym_block_comment] = STATE(926), + [sym_compiler_directive_decl] = STATE(926), + [sym_fsi_directive_decl] = STATE(926), + [sym_preproc_line] = STATE(926), [sym_identifier] = ACTIONS(3188), [anon_sym_EQ] = ACTIONS(3190), [anon_sym_GT_RBRACK] = ACTIONS(3190), @@ -161497,6 +161943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to] = ACTIONS(3188), [anon_sym_downto] = ACTIONS(3188), [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), [anon_sym_if] = ACTIONS(3188), [anon_sym_fun] = ACTIONS(3188), [anon_sym_try] = ACTIONS(3188), @@ -161540,10 +161988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), [sym_int] = ACTIONS(3188), [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -161552,111 +161998,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3190), [sym__newline] = ACTIONS(3190), }, - [926] = { - [sym_type_arguments] = STATE(1266), - [sym_long_identifier] = STATE(1291), - [sym_block_comment] = STATE(926), - [sym_compiler_directive_decl] = STATE(926), - [sym_fsi_directive_decl] = STATE(926), - [sym_preproc_line] = STATE(926), - [aux_sym_compound_type_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(3198), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3200), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, [927] = { + [sym_type_arguments] = STATE(1312), + [sym_long_identifier] = STATE(1317), [sym_block_comment] = STATE(927), [sym_compiler_directive_decl] = STATE(927), [sym_fsi_directive_decl] = STATE(927), [sym_preproc_line] = STATE(927), + [aux_sym_compound_type_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3192), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_LT2] = ACTIONS(3196), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [anon_sym_POUNDendif] = ACTIONS(2922), + [anon_sym_POUNDelse] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [928] = { + [sym_block_comment] = STATE(928), + [sym_compiler_directive_decl] = STATE(928), + [sym_fsi_directive_decl] = STATE(928), + [sym_preproc_line] = STATE(928), + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_open] = ACTIONS(3151), + [anon_sym_LBRACK_LT] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_exception] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(3200), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3153), + [anon_sym_POUNDload] = ACTIONS(3153), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [929] = { + [sym_type_arguments] = STATE(1312), + [sym_long_identifier] = STATE(1317), + [sym_block_comment] = STATE(929), + [sym_compiler_directive_decl] = STATE(929), + [sym_fsi_directive_decl] = STATE(929), + [sym_preproc_line] = STATE(929), + [aux_sym_compound_type_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_LT2] = ACTIONS(3196), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [anon_sym_POUNDendif] = ACTIONS(2900), + [anon_sym_POUNDelse] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [930] = { + [sym_block_comment] = STATE(930), + [sym_compiler_directive_decl] = STATE(930), + [sym_fsi_directive_decl] = STATE(930), + [sym_preproc_line] = STATE(930), + [aux_sym_rules_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_GT_RBRACK] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_to] = ACTIONS(3144), + [anon_sym_downto] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_DOT_DOT2] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(3206), + }, + [931] = { + [sym_block_comment] = STATE(931), + [sym_compiler_directive_decl] = STATE(931), + [sym_fsi_directive_decl] = STATE(931), + [sym_preproc_line] = STATE(931), [ts_builtin_sym_end] = ACTIONS(2526), [sym_identifier] = ACTIONS(2528), [anon_sym_namespace] = ACTIONS(2528), @@ -161743,7 +162489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_f] = ACTIONS(2590), [aux_sym_decimal_token1] = ACTIONS(2552), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -161752,1775 +162498,1577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [928] = { - [sym_type_arguments] = STATE(1275), - [sym_long_identifier] = STATE(1289), - [sym_block_comment] = STATE(928), - [sym_compiler_directive_decl] = STATE(928), - [sym_fsi_directive_decl] = STATE(928), - [sym_preproc_line] = STATE(928), - [aux_sym_compound_type_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), + [932] = { + [sym_type_arguments] = STATE(1312), + [sym_long_identifier] = STATE(1317), + [sym_block_comment] = STATE(932), + [sym_compiler_directive_decl] = STATE(932), + [sym_fsi_directive_decl] = STATE(932), + [sym_preproc_line] = STATE(932), + [aux_sym_compound_type_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LT_AT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), - [anon_sym_lazy] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_upcast] = ACTIONS(2906), - [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_begin] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(3175), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), - [anon_sym_LPAREN_PIPE] = ACTIONS(2906), - [sym_op_identifier] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_DOT] = ACTIONS(2906), - [anon_sym_DASH_DOT] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [aux_sym_infix_op_token2] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), - [anon_sym_DOLLAR] = ACTIONS(2906), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [anon_sym_POUNDendif] = ACTIONS(2908), - [anon_sym_POUNDelse] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - }, - [929] = { - [sym_block_comment] = STATE(929), - [sym_compiler_directive_decl] = STATE(929), - [sym_fsi_directive_decl] = STATE(929), - [sym_preproc_line] = STATE(929), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_GT_RBRACK] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_to] = ACTIONS(3165), - [anon_sym_downto] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_LT2] = ACTIONS(3196), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [930] = { - [sym_block_comment] = STATE(930), - [sym_compiler_directive_decl] = STATE(930), - [sym_fsi_directive_decl] = STATE(930), - [sym_preproc_line] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(3132), - [sym_identifier] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_LBRACK_LT] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [anon_sym_exception] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3132), - [anon_sym_POUNDload] = ACTIONS(3132), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [931] = { - [sym_block_comment] = STATE(931), - [sym_compiler_directive_decl] = STATE(931), - [sym_fsi_directive_decl] = STATE(931), - [sym_preproc_line] = STATE(931), - [aux_sym_rules_repeat1] = STATE(946), - [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_PIPE] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_RBRACK] = ACTIONS(3204), - [anon_sym_LBRACK_PIPE] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_LT_AT] = ACTIONS(3202), - [anon_sym_LT_AT_AT] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3202), - [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_LPAREN2] = ACTIONS(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3206), - }, - [932] = { - [sym_block_comment] = STATE(932), - [sym_compiler_directive_decl] = STATE(932), - [sym_fsi_directive_decl] = STATE(932), - [sym_preproc_line] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_LBRACK_LT] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3167), - [anon_sym_POUNDload] = ACTIONS(3167), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(2882), + [anon_sym_POUNDendif] = ACTIONS(2882), + [anon_sym_POUNDelse] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [933] = { [sym_block_comment] = STATE(933), [sym_compiler_directive_decl] = STATE(933), [sym_fsi_directive_decl] = STATE(933), [sym_preproc_line] = STATE(933), - [aux_sym_rules_repeat1] = STATE(924), - [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_PIPE] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_RBRACK] = ACTIONS(3204), - [anon_sym_LBRACK_PIPE] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_LT_AT] = ACTIONS(3202), - [anon_sym_LT_AT_AT] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3202), - [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_LPAREN2] = ACTIONS(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3206), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_GT_RBRACK] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_RBRACK] = ACTIONS(2526), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_to] = ACTIONS(2528), + [anon_sym_downto] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_DOT_DOT2] = ACTIONS(2526), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2586), + [aux_sym_decimal_token1] = ACTIONS(2580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [934] = { [sym_block_comment] = STATE(934), [sym_compiler_directive_decl] = STATE(934), [sym_fsi_directive_decl] = STATE(934), [sym_preproc_line] = STATE(934), - [aux_sym_rules_repeat1] = STATE(931), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_GT_RBRACK] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_LT_AT] = ACTIONS(3154), - [anon_sym_LT_AT_AT] = ACTIONS(3154), - [anon_sym_DOT] = ACTIONS(3154), - [anon_sym_LBRACE_PIPE] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [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_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_DOT_DOT2] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(3209), + [aux_sym_rules_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_open] = ACTIONS(3178), + [anon_sym_LBRACK_LT] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [anon_sym_exception] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3180), + [anon_sym_POUNDload] = ACTIONS(3180), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3212), }, [935] = { [sym_block_comment] = STATE(935), [sym_compiler_directive_decl] = STATE(935), [sym_fsi_directive_decl] = STATE(935), [sym_preproc_line] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(3148), - [sym_identifier] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3146), - [anon_sym_LBRACK_LT] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [anon_sym_exception] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3212), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3148), - [anon_sym_POUNDload] = ACTIONS(3148), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), - }, - [936] = { - [sym_block_comment] = STATE(936), - [sym_compiler_directive_decl] = STATE(936), - [sym_fsi_directive_decl] = STATE(936), - [sym_preproc_line] = STATE(936), - [aux_sym_rules_repeat1] = STATE(944), - [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_PIPE] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [anon_sym_or] = ACTIONS(3202), - [anon_sym_exception] = 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(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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3204), - [anon_sym_POUNDload] = ACTIONS(3204), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3214), - }, - [937] = { - [sym_block_comment] = STATE(937), - [sym_compiler_directive_decl] = STATE(937), - [sym_fsi_directive_decl] = STATE(937), - [sym_preproc_line] = STATE(937), - [aux_sym_rules_repeat1] = STATE(951), - [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_PIPE] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [anon_sym_or] = ACTIONS(3202), - [anon_sym_exception] = 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(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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3204), - [anon_sym_POUNDload] = ACTIONS(3204), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3214), - }, - [938] = { - [sym_block_comment] = STATE(938), - [sym_compiler_directive_decl] = STATE(938), - [sym_fsi_directive_decl] = STATE(938), - [sym_preproc_line] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3215), [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_open] = ACTIONS(3219), - [anon_sym_LBRACK_LT] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), + [anon_sym_GT_RBRACK] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3215), [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_RBRACK] = ACTIONS(3217), [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3215), [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), [anon_sym_COLON_GT] = ACTIONS(3217), [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_to] = ACTIONS(3215), + [anon_sym_downto] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), [anon_sym_DOT_LBRACK] = ACTIONS(3217), [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3215), [anon_sym_use_BANG] = ACTIONS(3217), [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [anon_sym_exception] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_DOT_DOT2] = ACTIONS(3217), + [anon_sym_or] = ACTIONS(3215), [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), [anon_sym_AT_DQUOTE] = ACTIONS(3217), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), + [sym_bool] = ACTIONS(3215), [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3215), [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3217), - [anon_sym_POUNDload] = ACTIONS(3217), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3217), [sym__newline] = ACTIONS(3217), }, - [939] = { - [sym_block_comment] = STATE(939), - [sym_compiler_directive_decl] = STATE(939), - [sym_fsi_directive_decl] = STATE(939), - [sym_preproc_line] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_LBRACK_LT] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [936] = { + [sym_block_comment] = STATE(936), + [sym_compiler_directive_decl] = STATE(936), + [sym_fsi_directive_decl] = STATE(936), + [sym_preproc_line] = STATE(936), + [ts_builtin_sym_end] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_LBRACK_LT] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [anon_sym_exception] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3167), - [anon_sym_POUNDload] = ACTIONS(3167), + [anon_sym_POUNDr] = ACTIONS(3190), + [anon_sym_POUNDload] = ACTIONS(3190), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + }, + [937] = { + [sym_block_comment] = STATE(937), + [sym_compiler_directive_decl] = STATE(937), + [sym_fsi_directive_decl] = STATE(937), + [sym_preproc_line] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_LBRACK_LT] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [anon_sym_exception] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3134), + [anon_sym_POUNDload] = ACTIONS(3134), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [938] = { + [sym_type_arguments] = STATE(1312), + [sym_long_identifier] = STATE(1317), + [sym_block_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(1133), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_LT2] = ACTIONS(3196), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [anon_sym_POUNDendif] = ACTIONS(2908), + [anon_sym_POUNDelse] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [939] = { + [sym_block_comment] = STATE(939), + [sym_compiler_directive_decl] = STATE(939), + [sym_fsi_directive_decl] = STATE(939), + [sym_preproc_line] = STATE(939), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_open] = ACTIONS(3221), + [anon_sym_LBRACK_LT] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [anon_sym_exception] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3219), + [anon_sym_POUNDload] = ACTIONS(3219), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [940] = { [sym_block_comment] = STATE(940), [sym_compiler_directive_decl] = STATE(940), [sym_fsi_directive_decl] = STATE(940), [sym_preproc_line] = STATE(940), - [sym_identifier] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3215), [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_GT_RBRACK] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), + [anon_sym_open] = ACTIONS(3215), + [anon_sym_LBRACK_LT] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3215), [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3215), [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3215), [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3215), [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), [anon_sym_COLON_GT] = ACTIONS(3217), [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_to] = ACTIONS(3219), - [anon_sym_downto] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), [anon_sym_DOT_LBRACK] = ACTIONS(3217), [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3215), [anon_sym_use_BANG] = ACTIONS(3217), [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_DOT_DOT2] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [anon_sym_exception] = ACTIONS(3215), [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), [anon_sym_AT_DQUOTE] = ACTIONS(3217), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), + [sym_bool] = ACTIONS(3215), [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3215), [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3217), + [anon_sym_POUNDload] = ACTIONS(3217), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3217), [sym__newline] = ACTIONS(3217), }, [941] = { - [sym_type_arguments] = STATE(1266), - [sym_long_identifier] = STATE(1291), [sym_block_comment] = STATE(941), [sym_compiler_directive_decl] = STATE(941), [sym_fsi_directive_decl] = STATE(941), [sym_preproc_line] = STATE(941), - [aux_sym_compound_type_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), + [aux_sym_rules_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_GT_RBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(3198), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3200), - [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token2] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_to] = ACTIONS(3169), + [anon_sym_downto] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3223), }, [942] = { - [sym_type_arguments] = STATE(1266), - [sym_long_identifier] = STATE(1291), [sym_block_comment] = STATE(942), [sym_compiler_directive_decl] = STATE(942), [sym_fsi_directive_decl] = STATE(942), [sym_preproc_line] = STATE(942), - [aux_sym_compound_type_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(3198), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3200), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_rules_repeat1] = STATE(930), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_GT_RBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_to] = ACTIONS(3169), + [anon_sym_downto] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3223), }, [943] = { - [sym_type_arguments] = STATE(1266), - [sym_long_identifier] = STATE(1291), [sym_block_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(1058), - [sym_identifier] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(3198), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3200), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_open] = ACTIONS(3221), + [anon_sym_LBRACK_LT] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [anon_sym_exception] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3219), + [anon_sym_POUNDload] = ACTIONS(3219), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [944] = { [sym_block_comment] = STATE(944), [sym_compiler_directive_decl] = STATE(944), [sym_fsi_directive_decl] = STATE(944), [sym_preproc_line] = STATE(944), - [aux_sym_rules_repeat1] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3223), - [anon_sym_LBRACK_LT] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [anon_sym_exception] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3221), - [anon_sym_POUNDload] = ACTIONS(3221), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_GT_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_to] = ACTIONS(3221), + [anon_sym_downto] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [945] = { - [sym_type_arguments] = STATE(1275), - [sym_long_identifier] = STATE(1289), + [sym_type_arguments] = STATE(1301), + [sym_long_identifier] = STATE(1267), [sym_block_comment] = STATE(945), [sym_compiler_directive_decl] = STATE(945), [sym_fsi_directive_decl] = STATE(945), [sym_preproc_line] = STATE(945), - [aux_sym_compound_type_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(2884), + [aux_sym_compound_type_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3163), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [946] = { + [sym_type_arguments] = STATE(1301), + [sym_long_identifier] = STATE(1267), + [sym_block_comment] = STATE(946), + [sym_compiler_directive_decl] = STATE(946), + [sym_fsi_directive_decl] = STATE(946), + [sym_preproc_line] = STATE(946), + [aux_sym_compound_type_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3159), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3163), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [947] = { + [sym_type_arguments] = STATE(1301), + [sym_long_identifier] = STATE(1267), + [sym_block_comment] = STATE(947), + [sym_compiler_directive_decl] = STATE(947), + [sym_fsi_directive_decl] = STATE(947), + [sym_preproc_line] = STATE(947), + [aux_sym_compound_type_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3171), + [anon_sym_DASH_GT] = ACTIONS(3159), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(3175), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3163), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3165), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -163529,500 +164077,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [anon_sym_POUNDendif] = ACTIONS(2884), - [anon_sym_POUNDelse] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - }, - [946] = { - [sym_block_comment] = STATE(946), - [sym_compiler_directive_decl] = STATE(946), - [sym_fsi_directive_decl] = STATE(946), - [sym_preproc_line] = STATE(946), - [aux_sym_rules_repeat1] = STATE(946), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_GT_RBRACK] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_to] = ACTIONS(3223), - [anon_sym_downto] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_DOT_DOT2] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3234), - }, - [947] = { - [sym_block_comment] = STATE(947), - [sym_compiler_directive_decl] = STATE(947), - [sym_fsi_directive_decl] = STATE(947), - [sym_preproc_line] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_LBRACK_LT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [anon_sym_exception] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3190), - [anon_sym_POUNDload] = ACTIONS(3190), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [948] = { + [sym_type_arguments] = STATE(1301), + [sym_long_identifier] = STATE(1267), [sym_block_comment] = STATE(948), [sym_compiler_directive_decl] = STATE(948), [sym_fsi_directive_decl] = STATE(948), [sym_preproc_line] = STATE(948), - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3161), - [anon_sym_namespace] = ACTIONS(3161), - [anon_sym_module] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3161), - [anon_sym_LBRACK_LT] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_exception] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3163), - [anon_sym_POUNDload] = ACTIONS(3163), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [aux_sym_compound_type_repeat1] = STATE(1250), + [sym_identifier] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3163), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), }, [949] = { - [sym_type_arguments] = STATE(1275), - [sym_long_identifier] = STATE(1289), [sym_block_comment] = STATE(949), [sym_compiler_directive_decl] = STATE(949), [sym_fsi_directive_decl] = STATE(949), [sym_preproc_line] = STATE(949), - [aux_sym_compound_type_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(3175), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [anon_sym_POUNDendif] = ACTIONS(2914), - [anon_sym_POUNDelse] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_rules_repeat1] = STATE(922), + [ts_builtin_sym_end] = ACTIONS(3226), + [sym_identifier] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_LBRACK_LT] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [anon_sym_exception] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3226), + [anon_sym_POUNDload] = ACTIONS(3226), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(3230), }, [950] = { - [sym_type_arguments] = STATE(1266), - [sym_long_identifier] = STATE(1291), [sym_block_comment] = STATE(950), [sym_compiler_directive_decl] = STATE(950), [sym_fsi_directive_decl] = STATE(950), [sym_preproc_line] = STATE(950), - [aux_sym_compound_type_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_open] = ACTIONS(3235), + [anon_sym_LBRACK_LT] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [anon_sym_exception] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3233), + [anon_sym_POUNDload] = ACTIONS(3233), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [951] = { + [sym_block_comment] = STATE(951), + [sym_compiler_directive_decl] = STATE(951), + [sym_fsi_directive_decl] = STATE(951), + [sym_preproc_line] = STATE(951), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_GT_RBRACK] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_to] = ACTIONS(3132), + [anon_sym_downto] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_DOT_DOT2] = ACTIONS(3134), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [952] = { + [sym_block_comment] = STATE(952), + [sym_compiler_directive_decl] = STATE(952), + [sym_fsi_directive_decl] = STATE(952), + [sym_preproc_line] = STATE(952), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_GT_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_to] = ACTIONS(3221), + [anon_sym_downto] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [953] = { + [sym_type_arguments] = STATE(1312), + [sym_long_identifier] = STATE(1317), + [sym_block_comment] = STATE(953), + [sym_compiler_directive_decl] = STATE(953), + [sym_fsi_directive_decl] = STATE(953), + [sym_preproc_line] = STATE(953), + [aux_sym_compound_type_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_with] = ACTIONS(2906), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3192), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(3198), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_LT2] = ACTIONS(3196), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3198), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -164031,297 +164675,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), + [anon_sym_POUNDif] = ACTIONS(2904), + [anon_sym_POUNDendif] = ACTIONS(2904), + [anon_sym_POUNDelse] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, - [951] = { - [sym_block_comment] = STATE(951), - [sym_compiler_directive_decl] = STATE(951), - [sym_fsi_directive_decl] = STATE(951), - [sym_preproc_line] = STATE(951), - [aux_sym_rules_repeat1] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_module] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_LBRACK_LT] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [anon_sym_exception] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3181), - [anon_sym_POUNDload] = ACTIONS(3181), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(3237), + [954] = { + [sym_block_comment] = STATE(954), + [sym_compiler_directive_decl] = STATE(954), + [sym_fsi_directive_decl] = STATE(954), + [sym_preproc_line] = STATE(954), + [aux_sym_rules_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_GT_RBRACK] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3226), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_to] = ACTIONS(3228), + [anon_sym_downto] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_DOT_DOT2] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(3241), }, - [952] = { - [sym_type_arguments] = STATE(1275), - [sym_long_identifier] = STATE(1289), - [sym_block_comment] = STATE(952), - [sym_compiler_directive_decl] = STATE(952), - [sym_fsi_directive_decl] = STATE(952), - [sym_preproc_line] = STATE(952), - [aux_sym_compound_type_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(3175), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [anon_sym_POUNDendif] = ACTIONS(2910), - [anon_sym_POUNDelse] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [955] = { + [sym_block_comment] = STATE(955), + [sym_compiler_directive_decl] = STATE(955), + [sym_fsi_directive_decl] = STATE(955), + [sym_preproc_line] = STATE(955), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_GT_RBRACK] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_to] = ACTIONS(3178), + [anon_sym_downto] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_DOT_DOT2] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, - [953] = { - [sym_type_arguments] = STATE(1439), - [sym_long_identifier] = STATE(1433), - [sym_block_comment] = STATE(953), - [sym_compiler_directive_decl] = STATE(953), - [sym_fsi_directive_decl] = STATE(953), - [sym_preproc_line] = STATE(953), - [aux_sym_compound_type_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [956] = { + [sym_block_comment] = STATE(956), + [sym_compiler_directive_decl] = STATE(956), + [sym_fsi_directive_decl] = STATE(956), + [sym_preproc_line] = STATE(956), + [aux_sym_long_identifier_repeat1] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_open] = ACTIONS(2956), + [anon_sym_LBRACK_LT] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [anon_sym_exception] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2954), + [anon_sym_POUNDload] = ACTIONS(2954), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [957] = { + [sym_block_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(969), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), + [anon_sym_STAR] = ACTIONS(3126), + [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(3015), + [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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), + [sym__dedent] = ACTIONS(3015), + }, + [958] = { + [sym__else_expression] = STATE(1667), + [sym_elif_expression] = STATE(1356), + [sym_block_comment] = STATE(958), + [sym_compiler_directive_decl] = STATE(958), + [sym_fsi_directive_decl] = STATE(958), + [sym_preproc_line] = STATE(958), + [aux_sym_if_expression_repeat1] = STATE(1157), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_elif] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [anon_sym_DOT_DOT2] = 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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), + [sym__dedent] = ACTIONS(3009), + }, + [959] = { + [sym_type_arguments] = STATE(1472), + [sym_long_identifier] = STATE(1417), + [sym_block_comment] = STATE(959), + [sym_compiler_directive_decl] = STATE(959), + [sym_fsi_directive_decl] = STATE(959), + [sym_preproc_line] = STATE(959), + [aux_sym_compound_type_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_LT2] = ACTIONS(3256), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [960] = { + [sym_block_comment] = STATE(960), + [sym_compiler_directive_decl] = STATE(960), + [sym_fsi_directive_decl] = STATE(960), + [sym_preproc_line] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_open] = ACTIONS(3178), + [anon_sym_LBRACK_LT] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [anon_sym_exception] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3180), + [anon_sym_POUNDload] = ACTIONS(3180), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), + }, + [961] = { + [sym_block_comment] = STATE(961), + [sym_compiler_directive_decl] = STATE(961), + [sym_fsi_directive_decl] = STATE(961), + [sym_preproc_line] = STATE(961), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_open] = ACTIONS(3262), + [anon_sym_LBRACK_LT] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [anon_sym_exception] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3260), + [anon_sym_POUNDload] = ACTIONS(3260), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + }, + [962] = { + [sym_type_arguments] = STATE(1404), + [sym_long_identifier] = STATE(1458), + [sym_block_comment] = STATE(962), + [sym_compiler_directive_decl] = STATE(962), + [sym_fsi_directive_decl] = STATE(962), + [sym_preproc_line] = STATE(962), + [aux_sym_compound_type_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_AT_GT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), - [anon_sym_AT_AT_GT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3266), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(3244), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LT2] = ACTIONS(3270), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3272), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -164330,592 +165569,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - }, - [954] = { - [sym_block_comment] = STATE(954), - [sym_compiler_directive_decl] = STATE(954), - [sym_fsi_directive_decl] = STATE(954), - [sym_preproc_line] = STATE(954), - [aux_sym_compound_type_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DOT_DOT2] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - [sym__dedent] = ACTIONS(2984), - }, - [955] = { - [sym_type_arguments] = STATE(1392), - [sym_long_identifier] = STATE(1354), - [sym_block_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(1310), - [sym_identifier] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(3254), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3256), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - }, - [956] = { - [sym_block_comment] = STATE(956), - [sym_compiler_directive_decl] = STATE(956), - [sym_fsi_directive_decl] = STATE(956), - [sym_preproc_line] = STATE(956), - [aux_sym_long_identifier_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_GT_RBRACK] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_RBRACK] = ACTIONS(2971), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_to] = ACTIONS(2973), - [anon_sym_downto] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_DOT_DOT2] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [957] = { - [sym_type_arguments] = STATE(1392), - [sym_long_identifier] = STATE(1354), - [sym_block_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(1310), - [sym_identifier] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_AT_GT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(3254), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3256), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [958] = { - [sym_block_comment] = STATE(958), - [sym_compiler_directive_decl] = STATE(958), - [sym_fsi_directive_decl] = STATE(958), - [sym_preproc_line] = STATE(958), - [aux_sym_long_identifier_repeat1] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(3001), - [sym_identifier] = ACTIONS(3004), - [anon_sym_namespace] = ACTIONS(3004), - [anon_sym_module] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_LBRACK_LT] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [anon_sym_exception] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3001), - [anon_sym_POUNDload] = ACTIONS(3001), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, - [959] = { - [sym_type_arguments] = STATE(1392), - [sym_long_identifier] = STATE(1354), - [sym_block_comment] = STATE(959), - [sym_compiler_directive_decl] = STATE(959), - [sym_fsi_directive_decl] = STATE(959), - [sym_preproc_line] = STATE(959), - [aux_sym_compound_type_repeat1] = STATE(1310), - [sym_identifier] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(2884), + [963] = { + [sym_type_arguments] = STATE(1472), + [sym_long_identifier] = STATE(1417), + [sym_block_comment] = STATE(963), + [sym_compiler_directive_decl] = STATE(963), + [sym_fsi_directive_decl] = STATE(963), + [sym_preproc_line] = STATE(963), + [aux_sym_compound_type_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_AT_AT_GT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3252), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(3254), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_LT2] = ACTIONS(3256), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3258), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -164924,394 +165668,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [960] = { - [sym_type_arguments] = STATE(1439), - [sym_long_identifier] = STATE(1433), - [sym_block_comment] = STATE(960), - [sym_compiler_directive_decl] = STATE(960), - [sym_fsi_directive_decl] = STATE(960), - [sym_preproc_line] = STATE(960), - [aux_sym_compound_type_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3264), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(3244), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3246), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [964] = { + [sym_block_comment] = STATE(964), + [sym_compiler_directive_decl] = STATE(964), + [sym_fsi_directive_decl] = STATE(964), + [sym_preproc_line] = STATE(964), + [aux_sym_long_identifier_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, - [961] = { - [sym_block_comment] = STATE(961), - [sym_compiler_directive_decl] = STATE(961), - [sym_fsi_directive_decl] = STATE(961), - [sym_preproc_line] = STATE(961), - [aux_sym_long_identifier_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_to] = ACTIONS(2988), - [anon_sym_downto] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [965] = { + [sym_block_comment] = STATE(965), + [sym_compiler_directive_decl] = STATE(965), + [sym_fsi_directive_decl] = STATE(965), + [sym_preproc_line] = STATE(965), + [aux_sym_type_argument_repeat1] = STATE(991), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3277), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), }, - [962] = { + [966] = { + [sym_block_comment] = STATE(966), + [sym_compiler_directive_decl] = STATE(966), + [sym_fsi_directive_decl] = STATE(966), + [sym_preproc_line] = STATE(966), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_GT_RBRACK] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3260), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DOT_DOT2] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + }, + [967] = { [sym_type_arguments] = STATE(1400), [sym_long_identifier] = STATE(1423), - [sym_block_comment] = STATE(962), - [sym_compiler_directive_decl] = STATE(962), - [sym_fsi_directive_decl] = STATE(962), - [sym_preproc_line] = STATE(962), - [aux_sym_compound_type_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), + [sym_block_comment] = STATE(967), + [sym_compiler_directive_decl] = STATE(967), + [sym_fsi_directive_decl] = STATE(967), + [sym_preproc_line] = STATE(967), + [aux_sym_compound_type_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3286), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3288), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [anon_sym_POUNDendif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [968] = { + [sym_type_arguments] = STATE(1400), + [sym_long_identifier] = STATE(1423), + [sym_block_comment] = STATE(968), + [sym_compiler_directive_decl] = STATE(968), + [sym_fsi_directive_decl] = STATE(968), + [sym_preproc_line] = STATE(968), + [aux_sym_compound_type_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LT_AT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), - [anon_sym_lazy] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_upcast] = ACTIONS(2906), - [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_begin] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(3273), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), - [anon_sym_LPAREN_PIPE] = ACTIONS(2906), - [sym_op_identifier] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_DOT] = ACTIONS(2906), - [anon_sym_DASH_DOT] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [aux_sym_infix_op_token2] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), - [anon_sym_DOLLAR] = ACTIONS(2906), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3286), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3288), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [anon_sym_POUNDendif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), + [anon_sym_POUNDif] = ACTIONS(2882), + [anon_sym_POUNDendif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [963] = { - [sym_type_arguments] = STATE(1439), - [sym_long_identifier] = STATE(1433), - [sym_block_comment] = STATE(963), - [sym_compiler_directive_decl] = STATE(963), - [sym_fsi_directive_decl] = STATE(963), - [sym_preproc_line] = STATE(963), - [aux_sym_compound_type_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3264), - [anon_sym_EQ] = ACTIONS(2884), + [969] = { + [sym_block_comment] = STATE(969), + [sym_compiler_directive_decl] = STATE(969), + [sym_fsi_directive_decl] = STATE(969), + [sym_preproc_line] = STATE(969), + [aux_sym_compound_type_repeat1] = STATE(969), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(2886), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(3244), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -165320,889 +166261,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, - [964] = { - [sym_type_arguments] = STATE(1439), - [sym_long_identifier] = STATE(1433), - [sym_block_comment] = STATE(964), - [sym_compiler_directive_decl] = STATE(964), - [sym_fsi_directive_decl] = STATE(964), - [sym_preproc_line] = STATE(964), - [aux_sym_compound_type_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3264), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_AT_AT_GT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(3244), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3246), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [965] = { - [sym_type_arguments] = STATE(1439), - [sym_long_identifier] = STATE(1433), - [sym_block_comment] = STATE(965), - [sym_compiler_directive_decl] = STATE(965), - [sym_fsi_directive_decl] = STATE(965), - [sym_preproc_line] = STATE(965), - [aux_sym_compound_type_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3264), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(3244), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3246), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - }, - [966] = { - [sym_block_comment] = STATE(966), - [sym_compiler_directive_decl] = STATE(966), - [sym_fsi_directive_decl] = STATE(966), - [sym_preproc_line] = STATE(966), - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_open] = ACTIONS(3279), - [anon_sym_LBRACK_LT] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [anon_sym_exception] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3277), - [anon_sym_POUNDload] = ACTIONS(3277), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - }, - [967] = { + [970] = { [sym_type_arguments] = STATE(1400), [sym_long_identifier] = STATE(1423), - [sym_block_comment] = STATE(967), - [sym_compiler_directive_decl] = STATE(967), - [sym_fsi_directive_decl] = STATE(967), - [sym_preproc_line] = STATE(967), - [aux_sym_compound_type_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(3273), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, - [968] = { - [sym_type_arguments] = STATE(1392), - [sym_long_identifier] = STATE(1354), - [sym_block_comment] = STATE(968), - [sym_compiler_directive_decl] = STATE(968), - [sym_fsi_directive_decl] = STATE(968), - [sym_preproc_line] = STATE(968), - [aux_sym_compound_type_repeat1] = STATE(1310), - [sym_identifier] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(3254), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3256), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, - [969] = { - [sym_block_comment] = STATE(969), - [sym_compiler_directive_decl] = STATE(969), - [sym_fsi_directive_decl] = STATE(969), - [sym_preproc_line] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(3283), - [sym_identifier] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_open] = ACTIONS(3285), - [anon_sym_LBRACK_LT] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [anon_sym_exception] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3283), - [anon_sym_POUNDload] = ACTIONS(3283), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), - }, - [970] = { [sym_block_comment] = STATE(970), [sym_compiler_directive_decl] = STATE(970), [sym_fsi_directive_decl] = STATE(970), [sym_preproc_line] = STATE(970), - [aux_sym_long_identifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [sym__dedent] = ACTIONS(3001), + [aux_sym_compound_type_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3286), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3288), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [anon_sym_POUNDendif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), }, [971] = { [sym_block_comment] = STATE(971), [sym_compiler_directive_decl] = STATE(971), [sym_fsi_directive_decl] = STATE(971), [sym_preproc_line] = STATE(971), - [aux_sym_long_identifier_repeat1] = STATE(975), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [sym__dedent] = ACTIONS(3001), + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym_open] = ACTIONS(3295), + [anon_sym_LBRACK_LT] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [anon_sym_exception] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3293), + [anon_sym_POUNDload] = ACTIONS(3293), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [972] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), + [sym_type_arguments] = STATE(1400), + [sym_long_identifier] = STATE(1423), [sym_block_comment] = STATE(972), [sym_compiler_directive_decl] = STATE(972), [sym_fsi_directive_decl] = STATE(972), [sym_preproc_line] = STATE(972), - [aux_sym_compound_type_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [aux_sym_compound_type_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(3282), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3286), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3288), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -166211,1780 +166558,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), + [anon_sym_POUNDif] = ACTIONS(2904), + [anon_sym_POUNDendif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, [973] = { + [sym__else_expression] = STATE(1814), + [sym_elif_expression] = STATE(1356), [sym_block_comment] = STATE(973), [sym_compiler_directive_decl] = STATE(973), [sym_fsi_directive_decl] = STATE(973), [sym_preproc_line] = STATE(973), - [aux_sym_long_identifier_repeat1] = STATE(956), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_GT_RBRACK] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3301), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_to] = ACTIONS(3004), - [anon_sym_downto] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [aux_sym_if_expression_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_elif] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_DOT_DOT2] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), + [sym__dedent] = ACTIONS(2973), }, [974] = { [sym_block_comment] = STATE(974), [sym_compiler_directive_decl] = STATE(974), [sym_fsi_directive_decl] = STATE(974), [sym_preproc_line] = STATE(974), - [aux_sym_type_argument_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3305), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [aux_sym_sequential_expression_repeat1] = STATE(974), + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_open] = ACTIONS(3299), + [anon_sym_LBRACK_LT] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [anon_sym_exception] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3297), + [anon_sym_POUNDload] = ACTIONS(3297), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(3301), }, [975] = { [sym_block_comment] = STATE(975), [sym_compiler_directive_decl] = STATE(975), [sym_fsi_directive_decl] = STATE(975), [sym_preproc_line] = STATE(975), - [aux_sym_long_identifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_DOT_DOT2] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_open] = ACTIONS(3306), + [anon_sym_LBRACK_LT] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [anon_sym_exception] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3304), + [anon_sym_POUNDload] = ACTIONS(3304), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [976] = { [sym_block_comment] = STATE(976), [sym_compiler_directive_decl] = STATE(976), [sym_fsi_directive_decl] = STATE(976), [sym_preproc_line] = STATE(976), - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3223), - [anon_sym_LBRACK_LT] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [anon_sym_exception] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3221), - [anon_sym_POUNDload] = ACTIONS(3221), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_open] = ACTIONS(3235), + [anon_sym_LBRACK_LT] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [anon_sym_exception] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3233), + [anon_sym_POUNDload] = ACTIONS(3233), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [977] = { [sym_block_comment] = STATE(977), [sym_compiler_directive_decl] = STATE(977), [sym_fsi_directive_decl] = STATE(977), [sym_preproc_line] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_LBRACK_LT] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [anon_sym_exception] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3310), - [anon_sym_POUNDload] = ACTIONS(3310), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym_GT_RBRACK] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACK] = ACTIONS(3293), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_DOT_DOT2] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [978] = { [sym_block_comment] = STATE(978), [sym_compiler_directive_decl] = STATE(978), [sym_fsi_directive_decl] = STATE(978), [sym_preproc_line] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_open] = ACTIONS(3316), - [anon_sym_LBRACK_LT] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [anon_sym_exception] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3314), - [anon_sym_POUNDload] = ACTIONS(3314), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [aux_sym_long_identifier_repeat1] = STATE(1005), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_GT_RBRACK] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_RBRACK] = ACTIONS(2954), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_to] = ACTIONS(2956), + [anon_sym_downto] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_DOT_DOT2] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [979] = { - [sym__else_expression] = STATE(1676), - [sym_elif_expression] = STATE(1399), [sym_block_comment] = STATE(979), [sym_compiler_directive_decl] = STATE(979), [sym_fsi_directive_decl] = STATE(979), [sym_preproc_line] = STATE(979), - [aux_sym_if_expression_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_elif] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), - [sym__dedent] = ACTIONS(2965), + [aux_sym_long_identifier_repeat1] = STATE(1000), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_DOT_DOT2] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + [sym__dedent] = ACTIONS(3000), }, [980] = { + [sym_type_arguments] = STATE(1472), + [sym_long_identifier] = STATE(1417), [sym_block_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(984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - [sym__dedent] = ACTIONS(2984), - }, - [981] = { - [sym_block_comment] = STATE(981), - [sym_compiler_directive_decl] = STATE(981), - [sym_fsi_directive_decl] = STATE(981), - [sym_preproc_line] = STATE(981), - [aux_sym_long_identifier_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [982] = { - [sym_type_arguments] = STATE(1400), - [sym_long_identifier] = STATE(1423), - [sym_block_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(1309), - [sym_identifier] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(3273), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token2] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [anon_sym_POUNDendif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - }, - [983] = { - [sym_type_arguments] = STATE(1400), - [sym_long_identifier] = STATE(1423), - [sym_block_comment] = STATE(983), - [sym_compiler_directive_decl] = STATE(983), - [sym_fsi_directive_decl] = STATE(983), - [sym_preproc_line] = STATE(983), - [aux_sym_compound_type_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(3273), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [anon_sym_POUNDendif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [984] = { - [sym_block_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(984), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), - }, - [985] = { - [sym_type_arguments] = STATE(1400), - [sym_long_identifier] = STATE(1423), - [sym_block_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(1309), - [sym_identifier] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(3273), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [anon_sym_POUNDendif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - }, - [986] = { - [sym__else_expression] = STATE(1722), - [sym_elif_expression] = STATE(1399), - [sym_block_comment] = STATE(986), - [sym_compiler_directive_decl] = STATE(986), - [sym_fsi_directive_decl] = STATE(986), - [sym_preproc_line] = STATE(986), - [aux_sym_if_expression_repeat1] = STATE(1235), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_elif] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), - [sym__dedent] = ACTIONS(3021), - }, - [987] = { - [sym_block_comment] = STATE(987), - [sym_compiler_directive_decl] = STATE(987), - [sym_fsi_directive_decl] = STATE(987), - [sym_preproc_line] = STATE(987), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_GT_RBRACK] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_to] = ACTIONS(3165), - [anon_sym_downto] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [988] = { - [sym_type_arguments] = STATE(1375), - [sym_long_identifier] = STATE(1350), - [sym_block_comment] = STATE(988), - [sym_compiler_directive_decl] = STATE(988), - [sym_fsi_directive_decl] = STATE(988), - [sym_preproc_line] = STATE(988), - [aux_sym_compound_type_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(3336), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - }, - [989] = { - [sym_type_arguments] = STATE(1375), - [sym_long_identifier] = STATE(1350), - [sym_block_comment] = STATE(989), - [sym_compiler_directive_decl] = STATE(989), - [sym_fsi_directive_decl] = STATE(989), - [sym_preproc_line] = STATE(989), - [aux_sym_compound_type_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(3336), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [990] = { - [sym_type_arguments] = STATE(1375), - [sym_long_identifier] = STATE(1350), - [sym_block_comment] = STATE(990), - [sym_compiler_directive_decl] = STATE(990), - [sym_fsi_directive_decl] = STATE(990), - [sym_preproc_line] = STATE(990), - [aux_sym_compound_type_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [aux_sym_compound_type_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), + [anon_sym_AT_AT_GT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3332), + [anon_sym_DASH_GT] = ACTIONS(3252), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2906), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(3336), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_LT2] = ACTIONS(3256), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3258), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -167993,196 +167351,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, - [991] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), - [sym_block_comment] = STATE(991), - [sym_compiler_directive_decl] = STATE(991), - [sym_fsi_directive_decl] = STATE(991), - [sym_preproc_line] = STATE(991), - [aux_sym_compound_type_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [981] = { + [sym_block_comment] = STATE(981), + [sym_compiler_directive_decl] = STATE(981), + [sym_fsi_directive_decl] = STATE(981), + [sym_preproc_line] = STATE(981), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_GT_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_to] = ACTIONS(3221), + [anon_sym_downto] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, - [992] = { - [sym_type_arguments] = STATE(1375), - [sym_long_identifier] = STATE(1350), - [sym_block_comment] = STATE(992), - [sym_compiler_directive_decl] = STATE(992), - [sym_fsi_directive_decl] = STATE(992), - [sym_preproc_line] = STATE(992), - [aux_sym_compound_type_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(2884), + [982] = { + [sym__else_expression] = STATE(1564), + [sym_elif_expression] = STATE(1366), + [sym_block_comment] = STATE(982), + [sym_compiler_directive_decl] = STATE(982), + [sym_fsi_directive_decl] = STATE(982), + [sym_preproc_line] = STATE(982), + [aux_sym_if_expression_repeat1] = STATE(1235), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_elif] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), + [sym__dedent] = ACTIONS(3009), + }, + [983] = { + [sym_type_arguments] = STATE(1395), + [sym_long_identifier] = STATE(1391), + [sym_block_comment] = STATE(983), + [sym_compiler_directive_decl] = STATE(983), + [sym_fsi_directive_decl] = STATE(983), + [sym_preproc_line] = STATE(983), + [aux_sym_compound_type_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3324), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [984] = { + [sym_block_comment] = STATE(984), + [sym_compiler_directive_decl] = STATE(984), + [sym_fsi_directive_decl] = STATE(984), + [sym_preproc_line] = STATE(984), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_GT_RBRACK] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_RBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_to] = ACTIONS(3306), + [anon_sym_downto] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_DOT_DOT2] = ACTIONS(3304), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), + }, + [985] = { + [sym_type_arguments] = STATE(1395), + [sym_long_identifier] = STATE(1391), + [sym_block_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(1289), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3332), + [anon_sym_DASH_GT] = ACTIONS(3320), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_GT] = ACTIONS(2886), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(3336), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3324), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3326), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -168191,118 +167846,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [993] = { - [sym_type_arguments] = STATE(1392), - [sym_long_identifier] = STATE(1354), - [sym_block_comment] = STATE(993), - [sym_compiler_directive_decl] = STATE(993), - [sym_fsi_directive_decl] = STATE(993), - [sym_preproc_line] = STATE(993), - [aux_sym_compound_type_repeat1] = STATE(1310), - [sym_identifier] = ACTIONS(2906), + [986] = { + [sym_type_arguments] = STATE(1404), + [sym_long_identifier] = STATE(1458), + [sym_block_comment] = STATE(986), + [sym_compiler_directive_decl] = STATE(986), + [sym_fsi_directive_decl] = STATE(986), + [sym_preproc_line] = STATE(986), + [aux_sym_compound_type_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_AT_GT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3266), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LT2] = ACTIONS(3270), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [987] = { + [sym_type_arguments] = STATE(1395), + [sym_long_identifier] = STATE(1391), + [sym_block_comment] = STATE(987), + [sym_compiler_directive_decl] = STATE(987), + [sym_fsi_directive_decl] = STATE(987), + [sym_preproc_line] = STATE(987), + [aux_sym_compound_type_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(3318), [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2910), [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_COLON_QMARK] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2910), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2910), [anon_sym_LBRACK_PIPE] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LT_AT] = ACTIONS(2906), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2910), [anon_sym_return_BANG] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2910), [anon_sym_yield_BANG] = ACTIONS(2908), - [anon_sym_lazy] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_upcast] = ACTIONS(2906), - [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), [anon_sym_COLON_GT] = ACTIONS(2908), [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), [anon_sym_match_BANG] = ACTIONS(2908), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), [anon_sym_DOT_LBRACK] = ACTIONS(2908), [anon_sym_LT] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), [anon_sym_use_BANG] = ACTIONS(2908), [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_begin] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(3254), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3256), - [anon_sym_or] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3324), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(2910), [aux_sym_char_token1] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), [anon_sym_AT_DQUOTE] = ACTIONS(2908), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [sym_bool] = ACTIONS(2906), + [sym_bool] = ACTIONS(2910), [sym_unit] = ACTIONS(2908), - [anon_sym_LPAREN_PIPE] = ACTIONS(2906), - [sym_op_identifier] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_DOT] = ACTIONS(2906), - [anon_sym_DASH_DOT] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2910), [aux_sym_infix_op_token1] = ACTIONS(2908), - [aux_sym_infix_op_token2] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), [anon_sym_COLON_EQ] = ACTIONS(2908), - [anon_sym_DOLLAR] = ACTIONS(2906), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), [sym_xint] = ACTIONS(2908), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -168311,175 +168065,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2908), [sym__newline] = ACTIONS(2908), }, - [994] = { - [sym_block_comment] = STATE(994), - [sym_compiler_directive_decl] = STATE(994), - [sym_fsi_directive_decl] = STATE(994), - [sym_preproc_line] = STATE(994), - [aux_sym_type_argument_repeat1] = STATE(996), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [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(3015), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [988] = { + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), + [sym_block_comment] = STATE(988), + [sym_compiler_directive_decl] = STATE(988), + [sym_fsi_directive_decl] = STATE(988), + [sym_preproc_line] = STATE(988), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3328), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, - [995] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), - [sym_block_comment] = STATE(995), - [sym_compiler_directive_decl] = STATE(995), - [sym_fsi_directive_decl] = STATE(995), - [sym_preproc_line] = STATE(995), - [aux_sym_compound_type_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), + [989] = { + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), + [sym_block_comment] = STATE(989), + [sym_compiler_directive_decl] = STATE(989), + [sym_fsi_directive_decl] = STATE(989), + [sym_preproc_line] = STATE(989), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(2904), [anon_sym_COLON] = ACTIONS(2906), [anon_sym_return] = ACTIONS(2906), [anon_sym_do] = ACTIONS(2906), [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2904), [anon_sym_null] = ACTIONS(2906), [anon_sym_QMARK] = ACTIONS(2906), [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2904), [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), [anon_sym_LT_AT] = ACTIONS(2906), [anon_sym_LT_AT_AT] = ACTIONS(2906), [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2904), [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2904), [anon_sym_lazy] = ACTIONS(2906), [anon_sym_assert] = ACTIONS(2906), [anon_sym_upcast] = ACTIONS(2906), [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), [anon_sym_for] = ACTIONS(2906), [anon_sym_while] = ACTIONS(2906), [anon_sym_if] = ACTIONS(2906), [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3328), [anon_sym_try] = ACTIONS(2906), [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2904), [anon_sym_function] = ACTIONS(2906), [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), [anon_sym_begin] = ACTIONS(2906), [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), + [aux_sym_char_token1] = ACTIONS(2904), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), + [sym_unit] = ACTIONS(2904), [anon_sym_LPAREN_PIPE] = ACTIONS(2906), [sym_op_identifier] = ACTIONS(2906), [anon_sym_PLUS] = ACTIONS(2906), @@ -168488,463 +168242,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2906), [anon_sym_PERCENT] = ACTIONS(2906), [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2904), [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token1] = ACTIONS(2904), [aux_sym_infix_op_token2] = ACTIONS(2906), [anon_sym_PIPE_PIPE] = ACTIONS(2906), [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_COLON_EQ] = ACTIONS(2904), [anon_sym_DOLLAR] = ACTIONS(2906), [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), - }, - [996] = { - [sym_block_comment] = STATE(996), - [sym_compiler_directive_decl] = STATE(996), - [sym_fsi_directive_decl] = STATE(996), - [sym_preproc_line] = STATE(996), - [aux_sym_type_argument_repeat1] = STATE(996), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3344), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, - [997] = { - [sym_block_comment] = STATE(997), - [sym_compiler_directive_decl] = STATE(997), - [sym_fsi_directive_decl] = STATE(997), - [sym_preproc_line] = STATE(997), + [990] = { + [sym_block_comment] = STATE(990), + [sym_compiler_directive_decl] = STATE(990), + [sym_fsi_directive_decl] = STATE(990), + [sym_preproc_line] = STATE(990), [aux_sym_long_identifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - [sym__dedent] = ACTIONS(2957), - }, - [998] = { - [sym_block_comment] = STATE(998), - [sym_compiler_directive_decl] = STATE(998), - [sym_fsi_directive_decl] = STATE(998), - [sym_preproc_line] = STATE(998), - [aux_sym_sequential_expression_repeat1] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3351), - [anon_sym_LBRACK_LT] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [anon_sym_exception] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3349), - [anon_sym_POUNDload] = ACTIONS(3349), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + [sym__dedent] = ACTIONS(3000), }, - [999] = { - [sym_block_comment] = STATE(999), - [sym_compiler_directive_decl] = STATE(999), - [sym_fsi_directive_decl] = STATE(999), - [sym_preproc_line] = STATE(999), - [aux_sym_long_identifier_repeat1] = STATE(1000), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), + [991] = { + [sym_block_comment] = STATE(991), + [sym_compiler_directive_decl] = STATE(991), + [sym_fsi_directive_decl] = STATE(991), + [sym_preproc_line] = STATE(991), + [aux_sym_type_argument_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + [sym__dedent] = ACTIONS(2960), }, - [1000] = { - [sym_block_comment] = STATE(1000), - [sym_compiler_directive_decl] = STATE(1000), - [sym_fsi_directive_decl] = STATE(1000), - [sym_preproc_line] = STATE(1000), + [992] = { + [sym_block_comment] = STATE(992), + [sym_compiler_directive_decl] = STATE(992), + [sym_fsi_directive_decl] = STATE(992), + [sym_preproc_line] = STATE(992), [aux_sym_long_identifier_repeat1] = STATE(1000), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3353), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_with] = ACTIONS(2988), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -168952,28 +168507,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_DOT_DOT2] = ACTIONS(2986), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -168982,98 +168538,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + [sym__dedent] = ACTIONS(2986), }, - [1001] = { - [sym_block_comment] = STATE(1001), - [sym_compiler_directive_decl] = STATE(1001), - [sym_fsi_directive_decl] = STATE(1001), - [sym_preproc_line] = STATE(1001), - [aux_sym_long_identifier_repeat1] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2990), + [993] = { + [sym_block_comment] = STATE(993), + [sym_compiler_directive_decl] = STATE(993), + [sym_fsi_directive_decl] = STATE(993), + [sym_preproc_line] = STATE(993), + [aux_sym_type_argument_repeat1] = STATE(993), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3344), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), + }, + [994] = { + [sym_block_comment] = STATE(994), + [sym_compiler_directive_decl] = STATE(994), + [sym_fsi_directive_decl] = STATE(994), + [sym_preproc_line] = STATE(994), + [aux_sym_type_argument_repeat1] = STATE(994), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_DOT_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3347), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), + }, + [995] = { + [sym_type_arguments] = STATE(1404), + [sym_long_identifier] = STATE(1458), + [sym_block_comment] = STATE(995), + [sym_compiler_directive_decl] = STATE(995), + [sym_fsi_directive_decl] = STATE(995), + [sym_preproc_line] = STATE(995), + [aux_sym_compound_type_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LT2] = ACTIONS(3270), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [996] = { + [sym_block_comment] = STATE(996), + [sym_compiler_directive_decl] = STATE(996), + [sym_fsi_directive_decl] = STATE(996), + [sym_preproc_line] = STATE(996), + [aux_sym_type_argument_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_DOT_DOT2] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + [sym__dedent] = ACTIONS(2960), + }, + [997] = { + [sym_block_comment] = STATE(997), + [sym_compiler_directive_decl] = STATE(997), + [sym_fsi_directive_decl] = STATE(997), + [sym_preproc_line] = STATE(997), + [aux_sym_long_identifier_repeat1] = STATE(999), [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -169082,1384 +169033,1880 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + [sym__dedent] = ACTIONS(2986), + }, + [998] = { + [sym_block_comment] = STATE(998), + [sym_compiler_directive_decl] = STATE(998), + [sym_fsi_directive_decl] = STATE(998), + [sym_preproc_line] = STATE(998), + [aux_sym_long_identifier_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_GT_RBRACK] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(3000), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_to] = ACTIONS(2997), + [anon_sym_downto] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_DOT_DOT2] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [999] = { + [sym_block_comment] = STATE(999), + [sym_compiler_directive_decl] = STATE(999), + [sym_fsi_directive_decl] = STATE(999), + [sym_preproc_line] = STATE(999), + [aux_sym_long_identifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), + }, + [1000] = { + [sym_block_comment] = STATE(1000), + [sym_compiler_directive_decl] = STATE(1000), + [sym_fsi_directive_decl] = STATE(1000), + [sym_preproc_line] = STATE(1000), + [aux_sym_long_identifier_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_DOT_DOT2] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), + }, + [1001] = { + [sym_block_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(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_open] = ACTIONS(3358), + [anon_sym_LBRACK_LT] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [anon_sym_exception] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3356), + [anon_sym_POUNDload] = ACTIONS(3356), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [1002] = { [sym_block_comment] = STATE(1002), [sym_compiler_directive_decl] = STATE(1002), [sym_fsi_directive_decl] = STATE(1002), [sym_preproc_line] = STATE(1002), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_GT_RBRACK] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_to] = ACTIONS(3359), - [anon_sym_downto] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_DOT_DOT2] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [aux_sym_long_identifier_repeat1] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1003] = { [sym_block_comment] = STATE(1003), [sym_compiler_directive_decl] = STATE(1003), [sym_fsi_directive_decl] = STATE(1003), [sym_preproc_line] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_LBRACK_LT] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3167), - [anon_sym_POUNDload] = ACTIONS(3167), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [aux_sym_long_identifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1004] = { - [sym_type_arguments] = STATE(1375), - [sym_long_identifier] = STATE(1350), [sym_block_comment] = STATE(1004), [sym_compiler_directive_decl] = STATE(1004), [sym_fsi_directive_decl] = STATE(1004), [sym_preproc_line] = STATE(1004), - [aux_sym_compound_type_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(3336), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_PLUS_DOT] = ACTIONS(2928), - [anon_sym_DASH_DOT] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [aux_sym_infix_op_token2] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_GT_RBRACK] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_to] = ACTIONS(3368), + [anon_sym_downto] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_DOT_DOT2] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1005] = { [sym_block_comment] = STATE(1005), [sym_compiler_directive_decl] = STATE(1005), [sym_fsi_directive_decl] = STATE(1005), [sym_preproc_line] = STATE(1005), - [aux_sym_long_identifier_repeat1] = STATE(975), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_DOT_DOT2] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - [sym__dedent] = ACTIONS(2957), + [aux_sym_long_identifier_repeat1] = STATE(1005), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_to] = ACTIONS(2964), + [anon_sym_downto] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1006] = { + [sym_type_arguments] = STATE(1400), + [sym_long_identifier] = STATE(1423), [sym_block_comment] = STATE(1006), [sym_compiler_directive_decl] = STATE(1006), [sym_fsi_directive_decl] = STATE(1006), [sym_preproc_line] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_LBRACK_LT] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [anon_sym_exception] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3138), - [anon_sym_POUNDload] = ACTIONS(3138), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [aux_sym_compound_type_repeat1] = STATE(1310), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3282), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3286), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3288), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [anon_sym_POUNDendif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1007] = { + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), [sym_block_comment] = STATE(1007), [sym_compiler_directive_decl] = STATE(1007), [sym_fsi_directive_decl] = STATE(1007), [sym_preproc_line] = STATE(1007), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_GT_RBRACK] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_to] = ACTIONS(3165), - [anon_sym_downto] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_DOT_DOT] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), }, [1008] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), [sym_block_comment] = STATE(1008), [sym_compiler_directive_decl] = STATE(1008), [sym_fsi_directive_decl] = STATE(1008), [sym_preproc_line] = STATE(1008), - [aux_sym_compound_type_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_DOT_DOT] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2912), - [aux_sym_infix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token2] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2912), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [aux_sym_long_identifier_repeat1] = STATE(956), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_open] = ACTIONS(2997), + [anon_sym_LBRACK_LT] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_exception] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3000), + [anon_sym_POUNDload] = ACTIONS(3000), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1009] = { + [sym_type_arguments] = STATE(1472), + [sym_long_identifier] = STATE(1417), [sym_block_comment] = STATE(1009), [sym_compiler_directive_decl] = STATE(1009), [sym_fsi_directive_decl] = STATE(1009), [sym_preproc_line] = STATE(1009), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_GT_RBRACK] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_RBRACK] = ACTIONS(3277), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_to] = ACTIONS(3279), - [anon_sym_downto] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_DOT_DOT2] = ACTIONS(3277), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [aux_sym_compound_type_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_AT_AT_GT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3252), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_LT2] = ACTIONS(3256), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1010] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), [sym_block_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(1251), - [sym_identifier] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [1011] = { [sym_block_comment] = STATE(1011), [sym_compiler_directive_decl] = STATE(1011), [sym_fsi_directive_decl] = STATE(1011), [sym_preproc_line] = STATE(1011), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_GT_RBRACK] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_RBRACK] = ACTIONS(3283), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_LT_AT] = ACTIONS(3285), - [anon_sym_LT_AT_AT] = ACTIONS(3285), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LBRACE_PIPE] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_DOT_DOT2] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_GT_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_to] = ACTIONS(3221), + [anon_sym_downto] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1012] = { [sym_block_comment] = STATE(1012), [sym_compiler_directive_decl] = STATE(1012), [sym_fsi_directive_decl] = STATE(1012), [sym_preproc_line] = STATE(1012), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_GT_RBRACK] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3314), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_to] = ACTIONS(3316), - [anon_sym_downto] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_DOT_DOT2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_open] = ACTIONS(3221), + [anon_sym_LBRACK_LT] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [anon_sym_exception] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3219), + [anon_sym_POUNDload] = ACTIONS(3219), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1013] = { [sym_block_comment] = STATE(1013), [sym_compiler_directive_decl] = STATE(1013), [sym_fsi_directive_decl] = STATE(1013), [sym_preproc_line] = STATE(1013), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_GT_RBRACK] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_to] = ACTIONS(3223), - [anon_sym_downto] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_DOT_DOT2] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_GT_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_to] = ACTIONS(3235), + [anon_sym_downto] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_DOT_DOT2] = ACTIONS(3233), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1014] = { [sym_block_comment] = STATE(1014), [sym_compiler_directive_decl] = STATE(1014), [sym_fsi_directive_decl] = STATE(1014), [sym_preproc_line] = STATE(1014), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [anon_sym_GT_RBRACK] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_RBRACK] = ACTIONS(3310), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_DOT_DOT2] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_GT_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_to] = ACTIONS(3235), + [anon_sym_downto] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1015] = { - [sym_type_arguments] = STATE(1469), - [sym_long_identifier] = STATE(1422), + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), [sym_block_comment] = STATE(1015), [sym_compiler_directive_decl] = STATE(1015), [sym_fsi_directive_decl] = STATE(1015), [sym_preproc_line] = STATE(1015), - [aux_sym_compound_type_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(2884), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [1016] = { + [sym_type_arguments] = STATE(1404), + [sym_long_identifier] = STATE(1458), + [sym_block_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(1297), + [sym_identifier] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(2882), [anon_sym_COLON] = ACTIONS(2886), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2882), [anon_sym_null] = ACTIONS(2886), [anon_sym_QMARK] = ACTIONS(2886), [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2882), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_AT_GT] = ACTIONS(2886), [anon_sym_LT_AT_AT] = ACTIONS(2886), [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), [anon_sym_for] = ACTIONS(2886), [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3266), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(3297), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LT2] = ACTIONS(3270), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3272), [anon_sym_or] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), [sym_op_identifier] = ACTIONS(2886), [anon_sym_PLUS] = ACTIONS(2886), @@ -170468,414 +170915,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2886), [anon_sym_PERCENT] = ACTIONS(2886), [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), [aux_sym_prefix_op_token1] = ACTIONS(2886), - [aux_sym_infix_op_token1] = ACTIONS(2884), + [aux_sym_infix_op_token1] = ACTIONS(2882), [aux_sym_infix_op_token2] = ACTIONS(2886), [anon_sym_PIPE_PIPE] = ACTIONS(2886), [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2882), [anon_sym_DOLLAR] = ACTIONS(2886), [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - }, - [1016] = { - [sym_block_comment] = STATE(1016), - [sym_compiler_directive_decl] = STATE(1016), - [sym_fsi_directive_decl] = STATE(1016), - [sym_preproc_line] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3359), - [anon_sym_LBRACK_LT] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [anon_sym_exception] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3361), - [anon_sym_POUNDload] = ACTIONS(3361), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [1017] = { + [sym_type_arguments] = STATE(1472), + [sym_long_identifier] = STATE(1417), [sym_block_comment] = STATE(1017), [sym_compiler_directive_decl] = STATE(1017), [sym_fsi_directive_decl] = STATE(1017), [sym_preproc_line] = STATE(1017), - [aux_sym_compound_type_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_DOT_DOT2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), + [aux_sym_compound_type_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_COLON_QMARK] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2910), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_DOT_LBRACK] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_LT2] = ACTIONS(3256), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2910), + [anon_sym_DASH_DOT] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [aux_sym_infix_op_token2] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), }, [1018] = { + [sym_type_arguments] = STATE(1473), + [sym_long_identifier] = STATE(1451), [sym_block_comment] = STATE(1018), [sym_compiler_directive_decl] = STATE(1018), [sym_fsi_directive_decl] = STATE(1018), [sym_preproc_line] = STATE(1018), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_GT_RBRACK] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_to] = ACTIONS(3140), - [anon_sym_downto] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_DOT_DOT2] = ACTIONS(3138), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [aux_sym_compound_type_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1019] = { + [sym_type_arguments] = STATE(1395), + [sym_long_identifier] = STATE(1391), [sym_block_comment] = STATE(1019), [sym_compiler_directive_decl] = STATE(1019), [sym_fsi_directive_decl] = STATE(1019), [sym_preproc_line] = STATE(1019), - [aux_sym_type_argument_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(3017), + [aux_sym_compound_type_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_COLON] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_COLON_QMARK] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2904), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_DOT_LBRACK] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3324), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(2906), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2906), + [anon_sym_DASH_DOT] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [aux_sym_infix_op_token2] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2904), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), + }, + [1020] = { + [sym__else_expression] = STATE(1768), + [sym_elif_expression] = STATE(1366), + [sym_block_comment] = STATE(1020), + [sym_compiler_directive_decl] = STATE(1020), + [sym_fsi_directive_decl] = STATE(1020), + [sym_preproc_line] = STATE(1020), + [aux_sym_if_expression_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_elif] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), + [sym__dedent] = ACTIONS(2973), + }, + [1021] = { + [sym_block_comment] = STATE(1021), + [sym_compiler_directive_decl] = STATE(1021), + [sym_fsi_directive_decl] = STATE(1021), + [sym_preproc_line] = STATE(1021), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_GT_RBRACK] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_RBRACK] = ACTIONS(3356), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_to] = ACTIONS(3358), + [anon_sym_downto] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT_DOT2] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), + }, + [1022] = { + [sym_block_comment] = STATE(1022), + [sym_compiler_directive_decl] = STATE(1022), + [sym_fsi_directive_decl] = STATE(1022), + [sym_preproc_line] = STATE(1022), + [aux_sym_compound_type_repeat1] = STATE(1024), + [sym_identifier] = ACTIONS(3013), [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), + [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(3017), + [anon_sym_LPAREN] = ACTIONS(3013), [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), + [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(3017), + [anon_sym_AMP] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3013), [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), + [anon_sym_yield] = ACTIONS(3013), [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), + [anon_sym_lazy] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_upcast] = ACTIONS(3013), + [anon_sym_downcast] = ACTIONS(3013), [anon_sym_COLON_GT] = ACTIONS(3015), [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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_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(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), [anon_sym_DOT_LBRACK] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), + [anon_sym_use] = ACTIONS(3013), [anon_sym_use_BANG] = ACTIONS(3015), [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_begin] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3013), [anon_sym_DOT_DOT2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_LT2] = ACTIONS(3013), [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3013), [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), + [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(3017), + [sym_bool] = ACTIONS(3013), [sym_unit] = ACTIONS(3015), - [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_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(3017), + [aux_sym_prefix_op_token1] = ACTIONS(3013), [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), + [aux_sym_infix_op_token2] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3013), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), + [sym_int] = ACTIONS(3013), [sym_xint] = ACTIONS(3015), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -170885,900 +171530,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3015), [sym__dedent] = ACTIONS(3015), }, - [1020] = { - [sym_block_comment] = STATE(1020), - [sym_compiler_directive_decl] = STATE(1020), - [sym_fsi_directive_decl] = STATE(1020), - [sym_preproc_line] = STATE(1020), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_GT_RBRACK] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_to] = ACTIONS(3140), - [anon_sym_downto] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - }, - [1021] = { - [sym__else_expression] = STATE(1550), - [sym_elif_expression] = STATE(1470), - [sym_block_comment] = STATE(1021), - [sym_compiler_directive_decl] = STATE(1021), - [sym_fsi_directive_decl] = STATE(1021), - [sym_preproc_line] = STATE(1021), - [aux_sym_if_expression_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3374), - [anon_sym_elif] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_DOT_DOT2] = ACTIONS(3021), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), - [sym__dedent] = ACTIONS(3021), - }, - [1022] = { - [sym_block_comment] = STATE(1022), - [sym_compiler_directive_decl] = STATE(1022), - [sym_fsi_directive_decl] = STATE(1022), - [sym_preproc_line] = STATE(1022), - [aux_sym_type_argument_repeat1] = STATE(1019), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3378), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), - }, [1023] = { + [sym_type_arguments] = STATE(1404), + [sym_long_identifier] = STATE(1458), [sym_block_comment] = STATE(1023), [sym_compiler_directive_decl] = STATE(1023), [sym_fsi_directive_decl] = STATE(1023), [sym_preproc_line] = STATE(1023), - [aux_sym_sequential_expression_repeat1] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3383), - [anon_sym_LBRACK_LT] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [anon_sym_exception] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3381), - [anon_sym_POUNDload] = ACTIONS(3381), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3385), + [aux_sym_compound_type_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_COLON_QMARK] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2900), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_DOT_LBRACK] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LT2] = ACTIONS(3270), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [aux_sym_infix_op_token2] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2900), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), }, [1024] = { - [sym__else_expression] = STATE(1613), - [sym_elif_expression] = STATE(1470), [sym_block_comment] = STATE(1024), [sym_compiler_directive_decl] = STATE(1024), [sym_fsi_directive_decl] = STATE(1024), [sym_preproc_line] = STATE(1024), - [aux_sym_if_expression_repeat1] = STATE(1021), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3374), - [anon_sym_elif] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_DOT_DOT2] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), - [sym__dedent] = ACTIONS(2965), + [aux_sym_compound_type_repeat1] = STATE(1024), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, [1025] = { [sym_block_comment] = STATE(1025), [sym_compiler_directive_decl] = STATE(1025), [sym_fsi_directive_decl] = STATE(1025), [sym_preproc_line] = STATE(1025), - [aux_sym_long_identifier_repeat1] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_module] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2973), - [anon_sym_LBRACK_LT] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [anon_sym_exception] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2971), - [anon_sym_POUNDload] = ACTIONS(2971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(3370), + [sym_identifier] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_open] = ACTIONS(3368), + [anon_sym_LBRACK_LT] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [anon_sym_exception] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3370), + [anon_sym_POUNDload] = ACTIONS(3370), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1026] = { [sym_block_comment] = STATE(1026), [sym_compiler_directive_decl] = STATE(1026), [sym_fsi_directive_decl] = STATE(1026), [sym_preproc_line] = STATE(1026), - [aux_sym_type_argument_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_DOT_DOT2] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3390), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), + [aux_sym_sequential_expression_repeat1] = STATE(974), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_open] = ACTIONS(3392), + [anon_sym_LBRACK_LT] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [anon_sym_exception] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3390), + [anon_sym_POUNDload] = ACTIONS(3390), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1027] = { + [sym_type_arguments] = STATE(1395), + [sym_long_identifier] = STATE(1391), [sym_block_comment] = STATE(1027), [sym_compiler_directive_decl] = STATE(1027), [sym_fsi_directive_decl] = STATE(1027), [sym_preproc_line] = STATE(1027), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_GT_RBRACK] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3395), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_to] = ACTIONS(3393), - [anon_sym_downto] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_DOT_DOT2] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [aux_sym_compound_type_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(3320), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2924), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3324), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1028] = { [sym_block_comment] = STATE(1028), [sym_compiler_directive_decl] = STATE(1028), [sym_fsi_directive_decl] = STATE(1028), [sym_preproc_line] = STATE(1028), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), + [aux_sym_type_argument_repeat1] = STATE(996), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_DOT_DOT2] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3394), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), }, [1029] = { [sym_block_comment] = STATE(1029), [sym_compiler_directive_decl] = STATE(1029), [sym_fsi_directive_decl] = STATE(1029), [sym_preproc_line] = STATE(1029), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), + }, + [1030] = { + [sym_block_comment] = STATE(1030), + [sym_compiler_directive_decl] = STATE(1030), + [sym_fsi_directive_decl] = STATE(1030), + [sym_preproc_line] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3397), [sym_identifier] = ACTIONS(3399), [anon_sym_namespace] = ACTIONS(3399), @@ -171863,7 +172311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3399), [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3397), @@ -171872,109 +172320,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3397), [sym__newline] = ACTIONS(3397), }, - [1030] = { - [sym_block_comment] = STATE(1030), - [sym_compiler_directive_decl] = STATE(1030), - [sym_fsi_directive_decl] = STATE(1030), - [sym_preproc_line] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3403), - [anon_sym_LBRACK_LT] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [anon_sym_exception] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3401), - [anon_sym_POUNDload] = ACTIONS(3401), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - }, [1031] = { [sym_block_comment] = STATE(1031), [sym_compiler_directive_decl] = STATE(1031), [sym_fsi_directive_decl] = STATE(1031), [sym_preproc_line] = STATE(1031), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), + }, + [1032] = { + [sym_block_comment] = STATE(1032), + [sym_compiler_directive_decl] = STATE(1032), + [sym_fsi_directive_decl] = STATE(1032), + [sym_preproc_line] = STATE(1032), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), + }, + [1033] = { + [sym_block_comment] = STATE(1033), + [sym_compiler_directive_decl] = STATE(1033), + [sym_fsi_directive_decl] = STATE(1033), + [sym_preproc_line] = STATE(1033), [sym_identifier] = ACTIONS(3405), [anon_sym_EQ] = ACTIONS(3407), [anon_sym_GT_RBRACK] = ACTIONS(3407), @@ -172059,7 +172605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3405), [sym_xint] = ACTIONS(3407), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -172068,11 +172614,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3407), [sym__newline] = ACTIONS(3407), }, - [1032] = { - [sym_block_comment] = STATE(1032), - [sym_compiler_directive_decl] = STATE(1032), - [sym_fsi_directive_decl] = STATE(1032), - [sym_preproc_line] = STATE(1032), + [1034] = { + [sym_block_comment] = STATE(1034), + [sym_compiler_directive_decl] = STATE(1034), + [sym_fsi_directive_decl] = STATE(1034), + [sym_preproc_line] = STATE(1034), [sym_identifier] = ACTIONS(3409), [anon_sym_EQ] = ACTIONS(3411), [anon_sym_GT_RBRACK] = ACTIONS(3411), @@ -172157,7 +172703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3409), [sym_xint] = ACTIONS(3411), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -172166,173 +172712,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3411), [sym__newline] = ACTIONS(3411), }, - [1033] = { - [sym_block_comment] = STATE(1033), - [sym_compiler_directive_decl] = STATE(1033), - [sym_fsi_directive_decl] = STATE(1033), - [sym_preproc_line] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_identifier] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3415), - [anon_sym_LBRACK_LT] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [anon_sym_exception] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3413), - [anon_sym_POUNDload] = ACTIONS(3413), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [1035] = { + [sym_block_comment] = STATE(1035), + [sym_compiler_directive_decl] = STATE(1035), + [sym_fsi_directive_decl] = STATE(1035), + [sym_preproc_line] = STATE(1035), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [anon_sym_or] = ACTIONS(3405), + [anon_sym_exception] = 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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3407), + [anon_sym_POUNDload] = ACTIONS(3407), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), }, - [1034] = { - [sym_block_comment] = STATE(1034), - [sym_compiler_directive_decl] = STATE(1034), - [sym_fsi_directive_decl] = STATE(1034), - [sym_preproc_line] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(3417), + [1036] = { + [sym_block_comment] = STATE(1036), + [sym_compiler_directive_decl] = STATE(1036), + [sym_fsi_directive_decl] = STATE(1036), + [sym_preproc_line] = STATE(1036), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), + }, + [1037] = { + [sym_block_comment] = STATE(1037), + [sym_compiler_directive_decl] = STATE(1037), + [sym_fsi_directive_decl] = STATE(1037), + [sym_preproc_line] = STATE(1037), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), + }, + [1038] = { + [sym_block_comment] = STATE(1038), + [sym_compiler_directive_decl] = STATE(1038), + [sym_fsi_directive_decl] = STATE(1038), + [sym_preproc_line] = STATE(1038), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_DOT_DOT2] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3417), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), + [sym__dedent] = ACTIONS(3082), + }, + [1039] = { + [sym_block_comment] = STATE(1039), + [sym_compiler_directive_decl] = STATE(1039), + [sym_fsi_directive_decl] = STATE(1039), + [sym_preproc_line] = STATE(1039), [sym_identifier] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3419), - [anon_sym_LBRACK_LT] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_GT_RBRACK] = ACTIONS(3421), [anon_sym_COLON] = ACTIONS(3419), [anon_sym_return] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), [anon_sym_do] = ACTIONS(3419), [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3421), [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3421), [anon_sym_null] = ACTIONS(3419), [anon_sym_QMARK] = ACTIONS(3419), [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3421), [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), + [anon_sym_RBRACK] = ACTIONS(3421), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3421), [anon_sym_LT_AT] = ACTIONS(3419), [anon_sym_LT_AT_AT] = ACTIONS(3419), [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3419), [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3421), [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3421), [anon_sym_lazy] = ACTIONS(3419), [anon_sym_assert] = ACTIONS(3419), [anon_sym_upcast] = ACTIONS(3419), [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), [anon_sym_for] = ACTIONS(3419), + [anon_sym_to] = ACTIONS(3419), + [anon_sym_downto] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), [anon_sym_fun] = ACTIONS(3419), [anon_sym_try] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3421), [anon_sym_function] = ACTIONS(3419), [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), [anon_sym_begin] = ACTIONS(3419), [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_DOT_DOT2] = ACTIONS(3421), [anon_sym_or] = ACTIONS(3419), - [anon_sym_exception] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), + [sym_unit] = ACTIONS(3421), [anon_sym_LPAREN_PIPE] = ACTIONS(3419), [sym_op_identifier] = ACTIONS(3419), [anon_sym_PLUS] = ACTIONS(3419), @@ -172341,96 +173181,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3419), [anon_sym_PERCENT] = ACTIONS(3419), [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3421), [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3421), [aux_sym_infix_op_token2] = ACTIONS(3419), [anon_sym_PIPE_PIPE] = ACTIONS(3419), [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3421), [anon_sym_DOLLAR] = ACTIONS(3419), [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3417), - [anon_sym_POUNDload] = ACTIONS(3417), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, - [1035] = { - [sym_block_comment] = STATE(1035), - [sym_compiler_directive_decl] = STATE(1035), - [sym_fsi_directive_decl] = STATE(1035), - [sym_preproc_line] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(3421), + [1040] = { + [sym_block_comment] = STATE(1040), + [sym_compiler_directive_decl] = STATE(1040), + [sym_fsi_directive_decl] = STATE(1040), + [sym_preproc_line] = STATE(1040), [sym_identifier] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3423), - [anon_sym_LBRACK_LT] = ACTIONS(3421), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_GT_RBRACK] = ACTIONS(3425), [anon_sym_COLON] = ACTIONS(3423), [anon_sym_return] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), [anon_sym_do] = ACTIONS(3423), [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_let_BANG] = ACTIONS(3425), [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(3425), [anon_sym_null] = ACTIONS(3423), [anon_sym_QMARK] = ACTIONS(3423), [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_COLON_COLON] = ACTIONS(3425), [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_RBRACK] = ACTIONS(3425), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3425), [anon_sym_LT_AT] = ACTIONS(3423), [anon_sym_LT_AT_AT] = ACTIONS(3423), [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3423), [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_return_BANG] = ACTIONS(3425), [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_yield_BANG] = ACTIONS(3425), [anon_sym_lazy] = ACTIONS(3423), [anon_sym_assert] = ACTIONS(3423), [anon_sym_upcast] = ACTIONS(3423), [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), [anon_sym_for] = ACTIONS(3423), + [anon_sym_to] = ACTIONS(3423), + [anon_sym_downto] = ACTIONS(3423), [anon_sym_while] = ACTIONS(3423), [anon_sym_if] = ACTIONS(3423), [anon_sym_fun] = ACTIONS(3423), [anon_sym_try] = ACTIONS(3423), [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_match_BANG] = ACTIONS(3425), [anon_sym_function] = ACTIONS(3423), [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), [anon_sym_begin] = ACTIONS(3423), [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_DOT_DOT2] = ACTIONS(3425), [anon_sym_or] = ACTIONS(3423), - [anon_sym_exception] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), + [aux_sym_char_token1] = ACTIONS(3425), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), + [sym_unit] = ACTIONS(3425), [anon_sym_LPAREN_PIPE] = ACTIONS(3423), [sym_op_identifier] = ACTIONS(3423), [anon_sym_PLUS] = ACTIONS(3423), @@ -172439,292 +173279,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3423), [anon_sym_PERCENT] = ACTIONS(3423), [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3425), [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token1] = ACTIONS(3425), [aux_sym_infix_op_token2] = ACTIONS(3423), [anon_sym_PIPE_PIPE] = ACTIONS(3423), [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_COLON_EQ] = ACTIONS(3425), [anon_sym_DOLLAR] = ACTIONS(3423), [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3421), - [anon_sym_POUNDload] = ACTIONS(3421), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), - }, - [1036] = { - [sym_block_comment] = STATE(1036), - [sym_compiler_directive_decl] = STATE(1036), - [sym_fsi_directive_decl] = STATE(1036), - [sym_preproc_line] = STATE(1036), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_DOT_DOT2] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, - [1037] = { - [sym_block_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(3425), - [sym_identifier] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3427), - [anon_sym_LBRACK_LT] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [anon_sym_exception] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [1041] = { + [sym_block_comment] = STATE(1041), + [sym_compiler_directive_decl] = STATE(1041), + [sym_fsi_directive_decl] = STATE(1041), + [sym_preproc_line] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_open] = ACTIONS(3429), + [anon_sym_LBRACK_LT] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_exception] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3425), - [anon_sym_POUNDload] = ACTIONS(3425), + [anon_sym_POUNDr] = ACTIONS(3427), + [anon_sym_POUNDload] = ACTIONS(3427), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, - [1038] = { - [sym_block_comment] = STATE(1038), - [sym_compiler_directive_decl] = STATE(1038), - [sym_fsi_directive_decl] = STATE(1038), - [sym_preproc_line] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(3429), + [1042] = { + [sym_block_comment] = STATE(1042), + [sym_compiler_directive_decl] = STATE(1042), + [sym_fsi_directive_decl] = STATE(1042), + [sym_preproc_line] = STATE(1042), [sym_identifier] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3431), - [anon_sym_LBRACK_LT] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_GT_RBRACK] = ACTIONS(3433), [anon_sym_COLON] = ACTIONS(3431), [anon_sym_return] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), [anon_sym_do] = ACTIONS(3431), [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3433), [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3433), [anon_sym_null] = ACTIONS(3431), [anon_sym_QMARK] = ACTIONS(3431), [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3433), [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3433), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3433), [anon_sym_LT_AT] = ACTIONS(3431), [anon_sym_LT_AT_AT] = ACTIONS(3431), [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3431), [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3433), [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3433), [anon_sym_lazy] = ACTIONS(3431), [anon_sym_assert] = ACTIONS(3431), [anon_sym_upcast] = ACTIONS(3431), [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), [anon_sym_for] = ACTIONS(3431), + [anon_sym_to] = ACTIONS(3431), + [anon_sym_downto] = ACTIONS(3431), [anon_sym_while] = ACTIONS(3431), [anon_sym_if] = ACTIONS(3431), [anon_sym_fun] = ACTIONS(3431), [anon_sym_try] = ACTIONS(3431), [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3433), [anon_sym_function] = ACTIONS(3431), [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), [anon_sym_begin] = ACTIONS(3431), [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_DOT_DOT2] = ACTIONS(3433), [anon_sym_or] = ACTIONS(3431), - [anon_sym_exception] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3433), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), + [sym_unit] = ACTIONS(3433), [anon_sym_LPAREN_PIPE] = ACTIONS(3431), [sym_op_identifier] = ACTIONS(3431), [anon_sym_PLUS] = ACTIONS(3431), @@ -172733,2678 +173475,2384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3431), [anon_sym_PERCENT] = ACTIONS(3431), [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3433), [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3433), [aux_sym_infix_op_token2] = ACTIONS(3431), [anon_sym_PIPE_PIPE] = ACTIONS(3431), [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3433), [anon_sym_DOLLAR] = ACTIONS(3431), [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3429), - [anon_sym_POUNDload] = ACTIONS(3429), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [1039] = { - [sym_block_comment] = STATE(1039), - [sym_compiler_directive_decl] = STATE(1039), - [sym_fsi_directive_decl] = STATE(1039), - [sym_preproc_line] = STATE(1039), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_GT_RBRACK] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_to] = ACTIONS(3433), - [anon_sym_downto] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_DOT_DOT2] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - }, - [1040] = { - [sym_block_comment] = STATE(1040), - [sym_compiler_directive_decl] = STATE(1040), - [sym_fsi_directive_decl] = STATE(1040), - [sym_preproc_line] = STATE(1040), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_GT_RBRACK] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_to] = ACTIONS(3437), - [anon_sym_downto] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_DOT_DOT2] = ACTIONS(3439), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), - }, - [1041] = { - [sym_block_comment] = STATE(1041), - [sym_compiler_directive_decl] = STATE(1041), - [sym_fsi_directive_decl] = STATE(1041), - [sym_preproc_line] = STATE(1041), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_DOT_DOT2] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - [sym__dedent] = ACTIONS(3068), - }, - [1042] = { - [sym_block_comment] = STATE(1042), - [sym_compiler_directive_decl] = STATE(1042), - [sym_fsi_directive_decl] = STATE(1042), - [sym_preproc_line] = STATE(1042), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_GT_RBRACK] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_to] = ACTIONS(3441), - [anon_sym_downto] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_DOT_DOT2] = ACTIONS(3443), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [1043] = { [sym_block_comment] = STATE(1043), [sym_compiler_directive_decl] = STATE(1043), [sym_fsi_directive_decl] = STATE(1043), [sym_preproc_line] = STATE(1043), - [sym_identifier] = ACTIONS(3445), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), + }, + [1044] = { + [sym_block_comment] = STATE(1044), + [sym_compiler_directive_decl] = STATE(1044), + [sym_fsi_directive_decl] = STATE(1044), + [sym_preproc_line] = STATE(1044), + [aux_sym_sequential_expression_repeat1] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_open] = ACTIONS(3392), + [anon_sym_LBRACK_LT] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [anon_sym_exception] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3390), + [anon_sym_POUNDload] = ACTIONS(3390), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + }, + [1045] = { + [sym_block_comment] = STATE(1045), + [sym_compiler_directive_decl] = STATE(1045), + [sym_fsi_directive_decl] = STATE(1045), + [sym_preproc_line] = STATE(1045), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), + }, + [1046] = { + [sym_block_comment] = STATE(1046), + [sym_compiler_directive_decl] = STATE(1046), + [sym_fsi_directive_decl] = STATE(1046), + [sym_preproc_line] = STATE(1046), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), + }, + [1047] = { + [sym_block_comment] = STATE(1047), + [sym_compiler_directive_decl] = STATE(1047), + [sym_fsi_directive_decl] = STATE(1047), + [sym_preproc_line] = STATE(1047), + [ts_builtin_sym_end] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_GT_RBRACK] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), + [anon_sym_open] = ACTIONS(3449), + [anon_sym_LBRACK_LT] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_type] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3449), [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3449), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3449), [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3449), [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3449), [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), [anon_sym_COLON_GT] = ACTIONS(3447), [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_to] = ACTIONS(3445), - [anon_sym_downto] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), [anon_sym_DOT_LBRACK] = ACTIONS(3447), [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), + [anon_sym_use] = ACTIONS(3449), [anon_sym_use_BANG] = ACTIONS(3447), [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_DOT_DOT2] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3445), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [anon_sym_exception] = ACTIONS(3449), [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), [anon_sym_AT_DQUOTE] = ACTIONS(3447), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), + [sym_bool] = ACTIONS(3449), [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), + [aux_sym_prefix_op_token1] = ACTIONS(3449), [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), [sym_xint] = ACTIONS(3447), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3447), + [anon_sym_POUNDload] = ACTIONS(3447), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3447), [sym__newline] = ACTIONS(3447), }, - [1044] = { - [sym_block_comment] = STATE(1044), - [sym_compiler_directive_decl] = STATE(1044), - [sym_fsi_directive_decl] = STATE(1044), - [sym_preproc_line] = STATE(1044), - [aux_sym_compound_type_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [1045] = { - [sym_block_comment] = STATE(1045), - [sym_compiler_directive_decl] = STATE(1045), - [sym_fsi_directive_decl] = STATE(1045), - [sym_preproc_line] = STATE(1045), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), - }, - [1046] = { - [sym_block_comment] = STATE(1046), - [sym_compiler_directive_decl] = STATE(1046), - [sym_fsi_directive_decl] = STATE(1046), - [sym_preproc_line] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_module] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_open] = ACTIONS(3454), - [anon_sym_LBRACK_LT] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [anon_sym_exception] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3452), - [anon_sym_POUNDload] = ACTIONS(3452), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - }, - [1047] = { - [sym_block_comment] = STATE(1047), - [sym_compiler_directive_decl] = STATE(1047), - [sym_fsi_directive_decl] = STATE(1047), - [sym_preproc_line] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_module] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_open] = ACTIONS(3458), - [anon_sym_LBRACK_LT] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_type] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [anon_sym_exception] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3456), - [anon_sym_POUNDload] = ACTIONS(3456), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - }, [1048] = { [sym_block_comment] = STATE(1048), [sym_compiler_directive_decl] = STATE(1048), [sym_fsi_directive_decl] = STATE(1048), [sym_preproc_line] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_module] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_open] = ACTIONS(3462), - [anon_sym_LBRACK_LT] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_type] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [anon_sym_exception] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3460), - [anon_sym_POUNDload] = ACTIONS(3460), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3453), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_module] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_open] = ACTIONS(3453), + [anon_sym_LBRACK_LT] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_type] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [anon_sym_exception] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3451), + [anon_sym_POUNDload] = ACTIONS(3451), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [1049] = { - [sym__else_expression] = STATE(2109), - [sym_elif_expression] = STATE(1499), [sym_block_comment] = STATE(1049), [sym_compiler_directive_decl] = STATE(1049), [sym_fsi_directive_decl] = STATE(1049), [sym_preproc_line] = STATE(1049), - [aux_sym_if_expression_repeat1] = STATE(1252), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_elif] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_DOT_DOT] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [anon_sym_open] = ACTIONS(3457), + [anon_sym_LBRACK_LT] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [anon_sym_exception] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3455), + [anon_sym_POUNDload] = ACTIONS(3455), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [1050] = { [sym_block_comment] = STATE(1050), [sym_compiler_directive_decl] = STATE(1050), [sym_fsi_directive_decl] = STATE(1050), [sym_preproc_line] = STATE(1050), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), - [anon_sym_DOT_DOT2] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), + [sym__dedent] = ACTIONS(3066), }, [1051] = { [sym_block_comment] = STATE(1051), [sym_compiler_directive_decl] = STATE(1051), [sym_fsi_directive_decl] = STATE(1051), [sym_preproc_line] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3470), - [anon_sym_namespace] = ACTIONS(3470), - [anon_sym_module] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_open] = ACTIONS(3470), - [anon_sym_LBRACK_LT] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_type] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [anon_sym_exception] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3468), - [anon_sym_POUNDload] = ACTIONS(3468), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - }, - [1052] = { - [sym_block_comment] = STATE(1052), - [sym_compiler_directive_decl] = STATE(1052), - [sym_fsi_directive_decl] = STATE(1052), - [sym_preproc_line] = STATE(1052), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_DOT_DOT2] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_LPAREN2] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3072), + [anon_sym_DASH_DOT] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3072), + [aux_sym_infix_op_token1] = ACTIONS(3070), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - [sym__dedent] = ACTIONS(3040), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), + [sym__dedent] = ACTIONS(3070), + }, + [1052] = { + [sym_block_comment] = STATE(1052), + [sym_compiler_directive_decl] = STATE(1052), + [sym_fsi_directive_decl] = STATE(1052), + [sym_preproc_line] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3461), + [anon_sym_namespace] = ACTIONS(3461), + [anon_sym_module] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_open] = ACTIONS(3461), + [anon_sym_LBRACK_LT] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_exception] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3459), + [anon_sym_POUNDload] = ACTIONS(3459), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [1053] = { [sym_block_comment] = STATE(1053), [sym_compiler_directive_decl] = STATE(1053), [sym_fsi_directive_decl] = STATE(1053), [sym_preproc_line] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_identifier] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_module] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_open] = ACTIONS(3474), - [anon_sym_LBRACK_LT] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_type] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [anon_sym_exception] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3472), - [anon_sym_POUNDload] = ACTIONS(3472), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [aux_sym_long_identifier_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1054] = { [sym_block_comment] = STATE(1054), [sym_compiler_directive_decl] = STATE(1054), [sym_fsi_directive_decl] = STATE(1054), [sym_preproc_line] = STATE(1054), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_GT_RBRACK] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_RBRACK] = ACTIONS(3478), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_RBRACE] = ACTIONS(3478), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_with] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_to] = ACTIONS(3476), - [anon_sym_downto] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_DOT_DOT2] = ACTIONS(3478), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_GT_RBRACK] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_RBRACK] = ACTIONS(3469), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_to] = ACTIONS(3467), + [anon_sym_downto] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_DOT_DOT2] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [1055] = { [sym_block_comment] = STATE(1055), [sym_compiler_directive_decl] = STATE(1055), [sym_fsi_directive_decl] = STATE(1055), [sym_preproc_line] = STATE(1055), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_DOT_DOT2] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), - [sym__dedent] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_DOT_DOT2] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), + [sym__dedent] = ACTIONS(3066), }, [1056] = { + [sym__else_expression] = STATE(2047), + [sym_elif_expression] = STATE(1534), [sym_block_comment] = STATE(1056), [sym_compiler_directive_decl] = STATE(1056), [sym_fsi_directive_decl] = STATE(1056), [sym_preproc_line] = STATE(1056), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_DOT_DOT2] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - [sym__dedent] = ACTIONS(3103), + [aux_sym_if_expression_repeat1] = STATE(1281), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3471), + [anon_sym_elif] = ACTIONS(3473), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1057] = { [sym_block_comment] = STATE(1057), [sym_compiler_directive_decl] = STATE(1057), [sym_fsi_directive_decl] = STATE(1057), [sym_preproc_line] = STATE(1057), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_GT_RBRACK] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_RBRACK] = ACTIONS(3482), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3482), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_to] = ACTIONS(3480), - [anon_sym_downto] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_DOT_DOT2] = ACTIONS(3482), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - }, - [1058] = { - [sym_block_comment] = STATE(1058), - [sym_compiler_directive_decl] = STATE(1058), - [sym_fsi_directive_decl] = STATE(1058), - [sym_preproc_line] = STATE(1058), - [aux_sym_compound_type_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [sym_identifier] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_LPAREN2] = ACTIONS(3072), + [anon_sym_DOT_DOT2] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3072), + [anon_sym_DASH_DOT] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3072), + [aux_sym_infix_op_token1] = ACTIONS(3070), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), + [sym__dedent] = ACTIONS(3070), + }, + [1058] = { + [sym_block_comment] = STATE(1058), + [sym_compiler_directive_decl] = STATE(1058), + [sym_fsi_directive_decl] = STATE(1058), + [sym_preproc_line] = STATE(1058), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_GT_RBRACK] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_RBRACK] = ACTIONS(3477), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_to] = ACTIONS(3475), + [anon_sym_downto] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_DOT_DOT2] = ACTIONS(3477), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [1059] = { [sym_block_comment] = STATE(1059), [sym_compiler_directive_decl] = STATE(1059), [sym_fsi_directive_decl] = STATE(1059), [sym_preproc_line] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_module] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_open] = ACTIONS(3486), - [anon_sym_LBRACK_LT] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_type] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [anon_sym_exception] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3484), - [anon_sym_POUNDload] = ACTIONS(3484), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_GT_RBRACK] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_RBRACK] = ACTIONS(3481), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_RBRACE] = ACTIONS(3481), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_to] = ACTIONS(3479), + [anon_sym_downto] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_DOT_DOT2] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [1060] = { [sym_block_comment] = STATE(1060), [sym_compiler_directive_decl] = STATE(1060), [sym_fsi_directive_decl] = STATE(1060), [sym_preproc_line] = STATE(1060), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_DOT_DOT2] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_RBRACK] = ACTIONS(3485), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_RBRACE] = ACTIONS(3485), + [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_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_LPAREN2] = ACTIONS(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1061] = { [sym_block_comment] = STATE(1061), [sym_compiler_directive_decl] = STATE(1061), [sym_fsi_directive_decl] = STATE(1061), [sym_preproc_line] = STATE(1061), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_GT_RBRACK] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_RBRACK] = ACTIONS(3490), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_RBRACE] = ACTIONS(3490), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_to] = ACTIONS(3488), - [anon_sym_downto] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_DOT_DOT2] = ACTIONS(3490), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_GT_RBRACK] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_RBRACK] = ACTIONS(3489), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_to] = ACTIONS(3487), + [anon_sym_downto] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_DOT_DOT2] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [1062] = { [sym_block_comment] = STATE(1062), [sym_compiler_directive_decl] = STATE(1062), [sym_fsi_directive_decl] = STATE(1062), [sym_preproc_line] = STATE(1062), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_GT_RBRACK] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_RBRACK] = ACTIONS(3494), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_to] = ACTIONS(3492), - [anon_sym_downto] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_DOT_DOT2] = ACTIONS(3494), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_module] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [anon_sym_open] = ACTIONS(3493), + [anon_sym_LBRACK_LT] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_exception] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3491), + [anon_sym_POUNDload] = ACTIONS(3491), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [1063] = { [sym_block_comment] = STATE(1063), [sym_compiler_directive_decl] = STATE(1063), [sym_fsi_directive_decl] = STATE(1063), [sym_preproc_line] = STATE(1063), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3496), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), - [sym__dedent] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_GT_RBRACK] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_RBRACK] = ACTIONS(3497), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_RBRACE] = ACTIONS(3497), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_to] = ACTIONS(3495), + [anon_sym_downto] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DOT_DOT2] = ACTIONS(3497), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [1064] = { [sym_block_comment] = STATE(1064), [sym_compiler_directive_decl] = STATE(1064), [sym_fsi_directive_decl] = STATE(1064), [sym_preproc_line] = STATE(1064), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_DOT_DOT2] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), - [sym__dedent] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_GT_RBRACK] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_RBRACK] = ACTIONS(3501), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_to] = ACTIONS(3499), + [anon_sym_downto] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_DOT_DOT2] = ACTIONS(3501), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, [1065] = { [sym_block_comment] = STATE(1065), [sym_compiler_directive_decl] = STATE(1065), [sym_fsi_directive_decl] = STATE(1065), [sym_preproc_line] = STATE(1065), - [aux_sym_type_argument_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3498), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [anon_sym_POUNDendif] = ACTIONS(3028), - [anon_sym_POUNDelse] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [anon_sym_GT_RBRACK] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_RBRACK] = ACTIONS(3491), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_RBRACE] = ACTIONS(3491), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3491), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_DOT_DOT2] = ACTIONS(3491), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [1066] = { [sym_block_comment] = STATE(1066), [sym_compiler_directive_decl] = STATE(1066), [sym_fsi_directive_decl] = STATE(1066), [sym_preproc_line] = STATE(1066), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_GT_RBRACK] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_RBRACK] = ACTIONS(3505), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_to] = ACTIONS(3503), + [anon_sym_downto] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_DOT_DOT2] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [1067] = { + [sym_block_comment] = STATE(1067), + [sym_compiler_directive_decl] = STATE(1067), + [sym_fsi_directive_decl] = STATE(1067), + [sym_preproc_line] = STATE(1067), [ts_builtin_sym_end] = ACTIONS(2526), [sym_identifier] = ACTIONS(2528), [anon_sym_namespace] = ACTIONS(2528), @@ -175489,7 +175937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(2526), @@ -175498,394 +175946,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [1067] = { - [sym_block_comment] = STATE(1067), - [sym_compiler_directive_decl] = STATE(1067), - [sym_fsi_directive_decl] = STATE(1067), - [sym_preproc_line] = STATE(1067), - [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_SEMI] = ACTIONS(3), - [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_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), - }, [1068] = { [sym_block_comment] = STATE(1068), [sym_compiler_directive_decl] = STATE(1068), [sym_fsi_directive_decl] = STATE(1068), [sym_preproc_line] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(3144), - [sym_identifier] = ACTIONS(3505), - [anon_sym_namespace] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_LBRACK_LT] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_type] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3144), - [anon_sym_POUNDload] = ACTIONS(3144), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(3509), + [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_to] = ACTIONS(3507), + [anon_sym_downto] = ACTIONS(3507), + [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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1069] = { [sym_block_comment] = STATE(1069), [sym_compiler_directive_decl] = STATE(1069), [sym_fsi_directive_decl] = STATE(1069), [sym_preproc_line] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3509), - [anon_sym_namespace] = ACTIONS(3509), - [anon_sym_module] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_LBRACK_LT] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_type] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_exception] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3507), - [anon_sym_POUNDload] = ACTIONS(3507), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3511), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), + [sym__dedent] = ACTIONS(3082), }, [1070] = { [sym_block_comment] = STATE(1070), [sym_compiler_directive_decl] = STATE(1070), [sym_fsi_directive_decl] = STATE(1070), [sym_preproc_line] = STATE(1070), - [sym_identifier] = ACTIONS(3511), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3515), + [anon_sym_namespace] = ACTIONS(3515), + [anon_sym_module] = ACTIONS(3515), [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_GT_RBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), + [anon_sym_open] = ACTIONS(3515), + [anon_sym_LBRACK_LT] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_type] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3515), [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_RBRACK] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3515), [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), + [anon_sym_new] = ACTIONS(3515), [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), + [anon_sym_yield] = ACTIONS(3515), [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), [anon_sym_COLON_GT] = ACTIONS(3513), [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_to] = ACTIONS(3511), - [anon_sym_downto] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), [anon_sym_DOT_LBRACK] = ACTIONS(3513), [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), + [anon_sym_use] = ACTIONS(3515), [anon_sym_use_BANG] = ACTIONS(3513), [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_DOT_DOT2] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3511), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [anon_sym_exception] = ACTIONS(3515), [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), [anon_sym_AT_DQUOTE] = ACTIONS(3513), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), + [sym_bool] = ACTIONS(3515), [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), + [aux_sym_prefix_op_token1] = ACTIONS(3515), [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3513), + [anon_sym_POUNDload] = ACTIONS(3513), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3513), [sym__newline] = ACTIONS(3513), @@ -175895,70 +176245,70 @@ 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(3515), [sym_identifier] = ACTIONS(3517), - [anon_sym_namespace] = ACTIONS(3517), - [anon_sym_module] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_LBRACK_LT] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_GT_RBRACK] = ACTIONS(3519), [anon_sym_COLON] = ACTIONS(3517), [anon_sym_return] = ACTIONS(3517), - [anon_sym_type] = ACTIONS(3517), [anon_sym_do] = ACTIONS(3517), [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3519), [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3519), [anon_sym_null] = ACTIONS(3517), [anon_sym_QMARK] = ACTIONS(3517), [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3519), [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), + [anon_sym_RBRACK] = ACTIONS(3519), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_RBRACE] = ACTIONS(3519), [anon_sym_LT_AT] = ACTIONS(3517), [anon_sym_LT_AT_AT] = ACTIONS(3517), [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3517), [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3519), [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3519), [anon_sym_lazy] = ACTIONS(3517), [anon_sym_assert] = ACTIONS(3517), [anon_sym_upcast] = ACTIONS(3517), [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), [anon_sym_for] = ACTIONS(3517), + [anon_sym_to] = ACTIONS(3517), + [anon_sym_downto] = ACTIONS(3517), [anon_sym_while] = ACTIONS(3517), [anon_sym_if] = ACTIONS(3517), [anon_sym_fun] = ACTIONS(3517), [anon_sym_try] = ACTIONS(3517), [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3519), [anon_sym_function] = ACTIONS(3517), [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), [anon_sym_begin] = ACTIONS(3517), [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_DOT_DOT2] = ACTIONS(3519), [anon_sym_or] = ACTIONS(3517), - [anon_sym_exception] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3519), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), + [sym_unit] = ACTIONS(3519), [anon_sym_LPAREN_PIPE] = ACTIONS(3517), [sym_op_identifier] = ACTIONS(3517), [anon_sym_PLUS] = ACTIONS(3517), @@ -175967,978 +176317,684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3517), [anon_sym_PERCENT] = ACTIONS(3517), [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3519), [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3519), [aux_sym_infix_op_token2] = ACTIONS(3517), [anon_sym_PIPE_PIPE] = ACTIONS(3517), [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3519), [anon_sym_DOLLAR] = ACTIONS(3517), [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3515), - [anon_sym_POUNDload] = ACTIONS(3515), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [1072] = { [sym_block_comment] = STATE(1072), [sym_compiler_directive_decl] = STATE(1072), [sym_fsi_directive_decl] = STATE(1072), [sym_preproc_line] = STATE(1072), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_DOT_DOT2] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - [sym__dedent] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_GT_RBRACK] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_RBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_to] = ACTIONS(3521), + [anon_sym_downto] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_DOT_DOT2] = ACTIONS(3523), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [1073] = { [sym_block_comment] = STATE(1073), [sym_compiler_directive_decl] = STATE(1073), [sym_fsi_directive_decl] = STATE(1073), [sym_preproc_line] = STATE(1073), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_DOT_DOT2] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), - [sym__dedent] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_GT_RBRACK] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_RBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_to] = ACTIONS(3525), + [anon_sym_downto] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_DOT_DOT2] = ACTIONS(3527), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [1074] = { [sym_block_comment] = STATE(1074), [sym_compiler_directive_decl] = STATE(1074), [sym_fsi_directive_decl] = STATE(1074), [sym_preproc_line] = STATE(1074), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_GT_RBRACK] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_RBRACK] = ACTIONS(3521), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3519), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_to] = ACTIONS(3519), - [anon_sym_downto] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_DOT_DOT2] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), - }, - [1075] = { - [sym_block_comment] = STATE(1075), - [sym_compiler_directive_decl] = STATE(1075), - [sym_fsi_directive_decl] = STATE(1075), - [sym_preproc_line] = STATE(1075), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3523), - [anon_sym_RBRACK] = ACTIONS(3525), - [anon_sym_LBRACK_PIPE] = ACTIONS(3525), - [anon_sym_LBRACE] = ACTIONS(3523), - [anon_sym_RBRACE] = ACTIONS(3525), - [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_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_LPAREN2] = ACTIONS(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - }, - [1076] = { - [sym_block_comment] = STATE(1076), - [sym_compiler_directive_decl] = STATE(1076), - [sym_fsi_directive_decl] = STATE(1076), - [sym_preproc_line] = STATE(1076), - [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), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3531), + [anon_sym_namespace] = ACTIONS(3531), + [anon_sym_module] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_open] = ACTIONS(3531), + [anon_sym_LBRACK_LT] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3531), + [anon_sym_type] = ACTIONS(3531), + [anon_sym_do] = ACTIONS(3531), + [anon_sym_let] = ACTIONS(3531), [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3527), - [anon_sym_RBRACK] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3531), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3531), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3531), [anon_sym_LBRACK_PIPE] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3527), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_LT_AT] = ACTIONS(3527), - [anon_sym_LT_AT_AT] = ACTIONS(3527), - [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_LT_AT] = ACTIONS(3531), + [anon_sym_LT_AT_AT] = ACTIONS(3531), + [anon_sym_DOT] = ACTIONS(3533), [anon_sym_LBRACE_PIPE] = ACTIONS(3529), - [anon_sym_with] = ACTIONS(3527), - [anon_sym_new] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3531), [anon_sym_return_BANG] = ACTIONS(3529), - [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3531), [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_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_lazy] = ACTIONS(3531), + [anon_sym_assert] = ACTIONS(3531), + [anon_sym_upcast] = ACTIONS(3531), + [anon_sym_downcast] = ACTIONS(3531), + [anon_sym_COLON_GT] = ACTIONS(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3531), + [anon_sym_if] = ACTIONS(3531), + [anon_sym_fun] = ACTIONS(3531), + [anon_sym_try] = ACTIONS(3531), + [anon_sym_match] = ACTIONS(3531), [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_function] = ACTIONS(3531), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3531), [anon_sym_use_BANG] = ACTIONS(3529), [anon_sym_do_BANG] = ACTIONS(3529), - [anon_sym_begin] = ACTIONS(3527), - [anon_sym_LPAREN2] = ACTIONS(3527), - [anon_sym_DOT_DOT2] = ACTIONS(3529), - [anon_sym_or] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3531), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [anon_sym_exception] = ACTIONS(3531), [aux_sym_char_token1] = ACTIONS(3529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), [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_bool] = ACTIONS(3531), [sym_unit] = ACTIONS(3529), - [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_LPAREN_PIPE] = ACTIONS(3531), + [sym_op_identifier] = ACTIONS(3531), + [anon_sym_PLUS] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3531), + [anon_sym_PLUS_DOT] = ACTIONS(3531), + [anon_sym_DASH_DOT] = ACTIONS(3531), + [anon_sym_PERCENT] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), [anon_sym_TILDE] = ACTIONS(3529), - [aux_sym_prefix_op_token1] = ACTIONS(3527), - [aux_sym_infix_op_token1] = ACTIONS(3529), - [aux_sym_infix_op_token2] = 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), + [aux_sym_prefix_op_token1] = ACTIONS(3531), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3531), [sym_xint] = ACTIONS(3529), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3529), + [anon_sym_POUNDload] = ACTIONS(3529), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [sym__newline] = ACTIONS(3239), }, - [1077] = { - [sym_block_comment] = STATE(1077), - [sym_compiler_directive_decl] = STATE(1077), - [sym_fsi_directive_decl] = STATE(1077), - [sym_preproc_line] = STATE(1077), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_DOT_DOT2] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3531), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), + [1075] = { + [sym_block_comment] = STATE(1075), + [sym_compiler_directive_decl] = STATE(1075), + [sym_fsi_directive_decl] = STATE(1075), + [sym_preproc_line] = STATE(1075), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_GT_RBRACK] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_RBRACK] = ACTIONS(3537), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_RBRACE] = ACTIONS(3537), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_to] = ACTIONS(3535), + [anon_sym_downto] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_DOT_DOT2] = ACTIONS(3537), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), - [sym__dedent] = ACTIONS(3056), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), + }, + [1076] = { + [sym_block_comment] = STATE(1076), + [sym_compiler_directive_decl] = STATE(1076), + [sym_fsi_directive_decl] = STATE(1076), + [sym_preproc_line] = STATE(1076), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), + }, + [1077] = { + [sym_block_comment] = STATE(1077), + [sym_compiler_directive_decl] = STATE(1077), + [sym_fsi_directive_decl] = STATE(1077), + [sym_preproc_line] = STATE(1077), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1078] = { [sym_block_comment] = STATE(1078), [sym_compiler_directive_decl] = STATE(1078), [sym_fsi_directive_decl] = STATE(1078), [sym_preproc_line] = STATE(1078), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), - }, - [1079] = { - [sym_block_comment] = STATE(1079), - [sym_compiler_directive_decl] = STATE(1079), - [sym_fsi_directive_decl] = STATE(1079), - [sym_preproc_line] = STATE(1079), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), - }, - [1080] = { - [sym_block_comment] = STATE(1080), - [sym_compiler_directive_decl] = STATE(1080), - [sym_fsi_directive_decl] = STATE(1080), - [sym_preproc_line] = STATE(1080), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_RBRACK] = ACTIONS(3535), - [anon_sym_LBRACK_PIPE] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3535), - [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_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_LPAREN2] = ACTIONS(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - }, - [1081] = { - [sym_block_comment] = STATE(1081), - [sym_compiler_directive_decl] = STATE(1081), - [sym_fsi_directive_decl] = STATE(1081), - [sym_preproc_line] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(3537), [sym_identifier] = ACTIONS(3539), - [anon_sym_namespace] = ACTIONS(3539), - [anon_sym_module] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_open] = ACTIONS(3539), - [anon_sym_LBRACK_LT] = ACTIONS(3537), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_GT_RBRACK] = ACTIONS(3541), [anon_sym_COLON] = ACTIONS(3539), [anon_sym_return] = ACTIONS(3539), - [anon_sym_type] = ACTIONS(3539), [anon_sym_do] = ACTIONS(3539), [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_let_BANG] = ACTIONS(3541), [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_COMMA] = ACTIONS(3541), [anon_sym_null] = ACTIONS(3539), [anon_sym_QMARK] = ACTIONS(3539), [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_RBRACK] = ACTIONS(3541), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_RBRACE] = ACTIONS(3541), [anon_sym_LT_AT] = ACTIONS(3539), [anon_sym_LT_AT_AT] = ACTIONS(3539), [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3539), [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_return_BANG] = ACTIONS(3541), [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_yield_BANG] = ACTIONS(3541), [anon_sym_lazy] = ACTIONS(3539), [anon_sym_assert] = ACTIONS(3539), [anon_sym_upcast] = ACTIONS(3539), [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), [anon_sym_for] = ACTIONS(3539), + [anon_sym_to] = ACTIONS(3539), + [anon_sym_downto] = ACTIONS(3539), [anon_sym_while] = ACTIONS(3539), [anon_sym_if] = ACTIONS(3539), [anon_sym_fun] = ACTIONS(3539), [anon_sym_try] = ACTIONS(3539), [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_match_BANG] = ACTIONS(3541), [anon_sym_function] = ACTIONS(3539), [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), [anon_sym_begin] = ACTIONS(3539), [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_DOT_DOT2] = ACTIONS(3541), [anon_sym_or] = ACTIONS(3539), - [anon_sym_exception] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), + [aux_sym_char_token1] = ACTIONS(3541), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), + [sym_unit] = ACTIONS(3541), [anon_sym_LPAREN_PIPE] = ACTIONS(3539), [sym_op_identifier] = ACTIONS(3539), [anon_sym_PLUS] = ACTIONS(3539), @@ -176947,1174 +177003,1076 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3539), [anon_sym_PERCENT] = ACTIONS(3539), [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3541), [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token1] = ACTIONS(3541), [aux_sym_infix_op_token2] = ACTIONS(3539), [anon_sym_PIPE_PIPE] = ACTIONS(3539), [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_COLON_EQ] = ACTIONS(3541), [anon_sym_DOLLAR] = ACTIONS(3539), [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3537), - [anon_sym_POUNDload] = ACTIONS(3537), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), + }, + [1079] = { + [sym_block_comment] = STATE(1079), + [sym_compiler_directive_decl] = STATE(1079), + [sym_fsi_directive_decl] = STATE(1079), + [sym_preproc_line] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_module] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [anon_sym_open] = ACTIONS(3545), + [anon_sym_LBRACK_LT] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_exception] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3543), + [anon_sym_POUNDload] = ACTIONS(3543), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), + }, + [1080] = { + [sym_block_comment] = STATE(1080), + [sym_compiler_directive_decl] = STATE(1080), + [sym_fsi_directive_decl] = STATE(1080), + [sym_preproc_line] = STATE(1080), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_DOT_DOT2] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), + [sym__dedent] = ACTIONS(3074), + }, + [1081] = { + [sym_block_comment] = STATE(1081), + [sym_compiler_directive_decl] = STATE(1081), + [sym_fsi_directive_decl] = STATE(1081), + [sym_preproc_line] = STATE(1081), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), + [sym__dedent] = ACTIONS(3074), }, [1082] = { [sym_block_comment] = STATE(1082), [sym_compiler_directive_decl] = STATE(1082), [sym_fsi_directive_decl] = STATE(1082), [sym_preproc_line] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3543), - [anon_sym_namespace] = ACTIONS(3543), - [anon_sym_module] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_open] = ACTIONS(3543), - [anon_sym_LBRACK_LT] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_type] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_exception] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3541), - [anon_sym_POUNDload] = ACTIONS(3541), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3549), + [anon_sym_namespace] = ACTIONS(3549), + [anon_sym_module] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_open] = ACTIONS(3549), + [anon_sym_LBRACK_LT] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_type] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [anon_sym_exception] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3547), + [anon_sym_POUNDload] = ACTIONS(3547), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [1083] = { [sym_block_comment] = STATE(1083), [sym_compiler_directive_decl] = STATE(1083), [sym_fsi_directive_decl] = STATE(1083), [sym_preproc_line] = STATE(1083), - [aux_sym_type_argument_repeat1] = STATE(1247), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_GT_RBRACK] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_RBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_to] = ACTIONS(3453), + [anon_sym_downto] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_DOT_DOT2] = ACTIONS(3451), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [1084] = { + [sym__else_expression] = STATE(1869), + [sym_elif_expression] = STATE(1547), [sym_block_comment] = STATE(1084), [sym_compiler_directive_decl] = STATE(1084), [sym_fsi_directive_decl] = STATE(1084), [sym_preproc_line] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3550), - [anon_sym_namespace] = ACTIONS(3550), - [anon_sym_module] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_open] = ACTIONS(3550), - [anon_sym_LBRACK_LT] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [anon_sym_exception] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3548), - [anon_sym_POUNDload] = ACTIONS(3548), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [aux_sym_if_expression_repeat1] = STATE(1344), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3551), + [anon_sym_elif] = ACTIONS(3553), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [anon_sym_POUNDendif] = ACTIONS(3009), + [anon_sym_POUNDelse] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1085] = { [sym_block_comment] = STATE(1085), [sym_compiler_directive_decl] = STATE(1085), [sym_fsi_directive_decl] = STATE(1085), [sym_preproc_line] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_module] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_open] = ACTIONS(3554), - [anon_sym_LBRACK_LT] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [anon_sym_exception] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3552), - [anon_sym_POUNDload] = ACTIONS(3552), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), + [sym__dedent] = ACTIONS(3054), }, [1086] = { [sym_block_comment] = STATE(1086), [sym_compiler_directive_decl] = STATE(1086), [sym_fsi_directive_decl] = STATE(1086), [sym_preproc_line] = STATE(1086), - [aux_sym_sequential_expression_repeat1] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3351), - [anon_sym_LBRACK_LT] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [anon_sym_exception] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3349), - [anon_sym_POUNDload] = ACTIONS(3349), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - }, - [1087] = { - [sym_block_comment] = STATE(1087), - [sym_compiler_directive_decl] = STATE(1087), - [sym_fsi_directive_decl] = STATE(1087), - [sym_preproc_line] = STATE(1087), - [aux_sym_compound_type_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_GT_RBRACK] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_RBRACK] = ACTIONS(3397), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_to] = ACTIONS(3399), + [anon_sym_downto] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_DOT_DOT2] = ACTIONS(3397), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [anon_sym_POUNDendif] = ACTIONS(2984), - [anon_sym_POUNDelse] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), + }, + [1087] = { + [sym_block_comment] = STATE(1087), + [sym_compiler_directive_decl] = STATE(1087), + [sym_fsi_directive_decl] = STATE(1087), + [sym_preproc_line] = STATE(1087), + [aux_sym_type_argument_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [anon_sym_POUNDendif] = ACTIONS(2960), + [anon_sym_POUNDelse] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [1088] = { [sym_block_comment] = STATE(1088), [sym_compiler_directive_decl] = STATE(1088), [sym_fsi_directive_decl] = STATE(1088), [sym_preproc_line] = STATE(1088), - [aux_sym_long_identifier_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3556), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [anon_sym_POUNDendif] = ACTIONS(2957), - [anon_sym_POUNDelse] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_GT_RBRACK] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_RBRACK] = ACTIONS(3557), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_RBRACE] = ACTIONS(3557), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_to] = ACTIONS(3555), + [anon_sym_downto] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_DOT_DOT2] = ACTIONS(3557), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [1089] = { [sym_block_comment] = STATE(1089), [sym_compiler_directive_decl] = STATE(1089), [sym_fsi_directive_decl] = STATE(1089), [sym_preproc_line] = STATE(1089), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_to] = ACTIONS(2988), - [anon_sym_downto] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1090] = { - [sym_block_comment] = STATE(1090), - [sym_compiler_directive_decl] = STATE(1090), - [sym_fsi_directive_decl] = STATE(1090), - [sym_preproc_line] = STATE(1090), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_DOT_DOT2] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - [sym__dedent] = ACTIONS(3076), - }, - [1091] = { - [sym_block_comment] = STATE(1091), - [sym_compiler_directive_decl] = STATE(1091), - [sym_fsi_directive_decl] = STATE(1091), - [sym_preproc_line] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(3070), - [sym_identifier] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3074), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [anon_sym_exception] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - }, - [1092] = { - [sym_elif_expression] = STATE(1470), - [sym_block_comment] = STATE(1092), - [sym_compiler_directive_decl] = STATE(1092), - [sym_fsi_directive_decl] = STATE(1092), - [sym_preproc_line] = STATE(1092), - [aux_sym_if_expression_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3558), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_DOT_DOT2] = ACTIONS(3086), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - [sym__dedent] = ACTIONS(3086), - }, - [1093] = { - [sym_block_comment] = STATE(1093), - [sym_compiler_directive_decl] = STATE(1093), - [sym_fsi_directive_decl] = STATE(1093), - [sym_preproc_line] = STATE(1093), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_GT_RBRACK] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_identifier] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_module] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_open] = ACTIONS(3561), + [anon_sym_LBRACK_LT] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_type] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3563), [anon_sym_LT_AT] = ACTIONS(3561), [anon_sym_LT_AT_AT] = ACTIONS(3561), [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_with] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), + [anon_sym_return_BANG] = ACTIONS(3559), [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), + [anon_sym_yield_BANG] = ACTIONS(3559), [anon_sym_lazy] = ACTIONS(3561), [anon_sym_assert] = ACTIONS(3561), [anon_sym_upcast] = ACTIONS(3561), [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), [anon_sym_for] = ACTIONS(3561), - [anon_sym_to] = ACTIONS(3561), - [anon_sym_downto] = ACTIONS(3561), [anon_sym_while] = ACTIONS(3561), [anon_sym_if] = ACTIONS(3561), [anon_sym_fun] = ACTIONS(3561), [anon_sym_try] = ACTIONS(3561), [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), + [anon_sym_match_BANG] = ACTIONS(3559), [anon_sym_function] = ACTIONS(3561), [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), [anon_sym_begin] = ACTIONS(3561), [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_DOT_DOT2] = ACTIONS(3563), [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), + [anon_sym_exception] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), + [sym_unit] = ACTIONS(3559), [anon_sym_LPAREN_PIPE] = ACTIONS(3561), [sym_op_identifier] = ACTIONS(3561), [anon_sym_PLUS] = ACTIONS(3561), @@ -178123,1272 +178081,2546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3561), [anon_sym_PERCENT] = ACTIONS(3561), [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3559), [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), + [aux_sym_infix_op_token1] = ACTIONS(3559), [aux_sym_infix_op_token2] = ACTIONS(3561), [anon_sym_PIPE_PIPE] = ACTIONS(3561), [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), + [anon_sym_COLON_EQ] = ACTIONS(3559), [anon_sym_DOLLAR] = ACTIONS(3561), [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [sym_xint] = ACTIONS(3559), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3559), + [anon_sym_POUNDload] = ACTIONS(3559), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), + }, + [1090] = { + [sym_block_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(1090), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [anon_sym_POUNDif] = ACTIONS(2882), + [anon_sym_POUNDendif] = ACTIONS(2882), + [anon_sym_POUNDelse] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [1091] = { + [sym_block_comment] = STATE(1091), + [sym_compiler_directive_decl] = STATE(1091), + [sym_fsi_directive_decl] = STATE(1091), + [sym_preproc_line] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_open] = ACTIONS(3568), + [anon_sym_LBRACK_LT] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [anon_sym_exception] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3566), + [anon_sym_POUNDload] = ACTIONS(3566), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + }, + [1092] = { + [sym_block_comment] = STATE(1092), + [sym_compiler_directive_decl] = STATE(1092), + [sym_fsi_directive_decl] = STATE(1092), + [sym_preproc_line] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3487), + [anon_sym_namespace] = ACTIONS(3487), + [anon_sym_module] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_open] = ACTIONS(3487), + [anon_sym_LBRACK_LT] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_type] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_exception] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3489), + [anon_sym_POUNDload] = ACTIONS(3489), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), + }, + [1093] = { + [sym_block_comment] = STATE(1093), + [sym_compiler_directive_decl] = STATE(1093), + [sym_fsi_directive_decl] = STATE(1093), + [sym_preproc_line] = STATE(1093), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_open] = ACTIONS(3572), + [anon_sym_LBRACK_LT] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [anon_sym_exception] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3570), + [anon_sym_POUNDload] = ACTIONS(3570), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [1094] = { + [sym__else_expression] = STATE(2089), + [sym_elif_expression] = STATE(1513), [sym_block_comment] = STATE(1094), [sym_compiler_directive_decl] = STATE(1094), [sym_fsi_directive_decl] = STATE(1094), [sym_preproc_line] = STATE(1094), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_GT_RBRACK] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_RBRACK] = ACTIONS(3567), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_RBRACE] = ACTIONS(3567), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3565), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_to] = ACTIONS(3565), - [anon_sym_downto] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_DOT_DOT2] = ACTIONS(3567), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [aux_sym_if_expression_repeat1] = STATE(1185), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_elif] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_DASH_GT] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [1095] = { [sym_block_comment] = STATE(1095), [sym_compiler_directive_decl] = STATE(1095), [sym_fsi_directive_decl] = STATE(1095), [sym_preproc_line] = STATE(1095), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_GT_RBRACK] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_RBRACK] = ACTIONS(3571), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_RBRACE] = ACTIONS(3571), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_to] = ACTIONS(3569), - [anon_sym_downto] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_DOT_DOT2] = ACTIONS(3571), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_GT_RBRACK] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_RBRACK] = ACTIONS(3580), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_to] = ACTIONS(3578), + [anon_sym_downto] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_DOT_DOT2] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [1096] = { [sym_block_comment] = STATE(1096), [sym_compiler_directive_decl] = STATE(1096), [sym_fsi_directive_decl] = STATE(1096), [sym_preproc_line] = STATE(1096), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_GT_RBRACK] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_RBRACK] = ACTIONS(3575), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_RBRACE] = ACTIONS(3575), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_to] = ACTIONS(3573), - [anon_sym_downto] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_DOT_DOT2] = ACTIONS(3575), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [1097] = { [sym_block_comment] = STATE(1097), [sym_compiler_directive_decl] = STATE(1097), [sym_fsi_directive_decl] = STATE(1097), [sym_preproc_line] = STATE(1097), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_RBRACE] = ACTIONS(3579), - [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_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_LPAREN2] = ACTIONS(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [anon_sym_or] = ACTIONS(3483), + [anon_sym_exception] = 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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3485), + [anon_sym_POUNDload] = ACTIONS(3485), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1098] = { [sym_block_comment] = STATE(1098), [sym_compiler_directive_decl] = STATE(1098), [sym_fsi_directive_decl] = STATE(1098), [sym_preproc_line] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3583), - [anon_sym_namespace] = ACTIONS(3583), - [anon_sym_module] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_open] = ACTIONS(3583), - [anon_sym_LBRACK_LT] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_type] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [anon_sym_exception] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3581), - [anon_sym_POUNDload] = ACTIONS(3581), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_module] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_open] = ACTIONS(3479), + [anon_sym_LBRACK_LT] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_type] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [anon_sym_exception] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3481), + [anon_sym_POUNDload] = ACTIONS(3481), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [1099] = { [sym_block_comment] = STATE(1099), [sym_compiler_directive_decl] = STATE(1099), [sym_fsi_directive_decl] = STATE(1099), [sym_preproc_line] = STATE(1099), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [1100] = { [sym_block_comment] = STATE(1100), [sym_compiler_directive_decl] = STATE(1100), [sym_fsi_directive_decl] = STATE(1100), [sym_preproc_line] = STATE(1100), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_exception] = 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(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(3411), - [aux_sym_infix_op_token2] = 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), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_GT_RBRACK] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3427), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_to] = ACTIONS(3429), + [anon_sym_downto] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_DOT_DOT2] = ACTIONS(3427), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3411), - [anon_sym_POUNDload] = ACTIONS(3411), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [1101] = { [sym_block_comment] = STATE(1101), [sym_compiler_directive_decl] = STATE(1101), [sym_fsi_directive_decl] = STATE(1101), [sym_preproc_line] = STATE(1101), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_GT_RBRACK] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_RBRACK] = ACTIONS(3589), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3587), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_to] = ACTIONS(3587), - [anon_sym_downto] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_DOT_DOT2] = ACTIONS(3589), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_DOT_DOT2] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + [sym__dedent] = ACTIONS(3080), }, [1102] = { [sym_block_comment] = STATE(1102), [sym_compiler_directive_decl] = STATE(1102), [sym_fsi_directive_decl] = STATE(1102), [sym_preproc_line] = STATE(1102), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_GT_RBRACK] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_RBRACK] = ACTIONS(3593), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_with] = ACTIONS(3591), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_to] = ACTIONS(3591), - [anon_sym_downto] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_DOT_DOT2] = ACTIONS(3593), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + [sym__dedent] = ACTIONS(3080), }, [1103] = { [sym_block_comment] = STATE(1103), [sym_compiler_directive_decl] = STATE(1103), [sym_fsi_directive_decl] = STATE(1103), [sym_preproc_line] = STATE(1103), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_GT_RBRACK] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_RBRACK] = ACTIONS(3597), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_with] = ACTIONS(3595), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_to] = ACTIONS(3595), - [anon_sym_downto] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_DOT_DOT2] = ACTIONS(3597), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [ts_builtin_sym_end] = ACTIONS(3590), + [sym_identifier] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_open] = ACTIONS(3592), + [anon_sym_LBRACK_LT] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [anon_sym_exception] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3590), + [anon_sym_POUNDload] = ACTIONS(3590), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [1104] = { - [sym__else_expression] = STATE(1940), - [sym_elif_expression] = STATE(1499), [sym_block_comment] = STATE(1104), [sym_compiler_directive_decl] = STATE(1104), [sym_fsi_directive_decl] = STATE(1104), [sym_preproc_line] = STATE(1104), - [aux_sym_if_expression_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_elif] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), }, [1105] = { [sym_block_comment] = STATE(1105), [sym_compiler_directive_decl] = STATE(1105), [sym_fsi_directive_decl] = STATE(1105), [sym_preproc_line] = STATE(1105), - [sym_identifier] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_DOT_DOT2] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), + [sym__dedent] = ACTIONS(3054), + }, + [1106] = { + [sym_block_comment] = STATE(1106), + [sym_compiler_directive_decl] = STATE(1106), + [sym_fsi_directive_decl] = STATE(1106), + [sym_preproc_line] = STATE(1106), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_DOT_DOT2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_PLUS_DOT] = ACTIONS(3088), + [anon_sym_DASH_DOT] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3088), + [aux_sym_infix_op_token1] = ACTIONS(3090), + [aux_sym_infix_op_token2] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), + [sym_int] = ACTIONS(3088), + [sym_xint] = ACTIONS(3090), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), + }, + [1107] = { + [sym_block_comment] = STATE(1107), + [sym_compiler_directive_decl] = STATE(1107), + [sym_fsi_directive_decl] = STATE(1107), + [sym_preproc_line] = STATE(1107), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), + }, + [1108] = { + [sym_block_comment] = STATE(1108), + [sym_compiler_directive_decl] = STATE(1108), + [sym_fsi_directive_decl] = STATE(1108), + [sym_preproc_line] = STATE(1108), + [aux_sym_sequential_expression_repeat1] = STATE(1108), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_GT_RBRACK] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_RBRACK] = ACTIONS(3297), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_to] = ACTIONS(3299), + [anon_sym_downto] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(3598), + }, + [1109] = { + [sym_block_comment] = STATE(1109), + [sym_compiler_directive_decl] = STATE(1109), + [sym_fsi_directive_decl] = STATE(1109), + [sym_preproc_line] = STATE(1109), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_PLUS_DOT] = ACTIONS(3088), + [anon_sym_DASH_DOT] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3088), + [aux_sym_infix_op_token1] = ACTIONS(3090), + [aux_sym_infix_op_token2] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), + [sym_int] = ACTIONS(3088), + [sym_xint] = ACTIONS(3090), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), + }, + [1110] = { + [sym_block_comment] = STATE(1110), + [sym_compiler_directive_decl] = STATE(1110), + [sym_fsi_directive_decl] = STATE(1110), + [sym_preproc_line] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_module] = ACTIONS(3603), [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_GT_RBRACK] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), + [anon_sym_open] = ACTIONS(3603), + [anon_sym_LBRACK_LT] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_type] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3603), [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_RBRACK] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3603), [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_with] = ACTIONS(3599), - [anon_sym_new] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3603), [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3603), [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), [anon_sym_COLON_GT] = ACTIONS(3601), [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_to] = ACTIONS(3599), - [anon_sym_downto] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), [anon_sym_DOT_LBRACK] = ACTIONS(3601), [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), + [anon_sym_use] = ACTIONS(3603), [anon_sym_use_BANG] = ACTIONS(3601), [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_DOT_DOT2] = ACTIONS(3601), - [anon_sym_or] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_exception] = ACTIONS(3603), [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), [anon_sym_AT_DQUOTE] = ACTIONS(3601), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), + [sym_bool] = ACTIONS(3603), [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), + [aux_sym_prefix_op_token1] = ACTIONS(3603), [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3601), + [anon_sym_POUNDload] = ACTIONS(3601), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3601), [sym__newline] = ACTIONS(3601), }, - [1106] = { - [sym_block_comment] = STATE(1106), - [sym_compiler_directive_decl] = STATE(1106), - [sym_fsi_directive_decl] = STATE(1106), - [sym_preproc_line] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(3603), + [1111] = { + [sym_block_comment] = STATE(1111), + [sym_compiler_directive_decl] = STATE(1111), + [sym_fsi_directive_decl] = STATE(1111), + [sym_preproc_line] = STATE(1111), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_DOT_DOT2] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), + [sym__dedent] = ACTIONS(3040), + }, + [1112] = { + [sym_block_comment] = STATE(1112), + [sym_compiler_directive_decl] = STATE(1112), + [sym_fsi_directive_decl] = STATE(1112), + [sym_preproc_line] = STATE(1112), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_DOT_DOT2] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), + [sym__dedent] = ACTIONS(3098), + }, + [1113] = { + [sym_block_comment] = STATE(1113), + [sym_compiler_directive_decl] = STATE(1113), + [sym_fsi_directive_decl] = STATE(1113), + [sym_preproc_line] = STATE(1113), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_DOT_DOT2] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), + [sym__dedent] = ACTIONS(3094), + }, + [1114] = { + [sym_block_comment] = STATE(1114), + [sym_compiler_directive_decl] = STATE(1114), + [sym_fsi_directive_decl] = STATE(1114), + [sym_preproc_line] = STATE(1114), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [anon_sym_or] = ACTIONS(3443), + [anon_sym_exception] = 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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3445), + [anon_sym_POUNDload] = ACTIONS(3445), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), + }, + [1115] = { + [sym_block_comment] = STATE(1115), + [sym_compiler_directive_decl] = STATE(1115), + [sym_fsi_directive_decl] = STATE(1115), + [sym_preproc_line] = STATE(1115), [sym_identifier] = ACTIONS(3605), - [anon_sym_namespace] = ACTIONS(3605), - [anon_sym_module] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_open] = ACTIONS(3605), - [anon_sym_LBRACK_LT] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_GT_RBRACK] = ACTIONS(3607), [anon_sym_COLON] = ACTIONS(3605), [anon_sym_return] = ACTIONS(3605), - [anon_sym_type] = ACTIONS(3605), [anon_sym_do] = ACTIONS(3605), [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3607), [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3607), [anon_sym_null] = ACTIONS(3605), [anon_sym_QMARK] = ACTIONS(3605), [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3607), [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), + [anon_sym_RBRACK] = ACTIONS(3607), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_RBRACE] = ACTIONS(3607), [anon_sym_LT_AT] = ACTIONS(3605), [anon_sym_LT_AT_AT] = ACTIONS(3605), [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3605), [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3607), [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3607), [anon_sym_lazy] = ACTIONS(3605), [anon_sym_assert] = ACTIONS(3605), [anon_sym_upcast] = ACTIONS(3605), [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), [anon_sym_for] = ACTIONS(3605), + [anon_sym_to] = ACTIONS(3605), + [anon_sym_downto] = ACTIONS(3605), [anon_sym_while] = ACTIONS(3605), [anon_sym_if] = ACTIONS(3605), [anon_sym_fun] = ACTIONS(3605), [anon_sym_try] = ACTIONS(3605), [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3607), [anon_sym_function] = ACTIONS(3605), [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), [anon_sym_begin] = ACTIONS(3605), [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_DOT_DOT2] = ACTIONS(3607), [anon_sym_or] = ACTIONS(3605), - [anon_sym_exception] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3607), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), + [sym_unit] = ACTIONS(3607), [anon_sym_LPAREN_PIPE] = ACTIONS(3605), [sym_op_identifier] = ACTIONS(3605), [anon_sym_PLUS] = ACTIONS(3605), @@ -179397,390 +180629,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3605), [anon_sym_PERCENT] = ACTIONS(3605), [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3607), [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3607), [aux_sym_infix_op_token2] = ACTIONS(3605), [anon_sym_PIPE_PIPE] = ACTIONS(3605), [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3607), [anon_sym_DOLLAR] = ACTIONS(3605), [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3603), - [anon_sym_POUNDload] = ACTIONS(3603), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), - }, - [1107] = { - [sym_block_comment] = STATE(1107), - [sym_compiler_directive_decl] = STATE(1107), - [sym_fsi_directive_decl] = STATE(1107), - [sym_preproc_line] = STATE(1107), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_exception] = 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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3407), - [anon_sym_POUNDload] = ACTIONS(3407), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), }, - [1108] = { - [sym_block_comment] = STATE(1108), - [sym_compiler_directive_decl] = STATE(1108), - [sym_fsi_directive_decl] = STATE(1108), - [sym_preproc_line] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3609), - [anon_sym_namespace] = ACTIONS(3609), - [anon_sym_module] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_open] = ACTIONS(3609), - [anon_sym_LBRACK_LT] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_type] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [anon_sym_exception] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3607), - [anon_sym_POUNDload] = ACTIONS(3607), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), - }, - [1109] = { - [sym_block_comment] = STATE(1109), - [sym_compiler_directive_decl] = STATE(1109), - [sym_fsi_directive_decl] = STATE(1109), - [sym_preproc_line] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(3435), - [sym_identifier] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_LBRACK_LT] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_exception] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3435), - [anon_sym_POUNDload] = ACTIONS(3435), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - }, - [1110] = { - [sym_block_comment] = STATE(1110), - [sym_compiler_directive_decl] = STATE(1110), - [sym_fsi_directive_decl] = STATE(1110), - [sym_preproc_line] = STATE(1110), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_GT_RBRACK] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [1116] = { + [sym_block_comment] = STATE(1116), + [sym_compiler_directive_decl] = STATE(1116), + [sym_fsi_directive_decl] = STATE(1116), + [sym_preproc_line] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3611), + [anon_sym_namespace] = ACTIONS(3611), + [anon_sym_module] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_open] = ACTIONS(3611), + [anon_sym_LBRACK_LT] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_type] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_RBRACK] = ACTIONS(3613), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_RBRACE] = ACTIONS(3613), [anon_sym_LT_AT] = ACTIONS(3611), [anon_sym_LT_AT_AT] = ACTIONS(3611), [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_with] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_return_BANG] = ACTIONS(3609), [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_yield_BANG] = ACTIONS(3609), [anon_sym_lazy] = ACTIONS(3611), [anon_sym_assert] = ACTIONS(3611), [anon_sym_upcast] = ACTIONS(3611), [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), [anon_sym_for] = ACTIONS(3611), - [anon_sym_to] = ACTIONS(3611), - [anon_sym_downto] = ACTIONS(3611), [anon_sym_while] = ACTIONS(3611), [anon_sym_if] = ACTIONS(3611), [anon_sym_fun] = ACTIONS(3611), [anon_sym_try] = ACTIONS(3611), [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_match_BANG] = ACTIONS(3609), [anon_sym_function] = ACTIONS(3611), [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), [anon_sym_begin] = ACTIONS(3611), [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_DOT_DOT2] = ACTIONS(3613), [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_exception] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), + [sym_unit] = ACTIONS(3609), [anon_sym_LPAREN_PIPE] = ACTIONS(3611), [sym_op_identifier] = ACTIONS(3611), [anon_sym_PLUS] = ACTIONS(3611), @@ -179789,2188 +180727,1698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3611), [anon_sym_PERCENT] = ACTIONS(3611), [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3609), [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token1] = ACTIONS(3609), [aux_sym_infix_op_token2] = ACTIONS(3611), [anon_sym_PIPE_PIPE] = ACTIONS(3611), [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_COLON_EQ] = ACTIONS(3609), [anon_sym_DOLLAR] = ACTIONS(3611), [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), - }, - [1111] = { - [sym_block_comment] = STATE(1111), - [sym_compiler_directive_decl] = STATE(1111), - [sym_fsi_directive_decl] = STATE(1111), - [sym_preproc_line] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_LBRACK_LT] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_exception] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3439), - [anon_sym_POUNDload] = ACTIONS(3439), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), - }, - [1112] = { - [sym_block_comment] = STATE(1112), - [sym_compiler_directive_decl] = STATE(1112), - [sym_fsi_directive_decl] = STATE(1112), - [sym_preproc_line] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3617), - [anon_sym_namespace] = ACTIONS(3617), - [anon_sym_module] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_open] = ACTIONS(3617), - [anon_sym_LBRACK_LT] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_type] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [anon_sym_exception] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3615), - [anon_sym_POUNDload] = ACTIONS(3615), + [anon_sym_POUNDr] = ACTIONS(3609), + [anon_sym_POUNDload] = ACTIONS(3609), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), - }, - [1113] = { - [sym_block_comment] = STATE(1113), - [sym_compiler_directive_decl] = STATE(1113), - [sym_fsi_directive_decl] = STATE(1113), - [sym_preproc_line] = STATE(1113), - [aux_sym_compound_type_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [anon_sym_POUNDendif] = ACTIONS(2914), - [anon_sym_POUNDelse] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [1114] = { - [sym_block_comment] = STATE(1114), - [sym_compiler_directive_decl] = STATE(1114), - [sym_fsi_directive_decl] = STATE(1114), - [sym_preproc_line] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(3622), - [sym_identifier] = ACTIONS(3624), - [anon_sym_namespace] = ACTIONS(3624), - [anon_sym_module] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [anon_sym_open] = ACTIONS(3624), - [anon_sym_LBRACK_LT] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [anon_sym_exception] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3622), - [anon_sym_POUNDload] = ACTIONS(3622), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - }, - [1115] = { - [sym_block_comment] = STATE(1115), - [sym_compiler_directive_decl] = STATE(1115), - [sym_fsi_directive_decl] = STATE(1115), - [sym_preproc_line] = STATE(1115), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_GT_RBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_to] = ACTIONS(3626), - [anon_sym_downto] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_DOT_DOT2] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), - }, - [1116] = { - [sym_block_comment] = STATE(1116), - [sym_compiler_directive_decl] = STATE(1116), - [sym_fsi_directive_decl] = STATE(1116), - [sym_preproc_line] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(3395), - [sym_identifier] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_open] = ACTIONS(3393), - [anon_sym_LBRACK_LT] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_exception] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3395), - [anon_sym_POUNDload] = ACTIONS(3395), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [1117] = { [sym_block_comment] = STATE(1117), [sym_compiler_directive_decl] = STATE(1117), [sym_fsi_directive_decl] = STATE(1117), [sym_preproc_line] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(3070), - [sym_identifier] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3074), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [anon_sym_exception] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), }, [1118] = { [sym_block_comment] = STATE(1118), [sym_compiler_directive_decl] = STATE(1118), [sym_fsi_directive_decl] = STATE(1118), [sym_preproc_line] = STATE(1118), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_GT_RBRACK] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_RBRACK] = ACTIONS(3632), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_to] = ACTIONS(3630), - [anon_sym_downto] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_DOT_DOT2] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3615), + [anon_sym_namespace] = ACTIONS(3615), + [anon_sym_module] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_open] = ACTIONS(3615), + [anon_sym_LBRACK_LT] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_type] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [anon_sym_exception] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3613), + [anon_sym_POUNDload] = ACTIONS(3613), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [1119] = { [sym_block_comment] = STATE(1119), [sym_compiler_directive_decl] = STATE(1119), [sym_fsi_directive_decl] = STATE(1119), [sym_preproc_line] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym_identifier] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_LBRACK_LT] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3443), - [anon_sym_POUNDload] = ACTIONS(3443), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_module] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_open] = ACTIONS(3619), + [anon_sym_LBRACK_LT] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_type] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [anon_sym_exception] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3617), + [anon_sym_POUNDload] = ACTIONS(3617), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [1120] = { [sym_block_comment] = STATE(1120), [sym_compiler_directive_decl] = STATE(1120), [sym_fsi_directive_decl] = STATE(1120), [sym_preproc_line] = STATE(1120), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_GT_RBRACK] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_to] = ACTIONS(3509), - [anon_sym_downto] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_DOT_DOT2] = ACTIONS(3507), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [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_SEMI] = ACTIONS(3), + [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_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [1121] = { + [sym__else_expression] = STATE(1894), + [sym_elif_expression] = STATE(1547), [sym_block_comment] = STATE(1121), [sym_compiler_directive_decl] = STATE(1121), [sym_fsi_directive_decl] = STATE(1121), [sym_preproc_line] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_LBRACK_LT] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_exception] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), + [aux_sym_if_expression_repeat1] = STATE(1084), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3551), + [anon_sym_elif] = ACTIONS(3553), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3447), - [anon_sym_POUNDload] = ACTIONS(3447), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [anon_sym_POUNDif] = ACTIONS(2973), + [anon_sym_POUNDendif] = ACTIONS(2973), + [anon_sym_POUNDelse] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [1122] = { [sym_block_comment] = STATE(1122), [sym_compiler_directive_decl] = STATE(1122), [sym_fsi_directive_decl] = STATE(1122), [sym_preproc_line] = STATE(1122), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_GT_RBRACK] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_RBRACK] = ACTIONS(3070), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_to] = ACTIONS(3074), - [anon_sym_downto] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [anon_sym_or] = ACTIONS(3586), + [anon_sym_exception] = 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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3588), + [anon_sym_POUNDload] = ACTIONS(3588), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [1123] = { [sym_block_comment] = STATE(1123), [sym_compiler_directive_decl] = STATE(1123), [sym_fsi_directive_decl] = STATE(1123), [sym_preproc_line] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(3634), - [sym_identifier] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_LBRACK_LT] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_exception] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3634), - [anon_sym_POUNDload] = ACTIONS(3634), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_module] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_open] = ACTIONS(3627), + [anon_sym_LBRACK_LT] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_type] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [anon_sym_exception] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3625), + [anon_sym_POUNDload] = ACTIONS(3625), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [1124] = { [sym_block_comment] = STATE(1124), [sym_compiler_directive_decl] = STATE(1124), [sym_fsi_directive_decl] = STATE(1124), [sym_preproc_line] = STATE(1124), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_RBRACK] = ACTIONS(3640), - [anon_sym_LBRACK_PIPE] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3640), - [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_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_LPAREN2] = ACTIONS(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_module] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [anon_sym_open] = ACTIONS(3631), + [anon_sym_LBRACK_LT] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [anon_sym_exception] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3629), + [anon_sym_POUNDload] = ACTIONS(3629), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [1125] = { [sym_block_comment] = STATE(1125), [sym_compiler_directive_decl] = STATE(1125), [sym_fsi_directive_decl] = STATE(1125), [sym_preproc_line] = STATE(1125), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3644), - [anon_sym_LBRACK_PIPE] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3644), - [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_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_LPAREN2] = ACTIONS(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_module] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [anon_sym_open] = ACTIONS(3635), + [anon_sym_LBRACK_LT] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [anon_sym_exception] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3633), + [anon_sym_POUNDload] = ACTIONS(3633), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [1126] = { [sym_block_comment] = STATE(1126), [sym_compiler_directive_decl] = STATE(1126), [sym_fsi_directive_decl] = STATE(1126), [sym_preproc_line] = STATE(1126), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_GT_RBRACK] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_RBRACK] = ACTIONS(3070), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_to] = ACTIONS(3074), - [anon_sym_downto] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_GT_RBRACK] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_RBRACK] = ACTIONS(3639), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_RBRACE] = ACTIONS(3639), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_to] = ACTIONS(3637), + [anon_sym_downto] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_DOT_DOT2] = ACTIONS(3639), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [1127] = { [sym_block_comment] = STATE(1127), [sym_compiler_directive_decl] = STATE(1127), [sym_fsi_directive_decl] = STATE(1127), [sym_preproc_line] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(3646), - [sym_identifier] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_open] = ACTIONS(3648), - [anon_sym_LBRACK_LT] = ACTIONS(3646), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_let_BANG] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3648), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LT_AT] = ACTIONS(3648), - [anon_sym_LT_AT_AT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_return_BANG] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_yield_BANG] = ACTIONS(3646), - [anon_sym_lazy] = ACTIONS(3648), - [anon_sym_assert] = ACTIONS(3648), - [anon_sym_upcast] = ACTIONS(3648), - [anon_sym_downcast] = ACTIONS(3648), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_fun] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_match] = ACTIONS(3648), - [anon_sym_match_BANG] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3648), - [anon_sym_use_BANG] = ACTIONS(3646), - [anon_sym_do_BANG] = ACTIONS(3646), - [anon_sym_begin] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3648), - [aux_sym_char_token1] = ACTIONS(3646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_AT_DQUOTE] = ACTIONS(3646), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3646), - [sym_bool] = ACTIONS(3648), - [sym_unit] = ACTIONS(3646), - [anon_sym_LPAREN_PIPE] = ACTIONS(3648), - [sym_op_identifier] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS_DOT] = ACTIONS(3648), - [anon_sym_DASH_DOT] = ACTIONS(3648), - [anon_sym_PERCENT] = ACTIONS(3648), - [anon_sym_AMP_AMP] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3646), - [aux_sym_prefix_op_token1] = ACTIONS(3648), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3648), - [sym_xint] = ACTIONS(3646), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3646), - [anon_sym_POUNDload] = ACTIONS(3646), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3646), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_GT_RBRACK] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_RBRACK] = ACTIONS(3643), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_RBRACE] = ACTIONS(3643), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3641), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_to] = ACTIONS(3641), + [anon_sym_downto] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_DOT_DOT2] = ACTIONS(3643), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [1128] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(903), [sym_block_comment] = STATE(1128), [sym_compiler_directive_decl] = STATE(1128), [sym_fsi_directive_decl] = STATE(1128), [sym_preproc_line] = STATE(1128), - [aux_sym_compound_type_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_let_BANG] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACK_PIPE] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LT_AT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE_PIPE] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_return_BANG] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_yield_BANG] = ACTIONS(2908), - [anon_sym_lazy] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_upcast] = ACTIONS(2906), - [anon_sym_downcast] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2908), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_fun] = ACTIONS(2906), - [anon_sym_DASH_GT] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_match_BANG] = ACTIONS(2908), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_DOT_LBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2906), - [anon_sym_use_BANG] = ACTIONS(2908), - [anon_sym_do_BANG] = ACTIONS(2908), - [anon_sym_begin] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LT2] = ACTIONS(2892), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2906), - [aux_sym_char_token1] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), - [anon_sym_AT_DQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), - [sym_bool] = ACTIONS(2906), - [sym_unit] = ACTIONS(2908), - [anon_sym_LPAREN_PIPE] = ACTIONS(2906), - [sym_op_identifier] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_DOT] = ACTIONS(2906), - [anon_sym_DASH_DOT] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [aux_sym_infix_op_token2] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2908), - [anon_sym_DOLLAR] = ACTIONS(2906), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2906), - [sym_xint] = ACTIONS(2908), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2908), - [sym__newline] = ACTIONS(2908), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [anon_sym_or] = ACTIONS(3439), + [anon_sym_exception] = 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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3441), + [anon_sym_POUNDload] = ACTIONS(3441), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [1129] = { [sym_block_comment] = STATE(1129), [sym_compiler_directive_decl] = STATE(1129), [sym_fsi_directive_decl] = STATE(1129), [sym_preproc_line] = STATE(1129), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [anon_sym_or] = ACTIONS(3409), + [anon_sym_exception] = 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(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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3411), + [anon_sym_POUNDload] = ACTIONS(3411), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, [1130] = { [sym_block_comment] = STATE(1130), [sym_compiler_directive_decl] = STATE(1130), [sym_fsi_directive_decl] = STATE(1130), [sym_preproc_line] = STATE(1130), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_GT_RBRACK] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_to] = ACTIONS(3543), - [anon_sym_downto] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_DOT_DOT2] = ACTIONS(3541), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3647), + [anon_sym_namespace] = ACTIONS(3647), + [anon_sym_module] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_open] = ACTIONS(3647), + [anon_sym_LBRACK_LT] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_type] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [anon_sym_exception] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3645), + [anon_sym_POUNDload] = ACTIONS(3645), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [1131] = { [sym_block_comment] = STATE(1131), [sym_compiler_directive_decl] = STATE(1131), [sym_fsi_directive_decl] = STATE(1131), [sym_preproc_line] = STATE(1131), - [ts_builtin_sym_end] = ACTIONS(3563), - [sym_identifier] = ACTIONS(3561), - [anon_sym_namespace] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_LBRACK_LT] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_type] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_exception] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3563), - [anon_sym_POUNDload] = ACTIONS(3563), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [ts_builtin_sym_end] = ACTIONS(3639), + [sym_identifier] = ACTIONS(3637), + [anon_sym_namespace] = ACTIONS(3637), + [anon_sym_module] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_open] = ACTIONS(3637), + [anon_sym_LBRACK_LT] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_type] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [anon_sym_exception] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3639), + [anon_sym_POUNDload] = ACTIONS(3639), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [1132] = { [sym_block_comment] = STATE(1132), [sym_compiler_directive_decl] = STATE(1132), [sym_fsi_directive_decl] = STATE(1132), [sym_preproc_line] = STATE(1132), - [aux_sym_sequential_expression_repeat1] = STATE(1132), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_GT_RBRACK] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3650), + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3651), + [anon_sym_namespace] = ACTIONS(3651), + [anon_sym_module] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_open] = ACTIONS(3651), + [anon_sym_LBRACK_LT] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_type] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [anon_sym_exception] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3649), + [anon_sym_POUNDload] = ACTIONS(3649), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [1133] = { [sym_block_comment] = STATE(1133), [sym_compiler_directive_decl] = STATE(1133), [sym_fsi_directive_decl] = STATE(1133), [sym_preproc_line] = STATE(1133), + [aux_sym_compound_type_repeat1] = STATE(1090), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), + [anon_sym_STAR] = ACTIONS(3194), + [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(3015), + [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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), + [anon_sym_POUNDendif] = ACTIONS(3015), + [anon_sym_POUNDelse] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), + }, + [1134] = { + [sym_block_comment] = STATE(1134), + [sym_compiler_directive_decl] = STATE(1134), + [sym_fsi_directive_decl] = STATE(1134), + [sym_preproc_line] = STATE(1134), [ts_builtin_sym_end] = ACTIONS(3653), [sym_identifier] = ACTIONS(3655), [anon_sym_namespace] = ACTIONS(3655), @@ -182055,7 +182503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3655), [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3653), @@ -182064,703 +182512,801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3653), [sym__newline] = ACTIONS(3653), }, - [1134] = { - [sym_block_comment] = STATE(1134), - [sym_compiler_directive_decl] = STATE(1134), - [sym_fsi_directive_decl] = STATE(1134), - [sym_preproc_line] = STATE(1134), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_GT_RBRACK] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_to] = ACTIONS(3539), - [anon_sym_downto] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_DOT_DOT2] = ACTIONS(3537), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - }, [1135] = { [sym_block_comment] = STATE(1135), [sym_compiler_directive_decl] = STATE(1135), [sym_fsi_directive_decl] = STATE(1135), [sym_preproc_line] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3565), - [anon_sym_namespace] = ACTIONS(3565), - [anon_sym_module] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_open] = ACTIONS(3565), - [anon_sym_LBRACK_LT] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_type] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_exception] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3567), - [anon_sym_POUNDload] = ACTIONS(3567), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [ts_builtin_sym_end] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_open] = ACTIONS(3419), + [anon_sym_LBRACK_LT] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), + [anon_sym_exception] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3421), + [anon_sym_POUNDload] = ACTIONS(3421), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, [1136] = { [sym_block_comment] = STATE(1136), [sym_compiler_directive_decl] = STATE(1136), [sym_fsi_directive_decl] = STATE(1136), [sym_preproc_line] = STATE(1136), - [aux_sym_long_identifier_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [anon_sym_or] = ACTIONS(3435), + [anon_sym_exception] = 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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3437), + [anon_sym_POUNDload] = ACTIONS(3437), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [1137] = { [sym_block_comment] = STATE(1137), [sym_compiler_directive_decl] = STATE(1137), [sym_fsi_directive_decl] = STATE(1137), [sym_preproc_line] = STATE(1137), - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3569), - [anon_sym_namespace] = ACTIONS(3569), - [anon_sym_module] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_LBRACK_LT] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_type] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [anon_sym_exception] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3571), - [anon_sym_POUNDload] = ACTIONS(3571), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3659), + [anon_sym_namespace] = ACTIONS(3659), + [anon_sym_module] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_open] = ACTIONS(3659), + [anon_sym_LBRACK_LT] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_type] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_exception] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3657), + [anon_sym_POUNDload] = ACTIONS(3657), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [1138] = { [sym_block_comment] = STATE(1138), [sym_compiler_directive_decl] = STATE(1138), [sym_fsi_directive_decl] = STATE(1138), [sym_preproc_line] = STATE(1138), - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3663), - [anon_sym_namespace] = ACTIONS(3663), - [anon_sym_module] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_open] = ACTIONS(3663), - [anon_sym_LBRACK_LT] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_type] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [anon_sym_exception] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3661), - [anon_sym_POUNDload] = ACTIONS(3661), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_GT_RBRACK] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3663), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_to] = ACTIONS(3661), + [anon_sym_downto] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_DOT_DOT2] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [1139] = { [sym_block_comment] = STATE(1139), [sym_compiler_directive_decl] = STATE(1139), [sym_fsi_directive_decl] = STATE(1139), [sym_preproc_line] = STATE(1139), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3573), - [anon_sym_namespace] = ACTIONS(3573), - [anon_sym_module] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_LBRACK_LT] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_type] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [anon_sym_exception] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3575), - [anon_sym_POUNDload] = ACTIONS(3575), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - }, - [1140] = { - [sym_block_comment] = STATE(1140), - [sym_compiler_directive_decl] = STATE(1140), - [sym_fsi_directive_decl] = STATE(1140), - [sym_preproc_line] = STATE(1140), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_GT_RBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3667), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3665), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_to] = ACTIONS(3665), - [anon_sym_downto] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_DOT_DOT2] = ACTIONS(3667), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), + [sym__dedent] = ACTIONS(3040), + }, + [1140] = { + [sym_block_comment] = STATE(1140), + [sym_compiler_directive_decl] = STATE(1140), + [sym_fsi_directive_decl] = STATE(1140), + [sym_preproc_line] = STATE(1140), + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3667), + [anon_sym_namespace] = ACTIONS(3667), + [anon_sym_module] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_open] = ACTIONS(3667), + [anon_sym_LBRACK_LT] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_type] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [anon_sym_exception] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3665), + [anon_sym_POUNDload] = ACTIONS(3665), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [1141] = { [sym_block_comment] = STATE(1141), [sym_compiler_directive_decl] = STATE(1141), [sym_fsi_directive_decl] = STATE(1141), [sym_preproc_line] = STATE(1141), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_GT_RBRACK] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), + [sym__dedent] = ACTIONS(3098), + }, + [1142] = { + [sym_block_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(3663), + [sym_identifier] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_module] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_open] = ACTIONS(3661), + [anon_sym_LBRACK_LT] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_type] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_exception] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3663), + [anon_sym_POUNDload] = ACTIONS(3663), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), + }, + [1143] = { + [sym_block_comment] = STATE(1143), + [sym_compiler_directive_decl] = STATE(1143), + [sym_fsi_directive_decl] = STATE(1143), + [sym_preproc_line] = STATE(1143), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_GT_RBRACK] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), [anon_sym_let] = ACTIONS(3669), [anon_sym_let_BANG] = ACTIONS(3671), [anon_sym_LPAREN] = ACTIONS(3669), @@ -182839,7 +183385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3669), [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -182848,109 +183394,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3671), [sym__newline] = ACTIONS(3671), }, - [1142] = { - [sym_block_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(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_SEMI] = ACTIONS(3), - [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(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_exception] = 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(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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3579), - [anon_sym_POUNDload] = ACTIONS(3579), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [1144] = { + [sym_block_comment] = STATE(1144), + [sym_compiler_directive_decl] = STATE(1144), + [sym_fsi_directive_decl] = STATE(1144), + [sym_preproc_line] = STATE(1144), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_DOT_DOT2] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), }, - [1143] = { - [sym_block_comment] = STATE(1143), - [sym_compiler_directive_decl] = STATE(1143), - [sym_fsi_directive_decl] = STATE(1143), - [sym_preproc_line] = STATE(1143), + [1145] = { + [sym_block_comment] = STATE(1145), + [sym_compiler_directive_decl] = STATE(1145), + [sym_fsi_directive_decl] = STATE(1145), + [sym_preproc_line] = STATE(1145), [ts_builtin_sym_end] = ACTIONS(3673), [sym_identifier] = ACTIONS(3675), [anon_sym_namespace] = ACTIONS(3675), @@ -183035,7 +183581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3675), [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(3673), @@ -183044,2657 +183590,2069 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3673), [sym__newline] = ACTIONS(3673), }, - [1144] = { - [sym_block_comment] = STATE(1144), - [sym_compiler_directive_decl] = STATE(1144), - [sym_fsi_directive_decl] = STATE(1144), - [sym_preproc_line] = STATE(1144), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_GT_RBRACK] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_with] = ACTIONS(3655), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_to] = ACTIONS(3655), - [anon_sym_downto] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_DOT_DOT2] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), - }, - [1145] = { - [sym_block_comment] = STATE(1145), - [sym_compiler_directive_decl] = STATE(1145), - [sym_fsi_directive_decl] = STATE(1145), - [sym_preproc_line] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3587), - [anon_sym_namespace] = ACTIONS(3587), - [anon_sym_module] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_open] = ACTIONS(3587), - [anon_sym_LBRACK_LT] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_type] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [anon_sym_exception] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3589), - [anon_sym_POUNDload] = ACTIONS(3589), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), - }, [1146] = { [sym_block_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(3677), - [sym_identifier] = ACTIONS(3679), - [anon_sym_namespace] = ACTIONS(3679), - [anon_sym_module] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [anon_sym_open] = ACTIONS(3679), - [anon_sym_LBRACK_LT] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_exception] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3677), - [anon_sym_POUNDload] = ACTIONS(3677), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [anon_sym_or] = ACTIONS(3621), + [anon_sym_exception] = 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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3623), + [anon_sym_POUNDload] = ACTIONS(3623), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [1147] = { [sym_block_comment] = STATE(1147), [sym_compiler_directive_decl] = STATE(1147), [sym_fsi_directive_decl] = STATE(1147), [sym_preproc_line] = STATE(1147), - [ts_builtin_sym_end] = ACTIONS(3681), - [sym_identifier] = ACTIONS(3683), - [anon_sym_namespace] = ACTIONS(3683), - [anon_sym_module] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_open] = ACTIONS(3683), - [anon_sym_LBRACK_LT] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_type] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [anon_sym_exception] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3681), - [anon_sym_POUNDload] = ACTIONS(3681), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3539), + [anon_sym_namespace] = ACTIONS(3539), + [anon_sym_module] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_open] = ACTIONS(3539), + [anon_sym_LBRACK_LT] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_type] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [anon_sym_exception] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3541), + [anon_sym_POUNDload] = ACTIONS(3541), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [1148] = { [sym_block_comment] = STATE(1148), [sym_compiler_directive_decl] = STATE(1148), [sym_fsi_directive_decl] = STATE(1148), [sym_preproc_line] = STATE(1148), - [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_SEMI] = ACTIONS(3), - [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(3642), - [anon_sym_or] = ACTIONS(3642), - [anon_sym_exception] = 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(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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3644), - [anon_sym_POUNDload] = ACTIONS(3644), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_to] = ACTIONS(2964), + [anon_sym_downto] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1149] = { [sym_block_comment] = STATE(1149), [sym_compiler_directive_decl] = STATE(1149), [sym_fsi_directive_decl] = STATE(1149), [sym_preproc_line] = STATE(1149), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3591), - [anon_sym_namespace] = ACTIONS(3591), - [anon_sym_module] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_open] = ACTIONS(3591), - [anon_sym_LBRACK_LT] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_type] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [anon_sym_exception] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3593), - [anon_sym_POUNDload] = ACTIONS(3593), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [aux_sym_type_argument_repeat1] = STATE(1149), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3677), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [anon_sym_POUNDendif] = ACTIONS(2992), + [anon_sym_POUNDelse] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [1150] = { [sym_block_comment] = STATE(1150), [sym_compiler_directive_decl] = STATE(1150), [sym_fsi_directive_decl] = STATE(1150), [sym_preproc_line] = STATE(1150), - [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_SEMI] = ACTIONS(3), - [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(3638), - [anon_sym_or] = ACTIONS(3638), - [anon_sym_exception] = 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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3640), - [anon_sym_POUNDload] = ACTIONS(3640), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [anon_sym_or] = ACTIONS(3401), + [anon_sym_exception] = 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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3403), + [anon_sym_POUNDload] = ACTIONS(3403), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [1151] = { [sym_block_comment] = STATE(1151), [sym_compiler_directive_decl] = STATE(1151), [sym_fsi_directive_decl] = STATE(1151), [sym_preproc_line] = STATE(1151), - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_open] = ACTIONS(3630), - [anon_sym_LBRACK_LT] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [anon_sym_exception] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3632), - [anon_sym_POUNDload] = ACTIONS(3632), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3641), + [anon_sym_namespace] = ACTIONS(3641), + [anon_sym_module] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_open] = ACTIONS(3641), + [anon_sym_LBRACK_LT] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_type] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [anon_sym_exception] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3643), + [anon_sym_POUNDload] = ACTIONS(3643), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [1152] = { [sym_block_comment] = STATE(1152), [sym_compiler_directive_decl] = STATE(1152), [sym_fsi_directive_decl] = STATE(1152), [sym_preproc_line] = STATE(1152), - [aux_sym_type_argument_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3685), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [anon_sym_POUNDendif] = ACTIONS(2975), - [anon_sym_POUNDelse] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_open] = ACTIONS(3682), + [anon_sym_LBRACK_LT] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [anon_sym_exception] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3680), + [anon_sym_POUNDload] = ACTIONS(3680), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [1153] = { [sym_block_comment] = STATE(1153), [sym_compiler_directive_decl] = STATE(1153), [sym_fsi_directive_decl] = STATE(1153), [sym_preproc_line] = STATE(1153), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3467), + [anon_sym_namespace] = ACTIONS(3467), + [anon_sym_module] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_open] = ACTIONS(3467), + [anon_sym_LBRACK_LT] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_type] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_exception] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3469), + [anon_sym_POUNDload] = ACTIONS(3469), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [1154] = { [sym_block_comment] = STATE(1154), [sym_compiler_directive_decl] = STATE(1154), [sym_fsi_directive_decl] = STATE(1154), [sym_preproc_line] = STATE(1154), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_GT_RBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_RBRACK] = ACTIONS(3513), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_RBRACE] = ACTIONS(3513), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_to] = ACTIONS(3515), + [anon_sym_downto] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_DOT_DOT2] = ACTIONS(3513), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, [1155] = { [sym_block_comment] = STATE(1155), [sym_compiler_directive_decl] = STATE(1155), [sym_fsi_directive_decl] = STATE(1155), [sym_preproc_line] = STATE(1155), - [ts_builtin_sym_end] = ACTIONS(3628), - [sym_identifier] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_open] = ACTIONS(3626), - [anon_sym_LBRACK_LT] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [anon_sym_exception] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3628), - [anon_sym_POUNDload] = ACTIONS(3628), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [ts_builtin_sym_end] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_open] = ACTIONS(3686), + [anon_sym_LBRACK_LT] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_exception] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3684), + [anon_sym_POUNDload] = ACTIONS(3684), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [1156] = { [sym_block_comment] = STATE(1156), [sym_compiler_directive_decl] = STATE(1156), [sym_fsi_directive_decl] = STATE(1156), [sym_preproc_line] = STATE(1156), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3611), - [anon_sym_namespace] = ACTIONS(3611), - [anon_sym_module] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_open] = ACTIONS(3611), - [anon_sym_LBRACK_LT] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_type] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [anon_sym_exception] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3613), - [anon_sym_POUNDload] = ACTIONS(3613), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [aux_sym_long_identifier_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [anon_sym_POUNDelse] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1157] = { + [sym_elif_expression] = STATE(1356), [sym_block_comment] = STATE(1157), [sym_compiler_directive_decl] = STATE(1157), [sym_fsi_directive_decl] = STATE(1157), [sym_preproc_line] = STATE(1157), - [ts_builtin_sym_end] = ACTIONS(3688), - [sym_identifier] = ACTIONS(3690), - [anon_sym_namespace] = ACTIONS(3690), - [anon_sym_module] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_open] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_type] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [anon_sym_exception] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3688), - [anon_sym_POUNDload] = ACTIONS(3688), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [aux_sym_if_expression_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_DOT_DOT2] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), + [sym__dedent] = ACTIONS(3100), }, [1158] = { [sym_block_comment] = STATE(1158), [sym_compiler_directive_decl] = STATE(1158), [sym_fsi_directive_decl] = STATE(1158), [sym_preproc_line] = STATE(1158), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [ts_builtin_sym_end] = ACTIONS(3694), + [sym_identifier] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_open] = ACTIONS(3696), + [anon_sym_LBRACK_LT] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_type] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_exception] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3694), + [anon_sym_POUNDload] = ACTIONS(3694), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [1159] = { [sym_block_comment] = STATE(1159), [sym_compiler_directive_decl] = STATE(1159), [sym_fsi_directive_decl] = STATE(1159), [sym_preproc_line] = STATE(1159), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [aux_sym_long_identifier_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [anon_sym_POUNDendif] = ACTIONS(2954), + [anon_sym_POUNDelse] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1160] = { [sym_block_comment] = STATE(1160), [sym_compiler_directive_decl] = STATE(1160), [sym_fsi_directive_decl] = STATE(1160), [sym_preproc_line] = STATE(1160), - [aux_sym_type_argument_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [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(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), + [ts_builtin_sym_end] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_open] = ACTIONS(3702), + [anon_sym_LBRACK_LT] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_type] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [anon_sym_exception] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3700), + [anon_sym_POUNDload] = ACTIONS(3700), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [anon_sym_POUNDendif] = ACTIONS(3015), - [anon_sym_POUNDelse] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [1161] = { - [sym__else_expression] = STATE(1841), - [sym_elif_expression] = STATE(1538), [sym_block_comment] = STATE(1161), [sym_compiler_directive_decl] = STATE(1161), [sym_fsi_directive_decl] = STATE(1161), [sym_preproc_line] = STATE(1161), - [aux_sym_if_expression_repeat1] = STATE(1335), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3694), - [anon_sym_elif] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1162] = { [sym_block_comment] = STATE(1162), [sym_compiler_directive_decl] = STATE(1162), [sym_fsi_directive_decl] = STATE(1162), [sym_preproc_line] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3595), - [anon_sym_namespace] = ACTIONS(3595), - [anon_sym_module] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_open] = ACTIONS(3595), - [anon_sym_LBRACK_LT] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_type] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [anon_sym_exception] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3597), - [anon_sym_POUNDload] = ACTIONS(3597), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3052), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_exception] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3050), + [anon_sym_POUNDload] = ACTIONS(3050), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1163] = { [sym_block_comment] = STATE(1163), [sym_compiler_directive_decl] = STATE(1163), [sym_fsi_directive_decl] = STATE(1163), [sym_preproc_line] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(3698), - [sym_identifier] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_open] = ACTIONS(3700), - [anon_sym_LBRACK_LT] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_type] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_exception] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3052), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_exception] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3698), - [anon_sym_POUNDload] = ACTIONS(3698), + [anon_sym_POUNDr] = ACTIONS(3050), + [anon_sym_POUNDload] = ACTIONS(3050), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1164] = { [sym_block_comment] = STATE(1164), [sym_compiler_directive_decl] = STATE(1164), [sym_fsi_directive_decl] = STATE(1164), [sym_preproc_line] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(3702), - [sym_identifier] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_module] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_open] = ACTIONS(3704), - [anon_sym_LBRACK_LT] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_type] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_exception] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3702), - [anon_sym_POUNDload] = ACTIONS(3702), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3669), + [anon_sym_namespace] = ACTIONS(3669), + [anon_sym_module] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_open] = ACTIONS(3669), + [anon_sym_LBRACK_LT] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_type] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_exception] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3671), + [anon_sym_POUNDload] = ACTIONS(3671), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, [1165] = { [sym_block_comment] = STATE(1165), [sym_compiler_directive_decl] = STATE(1165), [sym_fsi_directive_decl] = STATE(1165), [sym_preproc_line] = STATE(1165), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_GT_RBRACK] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_RBRACK] = ACTIONS(3468), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_RBRACE] = ACTIONS(3468), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_to] = ACTIONS(3470), - [anon_sym_downto] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_DOT_DOT2] = ACTIONS(3468), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [anon_sym_GT_RBRACK] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_RBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_DOT_DOT2] = ACTIONS(3455), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [1166] = { [sym_block_comment] = STATE(1166), [sym_compiler_directive_decl] = STATE(1166), [sym_fsi_directive_decl] = STATE(1166), [sym_preproc_line] = STATE(1166), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_GT_RBRACK] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_to] = ACTIONS(3636), - [anon_sym_downto] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_DOT_DOT2] = ACTIONS(3634), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3499), + [anon_sym_namespace] = ACTIONS(3499), + [anon_sym_module] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_open] = ACTIONS(3499), + [anon_sym_LBRACK_LT] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_type] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [anon_sym_exception] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3501), + [anon_sym_POUNDload] = ACTIONS(3501), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, [1167] = { [sym_block_comment] = STATE(1167), [sym_compiler_directive_decl] = STATE(1167), [sym_fsi_directive_decl] = STATE(1167), [sym_preproc_line] = STATE(1167), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [anon_sym_GT_RBRACK] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(3622), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3622), - [anon_sym_LT_AT] = ACTIONS(3624), - [anon_sym_LT_AT_AT] = ACTIONS(3624), - [anon_sym_DOT] = ACTIONS(3624), - [anon_sym_LBRACE_PIPE] = ACTIONS(3622), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_DOT_DOT2] = ACTIONS(3622), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - }, - [1168] = { - [sym_block_comment] = STATE(1168), - [sym_compiler_directive_decl] = STATE(1168), - [sym_fsi_directive_decl] = STATE(1168), - [sym_preproc_line] = STATE(1168), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_GT_RBRACK] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_RBRACK] = ACTIONS(3615), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_RBRACE] = ACTIONS(3615), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_to] = ACTIONS(3617), - [anon_sym_downto] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_DOT_DOT2] = ACTIONS(3615), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), - }, - [1169] = { - [sym_block_comment] = STATE(1169), - [sym_compiler_directive_decl] = STATE(1169), - [sym_fsi_directive_decl] = STATE(1169), - [sym_preproc_line] = STATE(1169), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_GT_RBRACK] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_RBRACK] = ACTIONS(3581), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_RBRACE] = ACTIONS(3581), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_with] = ACTIONS(3583), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_to] = ACTIONS(3583), - [anon_sym_downto] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_DOT_DOT2] = ACTIONS(3581), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), - }, - [1170] = { - [sym_block_comment] = STATE(1170), - [sym_compiler_directive_decl] = STATE(1170), - [sym_fsi_directive_decl] = STATE(1170), - [sym_preproc_line] = STATE(1170), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1171] = { - [sym_block_comment] = STATE(1171), - [sym_compiler_directive_decl] = STATE(1171), - [sym_fsi_directive_decl] = STATE(1171), - [sym_preproc_line] = STATE(1171), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_GT_RBRACK] = ACTIONS(2526), @@ -185779,7 +185737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -185788,4387 +185746,5563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [1172] = { - [sym_block_comment] = STATE(1172), - [sym_compiler_directive_decl] = STATE(1172), - [sym_fsi_directive_decl] = STATE(1172), - [sym_preproc_line] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3599), - [anon_sym_namespace] = ACTIONS(3599), - [anon_sym_module] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_open] = ACTIONS(3599), - [anon_sym_LBRACK_LT] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_type] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [1168] = { + [sym_block_comment] = STATE(1168), + [sym_compiler_directive_decl] = STATE(1168), + [sym_fsi_directive_decl] = STATE(1168), + [sym_preproc_line] = STATE(1168), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [anon_sym_exception] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3601), - [anon_sym_POUNDload] = ACTIONS(3601), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, - [1173] = { - [sym__else_expression] = STATE(2018), - [sym_elif_expression] = STATE(1538), - [sym_block_comment] = STATE(1173), - [sym_compiler_directive_decl] = STATE(1173), - [sym_fsi_directive_decl] = STATE(1173), - [sym_preproc_line] = STATE(1173), - [aux_sym_if_expression_repeat1] = STATE(1161), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3694), - [anon_sym_elif] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [1169] = { + [sym_block_comment] = STATE(1169), + [sym_compiler_directive_decl] = STATE(1169), + [sym_fsi_directive_decl] = STATE(1169), + [sym_preproc_line] = STATE(1169), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1170] = { + [sym_block_comment] = STATE(1170), + [sym_compiler_directive_decl] = STATE(1170), + [sym_fsi_directive_decl] = STATE(1170), + [sym_preproc_line] = STATE(1170), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_GT_RBRACK] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_RBRACK] = ACTIONS(3559), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_RBRACE] = ACTIONS(3559), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_to] = ACTIONS(3561), + [anon_sym_downto] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_DOT_DOT2] = ACTIONS(3559), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), + }, + [1171] = { + [sym_block_comment] = STATE(1171), + [sym_compiler_directive_decl] = STATE(1171), + [sym_fsi_directive_decl] = STATE(1171), + [sym_preproc_line] = STATE(1171), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [anon_sym_or] = ACTIONS(3594), + [anon_sym_exception] = 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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3596), + [anon_sym_POUNDload] = ACTIONS(3596), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), + }, + [1172] = { + [sym_block_comment] = STATE(1172), + [sym_compiler_directive_decl] = STATE(1172), + [sym_fsi_directive_decl] = STATE(1172), + [sym_preproc_line] = STATE(1172), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_GT_RBRACK] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_RBRACK] = ACTIONS(3447), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_to] = ACTIONS(3449), + [anon_sym_downto] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_DOT_DOT2] = ACTIONS(3447), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + }, + [1173] = { + [sym_block_comment] = STATE(1173), + [sym_compiler_directive_decl] = STATE(1173), + [sym_fsi_directive_decl] = STATE(1173), + [sym_preproc_line] = STATE(1173), + [aux_sym_long_identifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3708), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [anon_sym_POUNDendif] = ACTIONS(3000), + [anon_sym_POUNDelse] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1174] = { [sym_block_comment] = STATE(1174), [sym_compiler_directive_decl] = STATE(1174), [sym_fsi_directive_decl] = STATE(1174), [sym_preproc_line] = STATE(1174), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_DOT_DOT2] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), - [sym__dedent] = ACTIONS(3052), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + [sym__dedent] = ACTIONS(3044), }, [1175] = { [sym_block_comment] = STATE(1175), [sym_compiler_directive_decl] = STATE(1175), [sym_fsi_directive_decl] = STATE(1175), [sym_preproc_line] = STATE(1175), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_GT_RBRACK] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_RBRACK] = ACTIONS(3688), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_to] = ACTIONS(3690), - [anon_sym_downto] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_DOT_DOT2] = ACTIONS(3688), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_GT_RBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_to] = ACTIONS(3696), + [anon_sym_downto] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_DOT_DOT2] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [1176] = { [sym_block_comment] = STATE(1176), [sym_compiler_directive_decl] = STATE(1176), [sym_fsi_directive_decl] = STATE(1176), [sym_preproc_line] = STATE(1176), - [ts_builtin_sym_end] = ACTIONS(3706), - [sym_identifier] = ACTIONS(3708), - [anon_sym_namespace] = ACTIONS(3708), - [anon_sym_module] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_open] = ACTIONS(3708), - [anon_sym_LBRACK_LT] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_type] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [anon_sym_exception] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3706), - [anon_sym_POUNDload] = ACTIONS(3706), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_GT_RBRACK] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3700), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_to] = ACTIONS(3702), + [anon_sym_downto] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_DOT_DOT2] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [1177] = { [sym_block_comment] = STATE(1177), [sym_compiler_directive_decl] = STATE(1177), [sym_fsi_directive_decl] = STATE(1177), [sym_preproc_line] = STATE(1177), - [ts_builtin_sym_end] = ACTIONS(3710), - [sym_identifier] = ACTIONS(3712), - [anon_sym_namespace] = ACTIONS(3712), - [anon_sym_module] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [anon_sym_open] = ACTIONS(3712), - [anon_sym_LBRACK_LT] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [anon_sym_exception] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3710), - [anon_sym_POUNDload] = ACTIONS(3710), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [anon_sym_or] = ACTIONS(3582), + [anon_sym_exception] = 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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3584), + [anon_sym_POUNDload] = ACTIONS(3584), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [1178] = { [sym_block_comment] = STATE(1178), [sym_compiler_directive_decl] = STATE(1178), [sym_fsi_directive_decl] = STATE(1178), [sym_preproc_line] = STATE(1178), - [ts_builtin_sym_end] = ACTIONS(3714), - [sym_identifier] = ACTIONS(3716), - [anon_sym_namespace] = ACTIONS(3716), - [anon_sym_module] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_open] = ACTIONS(3716), - [anon_sym_LBRACK_LT] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_type] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_exception] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3714), - [anon_sym_POUNDload] = ACTIONS(3714), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), + [sym__dedent] = ACTIONS(3094), }, [1179] = { [sym_block_comment] = STATE(1179), [sym_compiler_directive_decl] = STATE(1179), [sym_fsi_directive_decl] = STATE(1179), [sym_preproc_line] = STATE(1179), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_GT_RBRACK] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_to] = ACTIONS(3052), + [anon_sym_downto] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1180] = { [sym_block_comment] = STATE(1180), [sym_compiler_directive_decl] = STATE(1180), [sym_fsi_directive_decl] = STATE(1180), [sym_preproc_line] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3669), - [anon_sym_namespace] = ACTIONS(3669), - [anon_sym_module] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_open] = ACTIONS(3669), - [anon_sym_LBRACK_LT] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_type] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [anon_sym_exception] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3671), - [anon_sym_POUNDload] = ACTIONS(3671), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_GT_RBRACK] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_DOT_DOT2] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [1181] = { [sym_block_comment] = STATE(1181), [sym_compiler_directive_decl] = STATE(1181), [sym_fsi_directive_decl] = STATE(1181), [sym_preproc_line] = STATE(1181), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_RBRACK] = ACTIONS(3720), - [anon_sym_LBRACK_PIPE] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_RBRACE] = ACTIONS(3720), - [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_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_LPAREN2] = ACTIONS(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), }, [1182] = { - [sym__else_expression] = STATE(1855), - [sym_elif_expression] = STATE(1508), [sym_block_comment] = STATE(1182), [sym_compiler_directive_decl] = STATE(1182), [sym_fsi_directive_decl] = STATE(1182), [sym_preproc_line] = STATE(1182), - [aux_sym_if_expression_repeat1] = STATE(1199), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_elif] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [anon_sym_POUNDendif] = ACTIONS(2965), - [anon_sym_POUNDelse] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [aux_sym_type_argument_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [anon_sym_POUNDendif] = ACTIONS(2981), + [anon_sym_POUNDelse] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1183] = { [sym_block_comment] = STATE(1183), [sym_compiler_directive_decl] = STATE(1183), [sym_fsi_directive_decl] = STATE(1183), [sym_preproc_line] = STATE(1183), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_RBRACK] = ACTIONS(3728), - [anon_sym_LBRACK_PIPE] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_RBRACE] = ACTIONS(3728), - [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_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_LPAREN2] = ACTIONS(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [ts_builtin_sym_end] = ACTIONS(3715), + [sym_identifier] = ACTIONS(3717), + [anon_sym_namespace] = ACTIONS(3717), + [anon_sym_module] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_open] = ACTIONS(3717), + [anon_sym_LBRACK_LT] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_type] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [anon_sym_exception] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3715), + [anon_sym_POUNDload] = ACTIONS(3715), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [1184] = { [sym_block_comment] = STATE(1184), [sym_compiler_directive_decl] = STATE(1184), [sym_fsi_directive_decl] = STATE(1184), [sym_preproc_line] = STATE(1184), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - [sym__dedent] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3578), + [anon_sym_namespace] = ACTIONS(3578), + [anon_sym_module] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_open] = ACTIONS(3578), + [anon_sym_LBRACK_LT] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [anon_sym_exception] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3580), + [anon_sym_POUNDload] = ACTIONS(3580), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [1185] = { + [sym__else_expression] = STATE(2044), + [sym_elif_expression] = STATE(1513), [sym_block_comment] = STATE(1185), [sym_compiler_directive_decl] = STATE(1185), [sym_fsi_directive_decl] = STATE(1185), [sym_preproc_line] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3665), - [anon_sym_namespace] = ACTIONS(3665), - [anon_sym_module] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_open] = ACTIONS(3665), - [anon_sym_LBRACK_LT] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_type] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [anon_sym_exception] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3667), - [anon_sym_POUNDload] = ACTIONS(3667), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [aux_sym_if_expression_repeat1] = STATE(1254), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_elif] = ACTIONS(3576), + [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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1186] = { [sym_block_comment] = STATE(1186), [sym_compiler_directive_decl] = STATE(1186), [sym_fsi_directive_decl] = STATE(1186), [sym_preproc_line] = STATE(1186), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [anon_sym_or] = ACTIONS(3533), - [anon_sym_exception] = 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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3535), - [anon_sym_POUNDload] = ACTIONS(3535), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [aux_sym_sequential_expression_repeat1] = STATE(1108), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_GT_RBRACK] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3390), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3390), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_to] = ACTIONS(3392), + [anon_sym_downto] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1187] = { [sym_block_comment] = STATE(1187), [sym_compiler_directive_decl] = STATE(1187), [sym_fsi_directive_decl] = STATE(1187), [sym_preproc_line] = STATE(1187), - [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_SEMI] = ACTIONS(3), - [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(3718), - [anon_sym_or] = ACTIONS(3718), - [anon_sym_exception] = 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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3720), - [anon_sym_POUNDload] = ACTIONS(3720), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_module] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_open] = ACTIONS(3475), + [anon_sym_LBRACK_LT] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_type] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [anon_sym_exception] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3477), + [anon_sym_POUNDload] = ACTIONS(3477), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [1188] = { + [sym_type_arguments] = STATE(895), + [sym_long_identifier] = STATE(899), [sym_block_comment] = STATE(1188), [sym_compiler_directive_decl] = STATE(1188), [sym_fsi_directive_decl] = STATE(1188), [sym_preproc_line] = STATE(1188), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [anon_sym_or] = ACTIONS(3527), - [anon_sym_exception] = 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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3529), - [anon_sym_POUNDload] = ACTIONS(3529), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [aux_sym_compound_type_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [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(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_COLON_QMARK] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_LT_AT] = ACTIONS(2924), + [anon_sym_LT_AT_AT] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_upcast] = ACTIONS(2924), + [anon_sym_downcast] = ACTIONS(2924), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [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(2922), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LT2] = ACTIONS(2918), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2924), + [aux_sym_char_token1] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2924), + [sym_unit] = ACTIONS(2922), + [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(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2924), + [aux_sym_infix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token2] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), + [sym_int] = ACTIONS(2924), + [sym_xint] = ACTIONS(2922), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1189] = { [sym_block_comment] = STATE(1189), [sym_compiler_directive_decl] = STATE(1189), [sym_fsi_directive_decl] = STATE(1189), [sym_preproc_line] = STATE(1189), - [aux_sym_sequential_expression_repeat1] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3383), - [anon_sym_LBRACK_LT] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [anon_sym_exception] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3381), - [anon_sym_POUNDload] = ACTIONS(3381), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3730), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_GT_RBRACK] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_RBRACK] = ACTIONS(3721), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_to] = ACTIONS(3719), + [anon_sym_downto] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_DOT_DOT2] = ACTIONS(3721), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [1190] = { [sym_block_comment] = STATE(1190), [sym_compiler_directive_decl] = STATE(1190), [sym_fsi_directive_decl] = STATE(1190), [sym_preproc_line] = STATE(1190), - [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_SEMI] = ACTIONS(3), - [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(3726), - [anon_sym_or] = ACTIONS(3726), - [anon_sym_exception] = 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(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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3728), - [anon_sym_POUNDload] = ACTIONS(3728), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_GT_RBRACK] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_RBRACK] = ACTIONS(3566), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_to] = ACTIONS(3568), + [anon_sym_downto] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_DOT_DOT2] = ACTIONS(3566), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [1191] = { [sym_block_comment] = STATE(1191), [sym_compiler_directive_decl] = STATE(1191), [sym_fsi_directive_decl] = STATE(1191), [sym_preproc_line] = STATE(1191), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [anon_sym_GT_RBRACK] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3679), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT_AT] = ACTIONS(3679), - [anon_sym_LT_AT_AT] = ACTIONS(3679), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_LBRACE_PIPE] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3679), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_DOT_DOT2] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [aux_sym_type_argument_repeat1] = STATE(1200), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [1192] = { [sym_block_comment] = STATE(1192), [sym_compiler_directive_decl] = STATE(1192), [sym_fsi_directive_decl] = STATE(1192), [sym_preproc_line] = STATE(1192), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_GT_RBRACK] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_RBRACK] = ACTIONS(3460), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_to] = ACTIONS(3462), - [anon_sym_downto] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_DOT_DOT2] = ACTIONS(3460), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [ts_builtin_sym_end] = ACTIONS(3723), + [sym_identifier] = ACTIONS(3725), + [anon_sym_namespace] = ACTIONS(3725), + [anon_sym_module] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_open] = ACTIONS(3725), + [anon_sym_LBRACK_LT] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_type] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [anon_sym_exception] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3723), + [anon_sym_POUNDload] = ACTIONS(3723), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [1193] = { [sym_block_comment] = STATE(1193), [sym_compiler_directive_decl] = STATE(1193), [sym_fsi_directive_decl] = STATE(1193), [sym_preproc_line] = STATE(1193), - [aux_sym_sequential_expression_repeat1] = STATE(1132), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [anon_sym_GT_RBRACK] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_LT_AT] = ACTIONS(3351), - [anon_sym_LT_AT_AT] = ACTIONS(3351), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_LBRACE_PIPE] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [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_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1194] = { [sym_block_comment] = STATE(1194), [sym_compiler_directive_decl] = STATE(1194), [sym_fsi_directive_decl] = STATE(1194), [sym_preproc_line] = STATE(1194), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_GT_RBRACK] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_RBRACK] = ACTIONS(3456), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_RBRACE] = ACTIONS(3456), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_to] = ACTIONS(3458), - [anon_sym_downto] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_DOT_DOT2] = ACTIONS(3456), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [anon_sym_or] = ACTIONS(3413), + [anon_sym_exception] = 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(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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3415), + [anon_sym_POUNDload] = ACTIONS(3415), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, [1195] = { [sym_block_comment] = STATE(1195), [sym_compiler_directive_decl] = STATE(1195), [sym_fsi_directive_decl] = STATE(1195), [sym_preproc_line] = STATE(1195), - [aux_sym_long_identifier_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3556), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [anon_sym_POUNDendif] = ACTIONS(2971), - [anon_sym_POUNDelse] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_DOT_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), }, [1196] = { [sym_block_comment] = STATE(1196), [sym_compiler_directive_decl] = STATE(1196), [sym_fsi_directive_decl] = STATE(1196), [sym_preproc_line] = STATE(1196), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_GT_RBRACK] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_RBRACK] = ACTIONS(3472), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3472), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_to] = ACTIONS(3474), - [anon_sym_downto] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_DOT_DOT2] = ACTIONS(3472), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_module] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_open] = ACTIONS(3555), + [anon_sym_LBRACK_LT] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_type] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [anon_sym_exception] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3557), + [anon_sym_POUNDload] = ACTIONS(3557), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [1197] = { [sym_block_comment] = STATE(1197), [sym_compiler_directive_decl] = STATE(1197), [sym_fsi_directive_decl] = STATE(1197), [sym_preproc_line] = STATE(1197), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [anon_sym_or] = ACTIONS(3523), - [anon_sym_exception] = 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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3525), - [anon_sym_POUNDload] = ACTIONS(3525), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_GT_RBRACK] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_RBRACK] = ACTIONS(3723), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3725), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_to] = ACTIONS(3725), + [anon_sym_downto] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_DOT_DOT2] = ACTIONS(3723), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [1198] = { [sym_block_comment] = STATE(1198), [sym_compiler_directive_decl] = STATE(1198), [sym_fsi_directive_decl] = STATE(1198), [sym_preproc_line] = STATE(1198), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), - [sym__dedent] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_GT_RBRACK] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_RBRACK] = ACTIONS(3715), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_RBRACE] = ACTIONS(3715), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3717), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_to] = ACTIONS(3717), + [anon_sym_downto] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_DOT_DOT2] = ACTIONS(3715), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [1199] = { - [sym__else_expression] = STATE(1836), - [sym_elif_expression] = STATE(1508), [sym_block_comment] = STATE(1199), [sym_compiler_directive_decl] = STATE(1199), [sym_fsi_directive_decl] = STATE(1199), [sym_preproc_line] = STATE(1199), - [aux_sym_if_expression_repeat1] = STATE(1316), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_elif] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [anon_sym_POUNDendif] = ACTIONS(3021), - [anon_sym_POUNDelse] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_GT_RBRACK] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3684), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_to] = ACTIONS(3686), + [anon_sym_downto] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_DOT_DOT2] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [1200] = { [sym_block_comment] = STATE(1200), [sym_compiler_directive_decl] = STATE(1200), [sym_fsi_directive_decl] = STATE(1200), [sym_preproc_line] = STATE(1200), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [aux_sym_type_argument_repeat1] = STATE(1200), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3727), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - [sym__dedent] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [1201] = { [sym_block_comment] = STATE(1201), [sym_compiler_directive_decl] = STATE(1201), [sym_fsi_directive_decl] = STATE(1201), [sym_preproc_line] = STATE(1201), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_GT_RBRACK] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3452), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_to] = ACTIONS(3454), - [anon_sym_downto] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_DOT_DOT2] = ACTIONS(3452), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_GT_RBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_to] = ACTIONS(3682), + [anon_sym_downto] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_DOT_DOT2] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [1202] = { [sym_block_comment] = STATE(1202), [sym_compiler_directive_decl] = STATE(1202), [sym_fsi_directive_decl] = STATE(1202), [sym_preproc_line] = STATE(1202), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_GT_RBRACK] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3503), + [anon_sym_namespace] = ACTIONS(3503), + [anon_sym_module] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_open] = ACTIONS(3503), + [anon_sym_LBRACK_LT] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_type] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [anon_sym_exception] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3505), + [anon_sym_POUNDload] = ACTIONS(3505), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [1203] = { + [sym_block_comment] = STATE(1203), + [sym_compiler_directive_decl] = STATE(1203), + [sym_fsi_directive_decl] = STATE(1203), + [sym_preproc_line] = STATE(1203), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_GT_RBRACK] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_RBRACK] = ACTIONS(3429), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_to] = ACTIONS(3431), - [anon_sym_downto] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_DOT_DOT2] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3673), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_RBRACE] = ACTIONS(3673), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3673), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_DOT_DOT2] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [1203] = { - [sym_block_comment] = STATE(1203), - [sym_compiler_directive_decl] = STATE(1203), - [sym_fsi_directive_decl] = STATE(1203), - [sym_preproc_line] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3519), - [anon_sym_namespace] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3519), - [anon_sym_LBRACK_LT] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_type] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [anon_sym_exception] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3521), - [anon_sym_POUNDload] = ACTIONS(3521), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), }, [1204] = { [sym_block_comment] = STATE(1204), [sym_compiler_directive_decl] = STATE(1204), [sym_fsi_directive_decl] = STATE(1204), [sym_preproc_line] = STATE(1204), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_GT_RBRACK] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_RBRACK] = ACTIONS(3735), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_RBRACE] = ACTIONS(3735), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_with] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_to] = ACTIONS(3733), - [anon_sym_downto] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_DOT_DOT2] = ACTIONS(3735), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_GT_RBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_to] = ACTIONS(3667), + [anon_sym_downto] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_DOT_DOT2] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [1205] = { [sym_block_comment] = STATE(1205), [sym_compiler_directive_decl] = STATE(1205), [sym_fsi_directive_decl] = STATE(1205), [sym_preproc_line] = STATE(1205), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_GT_RBRACK] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_RBRACK] = ACTIONS(3425), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_to] = ACTIONS(3427), - [anon_sym_downto] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_DOT_DOT2] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_GT_RBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_to] = ACTIONS(3659), + [anon_sym_downto] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_DOT_DOT2] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [1206] = { [sym_block_comment] = STATE(1206), [sym_compiler_directive_decl] = STATE(1206), [sym_fsi_directive_decl] = STATE(1206), [sym_preproc_line] = STATE(1206), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_GT_RBRACK] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_GT_RBRACK] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_RBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_to] = ACTIONS(3423), - [anon_sym_downto] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_DOT_DOT2] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3653), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_RBRACE] = ACTIONS(3653), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_to] = ACTIONS(3655), + [anon_sym_downto] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_DOT_DOT2] = ACTIONS(3653), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), }, [1207] = { [sym_block_comment] = STATE(1207), [sym_compiler_directive_decl] = STATE(1207), [sym_fsi_directive_decl] = STATE(1207), [sym_preproc_line] = STATE(1207), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3495), + [anon_sym_namespace] = ACTIONS(3495), + [anon_sym_module] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_open] = ACTIONS(3495), + [anon_sym_LBRACK_LT] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_type] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [anon_sym_exception] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3497), + [anon_sym_POUNDload] = ACTIONS(3497), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [1208] = { [sym_block_comment] = STATE(1208), [sym_compiler_directive_decl] = STATE(1208), [sym_fsi_directive_decl] = STATE(1208), [sym_preproc_line] = STATE(1208), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_GT_RBRACK] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3144), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_to] = ACTIONS(3505), - [anon_sym_downto] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3144), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [anon_sym_or] = ACTIONS(3507), + [anon_sym_exception] = 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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3509), + [anon_sym_POUNDload] = ACTIONS(3509), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1209] = { [sym_block_comment] = STATE(1209), [sym_compiler_directive_decl] = STATE(1209), [sym_fsi_directive_decl] = STATE(1209), [sym_preproc_line] = STATE(1209), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - [sym__dedent] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_GT_RBRACK] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_RBRACK] = ACTIONS(3649), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_to] = ACTIONS(3651), + [anon_sym_downto] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_DOT_DOT2] = ACTIONS(3649), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [1210] = { [sym_block_comment] = STATE(1210), [sym_compiler_directive_decl] = STATE(1210), [sym_fsi_directive_decl] = STATE(1210), [sym_preproc_line] = STATE(1210), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_GT_RBRACK] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3698), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_to] = ACTIONS(3700), - [anon_sym_downto] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_DOT_DOT2] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_GT_RBRACK] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_RBRACK] = ACTIONS(3645), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_to] = ACTIONS(3647), + [anon_sym_downto] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_DOT_DOT2] = ACTIONS(3645), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + }, + [1211] = { + [sym_block_comment] = STATE(1211), + [sym_compiler_directive_decl] = STATE(1211), + [sym_fsi_directive_decl] = STATE(1211), + [sym_preproc_line] = STATE(1211), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), - }, - [1211] = { - [sym_block_comment] = STATE(1211), - [sym_compiler_directive_decl] = STATE(1211), - [sym_fsi_directive_decl] = STATE(1211), - [sym_preproc_line] = STATE(1211), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_GT_RBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3683), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_to] = ACTIONS(3683), - [anon_sym_downto] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_DOT_DOT2] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), }, [1212] = { [sym_block_comment] = STATE(1212), [sym_compiler_directive_decl] = STATE(1212), [sym_fsi_directive_decl] = STATE(1212), [sym_preproc_line] = STATE(1212), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), - [sym__dedent] = ACTIONS(3097), + [aux_sym_long_identifier_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1213] = { [sym_block_comment] = STATE(1213), [sym_compiler_directive_decl] = STATE(1213), [sym_fsi_directive_decl] = STATE(1213), [sym_preproc_line] = STATE(1213), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_GT_RBRACK] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_module] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_open] = ACTIONS(3533), + [anon_sym_LBRACK_LT] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_to] = ACTIONS(3419), - [anon_sym_downto] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_DOT_DOT2] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [anon_sym_exception] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3239), + [anon_sym_POUNDload] = ACTIONS(3239), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [1214] = { [sym_block_comment] = STATE(1214), [sym_compiler_directive_decl] = STATE(1214), [sym_fsi_directive_decl] = STATE(1214), [sym_preproc_line] = STATE(1214), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - [sym__dedent] = ACTIONS(3040), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3521), + [anon_sym_namespace] = ACTIONS(3521), + [anon_sym_module] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_open] = ACTIONS(3521), + [anon_sym_LBRACK_LT] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_type] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [anon_sym_exception] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3523), + [anon_sym_POUNDload] = ACTIONS(3523), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [1215] = { [sym_block_comment] = STATE(1215), [sym_compiler_directive_decl] = STATE(1215), [sym_fsi_directive_decl] = STATE(1215), [sym_preproc_line] = STATE(1215), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [anon_sym_GT_RBRACK] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_LT_AT] = ACTIONS(3712), - [anon_sym_LT_AT_AT] = ACTIONS(3712), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_LBRACE_PIPE] = ACTIONS(3710), - [anon_sym_with] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_DOT_DOT2] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [anon_sym_GT_RBRACK] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_RBRACK] = ACTIONS(3633), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_DOT_DOT2] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [1216] = { [sym_block_comment] = STATE(1216), [sym_compiler_directive_decl] = STATE(1216), [sym_fsi_directive_decl] = STATE(1216), [sym_preproc_line] = STATE(1216), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [anon_sym_GT_RBRACK] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_RBRACK] = ACTIONS(3629), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(3629), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_DOT_DOT2] = ACTIONS(3629), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), + }, + [1217] = { + [sym_block_comment] = STATE(1217), + [sym_compiler_directive_decl] = STATE(1217), + [sym_fsi_directive_decl] = STATE(1217), + [sym_preproc_line] = STATE(1217), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_GT_RBRACK] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_RBRACK] = ACTIONS(3625), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_to] = ACTIONS(3627), + [anon_sym_downto] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_DOT_DOT2] = ACTIONS(3625), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), + }, + [1218] = { + [sym_block_comment] = STATE(1218), + [sym_compiler_directive_decl] = STATE(1218), + [sym_fsi_directive_decl] = STATE(1218), + [sym_preproc_line] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3605), + [anon_sym_namespace] = ACTIONS(3605), + [anon_sym_module] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_open] = ACTIONS(3605), + [anon_sym_LBRACK_LT] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_type] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [anon_sym_exception] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3607), + [anon_sym_POUNDload] = ACTIONS(3607), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + }, + [1219] = { + [sym_block_comment] = STATE(1219), + [sym_compiler_directive_decl] = STATE(1219), + [sym_fsi_directive_decl] = STATE(1219), + [sym_preproc_line] = STATE(1219), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_GT_RBRACK] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_RBRACK] = ACTIONS(3617), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_RBRACE] = ACTIONS(3617), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_to] = ACTIONS(3619), + [anon_sym_downto] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_DOT_DOT2] = ACTIONS(3617), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + }, + [1220] = { + [sym_block_comment] = STATE(1220), + [sym_compiler_directive_decl] = STATE(1220), + [sym_fsi_directive_decl] = STATE(1220), + [sym_preproc_line] = STATE(1220), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_GT_RBRACK] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_RBRACK] = ACTIONS(3613), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_to] = ACTIONS(3615), + [anon_sym_downto] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_DOT_DOT2] = ACTIONS(3613), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), + }, + [1221] = { + [sym_block_comment] = STATE(1221), + [sym_compiler_directive_decl] = STATE(1221), + [sym_fsi_directive_decl] = STATE(1221), + [sym_preproc_line] = STATE(1221), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_GT_RBRACK] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_RBRACK] = ACTIONS(3609), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_RBRACE] = ACTIONS(3609), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_to] = ACTIONS(3611), + [anon_sym_downto] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_DOT_DOT2] = ACTIONS(3609), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), + }, + [1222] = { + [sym_block_comment] = STATE(1222), + [sym_compiler_directive_decl] = STATE(1222), + [sym_fsi_directive_decl] = STATE(1222), + [sym_preproc_line] = STATE(1222), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_GT_RBRACK] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_to] = ACTIONS(3052), + [anon_sym_downto] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1223] = { + [sym_block_comment] = STATE(1223), + [sym_compiler_directive_decl] = STATE(1223), + [sym_fsi_directive_decl] = STATE(1223), + [sym_preproc_line] = STATE(1223), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_GT_RBRACK] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_DOT_DOT2] = ACTIONS(3239), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), + }, + [1224] = { + [sym_block_comment] = STATE(1224), + [sym_compiler_directive_decl] = STATE(1224), + [sym_fsi_directive_decl] = STATE(1224), + [sym_preproc_line] = STATE(1224), + [ts_builtin_sym_end] = ACTIONS(3519), [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_GT_RBRACK] = ACTIONS(3515), + [anon_sym_namespace] = ACTIONS(3517), + [anon_sym_module] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_open] = ACTIONS(3517), + [anon_sym_LBRACK_LT] = ACTIONS(3519), [anon_sym_COLON] = ACTIONS(3517), [anon_sym_return] = ACTIONS(3517), + [anon_sym_type] = ACTIONS(3517), [anon_sym_do] = ACTIONS(3517), [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3519), [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3519), [anon_sym_null] = ACTIONS(3517), [anon_sym_QMARK] = ACTIONS(3517), [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3519), [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3515), [anon_sym_LT_AT] = ACTIONS(3517), [anon_sym_LT_AT_AT] = ACTIONS(3517), [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_with] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3519), [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3519), [anon_sym_lazy] = ACTIONS(3517), [anon_sym_assert] = ACTIONS(3517), [anon_sym_upcast] = ACTIONS(3517), [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), [anon_sym_for] = ACTIONS(3517), - [anon_sym_to] = ACTIONS(3517), - [anon_sym_downto] = ACTIONS(3517), [anon_sym_while] = ACTIONS(3517), [anon_sym_if] = ACTIONS(3517), [anon_sym_fun] = ACTIONS(3517), [anon_sym_try] = ACTIONS(3517), [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3519), [anon_sym_function] = ACTIONS(3517), [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), [anon_sym_begin] = ACTIONS(3517), [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_DOT_DOT2] = ACTIONS(3515), [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), + [anon_sym_exception] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), + [sym_unit] = ACTIONS(3519), [anon_sym_LPAREN_PIPE] = ACTIONS(3517), [sym_op_identifier] = ACTIONS(3517), [anon_sym_PLUS] = ACTIONS(3517), @@ -190177,1733 +191311,1633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3517), [anon_sym_PERCENT] = ACTIONS(3517), [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3519), [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3519), [aux_sym_infix_op_token2] = ACTIONS(3517), [anon_sym_PIPE_PIPE] = ACTIONS(3517), [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3519), [anon_sym_DOLLAR] = ACTIONS(3517), [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), - }, - [1217] = { - [sym_block_comment] = STATE(1217), - [sym_compiler_directive_decl] = STATE(1217), - [sym_fsi_directive_decl] = STATE(1217), - [sym_preproc_line] = STATE(1217), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_GT_RBRACK] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_RBRACK] = ACTIONS(3548), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_RBRACE] = ACTIONS(3548), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_to] = ACTIONS(3550), - [anon_sym_downto] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_DOT_DOT2] = ACTIONS(3548), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), - }, - [1218] = { - [sym_block_comment] = STATE(1218), - [sym_compiler_directive_decl] = STATE(1218), - [sym_fsi_directive_decl] = STATE(1218), - [sym_preproc_line] = STATE(1218), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_GT_RBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3706), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_to] = ACTIONS(3708), - [anon_sym_downto] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_DOT_DOT2] = ACTIONS(3706), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), - }, - [1219] = { - [sym_block_comment] = STATE(1219), - [sym_compiler_directive_decl] = STATE(1219), - [sym_fsi_directive_decl] = STATE(1219), - [sym_preproc_line] = STATE(1219), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_GT_RBRACK] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_RBRACK] = ACTIONS(3714), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_with] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_to] = ACTIONS(3716), - [anon_sym_downto] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_DOT_DOT2] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - }, - [1220] = { - [sym_block_comment] = STATE(1220), - [sym_compiler_directive_decl] = STATE(1220), - [sym_fsi_directive_decl] = STATE(1220), - [sym_preproc_line] = STATE(1220), - [aux_sym_long_identifier_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3737), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [anon_sym_POUNDendif] = ACTIONS(3001), - [anon_sym_POUNDelse] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [1221] = { - [sym_block_comment] = STATE(1221), - [sym_compiler_directive_decl] = STATE(1221), - [sym_fsi_directive_decl] = STATE(1221), - [sym_preproc_line] = STATE(1221), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), - }, - [1222] = { - [sym_block_comment] = STATE(1222), - [sym_compiler_directive_decl] = STATE(1222), - [sym_fsi_directive_decl] = STATE(1222), - [sym_preproc_line] = STATE(1222), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_GT_RBRACK] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_RBRACK] = ACTIONS(3702), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_RBRACE] = ACTIONS(3702), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_with] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_to] = ACTIONS(3704), - [anon_sym_downto] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_DOT_DOT2] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), - }, - [1223] = { - [sym_block_comment] = STATE(1223), - [sym_compiler_directive_decl] = STATE(1223), - [sym_fsi_directive_decl] = STATE(1223), - [sym_preproc_line] = STATE(1223), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_GT_RBRACK] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_RBRACK] = ACTIONS(3607), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_with] = ACTIONS(3609), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_to] = ACTIONS(3609), - [anon_sym_downto] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_DOT_DOT2] = ACTIONS(3607), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3519), + [anon_sym_POUNDload] = ACTIONS(3519), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), - }, - [1224] = { - [sym_block_comment] = STATE(1224), - [sym_compiler_directive_decl] = STATE(1224), - [sym_fsi_directive_decl] = STATE(1224), - [sym_preproc_line] = STATE(1224), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_GT_RBRACK] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_RBRACK] = ACTIONS(3484), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_to] = ACTIONS(3486), - [anon_sym_downto] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_DOT_DOT2] = ACTIONS(3484), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [1225] = { [sym_block_comment] = STATE(1225), [sym_compiler_directive_decl] = STATE(1225), [sym_fsi_directive_decl] = STATE(1225), [sym_preproc_line] = STATE(1225), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [anon_sym_GT_RBRACK] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3675), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT_AT] = ACTIONS(3675), - [anon_sym_LT_AT_AT] = ACTIONS(3675), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_LBRACE_PIPE] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3675), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_DOT_DOT2] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), + [ts_builtin_sym_end] = ACTIONS(3721), + [sym_identifier] = ACTIONS(3719), + [anon_sym_namespace] = ACTIONS(3719), + [anon_sym_module] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_open] = ACTIONS(3719), + [anon_sym_LBRACK_LT] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_type] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [anon_sym_exception] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3721), + [anon_sym_POUNDload] = ACTIONS(3721), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [1226] = { [sym_block_comment] = STATE(1226), [sym_compiler_directive_decl] = STATE(1226), [sym_fsi_directive_decl] = STATE(1226), [sym_preproc_line] = STATE(1226), - [aux_sym_long_identifier_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_GT_RBRACK] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3741), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_RBRACK] = ACTIONS(3601), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_to] = ACTIONS(3603), + [anon_sym_downto] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_DOT_DOT2] = ACTIONS(3601), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [anon_sym_POUNDelse] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [1227] = { [sym_block_comment] = STATE(1227), [sym_compiler_directive_decl] = STATE(1227), [sym_fsi_directive_decl] = STATE(1227), [sym_preproc_line] = STATE(1227), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - [sym__dedent] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [anon_sym_GT_RBRACK] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_RBRACK] = ACTIONS(3543), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_RBRACE] = ACTIONS(3543), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_DOT_DOT2] = ACTIONS(3543), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [1228] = { [sym_block_comment] = STATE(1228), [sym_compiler_directive_decl] = STATE(1228), [sym_fsi_directive_decl] = STATE(1228), [sym_preproc_line] = STATE(1228), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_GT_RBRACK] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_RBRACK] = ACTIONS(3603), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3603), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_with] = ACTIONS(3605), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_to] = ACTIONS(3605), - [anon_sym_downto] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_DOT_DOT2] = ACTIONS(3603), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_GT_RBRACK] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3570), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_to] = ACTIONS(3572), + [anon_sym_downto] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_DOT_DOT2] = ACTIONS(3570), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [1229] = { + [sym__else_expression] = STATE(2007), + [sym_elif_expression] = STATE(1534), [sym_block_comment] = STATE(1229), [sym_compiler_directive_decl] = STATE(1229), [sym_fsi_directive_decl] = STATE(1229), [sym_preproc_line] = STATE(1229), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_GT_RBRACK] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_RBRACK] = ACTIONS(3552), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_RBRACE] = ACTIONS(3552), - [anon_sym_LT_AT] = ACTIONS(3554), - [anon_sym_LT_AT_AT] = ACTIONS(3554), - [anon_sym_DOT] = ACTIONS(3554), - [anon_sym_LBRACE_PIPE] = ACTIONS(3552), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_to] = ACTIONS(3554), - [anon_sym_downto] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_DOT_DOT2] = ACTIONS(3552), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [aux_sym_if_expression_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3471), + [anon_sym_elif] = ACTIONS(3473), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [1230] = { [sym_block_comment] = STATE(1230), [sym_compiler_directive_decl] = STATE(1230), [sym_fsi_directive_decl] = STATE(1230), [sym_preproc_line] = STATE(1230), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_GT_RBRACK] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_RBRACK] = ACTIONS(3661), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_with] = ACTIONS(3663), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_to] = ACTIONS(3663), - [anon_sym_downto] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_DOT_DOT2] = ACTIONS(3661), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_open] = ACTIONS(3734), + [anon_sym_LBRACK_LT] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [anon_sym_exception] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3732), + [anon_sym_POUNDload] = ACTIONS(3732), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [1231] = { [sym_block_comment] = STATE(1231), [sym_compiler_directive_decl] = STATE(1231), [sym_fsi_directive_decl] = STATE(1231), [sym_preproc_line] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3476), - [anon_sym_namespace] = ACTIONS(3476), - [anon_sym_module] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_open] = ACTIONS(3476), - [anon_sym_LBRACK_LT] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_type] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [anon_sym_exception] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3478), - [anon_sym_POUNDload] = ACTIONS(3478), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3535), + [anon_sym_namespace] = ACTIONS(3535), + [anon_sym_module] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_open] = ACTIONS(3535), + [anon_sym_LBRACK_LT] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_type] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [anon_sym_exception] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3537), + [anon_sym_POUNDload] = ACTIONS(3537), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [1232] = { [sym_block_comment] = STATE(1232), [sym_compiler_directive_decl] = STATE(1232), [sym_fsi_directive_decl] = STATE(1232), [sym_preproc_line] = STATE(1232), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_open] = ACTIONS(3431), + [anon_sym_LBRACK_LT] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_exception] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3433), + [anon_sym_POUNDload] = ACTIONS(3433), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [1233] = { [sym_block_comment] = STATE(1233), [sym_compiler_directive_decl] = STATE(1233), [sym_fsi_directive_decl] = STATE(1233), [sym_preproc_line] = STATE(1233), - [aux_sym_long_identifier_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_GT_RBRACK] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_RBRACK] = ACTIONS(3732), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_DOT_DOT2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [1234] = { [sym_block_comment] = STATE(1234), [sym_compiler_directive_decl] = STATE(1234), [sym_fsi_directive_decl] = STATE(1234), [sym_preproc_line] = STATE(1234), - [aux_sym_long_identifier_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_module] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_open] = ACTIONS(3525), + [anon_sym_LBRACK_LT] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_type] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [anon_sym_exception] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3527), + [anon_sym_POUNDload] = ACTIONS(3527), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), + }, + [1235] = { + [sym_elif_expression] = STATE(1366), + [sym_block_comment] = STATE(1235), + [sym_compiler_directive_decl] = STATE(1235), + [sym_fsi_directive_decl] = STATE(1235), + [sym_preproc_line] = STATE(1235), + [aux_sym_if_expression_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3736), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), + [sym__dedent] = ACTIONS(3100), + }, + [1236] = { + [sym_block_comment] = STATE(1236), + [sym_compiler_directive_decl] = STATE(1236), + [sym_fsi_directive_decl] = STATE(1236), + [sym_preproc_line] = STATE(1236), + [ts_builtin_sym_end] = ACTIONS(3739), + [sym_identifier] = ACTIONS(3741), + [anon_sym_namespace] = ACTIONS(3741), + [anon_sym_module] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_open] = ACTIONS(3741), + [anon_sym_LBRACK_LT] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_type] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [anon_sym_exception] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3739), + [anon_sym_POUNDload] = ACTIONS(3739), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), + }, + [1237] = { + [sym_block_comment] = STATE(1237), + [sym_compiler_directive_decl] = STATE(1237), + [sym_fsi_directive_decl] = STATE(1237), + [sym_preproc_line] = STATE(1237), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + [sym__dedent] = ACTIONS(3044), + }, + [1238] = { + [sym_block_comment] = STATE(1238), + [sym_compiler_directive_decl] = STATE(1238), + [sym_fsi_directive_decl] = STATE(1238), + [sym_preproc_line] = STATE(1238), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_GT_RBRACK] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_RBRACK] = ACTIONS(3745), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_to] = ACTIONS(3743), + [anon_sym_downto] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_DOT_DOT2] = ACTIONS(3745), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + }, + [1239] = { + [sym_block_comment] = STATE(1239), + [sym_compiler_directive_decl] = STATE(1239), + [sym_fsi_directive_decl] = STATE(1239), + [sym_preproc_line] = STATE(1239), + [ts_builtin_sym_end] = ACTIONS(3745), + [sym_identifier] = ACTIONS(3743), + [anon_sym_namespace] = ACTIONS(3743), + [anon_sym_module] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_open] = ACTIONS(3743), + [anon_sym_LBRACK_LT] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_type] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [anon_sym_exception] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3745), + [anon_sym_POUNDload] = ACTIONS(3745), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + }, + [1240] = { + [sym_block_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(3425), + [sym_identifier] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_open] = ACTIONS(3423), + [anon_sym_LBRACK_LT] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [anon_sym_exception] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3425), + [anon_sym_POUNDload] = ACTIONS(3425), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), + }, + [1241] = { + [sym_block_comment] = STATE(1241), + [sym_compiler_directive_decl] = STATE(1241), + [sym_fsi_directive_decl] = STATE(1241), + [sym_preproc_line] = STATE(1241), + [aux_sym_long_identifier_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -191911,28 +192945,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -191941,1293 +192975,903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1235] = { - [sym_elif_expression] = STATE(1399), - [sym_block_comment] = STATE(1235), - [sym_compiler_directive_decl] = STATE(1235), - [sym_fsi_directive_decl] = STATE(1235), - [sym_preproc_line] = STATE(1235), - [aux_sym_if_expression_repeat1] = STATE(1235), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3749), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - [sym__dedent] = ACTIONS(3086), - }, - [1236] = { - [sym_block_comment] = STATE(1236), - [sym_compiler_directive_decl] = STATE(1236), - [sym_fsi_directive_decl] = STATE(1236), - [sym_preproc_line] = STATE(1236), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_open] = ACTIONS(3480), - [anon_sym_LBRACK_LT] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [anon_sym_exception] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3482), - [anon_sym_POUNDload] = ACTIONS(3482), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - }, - [1237] = { - [sym_block_comment] = STATE(1237), - [sym_compiler_directive_decl] = STATE(1237), - [sym_fsi_directive_decl] = STATE(1237), - [sym_preproc_line] = STATE(1237), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_GT_RBRACK] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_to] = ACTIONS(3399), - [anon_sym_downto] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_DOT_DOT2] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), - }, - [1238] = { - [sym_block_comment] = STATE(1238), - [sym_compiler_directive_decl] = STATE(1238), - [sym_fsi_directive_decl] = STATE(1238), - [sym_preproc_line] = STATE(1238), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_GT_RBRACK] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_to] = ACTIONS(3403), - [anon_sym_downto] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_DOT_DOT2] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - }, - [1239] = { - [sym_block_comment] = STATE(1239), - [sym_compiler_directive_decl] = STATE(1239), - [sym_fsi_directive_decl] = STATE(1239), - [sym_preproc_line] = STATE(1239), - [aux_sym_long_identifier_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3744), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1240] = { - [sym_block_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(3490), - [sym_identifier] = ACTIONS(3488), - [anon_sym_namespace] = ACTIONS(3488), - [anon_sym_module] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_open] = ACTIONS(3488), - [anon_sym_LBRACK_LT] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_type] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [anon_sym_exception] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3490), - [anon_sym_POUNDload] = ACTIONS(3490), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), - }, - [1241] = { - [sym_block_comment] = STATE(1241), - [sym_compiler_directive_decl] = STATE(1241), - [sym_fsi_directive_decl] = STATE(1241), - [sym_preproc_line] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3492), - [anon_sym_namespace] = ACTIONS(3492), - [anon_sym_module] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_open] = ACTIONS(3492), - [anon_sym_LBRACK_LT] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_type] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [anon_sym_exception] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3494), - [anon_sym_POUNDload] = ACTIONS(3494), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [anon_sym_POUNDif] = ACTIONS(2986), + [anon_sym_POUNDendif] = ACTIONS(2986), + [anon_sym_POUNDelse] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, [1242] = { [sym_block_comment] = STATE(1242), [sym_compiler_directive_decl] = STATE(1242), [sym_fsi_directive_decl] = STATE(1242), [sym_preproc_line] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(3735), - [sym_identifier] = ACTIONS(3733), - [anon_sym_namespace] = ACTIONS(3733), - [anon_sym_module] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_open] = ACTIONS(3733), - [anon_sym_LBRACK_LT] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_type] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [anon_sym_exception] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3735), - [anon_sym_POUNDload] = ACTIONS(3735), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [aux_sym_long_identifier_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3747), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1243] = { [sym_block_comment] = STATE(1243), [sym_compiler_directive_decl] = STATE(1243), [sym_fsi_directive_decl] = STATE(1243), [sym_preproc_line] = STATE(1243), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_exception] = 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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3503), - [anon_sym_POUNDload] = ACTIONS(3503), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_GT_RBRACK] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_RBRACK] = ACTIONS(3739), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3741), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_to] = ACTIONS(3741), + [anon_sym_downto] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_DOT_DOT2] = ACTIONS(3739), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [1244] = { [sym_block_comment] = STATE(1244), [sym_compiler_directive_decl] = STATE(1244), [sym_fsi_directive_decl] = STATE(1244), [sym_preproc_line] = STATE(1244), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_GT_RBRACK] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_to] = ACTIONS(3415), - [anon_sym_downto] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_DOT_DOT2] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [aux_sym_type_argument_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3750), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1245] = { [sym_block_comment] = STATE(1245), [sym_compiler_directive_decl] = STATE(1245), [sym_fsi_directive_decl] = STATE(1245), [sym_preproc_line] = STATE(1245), - [aux_sym_type_argument_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3752), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), }, [1246] = { [sym_block_comment] = STATE(1246), [sym_compiler_directive_decl] = STATE(1246), [sym_fsi_directive_decl] = STATE(1246), [sym_preproc_line] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_module] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3511), - [anon_sym_LBRACK_LT] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_type] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [aux_sym_long_identifier_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [anon_sym_exception] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2988), + [aux_sym_infix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token2] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3513), - [anon_sym_POUNDload] = ACTIONS(3513), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, [1247] = { [sym_block_comment] = STATE(1247), [sym_compiler_directive_decl] = STATE(1247), [sym_fsi_directive_decl] = STATE(1247), [sym_preproc_line] = STATE(1247), - [aux_sym_type_argument_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(3017), + [aux_sym_compound_type_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [1248] = { + [sym_block_comment] = STATE(1248), + [sym_compiler_directive_decl] = STATE(1248), + [sym_fsi_directive_decl] = STATE(1248), + [sym_preproc_line] = STATE(1248), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_GT_RBRACK] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_RBRACK] = ACTIONS(3590), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_to] = ACTIONS(3592), + [anon_sym_downto] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_DOT_DOT2] = ACTIONS(3590), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), + }, + [1249] = { + [sym_block_comment] = STATE(1249), + [sym_compiler_directive_decl] = STATE(1249), + [sym_fsi_directive_decl] = STATE(1249), + [sym_preproc_line] = STATE(1249), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_GT_RBRACK] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_RBRACK] = ACTIONS(3547), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3547), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_to] = ACTIONS(3549), + [anon_sym_downto] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_DOT_DOT2] = ACTIONS(3547), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), + }, + [1250] = { + [sym_block_comment] = STATE(1250), + [sym_compiler_directive_decl] = STATE(1250), + [sym_fsi_directive_decl] = STATE(1250), + [sym_preproc_line] = STATE(1250), + [aux_sym_compound_type_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(3013), [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), + [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(3017), - [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), + [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(3017), + [anon_sym_AMP] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3013), [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), + [anon_sym_yield] = ACTIONS(3013), [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), + [anon_sym_lazy] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_upcast] = ACTIONS(3013), + [anon_sym_downcast] = ACTIONS(3013), [anon_sym_COLON_GT] = ACTIONS(3015), [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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_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(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), [anon_sym_DOT_LBRACK] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), + [anon_sym_use] = ACTIONS(3013), [anon_sym_use_BANG] = ACTIONS(3015), [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), + [anon_sym_begin] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LT2] = ACTIONS(3013), [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3013), [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), + [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(3017), + [sym_bool] = ACTIONS(3013), [sym_unit] = ACTIONS(3015), - [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_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(3017), + [aux_sym_prefix_op_token1] = ACTIONS(3013), [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), + [aux_sym_infix_op_token2] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3013), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), + [sym_int] = ACTIONS(3013), [sym_xint] = ACTIONS(3015), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -193236,462 +193880,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3015), [sym__newline] = ACTIONS(3015), }, - [1248] = { - [sym_block_comment] = STATE(1248), - [sym_compiler_directive_decl] = STATE(1248), - [sym_fsi_directive_decl] = STATE(1248), - [sym_preproc_line] = STATE(1248), - [aux_sym_type_argument_repeat1] = STATE(1329), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3755), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1249] = { - [sym_block_comment] = STATE(1249), - [sym_compiler_directive_decl] = STATE(1249), - [sym_fsi_directive_decl] = STATE(1249), - [sym_preproc_line] = STATE(1249), - [aux_sym_type_argument_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_AT_GT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3758), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1250] = { - [sym_block_comment] = STATE(1250), - [sym_compiler_directive_decl] = STATE(1250), - [sym_fsi_directive_decl] = STATE(1250), - [sym_preproc_line] = STATE(1250), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - }, [1251] = { [sym_block_comment] = STATE(1251), [sym_compiler_directive_decl] = STATE(1251), [sym_fsi_directive_decl] = STATE(1251), [sym_preproc_line] = STATE(1251), - [aux_sym_compound_type_repeat1] = STATE(1292), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_DOT_DOT] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [aux_sym_sequential_expression_repeat1] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_open] = ACTIONS(3299), + [anon_sym_LBRACK_LT] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [anon_sym_exception] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3297), + [anon_sym_POUNDload] = ACTIONS(3297), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(3756), + }, + [1252] = { + [sym_block_comment] = STATE(1252), + [sym_compiler_directive_decl] = STATE(1252), + [sym_fsi_directive_decl] = STATE(1252), + [sym_preproc_line] = STATE(1252), + [aux_sym_type_argument_repeat1] = STATE(1252), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3759), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, - [1252] = { - [sym_elif_expression] = STATE(1499), - [sym_block_comment] = STATE(1252), - [sym_compiler_directive_decl] = STATE(1252), - [sym_fsi_directive_decl] = STATE(1252), - [sym_preproc_line] = STATE(1252), - [aux_sym_if_expression_repeat1] = STATE(1252), + [1253] = { + [sym_block_comment] = STATE(1253), + [sym_compiler_directive_decl] = STATE(1253), + [sym_fsi_directive_decl] = STATE(1253), + [sym_preproc_line] = STATE(1253), [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3090), [anon_sym_COLON] = ACTIONS(3088), [anon_sym_return] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3088), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3761), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -193700,842 +194151,1327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - }, - [1253] = { - [sym_block_comment] = STATE(1253), - [sym_compiler_directive_decl] = STATE(1253), - [sym_fsi_directive_decl] = STATE(1253), - [sym_preproc_line] = STATE(1253), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1254] = { - [sym__else_expression] = STATE(2221), - [sym_elif_expression] = STATE(1797), + [sym_elif_expression] = STATE(1513), [sym_block_comment] = STATE(1254), [sym_compiler_directive_decl] = STATE(1254), [sym_fsi_directive_decl] = STATE(1254), [sym_preproc_line] = STATE(1254), - [aux_sym_if_expression_repeat1] = STATE(1436), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3764), - [anon_sym_elif] = ACTIONS(3766), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_DOT_DOT] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [aux_sym_if_expression_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_DASH_GT] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [1255] = { + [sym__else_expression] = STATE(2479), + [sym_elif_expression] = STATE(1801), [sym_block_comment] = STATE(1255), [sym_compiler_directive_decl] = STATE(1255), [sym_fsi_directive_decl] = STATE(1255), [sym_preproc_line] = STATE(1255), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_DOT_DOT2] = ACTIONS(3132), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3768), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - [sym__dedent] = ACTIONS(3132), + [aux_sym_if_expression_repeat1] = STATE(1373), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3765), + [anon_sym_elif] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [anon_sym_POUNDendif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1256] = { - [sym__else_expression] = STATE(2145), - [sym_elif_expression] = STATE(1672), [sym_block_comment] = STATE(1256), [sym_compiler_directive_decl] = STATE(1256), [sym_fsi_directive_decl] = STATE(1256), [sym_preproc_line] = STATE(1256), - [aux_sym_if_expression_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_AT_GT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3770), - [anon_sym_elif] = ACTIONS(3772), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3769), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, [1257] = { [sym_block_comment] = STATE(1257), [sym_compiler_directive_decl] = STATE(1257), [sym_fsi_directive_decl] = STATE(1257), [sym_preproc_line] = STATE(1257), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [aux_sym_type_argument_repeat1] = STATE(1257), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3771), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [anon_sym_POUNDendif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [1258] = { [sym_block_comment] = STATE(1258), [sym_compiler_directive_decl] = STATE(1258), [sym_fsi_directive_decl] = STATE(1258), [sym_preproc_line] = STATE(1258), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [anon_sym_POUNDendif] = ACTIONS(3062), - [anon_sym_POUNDelse] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, [1259] = { [sym_block_comment] = STATE(1259), [sym_compiler_directive_decl] = STATE(1259), [sym_fsi_directive_decl] = STATE(1259), [sym_preproc_line] = STATE(1259), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3774), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - [sym__dedent] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [1260] = { [sym_block_comment] = STATE(1260), [sym_compiler_directive_decl] = STATE(1260), [sym_fsi_directive_decl] = STATE(1260), [sym_preproc_line] = STATE(1260), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [aux_sym_type_argument_repeat1] = STATE(1299), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_DOT_DOT] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1261] = { + [sym__else_expression] = STATE(2288), + [sym_elif_expression] = STATE(1740), + [sym_block_comment] = STATE(1261), + [sym_compiler_directive_decl] = STATE(1261), + [sym_fsi_directive_decl] = STATE(1261), + [sym_preproc_line] = STATE(1261), + [aux_sym_if_expression_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_AT_GT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3777), + [anon_sym_elif] = ACTIONS(3779), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [anon_sym_POUNDendif] = ACTIONS(3062), - [anon_sym_POUNDelse] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, - [1261] = { - [sym_block_comment] = STATE(1261), - [sym_compiler_directive_decl] = STATE(1261), - [sym_fsi_directive_decl] = STATE(1261), - [sym_preproc_line] = STATE(1261), + [1262] = { + [sym_block_comment] = STATE(1262), + [sym_compiler_directive_decl] = STATE(1262), + [sym_fsi_directive_decl] = STATE(1262), + [sym_preproc_line] = STATE(1262), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1263] = { + [sym_block_comment] = STATE(1263), + [sym_compiler_directive_decl] = STATE(1263), + [sym_fsi_directive_decl] = STATE(1263), + [sym_preproc_line] = STATE(1263), + [aux_sym_long_identifier_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [1264] = { + [sym_block_comment] = STATE(1264), + [sym_compiler_directive_decl] = STATE(1264), + [sym_fsi_directive_decl] = STATE(1264), + [sym_preproc_line] = STATE(1264), + [aux_sym_type_argument_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + }, + [1265] = { + [sym_block_comment] = STATE(1265), + [sym_compiler_directive_decl] = STATE(1265), + [sym_fsi_directive_decl] = STATE(1265), + [sym_preproc_line] = STATE(1265), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1266] = { + [sym_block_comment] = STATE(1266), + [sym_compiler_directive_decl] = STATE(1266), + [sym_fsi_directive_decl] = STATE(1266), + [sym_preproc_line] = STATE(1266), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [1267] = { + [sym_block_comment] = STATE(1267), + [sym_compiler_directive_decl] = STATE(1267), + [sym_fsi_directive_decl] = STATE(1267), + [sym_preproc_line] = STATE(1267), [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3054), [anon_sym_COLON] = ACTIONS(3048), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_as] = ACTIONS(3048), [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3054), [anon_sym_null] = ACTIONS(3048), [anon_sym_QMARK] = ACTIONS(3048), [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_with] = ACTIONS(3048), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), [anon_sym_for] = ACTIONS(3048), [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), @@ -194543,28 +195479,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), [anon_sym_LPAREN2] = ACTIONS(3048), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -194573,2006 +195509,1617 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3054), [aux_sym_infix_op_token2] = ACTIONS(3048), [anon_sym_PIPE_PIPE] = ACTIONS(3048), [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3054), [anon_sym_DOLLAR] = ACTIONS(3048), [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [1262] = { - [sym_block_comment] = STATE(1262), - [sym_compiler_directive_decl] = STATE(1262), - [sym_fsi_directive_decl] = STATE(1262), - [sym_preproc_line] = STATE(1262), - [aux_sym_long_identifier_repeat1] = STATE(1262), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1263] = { - [sym_block_comment] = STATE(1263), - [sym_compiler_directive_decl] = STATE(1263), - [sym_fsi_directive_decl] = STATE(1263), - [sym_preproc_line] = STATE(1263), - [aux_sym_long_identifier_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_AT_GT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3779), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - }, - [1264] = { - [sym_block_comment] = STATE(1264), - [sym_compiler_directive_decl] = STATE(1264), - [sym_fsi_directive_decl] = STATE(1264), - [sym_preproc_line] = STATE(1264), - [aux_sym_long_identifier_repeat1] = STATE(1336), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3781), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - }, - [1265] = { - [sym_block_comment] = STATE(1265), - [sym_compiler_directive_decl] = STATE(1265), - [sym_fsi_directive_decl] = STATE(1265), - [sym_preproc_line] = STATE(1265), - [aux_sym_long_identifier_repeat1] = STATE(1315), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3783), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [anon_sym_POUNDendif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), - }, - [1266] = { - [sym_block_comment] = STATE(1266), - [sym_compiler_directive_decl] = STATE(1266), - [sym_fsi_directive_decl] = STATE(1266), - [sym_preproc_line] = STATE(1266), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - }, - [1267] = { - [sym_block_comment] = STATE(1267), - [sym_compiler_directive_decl] = STATE(1267), - [sym_fsi_directive_decl] = STATE(1267), - [sym_preproc_line] = STATE(1267), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3785), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [anon_sym_POUNDendif] = ACTIONS(3056), - [anon_sym_POUNDelse] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [1268] = { + [sym__else_expression] = STATE(2144), + [sym_elif_expression] = STATE(1610), [sym_block_comment] = STATE(1268), [sym_compiler_directive_decl] = STATE(1268), [sym_fsi_directive_decl] = STATE(1268), [sym_preproc_line] = STATE(1268), - [aux_sym_compound_type_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_AT_GT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3787), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_if_expression_repeat1] = STATE(1352), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3785), + [anon_sym_elif] = ACTIONS(3787), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1269] = { [sym_block_comment] = STATE(1269), [sym_compiler_directive_decl] = STATE(1269), [sym_fsi_directive_decl] = STATE(1269), [sym_preproc_line] = STATE(1269), - [aux_sym_type_argument_repeat1] = STATE(1334), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3790), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_type_argument_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [anon_sym_POUNDendif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [1270] = { [sym_block_comment] = STATE(1270), [sym_compiler_directive_decl] = STATE(1270), [sym_fsi_directive_decl] = STATE(1270), [sym_preproc_line] = STATE(1270), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [aux_sym_long_identifier_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3789), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [anon_sym_POUNDendif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1271] = { [sym_block_comment] = STATE(1271), [sym_compiler_directive_decl] = STATE(1271), [sym_fsi_directive_decl] = STATE(1271), [sym_preproc_line] = STATE(1271), - [aux_sym_type_argument_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3793), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1272] = { - [sym__else_expression] = STATE(2531), - [sym_elif_expression] = STATE(1721), - [sym_block_comment] = STATE(1272), - [sym_compiler_directive_decl] = STATE(1272), - [sym_fsi_directive_decl] = STATE(1272), - [sym_preproc_line] = STATE(1272), - [aux_sym_if_expression_repeat1] = STATE(1281), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3796), - [anon_sym_elif] = ACTIONS(3798), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), - }, - [1273] = { - [sym_block_comment] = STATE(1273), - [sym_compiler_directive_decl] = STATE(1273), - [sym_fsi_directive_decl] = STATE(1273), - [sym_preproc_line] = STATE(1273), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3800), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), + [aux_sym_compound_type_repeat1] = STATE(1273), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), + [anon_sym_STAR] = ACTIONS(3330), + [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(3015), + [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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), }, - [1274] = { - [sym_block_comment] = STATE(1274), - [sym_compiler_directive_decl] = STATE(1274), - [sym_fsi_directive_decl] = STATE(1274), - [sym_preproc_line] = STATE(1274), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [1272] = { + [sym_block_comment] = STATE(1272), + [sym_compiler_directive_decl] = STATE(1272), + [sym_fsi_directive_decl] = STATE(1272), + [sym_preproc_line] = STATE(1272), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [anon_sym_POUNDendif] = ACTIONS(3052), - [anon_sym_POUNDelse] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, - [1275] = { - [sym_block_comment] = STATE(1275), - [sym_compiler_directive_decl] = STATE(1275), - [sym_fsi_directive_decl] = STATE(1275), - [sym_preproc_line] = STATE(1275), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [1273] = { + [sym_block_comment] = STATE(1273), + [sym_compiler_directive_decl] = STATE(1273), + [sym_fsi_directive_decl] = STATE(1273), + [sym_preproc_line] = STATE(1273), + [aux_sym_compound_type_repeat1] = STATE(1273), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [1274] = { + [sym_block_comment] = STATE(1274), + [sym_compiler_directive_decl] = STATE(1274), + [sym_fsi_directive_decl] = STATE(1274), + [sym_preproc_line] = STATE(1274), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [anon_sym_POUNDendif] = ACTIONS(3084), - [anon_sym_POUNDelse] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), + }, + [1275] = { + [sym_block_comment] = STATE(1275), + [sym_compiler_directive_decl] = STATE(1275), + [sym_fsi_directive_decl] = STATE(1275), + [sym_preproc_line] = STATE(1275), + [aux_sym_long_identifier_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1276] = { [sym_block_comment] = STATE(1276), [sym_compiler_directive_decl] = STATE(1276), [sym_fsi_directive_decl] = STATE(1276), [sym_preproc_line] = STATE(1276), - [aux_sym_type_argument_repeat1] = STATE(1276), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3802), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [anon_sym_POUNDendif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, [1277] = { [sym_block_comment] = STATE(1277), [sym_compiler_directive_decl] = STATE(1277), [sym_fsi_directive_decl] = STATE(1277), [sym_preproc_line] = STATE(1277), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, [1278] = { [sym_block_comment] = STATE(1278), [sym_compiler_directive_decl] = STATE(1278), [sym_fsi_directive_decl] = STATE(1278), [sym_preproc_line] = STATE(1278), - [aux_sym_compound_type_repeat1] = STATE(1296), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [aux_sym_long_identifier_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1279] = { [sym_block_comment] = STATE(1279), [sym_compiler_directive_decl] = STATE(1279), [sym_fsi_directive_decl] = STATE(1279), [sym_preproc_line] = STATE(1279), - [aux_sym_long_identifier_repeat1] = STATE(1279), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [aux_sym_compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3805), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3802), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [1280] = { [sym_block_comment] = STATE(1280), [sym_compiler_directive_decl] = STATE(1280), [sym_fsi_directive_decl] = STATE(1280), [sym_preproc_line] = STATE(1280), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [aux_sym_compound_type_repeat1] = STATE(1279), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_AT_AT_GT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), + [anon_sym_STAR] = ACTIONS(3254), + [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(3015), + [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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), }, [1281] = { - [sym__else_expression] = STATE(2514), - [sym_elif_expression] = STATE(1721), + [sym_elif_expression] = STATE(1534), [sym_block_comment] = STATE(1281), [sym_compiler_directive_decl] = STATE(1281), [sym_fsi_directive_decl] = STATE(1281), [sym_preproc_line] = STATE(1281), - [aux_sym_if_expression_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3796), - [anon_sym_elif] = ACTIONS(3798), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [aux_sym_if_expression_repeat1] = STATE(1281), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3805), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [1282] = { [sym_block_comment] = STATE(1282), [sym_compiler_directive_decl] = STATE(1282), [sym_fsi_directive_decl] = STATE(1282), [sym_preproc_line] = STATE(1282), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + }, + [1283] = { + [sym_block_comment] = STATE(1283), + [sym_compiler_directive_decl] = STATE(1283), + [sym_fsi_directive_decl] = STATE(1283), + [sym_preproc_line] = STATE(1283), + [aux_sym_long_identifier_repeat1] = STATE(1283), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1284] = { + [sym_block_comment] = STATE(1284), + [sym_compiler_directive_decl] = STATE(1284), + [sym_fsi_directive_decl] = STATE(1284), + [sym_preproc_line] = STATE(1284), + [aux_sym_long_identifier_repeat1] = STATE(1321), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3811), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -196580,28 +197127,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -196610,1612 +197157,1613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [anon_sym_POUNDendif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, - [1283] = { - [sym_block_comment] = STATE(1283), - [sym_compiler_directive_decl] = STATE(1283), - [sym_fsi_directive_decl] = STATE(1283), - [sym_preproc_line] = STATE(1283), - [aux_sym_type_argument_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [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(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), + [1285] = { + [sym_block_comment] = STATE(1285), + [sym_compiler_directive_decl] = STATE(1285), + [sym_fsi_directive_decl] = STATE(1285), + [sym_preproc_line] = STATE(1285), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - }, - [1284] = { - [sym_block_comment] = STATE(1284), - [sym_compiler_directive_decl] = STATE(1284), - [sym_fsi_directive_decl] = STATE(1284), - [sym_preproc_line] = STATE(1284), - [aux_sym_long_identifier_repeat1] = STATE(1279), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_DOT_DOT] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1285] = { - [sym_block_comment] = STATE(1285), - [sym_compiler_directive_decl] = STATE(1285), - [sym_fsi_directive_decl] = STATE(1285), - [sym_preproc_line] = STATE(1285), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [anon_sym_POUNDendif] = ACTIONS(3095), - [anon_sym_POUNDelse] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [1286] = { - [sym__else_expression] = STATE(2188), - [sym_elif_expression] = STATE(1797), [sym_block_comment] = STATE(1286), [sym_compiler_directive_decl] = STATE(1286), [sym_fsi_directive_decl] = STATE(1286), [sym_preproc_line] = STATE(1286), - [aux_sym_if_expression_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3764), - [anon_sym_elif] = ACTIONS(3766), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, [1287] = { [sym_block_comment] = STATE(1287), [sym_compiler_directive_decl] = STATE(1287), [sym_fsi_directive_decl] = STATE(1287), [sym_preproc_line] = STATE(1287), - [aux_sym_long_identifier_repeat1] = STATE(1336), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3810), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [anon_sym_POUNDendif] = ACTIONS(3058), + [anon_sym_POUNDelse] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [1288] = { [sym_block_comment] = STATE(1288), [sym_compiler_directive_decl] = STATE(1288), [sym_fsi_directive_decl] = STATE(1288), [sym_preproc_line] = STATE(1288), - [aux_sym_type_argument_repeat1] = STATE(1276), - [sym_identifier] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3813), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + [sym__dedent] = ACTIONS(3134), + }, + [1289] = { + [sym_block_comment] = STATE(1289), + [sym_compiler_directive_decl] = STATE(1289), + [sym_fsi_directive_decl] = STATE(1289), + [sym_preproc_line] = STATE(1289), + [aux_sym_compound_type_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(3013), [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), + [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(3017), + [anon_sym_LPAREN] = ACTIONS(3013), [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), + [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(3017), + [anon_sym_AMP] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3013), [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3013), [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), + [anon_sym_yield] = ACTIONS(3013), [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), + [anon_sym_lazy] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_upcast] = ACTIONS(3013), + [anon_sym_downcast] = ACTIONS(3013), [anon_sym_COLON_GT] = ACTIONS(3015), [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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_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(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), [anon_sym_DOT_LBRACK] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), + [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(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), + [anon_sym_begin] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3013), [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3013), [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), + [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(3017), + [sym_bool] = ACTIONS(3013), [sym_unit] = ACTIONS(3015), - [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_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(3017), + [aux_sym_prefix_op_token1] = ACTIONS(3013), [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), + [aux_sym_infix_op_token2] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3013), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), + [sym_int] = ACTIONS(3013), [sym_xint] = ACTIONS(3015), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3015), - [anon_sym_POUNDendif] = ACTIONS(3015), [sym__newline] = ACTIONS(3015), }, - [1289] = { - [sym_block_comment] = STATE(1289), - [sym_compiler_directive_decl] = STATE(1289), - [sym_fsi_directive_decl] = STATE(1289), - [sym_preproc_line] = STATE(1289), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [1290] = { + [sym__else_expression] = STATE(2212), + [sym_elif_expression] = STATE(1610), + [sym_block_comment] = STATE(1290), + [sym_compiler_directive_decl] = STATE(1290), + [sym_fsi_directive_decl] = STATE(1290), + [sym_preproc_line] = STATE(1290), + [aux_sym_if_expression_repeat1] = STATE(1268), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3785), + [anon_sym_elif] = ACTIONS(3787), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [anon_sym_POUNDendif] = ACTIONS(3076), - [anon_sym_POUNDelse] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - }, - [1290] = { - [sym_block_comment] = STATE(1290), - [sym_compiler_directive_decl] = STATE(1290), - [sym_fsi_directive_decl] = STATE(1290), - [sym_preproc_line] = STATE(1290), - [aux_sym_long_identifier_repeat1] = STATE(1328), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3814), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, [1291] = { [sym_block_comment] = STATE(1291), [sym_compiler_directive_decl] = STATE(1291), [sym_fsi_directive_decl] = STATE(1291), [sym_preproc_line] = STATE(1291), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, [1292] = { [sym_block_comment] = STATE(1292), [sym_compiler_directive_decl] = STATE(1292), [sym_fsi_directive_decl] = STATE(1292), [sym_preproc_line] = STATE(1292), - [aux_sym_compound_type_repeat1] = STATE(1292), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1293] = { [sym_block_comment] = STATE(1293), [sym_compiler_directive_decl] = STATE(1293), [sym_fsi_directive_decl] = STATE(1293), [sym_preproc_line] = STATE(1293), - [aux_sym_long_identifier_repeat1] = STATE(1315), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [anon_sym_POUNDendif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [aux_sym_type_argument_repeat1] = STATE(1342), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_AT_GT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3815), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1294] = { - [sym__else_expression] = STATE(2244), - [sym_elif_expression] = STATE(1622), [sym_block_comment] = STATE(1294), [sym_compiler_directive_decl] = STATE(1294), [sym_fsi_directive_decl] = STATE(1294), [sym_preproc_line] = STATE(1294), - [aux_sym_if_expression_repeat1] = STATE(1303), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3825), - [anon_sym_elif] = ACTIONS(3827), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [anon_sym_POUNDendif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), - }, - [1295] = { - [sym_block_comment] = STATE(1295), - [sym_compiler_directive_decl] = STATE(1295), - [sym_fsi_directive_decl] = STATE(1295), - [sym_preproc_line] = STATE(1295), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [aux_sym_type_argument_repeat1] = STATE(1294), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3818), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [anon_sym_POUNDendif] = ACTIONS(3046), - [anon_sym_POUNDelse] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [1295] = { + [sym_block_comment] = STATE(1295), + [sym_compiler_directive_decl] = STATE(1295), + [sym_fsi_directive_decl] = STATE(1295), + [sym_preproc_line] = STATE(1295), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [anon_sym_POUNDendif] = ACTIONS(3058), + [anon_sym_POUNDelse] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [1296] = { [sym_block_comment] = STATE(1296), [sym_compiler_directive_decl] = STATE(1296), [sym_fsi_directive_decl] = STATE(1296), [sym_preproc_line] = STATE(1296), - [aux_sym_compound_type_repeat1] = STATE(1296), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_AT_AT_GT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3821), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [anon_sym_POUNDendif] = ACTIONS(3082), + [anon_sym_POUNDelse] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, [1297] = { [sym_block_comment] = STATE(1297), [sym_compiler_directive_decl] = STATE(1297), [sym_fsi_directive_decl] = STATE(1297), [sym_preproc_line] = STATE(1297), - [aux_sym_long_identifier_repeat1] = STATE(1284), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3832), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [aux_sym_compound_type_repeat1] = STATE(1343), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_AT_GT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = 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_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_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(3013), + [anon_sym_STAR] = ACTIONS(3268), + [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(3015), + [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(3015), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), }, [1298] = { [sym_block_comment] = STATE(1298), [sym_compiler_directive_decl] = STATE(1298), [sym_fsi_directive_decl] = STATE(1298), [sym_preproc_line] = STATE(1298), - [aux_sym_long_identifier_repeat1] = STATE(1284), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3832), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [aux_sym_type_argument_repeat1] = STATE(1294), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [1299] = { [sym_block_comment] = STATE(1299), [sym_compiler_directive_decl] = STATE(1299), [sym_fsi_directive_decl] = STATE(1299), [sym_preproc_line] = STATE(1299), + [aux_sym_type_argument_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_DOT_DOT] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + }, + [1300] = { + [sym_block_comment] = STATE(1300), + [sym_compiler_directive_decl] = STATE(1300), + [sym_fsi_directive_decl] = STATE(1300), + [sym_preproc_line] = STATE(1300), + [aux_sym_long_identifier_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3823), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2988), + [aux_sym_infix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token2] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + }, + [1301] = { + [sym_block_comment] = STATE(1301), + [sym_compiler_directive_decl] = STATE(1301), + [sym_fsi_directive_decl] = STATE(1301), + [sym_preproc_line] = STATE(1301), [sym_identifier] = ACTIONS(3072), [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_as] = ACTIONS(3072), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3836), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_with] = ACTIONS(3072), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -198229,28 +198777,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3072), [anon_sym_DOT_LBRACK] = ACTIONS(3070), [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -198259,1804 +198807,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), [sym__newline] = ACTIONS(3070), }, - [1300] = { - [sym_block_comment] = STATE(1300), - [sym_compiler_directive_decl] = STATE(1300), - [sym_fsi_directive_decl] = STATE(1300), - [sym_preproc_line] = STATE(1300), - [aux_sym_type_argument_repeat1] = STATE(1288), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3838), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [anon_sym_POUNDendif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1301] = { - [sym_block_comment] = STATE(1301), - [sym_compiler_directive_decl] = STATE(1301), - [sym_fsi_directive_decl] = STATE(1301), - [sym_preproc_line] = STATE(1301), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, [1302] = { [sym_block_comment] = STATE(1302), [sym_compiler_directive_decl] = STATE(1302), [sym_fsi_directive_decl] = STATE(1302), [sym_preproc_line] = STATE(1302), - [aux_sym_long_identifier_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [aux_sym_compound_type_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3825), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [1303] = { - [sym__else_expression] = STATE(2224), - [sym_elif_expression] = STATE(1622), [sym_block_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(1394), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3825), - [anon_sym_elif] = ACTIONS(3827), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [anon_sym_POUNDendif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [anon_sym_POUNDelse] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1304] = { [sym_block_comment] = STATE(1304), [sym_compiler_directive_decl] = STATE(1304), [sym_fsi_directive_decl] = STATE(1304), [sym_preproc_line] = STATE(1304), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [aux_sym_long_identifier_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_AT_AT_GT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3828), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1305] = { [sym_block_comment] = STATE(1305), [sym_compiler_directive_decl] = STATE(1305), [sym_fsi_directive_decl] = STATE(1305), [sym_preproc_line] = STATE(1305), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_type_argument_repeat1] = STATE(1269), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3830), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [anon_sym_POUNDendif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1306] = { [sym_block_comment] = STATE(1306), [sym_compiler_directive_decl] = STATE(1306), [sym_fsi_directive_decl] = STATE(1306), [sym_preproc_line] = STATE(1306), - [aux_sym_long_identifier_repeat1] = STATE(1262), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_AT_GT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3779), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [aux_sym_type_argument_repeat1] = STATE(1306), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3833), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, [1307] = { [sym_block_comment] = STATE(1307), [sym_compiler_directive_decl] = STATE(1307), [sym_fsi_directive_decl] = STATE(1307), [sym_preproc_line] = STATE(1307), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [anon_sym_POUNDendif] = ACTIONS(3103), - [anon_sym_POUNDelse] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), + [aux_sym_long_identifier_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1308] = { [sym_block_comment] = STATE(1308), [sym_compiler_directive_decl] = STATE(1308), [sym_fsi_directive_decl] = STATE(1308), [sym_preproc_line] = STATE(1308), - [aux_sym_type_argument_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(3017), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [anon_sym_POUNDendif] = ACTIONS(2992), + [anon_sym_POUNDelse] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [1309] = { + [sym_block_comment] = STATE(1309), + [sym_compiler_directive_decl] = STATE(1309), + [sym_fsi_directive_decl] = STATE(1309), + [sym_preproc_line] = STATE(1309), + [aux_sym_long_identifier_repeat1] = STATE(1315), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3823), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1310] = { + [sym_block_comment] = STATE(1310), + [sym_compiler_directive_decl] = STATE(1310), + [sym_fsi_directive_decl] = STATE(1310), + [sym_preproc_line] = STATE(1310), + [aux_sym_compound_type_repeat1] = STATE(1313), + [sym_identifier] = ACTIONS(3013), [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), + [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(3017), + [anon_sym_LPAREN] = ACTIONS(3013), [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), + [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(3017), + [anon_sym_AMP] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3013), [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3013), [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), + [anon_sym_yield] = ACTIONS(3013), [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), + [anon_sym_lazy] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_upcast] = ACTIONS(3013), + [anon_sym_downcast] = ACTIONS(3013), [anon_sym_COLON_GT] = ACTIONS(3015), [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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_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(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), [anon_sym_DOT_LBRACK] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), + [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(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), + [anon_sym_begin] = ACTIONS(3013), + [anon_sym_LPAREN2] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_LT2] = ACTIONS(3013), [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3013), [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), + [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(3017), + [sym_bool] = ACTIONS(3013), [sym_unit] = ACTIONS(3015), - [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_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(3017), + [aux_sym_prefix_op_token1] = ACTIONS(3013), [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), + [aux_sym_infix_op_token2] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3013), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), + [sym_int] = ACTIONS(3013), [sym_xint] = ACTIONS(3015), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3015), + [anon_sym_POUNDendif] = ACTIONS(3015), [sym__newline] = ACTIONS(3015), }, - [1309] = { - [sym_block_comment] = STATE(1309), - [sym_compiler_directive_decl] = STATE(1309), - [sym_fsi_directive_decl] = STATE(1309), - [sym_preproc_line] = STATE(1309), - [aux_sym_compound_type_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [1311] = { + [sym_block_comment] = STATE(1311), + [sym_compiler_directive_decl] = STATE(1311), + [sym_fsi_directive_decl] = STATE(1311), + [sym_preproc_line] = STATE(1311), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [anon_sym_POUNDendif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - }, - [1310] = { - [sym_block_comment] = STATE(1310), - [sym_compiler_directive_decl] = STATE(1310), - [sym_fsi_directive_decl] = STATE(1310), - [sym_preproc_line] = STATE(1310), - [aux_sym_compound_type_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - }, - [1311] = { - [sym_block_comment] = STATE(1311), - [sym_compiler_directive_decl] = STATE(1311), - [sym_fsi_directive_decl] = STATE(1311), - [sym_preproc_line] = STATE(1311), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), + [anon_sym_POUNDif] = ACTIONS(3066), + [anon_sym_POUNDendif] = ACTIONS(3066), + [anon_sym_POUNDelse] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, [1312] = { [sym_block_comment] = STATE(1312), [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(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_DOT_DOT] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3844), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1313] = { - [sym__else_expression] = STATE(2157), - [sym_elif_expression] = STATE(1672), - [sym_block_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(1357), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_AT_GT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3770), - [anon_sym_elif] = ACTIONS(3772), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), - }, - [1314] = { - [sym_block_comment] = STATE(1314), - [sym_compiler_directive_decl] = STATE(1314), - [sym_fsi_directive_decl] = STATE(1314), - [sym_preproc_line] = STATE(1314), - [aux_sym_long_identifier_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [1315] = { - [sym_block_comment] = STATE(1315), - [sym_compiler_directive_decl] = STATE(1315), - [sym_fsi_directive_decl] = STATE(1315), - [sym_preproc_line] = STATE(1315), - [aux_sym_long_identifier_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3783), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [anon_sym_POUNDendif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1316] = { - [sym_elif_expression] = STATE(1508), - [sym_block_comment] = STATE(1316), - [sym_compiler_directive_decl] = STATE(1316), - [sym_fsi_directive_decl] = STATE(1316), - [sym_preproc_line] = STATE(1316), - [aux_sym_if_expression_repeat1] = STATE(1316), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3851), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [anon_sym_POUNDendif] = ACTIONS(3086), - [anon_sym_POUNDelse] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - }, - [1317] = { - [sym_block_comment] = STATE(1317), - [sym_compiler_directive_decl] = STATE(1317), - [sym_fsi_directive_decl] = STATE(1317), - [sym_preproc_line] = STATE(1317), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - }, - [1318] = { - [sym_block_comment] = STATE(1318), - [sym_compiler_directive_decl] = STATE(1318), - [sym_fsi_directive_decl] = STATE(1318), - [sym_preproc_line] = STATE(1318), [sym_identifier] = ACTIONS(3072), [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -200070,28 +199842,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3072), [anon_sym_DOT_LBRACK] = ACTIONS(3070), [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), + [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -200100,551 +199872,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), [anon_sym_POUNDendif] = ACTIONS(3070), [anon_sym_POUNDelse] = ACTIONS(3070), [sym__newline] = ACTIONS(3070), }, - [1319] = { - [sym_block_comment] = STATE(1319), - [sym_compiler_directive_decl] = STATE(1319), - [sym_fsi_directive_decl] = STATE(1319), - [sym_preproc_line] = STATE(1319), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [anon_sym_POUNDendif] = ACTIONS(3097), - [anon_sym_POUNDelse] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [1313] = { + [sym_block_comment] = STATE(1313), + [sym_compiler_directive_decl] = STATE(1313), + [sym_fsi_directive_decl] = STATE(1313), + [sym_preproc_line] = STATE(1313), + [aux_sym_compound_type_repeat1] = STATE(1313), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3840), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [anon_sym_POUNDendif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [1320] = { - [sym__else_expression] = STATE(2484), - [sym_elif_expression] = STATE(1657), - [sym_block_comment] = STATE(1320), - [sym_compiler_directive_decl] = STATE(1320), - [sym_fsi_directive_decl] = STATE(1320), - [sym_preproc_line] = STATE(1320), - [aux_sym_if_expression_repeat1] = STATE(1410), - [sym_identifier] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_let_BANG] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_COLON_QMARK] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_LT_AT] = ACTIONS(3019), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_AT_AT_GT] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_return_BANG] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_yield_BANG] = ACTIONS(3021), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_upcast] = ACTIONS(3019), - [anon_sym_downcast] = ACTIONS(3019), - [anon_sym_COLON_GT] = ACTIONS(3021), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3856), - [anon_sym_elif] = ACTIONS(3858), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_fun] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_match_BANG] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_DOT_LBRACK] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3019), - [anon_sym_use_BANG] = ACTIONS(3021), - [anon_sym_do_BANG] = ACTIONS(3021), - [anon_sym_begin] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_AT_DQUOTE] = ACTIONS(3021), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3021), - [sym_bool] = ACTIONS(3019), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3019), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [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(3021), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token2] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3019), - [sym_int] = ACTIONS(3019), - [sym_xint] = ACTIONS(3021), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3021), - [sym__newline] = ACTIONS(3021), + [1314] = { + [sym_block_comment] = STATE(1314), + [sym_compiler_directive_decl] = STATE(1314), + [sym_fsi_directive_decl] = STATE(1314), + [sym_preproc_line] = STATE(1314), + [aux_sym_type_argument_repeat1] = STATE(1314), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(3843), + [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(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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, - [1321] = { - [sym_block_comment] = STATE(1321), - [sym_compiler_directive_decl] = STATE(1321), - [sym_fsi_directive_decl] = STATE(1321), - [sym_preproc_line] = STATE(1321), - [aux_sym_long_identifier_repeat1] = STATE(1328), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_AT_AT_GT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [1315] = { + [sym_block_comment] = STATE(1315), + [sym_compiler_directive_decl] = STATE(1315), + [sym_fsi_directive_decl] = STATE(1315), + [sym_preproc_line] = STATE(1315), + [aux_sym_long_identifier_repeat1] = STATE(1315), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3846), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, - [1322] = { - [sym_block_comment] = STATE(1322), - [sym_compiler_directive_decl] = STATE(1322), - [sym_fsi_directive_decl] = STATE(1322), - [sym_preproc_line] = STATE(1322), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [1316] = { + [sym_block_comment] = STATE(1316), + [sym_compiler_directive_decl] = STATE(1316), + [sym_fsi_directive_decl] = STATE(1316), + [sym_preproc_line] = STATE(1316), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [anon_sym_POUNDendif] = ACTIONS(3040), - [anon_sym_POUNDelse] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - }, - [1323] = { - [sym_block_comment] = STATE(1323), - [sym_compiler_directive_decl] = STATE(1323), - [sym_fsi_directive_decl] = STATE(1323), - [sym_preproc_line] = STATE(1323), - [aux_sym_long_identifier_repeat1] = STATE(1284), - [sym_identifier] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_COLON_QMARK] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_DOT_LBRACK] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2959), - [aux_sym_infix_op_token1] = ACTIONS(2957), - [aux_sym_infix_op_token2] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2959), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [anon_sym_POUNDif] = ACTIONS(3074), + [anon_sym_POUNDendif] = ACTIONS(3074), + [anon_sym_POUNDelse] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, - [1324] = { - [sym_block_comment] = STATE(1324), - [sym_compiler_directive_decl] = STATE(1324), - [sym_fsi_directive_decl] = STATE(1324), - [sym_preproc_line] = STATE(1324), + [1317] = { + [sym_block_comment] = STATE(1317), + [sym_compiler_directive_decl] = STATE(1317), + [sym_fsi_directive_decl] = STATE(1317), + [sym_preproc_line] = STATE(1317), [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3054), [anon_sym_COLON] = ACTIONS(3048), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3054), [anon_sym_null] = ACTIONS(3048), [anon_sym_QMARK] = ACTIONS(3048), [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), [anon_sym_for] = ACTIONS(3048), [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), @@ -200652,28 +200327,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), [anon_sym_LPAREN2] = ACTIONS(3048), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -200682,551 +200357,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3054), [aux_sym_infix_op_token2] = ACTIONS(3048), [anon_sym_PIPE_PIPE] = ACTIONS(3048), [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3054), [anon_sym_DOLLAR] = ACTIONS(3048), [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [anon_sym_POUNDendif] = ACTIONS(3050), - [anon_sym_POUNDelse] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), + [anon_sym_POUNDendif] = ACTIONS(3054), + [anon_sym_POUNDelse] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), + }, + [1318] = { + [sym__else_expression] = STATE(2264), + [sym_elif_expression] = STATE(1740), + [sym_block_comment] = STATE(1318), + [sym_compiler_directive_decl] = STATE(1318), + [sym_fsi_directive_decl] = STATE(1318), + [sym_preproc_line] = STATE(1318), + [aux_sym_if_expression_repeat1] = STATE(1362), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3777), + [anon_sym_elif] = ACTIONS(3779), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), + }, + [1319] = { + [sym_block_comment] = STATE(1319), + [sym_compiler_directive_decl] = STATE(1319), + [sym_fsi_directive_decl] = STATE(1319), + [sym_preproc_line] = STATE(1319), + [aux_sym_long_identifier_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1320] = { + [sym__else_expression] = STATE(2516), + [sym_elif_expression] = STATE(1713), + [sym_block_comment] = STATE(1320), + [sym_compiler_directive_decl] = STATE(1320), + [sym_fsi_directive_decl] = STATE(1320), + [sym_preproc_line] = STATE(1320), + [aux_sym_if_expression_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3852), + [anon_sym_elif] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), + }, + [1321] = { + [sym_block_comment] = STATE(1321), + [sym_compiler_directive_decl] = STATE(1321), + [sym_fsi_directive_decl] = STATE(1321), + [sym_preproc_line] = STATE(1321), + [aux_sym_long_identifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3811), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [anon_sym_POUNDendif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1322] = { + [sym_block_comment] = STATE(1322), + [sym_compiler_directive_decl] = STATE(1322), + [sym_fsi_directive_decl] = STATE(1322), + [sym_preproc_line] = STATE(1322), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_DOT_DOT2] = ACTIONS(3134), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3856), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + [sym__dedent] = ACTIONS(3134), + }, + [1323] = { + [sym_block_comment] = STATE(1323), + [sym_compiler_directive_decl] = STATE(1323), + [sym_fsi_directive_decl] = STATE(1323), + [sym_preproc_line] = STATE(1323), + [aux_sym_long_identifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3858), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1324] = { + [sym__else_expression] = STATE(2538), + [sym_elif_expression] = STATE(1713), + [sym_block_comment] = STATE(1324), + [sym_compiler_directive_decl] = STATE(1324), + [sym_fsi_directive_decl] = STATE(1324), + [sym_preproc_line] = STATE(1324), + [aux_sym_if_expression_repeat1] = STATE(1433), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3852), + [anon_sym_elif] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), }, [1325] = { + [sym__else_expression] = STATE(2366), + [sym_elif_expression] = STATE(1663), [sym_block_comment] = STATE(1325), [sym_compiler_directive_decl] = STATE(1325), [sym_fsi_directive_decl] = STATE(1325), [sym_preproc_line] = STATE(1325), - [aux_sym_compound_type_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [anon_sym_POUNDendif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [1326] = { - [sym_block_comment] = STATE(1326), - [sym_compiler_directive_decl] = STATE(1326), - [sym_fsi_directive_decl] = STATE(1326), - [sym_preproc_line] = STATE(1326), - [aux_sym_type_argument_repeat1] = STATE(1326), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3865), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1327] = { - [sym_block_comment] = STATE(1327), - [sym_compiler_directive_decl] = STATE(1327), - [sym_fsi_directive_decl] = STATE(1327), - [sym_preproc_line] = STATE(1327), - [aux_sym_type_argument_repeat1] = STATE(1327), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_AT_AT_GT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(3868), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1328] = { - [sym_block_comment] = STATE(1328), - [sym_compiler_directive_decl] = STATE(1328), - [sym_fsi_directive_decl] = STATE(1328), - [sym_preproc_line] = STATE(1328), - [aux_sym_long_identifier_repeat1] = STATE(1337), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_AT_AT_GT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1329] = { - [sym_block_comment] = STATE(1329), - [sym_compiler_directive_decl] = STATE(1329), - [sym_fsi_directive_decl] = STATE(1329), - [sym_preproc_line] = STATE(1329), - [aux_sym_type_argument_repeat1] = STATE(1326), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [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(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), + [aux_sym_if_expression_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_AT_AT_GT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3861), + [anon_sym_elif] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [anon_sym_POUNDif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), }, - [1330] = { - [sym_block_comment] = STATE(1330), - [sym_compiler_directive_decl] = STATE(1330), - [sym_fsi_directive_decl] = STATE(1330), - [sym_preproc_line] = STATE(1330), + [1326] = { + [sym_block_comment] = STATE(1326), + [sym_compiler_directive_decl] = STATE(1326), + [sym_fsi_directive_decl] = STATE(1326), + [sym_preproc_line] = STATE(1326), + [aux_sym_long_identifier_repeat1] = STATE(1337), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3865), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -201234,28 +201201,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -201264,485 +201232,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [anon_sym_POUNDelse] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1331] = { - [sym_block_comment] = STATE(1331), - [sym_compiler_directive_decl] = STATE(1331), - [sym_fsi_directive_decl] = STATE(1331), - [sym_preproc_line] = STATE(1331), - [aux_sym_type_argument_repeat1] = STATE(1283), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3871), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1332] = { - [sym_block_comment] = STATE(1332), - [sym_compiler_directive_decl] = STATE(1332), - [sym_fsi_directive_decl] = STATE(1332), - [sym_preproc_line] = STATE(1332), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3836), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, - [1333] = { - [sym_block_comment] = STATE(1333), - [sym_compiler_directive_decl] = STATE(1333), - [sym_fsi_directive_decl] = STATE(1333), - [sym_preproc_line] = STATE(1333), - [aux_sym_compound_type_repeat1] = STATE(1342), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2984), - [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(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2984), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), - [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(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [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(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [aux_sym_infix_op_token2] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), + [1327] = { + [sym_block_comment] = STATE(1327), + [sym_compiler_directive_decl] = STATE(1327), + [sym_fsi_directive_decl] = STATE(1327), + [sym_preproc_line] = STATE(1327), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [anon_sym_POUNDendif] = ACTIONS(3080), + [anon_sym_POUNDelse] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), }, - [1334] = { - [sym_block_comment] = STATE(1334), - [sym_compiler_directive_decl] = STATE(1334), - [sym_fsi_directive_decl] = STATE(1334), - [sym_preproc_line] = STATE(1334), - [aux_sym_type_argument_repeat1] = STATE(1327), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3015), - [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(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), + [1328] = { + [sym_block_comment] = STATE(1328), + [sym_compiler_directive_decl] = STATE(1328), + [sym_fsi_directive_decl] = STATE(1328), + [sym_preproc_line] = STATE(1328), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [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(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3015), - [aux_sym_infix_op_token2] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, - [1335] = { - [sym_elif_expression] = STATE(1538), - [sym_block_comment] = STATE(1335), - [sym_compiler_directive_decl] = STATE(1335), - [sym_fsi_directive_decl] = STATE(1335), - [sym_preproc_line] = STATE(1335), - [aux_sym_if_expression_repeat1] = STATE(1335), + [1329] = { + [sym_block_comment] = STATE(1329), + [sym_compiler_directive_decl] = STATE(1329), + [sym_fsi_directive_decl] = STATE(1329), + [sym_preproc_line] = STATE(1329), [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3090), [anon_sym_COLON] = ACTIONS(3088), [anon_sym_return] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_with] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3874), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -201751,163 +201521,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3090), + [anon_sym_POUNDendif] = ACTIONS(3090), + [anon_sym_POUNDelse] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, - [1336] = { - [sym_block_comment] = STATE(1336), - [sym_compiler_directive_decl] = STATE(1336), - [sym_fsi_directive_decl] = STATE(1336), - [sym_preproc_line] = STATE(1336), - [aux_sym_long_identifier_repeat1] = STATE(1339), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(3781), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [1330] = { + [sym_block_comment] = STATE(1330), + [sym_compiler_directive_decl] = STATE(1330), + [sym_fsi_directive_decl] = STATE(1330), + [sym_preproc_line] = STATE(1330), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3040), + [anon_sym_POUNDendif] = ACTIONS(3040), + [anon_sym_POUNDelse] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), }, - [1337] = { - [sym_block_comment] = STATE(1337), - [sym_compiler_directive_decl] = STATE(1337), - [sym_fsi_directive_decl] = STATE(1337), - [sym_preproc_line] = STATE(1337), - [aux_sym_long_identifier_repeat1] = STATE(1337), + [1331] = { + [sym_block_comment] = STATE(1331), + [sym_compiler_directive_decl] = STATE(1331), + [sym_fsi_directive_decl] = STATE(1331), + [sym_preproc_line] = STATE(1331), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [anon_sym_POUNDendif] = ACTIONS(3044), + [anon_sym_POUNDelse] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + }, + [1332] = { + [sym_block_comment] = STATE(1332), + [sym_compiler_directive_decl] = STATE(1332), + [sym_fsi_directive_decl] = STATE(1332), + [sym_preproc_line] = STATE(1332), + [aux_sym_long_identifier_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), [anon_sym_AT_AT_GT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3828), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -201915,28 +201784,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -201945,1318 +201814,1230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + }, + [1333] = { + [sym_block_comment] = STATE(1333), + [sym_compiler_directive_decl] = STATE(1333), + [sym_fsi_directive_decl] = STATE(1333), + [sym_preproc_line] = STATE(1333), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [anon_sym_POUNDendif] = ACTIONS(3098), + [anon_sym_POUNDelse] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), + }, + [1334] = { + [sym__else_expression] = STATE(2451), + [sym_elif_expression] = STATE(1801), + [sym_block_comment] = STATE(1334), + [sym_compiler_directive_decl] = STATE(1334), + [sym_fsi_directive_decl] = STATE(1334), + [sym_preproc_line] = STATE(1334), + [aux_sym_if_expression_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_let_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_null] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACK_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_LT_AT] = ACTIONS(2971), + [anon_sym_LT_AT_AT] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_return_BANG] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_yield_BANG] = ACTIONS(2973), + [anon_sym_lazy] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_upcast] = ACTIONS(2971), + [anon_sym_downcast] = ACTIONS(2971), + [anon_sym_COLON_GT] = ACTIONS(2973), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(3765), + [anon_sym_elif] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_fun] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_match_BANG] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_DOT_LBRACK] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_use_BANG] = ACTIONS(2973), + [anon_sym_do_BANG] = ACTIONS(2973), + [anon_sym_begin] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [aux_sym_char_token1] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_AT_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2973), + [sym_bool] = ACTIONS(2971), + [sym_unit] = ACTIONS(2973), + [anon_sym_LPAREN_PIPE] = ACTIONS(2971), + [sym_op_identifier] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS_DOT] = ACTIONS(2971), + [anon_sym_DASH_DOT] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2973), + [aux_sym_prefix_op_token1] = ACTIONS(2971), + [aux_sym_infix_op_token1] = ACTIONS(2973), + [aux_sym_infix_op_token2] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2971), + [sym_int] = ACTIONS(2971), + [sym_xint] = ACTIONS(2973), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2973), + [anon_sym_POUNDendif] = ACTIONS(2973), + [sym__newline] = ACTIONS(2973), + }, + [1335] = { + [sym_block_comment] = STATE(1335), + [sym_compiler_directive_decl] = STATE(1335), + [sym_fsi_directive_decl] = STATE(1335), + [sym_preproc_line] = STATE(1335), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [anon_sym_POUNDendif] = ACTIONS(3094), + [anon_sym_POUNDelse] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), + }, + [1336] = { + [sym_block_comment] = STATE(1336), + [sym_compiler_directive_decl] = STATE(1336), + [sym_fsi_directive_decl] = STATE(1336), + [sym_preproc_line] = STATE(1336), + [aux_sym_long_identifier_repeat1] = STATE(1283), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_AT_GT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1337] = { + [sym_block_comment] = STATE(1337), + [sym_compiler_directive_decl] = STATE(1337), + [sym_fsi_directive_decl] = STATE(1337), + [sym_preproc_line] = STATE(1337), + [aux_sym_long_identifier_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(3865), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1338] = { [sym_block_comment] = STATE(1338), [sym_compiler_directive_decl] = STATE(1338), [sym_fsi_directive_decl] = STATE(1338), [sym_preproc_line] = STATE(1338), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [anon_sym_POUNDendif] = ACTIONS(2975), - [anon_sym_POUNDelse] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [aux_sym_long_identifier_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(3869), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1339] = { [sym_block_comment] = STATE(1339), [sym_compiler_directive_decl] = STATE(1339), [sym_fsi_directive_decl] = STATE(1339), [sym_preproc_line] = STATE(1339), - [aux_sym_long_identifier_repeat1] = STATE(1339), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3880), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3064), + [anon_sym_POUNDendif] = ACTIONS(3064), + [anon_sym_POUNDelse] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [1340] = { - [sym__else_expression] = STATE(2455), - [sym_elif_expression] = STATE(1657), [sym_block_comment] = STATE(1340), [sym_compiler_directive_decl] = STATE(1340), [sym_fsi_directive_decl] = STATE(1340), [sym_preproc_line] = STATE(1340), - [aux_sym_if_expression_repeat1] = STATE(1320), - [sym_identifier] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_let_BANG] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_COLON_QMARK] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_LT_AT] = ACTIONS(2963), - [anon_sym_LT_AT_AT] = ACTIONS(2963), - [anon_sym_AT_AT_GT] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_LBRACE_PIPE] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_return_BANG] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_yield_BANG] = ACTIONS(2965), - [anon_sym_lazy] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_upcast] = ACTIONS(2963), - [anon_sym_downcast] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(3856), - [anon_sym_elif] = ACTIONS(3858), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_fun] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_match_BANG] = ACTIONS(2965), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_DOT_LBRACK] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2963), - [anon_sym_use_BANG] = ACTIONS(2965), - [anon_sym_do_BANG] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [aux_sym_char_token1] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_AT_DQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2965), - [sym_bool] = ACTIONS(2963), - [sym_unit] = ACTIONS(2965), - [anon_sym_LPAREN_PIPE] = ACTIONS(2963), - [sym_op_identifier] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [aux_sym_prefix_op_token1] = ACTIONS(2963), - [aux_sym_infix_op_token1] = ACTIONS(2965), - [aux_sym_infix_op_token2] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2963), - [sym_int] = ACTIONS(2963), - [sym_xint] = ACTIONS(2965), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2965), - [sym__newline] = ACTIONS(2965), - }, - [1341] = { - [sym_block_comment] = STATE(1341), - [sym_compiler_directive_decl] = STATE(1341), - [sym_fsi_directive_decl] = STATE(1341), - [sym_preproc_line] = STATE(1341), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3872), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [anon_sym_POUNDendif] = ACTIONS(3068), - [anon_sym_POUNDelse] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [anon_sym_POUNDif] = ACTIONS(3054), + [anon_sym_POUNDendif] = ACTIONS(3050), + [anon_sym_POUNDelse] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1341] = { + [sym_block_comment] = STATE(1341), + [sym_compiler_directive_decl] = STATE(1341), + [sym_fsi_directive_decl] = STATE(1341), + [sym_preproc_line] = STATE(1341), + [aux_sym_type_argument_repeat1] = STATE(1264), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_AT_AT_GT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3874), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1342] = { [sym_block_comment] = STATE(1342), [sym_compiler_directive_decl] = STATE(1342), [sym_fsi_directive_decl] = STATE(1342), [sym_preproc_line] = STATE(1342), - [aux_sym_compound_type_repeat1] = STATE(1342), - [sym_identifier] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_COLON_QMARK] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(3883), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2916), - [anon_sym_DASH_DOT] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2916), - [aux_sym_infix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token2] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2916), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym_type_argument_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2962), + [aux_sym_infix_op_token1] = ACTIONS(2960), + [aux_sym_infix_op_token2] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), }, [1343] = { [sym_block_comment] = STATE(1343), [sym_compiler_directive_decl] = STATE(1343), [sym_fsi_directive_decl] = STATE(1343), [sym_preproc_line] = STATE(1343), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [anon_sym_POUNDendif] = ACTIONS(3028), - [anon_sym_POUNDelse] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_compound_type_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_COLON_QMARK] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2886), + [anon_sym_DASH_DOT] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token2] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [1344] = { + [sym_elif_expression] = STATE(1547), [sym_block_comment] = STATE(1344), [sym_compiler_directive_decl] = STATE(1344), [sym_fsi_directive_decl] = STATE(1344), [sym_preproc_line] = STATE(1344), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_if_expression_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [anon_sym_POUNDendif] = ACTIONS(3100), + [anon_sym_POUNDelse] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [1345] = { [sym_block_comment] = STATE(1345), [sym_compiler_directive_decl] = STATE(1345), [sym_fsi_directive_decl] = STATE(1345), [sym_preproc_line] = STATE(1345), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_DASH_GT] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3886), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1346] = { - [sym_block_comment] = STATE(1346), - [sym_compiler_directive_decl] = STATE(1346), - [sym_fsi_directive_decl] = STATE(1346), - [sym_preproc_line] = STATE(1346), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - }, - [1347] = { - [sym_block_comment] = STATE(1347), - [sym_compiler_directive_decl] = STATE(1347), - [sym_fsi_directive_decl] = STATE(1347), - [sym_preproc_line] = STATE(1347), - [aux_sym_rules_repeat1] = STATE(1367), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_DOT_DOT2] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(3890), - [sym__dedent] = ACTIONS(3152), - }, - [1348] = { - [sym_block_comment] = STATE(1348), - [sym_compiler_directive_decl] = STATE(1348), - [sym_fsi_directive_decl] = STATE(1348), - [sym_preproc_line] = STATE(1348), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - }, - [1349] = { - [sym_block_comment] = STATE(1349), - [sym_compiler_directive_decl] = STATE(1349), - [sym_fsi_directive_decl] = STATE(1349), - [sym_preproc_line] = STATE(1349), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3076), - }, - [1350] = { - [sym_block_comment] = STATE(1350), - [sym_compiler_directive_decl] = STATE(1350), - [sym_fsi_directive_decl] = STATE(1350), - [sym_preproc_line] = STATE(1350), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3072), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - }, - [1351] = { - [sym_block_comment] = STATE(1351), - [sym_compiler_directive_decl] = STATE(1351), - [sym_fsi_directive_decl] = STATE(1351), - [sym_preproc_line] = STATE(1351), + [aux_sym_long_identifier_repeat1] = STATE(1336), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2988), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), @@ -203264,29 +203045,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(2988), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), [sym_op_identifier] = ACTIONS(2988), [anon_sym_PLUS] = ACTIONS(2988), @@ -203295,314 +203075,894 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), + [aux_sym_infix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token2] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), + }, + [1346] = { + [sym_block_comment] = STATE(1346), + [sym_compiler_directive_decl] = STATE(1346), + [sym_fsi_directive_decl] = STATE(1346), + [sym_preproc_line] = STATE(1346), + [aux_sym_type_argument_repeat1] = STATE(1298), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(3883), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1347] = { + [sym_block_comment] = STATE(1347), + [sym_compiler_directive_decl] = STATE(1347), + [sym_fsi_directive_decl] = STATE(1347), + [sym_preproc_line] = STATE(1347), + [aux_sym_long_identifier_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [1348] = { + [sym__else_expression] = STATE(2404), + [sym_elif_expression] = STATE(1663), + [sym_block_comment] = STATE(1348), + [sym_compiler_directive_decl] = STATE(1348), + [sym_fsi_directive_decl] = STATE(1348), + [sym_preproc_line] = STATE(1348), + [aux_sym_if_expression_repeat1] = STATE(1392), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_LT_AT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3007), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_DOT] = 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_COLON_GT] = ACTIONS(3009), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_else] = ACTIONS(3861), + [anon_sym_elif] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_fun] = 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_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(3007), + [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(3009), + [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(3009), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3009), + [sym__newline] = ACTIONS(3009), + }, + [1349] = { + [sym_block_comment] = STATE(1349), + [sym_compiler_directive_decl] = STATE(1349), + [sym_fsi_directive_decl] = STATE(1349), + [sym_preproc_line] = STATE(1349), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [anon_sym_POUNDendif] = ACTIONS(2981), + [anon_sym_POUNDelse] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1350] = { + [sym_block_comment] = STATE(1350), + [sym_compiler_directive_decl] = STATE(1350), + [sym_fsi_directive_decl] = STATE(1350), + [sym_preproc_line] = STATE(1350), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), + }, + [1351] = { + [sym_block_comment] = STATE(1351), + [sym_compiler_directive_decl] = STATE(1351), + [sym_fsi_directive_decl] = STATE(1351), + [sym_preproc_line] = STATE(1351), + [aux_sym_rules_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3893), + [sym__dedent] = ACTIONS(3180), }, [1352] = { + [sym_elif_expression] = STATE(1610), [sym_block_comment] = STATE(1352), [sym_compiler_directive_decl] = STATE(1352), [sym_fsi_directive_decl] = STATE(1352), [sym_preproc_line] = STATE(1352), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3893), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [aux_sym_if_expression_repeat1] = STATE(1352), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3896), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [1353] = { [sym_block_comment] = STATE(1353), [sym_compiler_directive_decl] = STATE(1353), [sym_fsi_directive_decl] = STATE(1353), [sym_preproc_line] = STATE(1353), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_as] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3895), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [1354] = { [sym_block_comment] = STATE(1354), [sym_compiler_directive_decl] = STATE(1354), [sym_fsi_directive_decl] = STATE(1354), [sym_preproc_line] = STATE(1354), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__dedent] = ACTIONS(3153), }, [1355] = { [sym_block_comment] = STATE(1355), @@ -203611,30 +203971,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_line] = STATE(1355), [sym_identifier] = ACTIONS(3048), [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_GT_RBRACK] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), [anon_sym_COMMA] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), @@ -203648,29 +204009,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3048), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -203679,512 +204039,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [1356] = { [sym_block_comment] = STATE(1356), [sym_compiler_directive_decl] = STATE(1356), [sym_fsi_directive_decl] = STATE(1356), [sym_preproc_line] = STATE(1356), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_DOT_DOT2] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + [sym__dedent] = ACTIONS(3190), }, [1357] = { - [sym_elif_expression] = STATE(1672), [sym_block_comment] = STATE(1357), [sym_compiler_directive_decl] = STATE(1357), [sym_fsi_directive_decl] = STATE(1357), [sym_preproc_line] = STATE(1357), - [aux_sym_if_expression_repeat1] = STATE(1357), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_AT_GT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3897), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - }, - [1358] = { - [sym_block_comment] = STATE(1358), - [sym_compiler_directive_decl] = STATE(1358), - [sym_fsi_directive_decl] = STATE(1358), - [sym_preproc_line] = STATE(1358), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), - }, - [1359] = { - [sym_block_comment] = STATE(1359), - [sym_compiler_directive_decl] = STATE(1359), - [sym_fsi_directive_decl] = STATE(1359), - [sym_preproc_line] = STATE(1359), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [anon_sym_POUNDendif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [1360] = { - [sym_block_comment] = STATE(1360), - [sym_compiler_directive_decl] = STATE(1360), - [sym_fsi_directive_decl] = STATE(1360), - [sym_preproc_line] = STATE(1360), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3900), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [anon_sym_POUNDendif] = ACTIONS(3132), - [anon_sym_POUNDelse] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1361] = { - [sym_block_comment] = STATE(1361), - [sym_compiler_directive_decl] = STATE(1361), - [sym_fsi_directive_decl] = STATE(1361), - [sym_preproc_line] = STATE(1361), [sym_identifier] = ACTIONS(3042), [anon_sym_EQ] = ACTIONS(3040), [anon_sym_COLON] = ACTIONS(3042), @@ -204204,6 +204180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(3040), [anon_sym_LBRACE] = ACTIONS(3042), [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_AT_GT] = ACTIONS(3042), [anon_sym_LT_AT_AT] = ACTIONS(3042), [anon_sym_DOT] = ACTIONS(3042), [anon_sym_LBRACE_PIPE] = ACTIONS(3040), @@ -204266,1941 +204243,1268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3042), [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3040), - [anon_sym_POUNDendif] = ACTIONS(3040), [sym__newline] = ACTIONS(3040), }, + [1358] = { + [sym_block_comment] = STATE(1358), + [sym_compiler_directive_decl] = STATE(1358), + [sym_fsi_directive_decl] = STATE(1358), + [sym_preproc_line] = STATE(1358), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + [sym__dedent] = ACTIONS(3134), + }, + [1359] = { + [sym_block_comment] = STATE(1359), + [sym_compiler_directive_decl] = STATE(1359), + [sym_fsi_directive_decl] = STATE(1359), + [sym_preproc_line] = STATE(1359), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1360] = { + [sym_block_comment] = STATE(1360), + [sym_compiler_directive_decl] = STATE(1360), + [sym_fsi_directive_decl] = STATE(1360), + [sym_preproc_line] = STATE(1360), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_AT_GT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [1361] = { + [sym_block_comment] = STATE(1361), + [sym_compiler_directive_decl] = STATE(1361), + [sym_fsi_directive_decl] = STATE(1361), + [sym_preproc_line] = STATE(1361), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_DOT_DOT2] = ACTIONS(2526), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2878), + [aux_sym_decimal_token1] = ACTIONS(2672), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + [sym__dedent] = ACTIONS(2526), + }, [1362] = { + [sym_elif_expression] = STATE(1740), [sym_block_comment] = STATE(1362), [sym_compiler_directive_decl] = STATE(1362), [sym_fsi_directive_decl] = STATE(1362), [sym_preproc_line] = STATE(1362), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [anon_sym_POUNDendif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [aux_sym_if_expression_repeat1] = STATE(1362), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_AT_GT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3901), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, [1363] = { [sym_block_comment] = STATE(1363), [sym_compiler_directive_decl] = STATE(1363), [sym_fsi_directive_decl] = STATE(1363), [sym_preproc_line] = STATE(1363), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3088), + [anon_sym_AT_AT_GT] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_PLUS_DOT] = ACTIONS(3088), + [anon_sym_DASH_DOT] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3088), + [aux_sym_infix_op_token1] = ACTIONS(3090), + [aux_sym_infix_op_token2] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), + [sym_int] = ACTIONS(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1364] = { [sym_block_comment] = STATE(1364), [sym_compiler_directive_decl] = STATE(1364), [sym_fsi_directive_decl] = STATE(1364), [sym_preproc_line] = STATE(1364), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_AT_GT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1365] = { + [sym_block_comment] = STATE(1365), + [sym_compiler_directive_decl] = STATE(1365), + [sym_fsi_directive_decl] = STATE(1365), + [sym_preproc_line] = STATE(1365), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_AT_GT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_PLUS_DOT] = ACTIONS(3088), + [anon_sym_DASH_DOT] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3088), + [aux_sym_infix_op_token1] = ACTIONS(3090), + [aux_sym_infix_op_token2] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), + [sym_int] = ACTIONS(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1365] = { - [sym_block_comment] = STATE(1365), - [sym_compiler_directive_decl] = STATE(1365), - [sym_fsi_directive_decl] = STATE(1365), - [sym_preproc_line] = STATE(1365), - [aux_sym_rules_repeat1] = STATE(1387), - [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_PIPE] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3904), - [sym__dedent] = ACTIONS(3204), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1366] = { [sym_block_comment] = STATE(1366), [sym_compiler_directive_decl] = STATE(1366), [sym_fsi_directive_decl] = STATE(1366), [sym_preproc_line] = STATE(1366), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + [sym__dedent] = ACTIONS(3190), }, [1367] = { [sym_block_comment] = STATE(1367), [sym_compiler_directive_decl] = STATE(1367), [sym_fsi_directive_decl] = STATE(1367), [sym_preproc_line] = STATE(1367), - [aux_sym_rules_repeat1] = STATE(1389), - [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_PIPE] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3904), - [sym__dedent] = ACTIONS(3204), - }, - [1368] = { - [sym_block_comment] = STATE(1368), - [sym_compiler_directive_decl] = STATE(1368), - [sym_fsi_directive_decl] = STATE(1368), - [sym_preproc_line] = STATE(1368), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_AT_AT_GT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3904), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + }, + [1368] = { + [sym_block_comment] = STATE(1368), + [sym_compiler_directive_decl] = STATE(1368), + [sym_fsi_directive_decl] = STATE(1368), + [sym_preproc_line] = STATE(1368), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), + [sym__dedent] = ACTIONS(3176), }, [1369] = { [sym_block_comment] = STATE(1369), [sym_compiler_directive_decl] = STATE(1369), [sym_fsi_directive_decl] = STATE(1369), [sym_preproc_line] = STATE(1369), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_AT_AT_GT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), }, [1370] = { [sym_block_comment] = STATE(1370), [sym_compiler_directive_decl] = STATE(1370), [sym_fsi_directive_decl] = STATE(1370), [sym_preproc_line] = STATE(1370), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [aux_sym_rules_repeat1] = STATE(1475), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3906), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(3908), + [sym__dedent] = ACTIONS(3226), }, [1371] = { [sym_block_comment] = STATE(1371), [sym_compiler_directive_decl] = STATE(1371), [sym_fsi_directive_decl] = STATE(1371), [sym_preproc_line] = STATE(1371), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - }, - [1372] = { - [sym_block_comment] = STATE(1372), - [sym_compiler_directive_decl] = STATE(1372), - [sym_fsi_directive_decl] = STATE(1372), - [sym_preproc_line] = STATE(1372), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - }, - [1373] = { - [sym_block_comment] = STATE(1373), - [sym_compiler_directive_decl] = STATE(1373), - [sym_fsi_directive_decl] = STATE(1373), - [sym_preproc_line] = STATE(1373), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_AT_AT_GT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1374] = { - [sym_block_comment] = STATE(1374), - [sym_compiler_directive_decl] = STATE(1374), - [sym_fsi_directive_decl] = STATE(1374), - [sym_preproc_line] = STATE(1374), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3909), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), - }, - [1375] = { - [sym_block_comment] = STATE(1375), - [sym_compiler_directive_decl] = STATE(1375), - [sym_fsi_directive_decl] = STATE(1375), - [sym_preproc_line] = STATE(1375), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - }, - [1376] = { - [sym_block_comment] = STATE(1376), - [sym_compiler_directive_decl] = STATE(1376), - [sym_fsi_directive_decl] = STATE(1376), - [sym_preproc_line] = STATE(1376), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [anon_sym_POUNDendif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - }, - [1377] = { - [sym_block_comment] = STATE(1377), - [sym_compiler_directive_decl] = STATE(1377), - [sym_fsi_directive_decl] = STATE(1377), - [sym_preproc_line] = STATE(1377), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1378] = { - [sym_block_comment] = STATE(1378), - [sym_compiler_directive_decl] = STATE(1378), - [sym_fsi_directive_decl] = STATE(1378), - [sym_preproc_line] = STATE(1378), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1379] = { - [sym_block_comment] = STATE(1379), - [sym_compiler_directive_decl] = STATE(1379), - [sym_fsi_directive_decl] = STATE(1379), - [sym_preproc_line] = STATE(1379), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [anon_sym_POUNDendif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - }, - [1380] = { - [sym_block_comment] = STATE(1380), - [sym_compiler_directive_decl] = STATE(1380), - [sym_fsi_directive_decl] = STATE(1380), - [sym_preproc_line] = STATE(1380), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), - }, - [1381] = { - [sym_block_comment] = STATE(1381), - [sym_compiler_directive_decl] = STATE(1381), - [sym_fsi_directive_decl] = STATE(1381), - [sym_preproc_line] = STATE(1381), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3911), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), - }, - [1382] = { - [sym_block_comment] = STATE(1382), - [sym_compiler_directive_decl] = STATE(1382), - [sym_fsi_directive_decl] = STATE(1382), - [sym_preproc_line] = STATE(1382), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -206279,10 +205583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2734), + [anon_sym_f] = ACTIONS(2846), [aux_sym_decimal_token1] = ACTIONS(2616), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -206292,971 +205596,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(2526), [sym__dedent] = ACTIONS(2526), }, - [1383] = { - [sym_block_comment] = STATE(1383), - [sym_compiler_directive_decl] = STATE(1383), - [sym_fsi_directive_decl] = STATE(1383), - [sym_preproc_line] = STATE(1383), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [1372] = { + [sym_block_comment] = STATE(1372), + [sym_compiler_directive_decl] = STATE(1372), + [sym_fsi_directive_decl] = STATE(1372), + [sym_preproc_line] = STATE(1372), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, - [1384] = { - [sym_block_comment] = STATE(1384), - [sym_compiler_directive_decl] = STATE(1384), - [sym_fsi_directive_decl] = STATE(1384), - [sym_preproc_line] = STATE(1384), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [1373] = { + [sym_elif_expression] = STATE(1801), + [sym_block_comment] = STATE(1373), + [sym_compiler_directive_decl] = STATE(1373), + [sym_fsi_directive_decl] = STATE(1373), + [sym_preproc_line] = STATE(1373), + [aux_sym_if_expression_repeat1] = STATE(1373), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3911), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [anon_sym_POUNDendif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), }, - [1385] = { - [sym_block_comment] = STATE(1385), - [sym_compiler_directive_decl] = STATE(1385), - [sym_fsi_directive_decl] = STATE(1385), - [sym_preproc_line] = STATE(1385), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [1374] = { + [sym_block_comment] = STATE(1374), + [sym_compiler_directive_decl] = STATE(1374), + [sym_fsi_directive_decl] = STATE(1374), + [sym_preproc_line] = STATE(1374), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_AT_GT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, - [1386] = { - [sym_block_comment] = STATE(1386), - [sym_compiler_directive_decl] = STATE(1386), - [sym_fsi_directive_decl] = STATE(1386), - [sym_preproc_line] = STATE(1386), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [1375] = { + [sym_block_comment] = STATE(1375), + [sym_compiler_directive_decl] = STATE(1375), + [sym_fsi_directive_decl] = STATE(1375), + [sym_preproc_line] = STATE(1375), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1387] = { - [sym_block_comment] = STATE(1387), - [sym_compiler_directive_decl] = STATE(1387), - [sym_fsi_directive_decl] = STATE(1387), - [sym_preproc_line] = STATE(1387), - [aux_sym_rules_repeat1] = STATE(1389), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_DOT_DOT2] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(3913), - [sym__dedent] = ACTIONS(3181), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, - [1388] = { - [sym_block_comment] = STATE(1388), - [sym_compiler_directive_decl] = STATE(1388), - [sym_fsi_directive_decl] = STATE(1388), - [sym_preproc_line] = STATE(1388), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token2] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [1376] = { + [sym_block_comment] = STATE(1376), + [sym_compiler_directive_decl] = STATE(1376), + [sym_fsi_directive_decl] = STATE(1376), + [sym_preproc_line] = STATE(1376), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [1389] = { - [sym_block_comment] = STATE(1389), - [sym_compiler_directive_decl] = STATE(1389), - [sym_fsi_directive_decl] = STATE(1389), - [sym_preproc_line] = STATE(1389), - [aux_sym_rules_repeat1] = STATE(1389), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_DOT_DOT2] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3919), - [sym__dedent] = ACTIONS(3221), + [anon_sym_POUNDif] = ACTIONS(3064), + [anon_sym_POUNDendif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, - [1390] = { - [sym_block_comment] = STATE(1390), - [sym_compiler_directive_decl] = STATE(1390), - [sym_fsi_directive_decl] = STATE(1390), - [sym_preproc_line] = STATE(1390), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [1377] = { + [sym_block_comment] = STATE(1377), + [sym_compiler_directive_decl] = STATE(1377), + [sym_fsi_directive_decl] = STATE(1377), + [sym_preproc_line] = STATE(1377), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [anon_sym_POUNDendif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, - [1391] = { - [sym_block_comment] = STATE(1391), - [sym_compiler_directive_decl] = STATE(1391), - [sym_fsi_directive_decl] = STATE(1391), - [sym_preproc_line] = STATE(1391), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [anon_sym_POUNDendif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [1378] = { + [sym_block_comment] = STATE(1378), + [sym_compiler_directive_decl] = STATE(1378), + [sym_fsi_directive_decl] = STATE(1378), + [sym_preproc_line] = STATE(1378), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [anon_sym_POUNDendif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, - [1392] = { - [sym_block_comment] = STATE(1392), - [sym_compiler_directive_decl] = STATE(1392), - [sym_fsi_directive_decl] = STATE(1392), - [sym_preproc_line] = STATE(1392), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_AT_GT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [1379] = { + [sym_block_comment] = STATE(1379), + [sym_compiler_directive_decl] = STATE(1379), + [sym_fsi_directive_decl] = STATE(1379), + [sym_preproc_line] = STATE(1379), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, - [1393] = { - [sym_block_comment] = STATE(1393), - [sym_compiler_directive_decl] = STATE(1393), - [sym_fsi_directive_decl] = STATE(1393), - [sym_preproc_line] = STATE(1393), + [1380] = { + [sym_block_comment] = STATE(1380), + [sym_compiler_directive_decl] = STATE(1380), + [sym_fsi_directive_decl] = STATE(1380), + [sym_preproc_line] = STATE(1380), [sym_identifier] = ACTIONS(3042), [anon_sym_EQ] = ACTIONS(3040), [anon_sym_COLON] = ACTIONS(3042), @@ -207277,7 +206389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(3042), [anon_sym_LT_AT] = ACTIONS(3042), [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_AT_AT_GT] = ACTIONS(3042), [anon_sym_DOT] = ACTIONS(3042), [anon_sym_LBRACE_PIPE] = ACTIONS(3040), [anon_sym_new] = ACTIONS(3042), @@ -207339,81 +206450,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3042), [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3040), + [anon_sym_POUNDendif] = ACTIONS(3040), [sym__newline] = ACTIONS(3040), }, - [1394] = { - [sym_elif_expression] = STATE(1622), - [sym_block_comment] = STATE(1394), - [sym_compiler_directive_decl] = STATE(1394), - [sym_fsi_directive_decl] = STATE(1394), - [sym_preproc_line] = STATE(1394), - [aux_sym_if_expression_repeat1] = STATE(1394), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), + [1381] = { + [sym_block_comment] = STATE(1381), + [sym_compiler_directive_decl] = STATE(1381), + [sym_fsi_directive_decl] = STATE(1381), + [sym_preproc_line] = STATE(1381), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), + [anon_sym_let_BANG] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3922), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -207422,1535 +206534,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [anon_sym_POUNDendif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3090), + [anon_sym_POUNDendif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, - [1395] = { - [sym_block_comment] = STATE(1395), - [sym_compiler_directive_decl] = STATE(1395), - [sym_fsi_directive_decl] = STATE(1395), - [sym_preproc_line] = STATE(1395), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), + [1382] = { + [sym_block_comment] = STATE(1382), + [sym_compiler_directive_decl] = STATE(1382), + [sym_fsi_directive_decl] = STATE(1382), + [sym_preproc_line] = STATE(1382), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, - [1396] = { - [sym_block_comment] = STATE(1396), - [sym_compiler_directive_decl] = STATE(1396), - [sym_fsi_directive_decl] = STATE(1396), - [sym_preproc_line] = STATE(1396), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_DOT_DOT2] = ACTIONS(3138), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), + [1383] = { + [sym_block_comment] = STATE(1383), + [sym_compiler_directive_decl] = STATE(1383), + [sym_fsi_directive_decl] = STATE(1383), + [sym_preproc_line] = STATE(1383), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, - [1397] = { - [sym_block_comment] = STATE(1397), - [sym_compiler_directive_decl] = STATE(1397), - [sym_fsi_directive_decl] = STATE(1397), - [sym_preproc_line] = STATE(1397), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_DOT_DOT] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [1384] = { + [sym_block_comment] = STATE(1384), + [sym_compiler_directive_decl] = STATE(1384), + [sym_fsi_directive_decl] = STATE(1384), + [sym_preproc_line] = STATE(1384), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [anon_sym_POUNDendif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), }, - [1398] = { - [sym_block_comment] = STATE(1398), - [sym_compiler_directive_decl] = STATE(1398), - [sym_fsi_directive_decl] = STATE(1398), - [sym_preproc_line] = STATE(1398), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), + [1385] = { + [sym_block_comment] = STATE(1385), + [sym_compiler_directive_decl] = STATE(1385), + [sym_fsi_directive_decl] = STATE(1385), + [sym_preproc_line] = STATE(1385), + [sym_identifier] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), - }, - [1399] = { - [sym_block_comment] = STATE(1399), - [sym_compiler_directive_decl] = STATE(1399), - [sym_fsi_directive_decl] = STATE(1399), - [sym_preproc_line] = STATE(1399), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), - [sym__dedent] = ACTIONS(3163), - }, - [1400] = { - [sym_block_comment] = STATE(1400), - [sym_compiler_directive_decl] = STATE(1400), - [sym_fsi_directive_decl] = STATE(1400), - [sym_preproc_line] = STATE(1400), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [anon_sym_POUNDendif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), - }, - [1401] = { - [sym_block_comment] = STATE(1401), - [sym_compiler_directive_decl] = STATE(1401), - [sym_fsi_directive_decl] = STATE(1401), - [sym_preproc_line] = STATE(1401), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), - }, - [1402] = { - [sym_block_comment] = STATE(1402), - [sym_compiler_directive_decl] = STATE(1402), - [sym_fsi_directive_decl] = STATE(1402), - [sym_preproc_line] = STATE(1402), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_AT_AT_GT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), - }, - [1403] = { - [sym_block_comment] = STATE(1403), - [sym_compiler_directive_decl] = STATE(1403), - [sym_fsi_directive_decl] = STATE(1403), - [sym_preproc_line] = STATE(1403), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_AT_AT_GT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - }, - [1404] = { - [sym_block_comment] = STATE(1404), - [sym_compiler_directive_decl] = STATE(1404), - [sym_fsi_directive_decl] = STATE(1404), - [sym_preproc_line] = STATE(1404), - [aux_sym_rules_repeat1] = STATE(1443), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_as] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(3931), - [sym__dedent] = ACTIONS(3152), - }, - [1405] = { - [sym_block_comment] = STATE(1405), - [sym_compiler_directive_decl] = STATE(1405), - [sym_fsi_directive_decl] = STATE(1405), - [sym_preproc_line] = STATE(1405), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_COLON_GT] = ACTIONS(3040), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_DOT_LBRACK] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3042), + [anon_sym_DASH_DOT] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3042), + [aux_sym_infix_op_token1] = ACTIONS(3040), + [aux_sym_infix_op_token2] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [anon_sym_POUNDendif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), - }, - [1406] = { - [sym_block_comment] = STATE(1406), - [sym_compiler_directive_decl] = STATE(1406), - [sym_fsi_directive_decl] = STATE(1406), - [sym_preproc_line] = STATE(1406), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__newline] = ACTIONS(3040), }, - [1407] = { - [sym_block_comment] = STATE(1407), - [sym_compiler_directive_decl] = STATE(1407), - [sym_fsi_directive_decl] = STATE(1407), - [sym_preproc_line] = STATE(1407), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3934), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [anon_sym_POUNDendif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [1386] = { + [sym_block_comment] = STATE(1386), + [sym_compiler_directive_decl] = STATE(1386), + [sym_fsi_directive_decl] = STATE(1386), + [sym_preproc_line] = STATE(1386), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_DOT_DOT2] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), + [sym__dedent] = ACTIONS(3176), }, - [1408] = { - [sym_block_comment] = STATE(1408), - [sym_compiler_directive_decl] = STATE(1408), - [sym_fsi_directive_decl] = STATE(1408), - [sym_preproc_line] = STATE(1408), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [1387] = { + [sym_block_comment] = STATE(1387), + [sym_compiler_directive_decl] = STATE(1387), + [sym_fsi_directive_decl] = STATE(1387), + [sym_preproc_line] = STATE(1387), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, - [1409] = { - [sym_block_comment] = STATE(1409), - [sym_compiler_directive_decl] = STATE(1409), - [sym_fsi_directive_decl] = STATE(1409), - [sym_preproc_line] = STATE(1409), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [anon_sym_POUNDendif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [1388] = { + [sym_block_comment] = STATE(1388), + [sym_compiler_directive_decl] = STATE(1388), + [sym_fsi_directive_decl] = STATE(1388), + [sym_preproc_line] = STATE(1388), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_AT_AT_GT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, - [1410] = { - [sym_elif_expression] = STATE(1657), - [sym_block_comment] = STATE(1410), - [sym_compiler_directive_decl] = STATE(1410), - [sym_fsi_directive_decl] = STATE(1410), - [sym_preproc_line] = STATE(1410), - [aux_sym_if_expression_repeat1] = STATE(1410), + [1389] = { + [sym_block_comment] = STATE(1389), + [sym_compiler_directive_decl] = STATE(1389), + [sym_fsi_directive_decl] = STATE(1389), + [sym_preproc_line] = STATE(1389), [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3090), [anon_sym_COLON] = ACTIONS(3088), [anon_sym_return] = ACTIONS(3088), [anon_sym_do] = ACTIONS(3088), [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), + [anon_sym_let_BANG] = ACTIONS(3090), [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_null] = ACTIONS(3088), [anon_sym_QMARK] = ACTIONS(3088), [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_LT_AT] = ACTIONS(3088), [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_AT_AT_GT] = ACTIONS(3088), [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), + [anon_sym_return_BANG] = ACTIONS(3090), [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), + [anon_sym_yield_BANG] = ACTIONS(3090), [anon_sym_lazy] = ACTIONS(3088), [anon_sym_assert] = ACTIONS(3088), [anon_sym_upcast] = ACTIONS(3088), [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), [anon_sym_for] = ACTIONS(3088), [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3936), [anon_sym_if] = ACTIONS(3088), [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), [anon_sym_try] = ACTIONS(3088), [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), + [anon_sym_match_BANG] = ACTIONS(3090), [anon_sym_function] = ACTIONS(3088), [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3088), [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), [anon_sym_begin] = ACTIONS(3088), [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), + [aux_sym_char_token1] = ACTIONS(3090), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), + [sym_unit] = ACTIONS(3090), [anon_sym_LPAREN_PIPE] = ACTIONS(3088), [sym_op_identifier] = ACTIONS(3088), [anon_sym_PLUS] = ACTIONS(3088), @@ -208959,1120 +207303,1024 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3088), [anon_sym_PERCENT] = ACTIONS(3088), [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3090), [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), + [aux_sym_infix_op_token1] = ACTIONS(3090), [aux_sym_infix_op_token2] = ACTIONS(3088), [anon_sym_PIPE_PIPE] = ACTIONS(3088), [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3090), [anon_sym_DOLLAR] = ACTIONS(3088), [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, - [1411] = { - [sym_block_comment] = STATE(1411), - [sym_compiler_directive_decl] = STATE(1411), - [sym_fsi_directive_decl] = STATE(1411), - [sym_preproc_line] = STATE(1411), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [1390] = { + [sym_block_comment] = STATE(1390), + [sym_compiler_directive_decl] = STATE(1390), + [sym_fsi_directive_decl] = STATE(1390), + [sym_preproc_line] = STATE(1390), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [1391] = { + [sym_block_comment] = STATE(1391), + [sym_compiler_directive_decl] = STATE(1391), + [sym_fsi_directive_decl] = STATE(1391), + [sym_preproc_line] = STATE(1391), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, - [1412] = { - [sym_block_comment] = STATE(1412), - [sym_compiler_directive_decl] = STATE(1412), - [sym_fsi_directive_decl] = STATE(1412), - [sym_preproc_line] = STATE(1412), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [1392] = { + [sym_elif_expression] = STATE(1663), + [sym_block_comment] = STATE(1392), + [sym_compiler_directive_decl] = STATE(1392), + [sym_fsi_directive_decl] = STATE(1392), + [sym_preproc_line] = STATE(1392), + [aux_sym_if_expression_repeat1] = STATE(1392), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_AT_AT_GT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), + }, + [1393] = { + [sym_block_comment] = STATE(1393), + [sym_compiler_directive_decl] = STATE(1393), + [sym_fsi_directive_decl] = STATE(1393), + [sym_preproc_line] = STATE(1393), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, - [1413] = { - [sym_block_comment] = STATE(1413), - [sym_compiler_directive_decl] = STATE(1413), - [sym_fsi_directive_decl] = STATE(1413), - [sym_preproc_line] = STATE(1413), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [1394] = { + [sym_block_comment] = STATE(1394), + [sym_compiler_directive_decl] = STATE(1394), + [sym_fsi_directive_decl] = STATE(1394), + [sym_preproc_line] = STATE(1394), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_AT_AT_GT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), }, - [1414] = { - [sym_block_comment] = STATE(1414), - [sym_compiler_directive_decl] = STATE(1414), - [sym_fsi_directive_decl] = STATE(1414), - [sym_preproc_line] = STATE(1414), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [1395] = { + [sym_block_comment] = STATE(1395), + [sym_compiler_directive_decl] = STATE(1395), + [sym_fsi_directive_decl] = STATE(1395), + [sym_preproc_line] = STATE(1395), + [sym_identifier] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_LPAREN2] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3072), + [anon_sym_DASH_DOT] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3072), + [aux_sym_infix_op_token1] = ACTIONS(3070), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1415] = { - [sym_block_comment] = STATE(1415), - [sym_compiler_directive_decl] = STATE(1415), - [sym_fsi_directive_decl] = STATE(1415), - [sym_preproc_line] = STATE(1415), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_AT_GT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), - }, - [1416] = { - [sym_block_comment] = STATE(1416), - [sym_compiler_directive_decl] = STATE(1416), - [sym_fsi_directive_decl] = STATE(1416), - [sym_preproc_line] = STATE(1416), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [anon_sym_POUNDendif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1417] = { - [sym_block_comment] = STATE(1417), - [sym_compiler_directive_decl] = STATE(1417), - [sym_fsi_directive_decl] = STATE(1417), - [sym_preproc_line] = STATE(1417), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3939), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), - [sym__dedent] = ACTIONS(3148), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), }, - [1418] = { - [sym_block_comment] = STATE(1418), - [sym_compiler_directive_decl] = STATE(1418), - [sym_fsi_directive_decl] = STATE(1418), - [sym_preproc_line] = STATE(1418), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_DOT_DOT2] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), + [1396] = { + [sym_block_comment] = STATE(1396), + [sym_compiler_directive_decl] = STATE(1396), + [sym_fsi_directive_decl] = STATE(1396), + [sym_preproc_line] = STATE(1396), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [sym__dedent] = ACTIONS(3217), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), }, - [1419] = { - [sym_block_comment] = STATE(1419), - [sym_compiler_directive_decl] = STATE(1419), - [sym_fsi_directive_decl] = STATE(1419), - [sym_preproc_line] = STATE(1419), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [1397] = { + [sym_block_comment] = STATE(1397), + [sym_compiler_directive_decl] = STATE(1397), + [sym_fsi_directive_decl] = STATE(1397), + [sym_preproc_line] = STATE(1397), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, - [1420] = { - [sym_block_comment] = STATE(1420), - [sym_compiler_directive_decl] = STATE(1420), - [sym_fsi_directive_decl] = STATE(1420), - [sym_preproc_line] = STATE(1420), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [1398] = { + [sym_block_comment] = STATE(1398), + [sym_compiler_directive_decl] = STATE(1398), + [sym_fsi_directive_decl] = STATE(1398), + [sym_preproc_line] = STATE(1398), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [anon_sym_POUNDendif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3074), + [anon_sym_POUNDendif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, - [1421] = { - [sym_block_comment] = STATE(1421), - [sym_compiler_directive_decl] = STATE(1421), - [sym_fsi_directive_decl] = STATE(1421), - [sym_preproc_line] = STATE(1421), - [aux_sym_rules_repeat1] = STATE(1421), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3944), - [sym__dedent] = ACTIONS(3221), + [1399] = { + [sym_block_comment] = STATE(1399), + [sym_compiler_directive_decl] = STATE(1399), + [sym_fsi_directive_decl] = STATE(1399), + [sym_preproc_line] = STATE(1399), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, - [1422] = { - [sym_block_comment] = STATE(1422), - [sym_compiler_directive_decl] = STATE(1422), - [sym_fsi_directive_decl] = STATE(1422), - [sym_preproc_line] = STATE(1422), + [1400] = { + [sym_block_comment] = STATE(1400), + [sym_compiler_directive_decl] = STATE(1400), + [sym_fsi_directive_decl] = STATE(1400), + [sym_preproc_line] = STATE(1400), [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3070), [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), [anon_sym_QMARK] = ACTIONS(3072), [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), [anon_sym_for] = ACTIONS(3072), [anon_sym_while] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), @@ -210080,29 +208328,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -210111,64 +208358,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3070), [aux_sym_infix_op_token2] = ACTIONS(3072), [anon_sym_PIPE_PIPE] = ACTIONS(3072), [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3070), [anon_sym_DOLLAR] = ACTIONS(3072), [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), + [anon_sym_POUNDendif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), }, - [1423] = { - [sym_block_comment] = STATE(1423), - [sym_compiler_directive_decl] = STATE(1423), - [sym_fsi_directive_decl] = STATE(1423), - [sym_preproc_line] = STATE(1423), + [1401] = { + [sym_block_comment] = STATE(1401), + [sym_compiler_directive_decl] = STATE(1401), + [sym_fsi_directive_decl] = STATE(1401), + [sym_preproc_line] = STATE(1401), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [anon_sym_POUNDendif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), + }, + [1402] = { + [sym_block_comment] = STATE(1402), + [sym_compiler_directive_decl] = STATE(1402), + [sym_fsi_directive_decl] = STATE(1402), + [sym_preproc_line] = STATE(1402), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + }, + [1403] = { + [sym_block_comment] = STATE(1403), + [sym_compiler_directive_decl] = STATE(1403), + [sym_fsi_directive_decl] = STATE(1403), + [sym_preproc_line] = STATE(1403), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), + }, + [1404] = { + [sym_block_comment] = STATE(1404), + [sym_compiler_directive_decl] = STATE(1404), + [sym_fsi_directive_decl] = STATE(1404), + [sym_preproc_line] = STATE(1404), [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3070), [anon_sym_COLON] = ACTIONS(3072), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3070), [anon_sym_null] = ACTIONS(3072), [anon_sym_QMARK] = ACTIONS(3072), [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3070), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_AT_GT] = ACTIONS(3072), [anon_sym_LT_AT_AT] = ACTIONS(3072), [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), [anon_sym_for] = ACTIONS(3072), [anon_sym_while] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), @@ -210176,28 +208713,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3072), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), [anon_sym_LPAREN2] = ACTIONS(3072), [anon_sym_STAR] = ACTIONS(3072), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), [sym_op_identifier] = ACTIONS(3072), [anon_sym_PLUS] = ACTIONS(3072), @@ -210206,1025 +208743,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3072), [anon_sym_PERCENT] = ACTIONS(3072), [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3070), [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3070), [aux_sym_infix_op_token2] = ACTIONS(3072), [anon_sym_PIPE_PIPE] = ACTIONS(3072), [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3070), [anon_sym_DOLLAR] = ACTIONS(3072), [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [anon_sym_POUNDendif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - }, - [1424] = { - [sym_block_comment] = STATE(1424), - [sym_compiler_directive_decl] = STATE(1424), - [sym_fsi_directive_decl] = STATE(1424), - [sym_preproc_line] = STATE(1424), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_DOT_DOT] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), }, - [1425] = { - [sym_block_comment] = STATE(1425), - [sym_compiler_directive_decl] = STATE(1425), - [sym_fsi_directive_decl] = STATE(1425), - [sym_preproc_line] = STATE(1425), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [1405] = { + [sym_block_comment] = STATE(1405), + [sym_compiler_directive_decl] = STATE(1405), + [sym_fsi_directive_decl] = STATE(1405), + [sym_preproc_line] = STATE(1405), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3917), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - [sym__dedent] = ACTIONS(3190), + [anon_sym_POUNDif] = ACTIONS(3082), + [anon_sym_POUNDendif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, - [1426] = { - [sym_block_comment] = STATE(1426), - [sym_compiler_directive_decl] = STATE(1426), - [sym_fsi_directive_decl] = STATE(1426), - [sym_preproc_line] = STATE(1426), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [anon_sym_POUNDendif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [1406] = { + [sym_block_comment] = STATE(1406), + [sym_compiler_directive_decl] = STATE(1406), + [sym_fsi_directive_decl] = STATE(1406), + [sym_preproc_line] = STATE(1406), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [anon_sym_POUNDendif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, - [1427] = { - [sym_block_comment] = STATE(1427), - [sym_compiler_directive_decl] = STATE(1427), - [sym_fsi_directive_decl] = STATE(1427), - [sym_preproc_line] = STATE(1427), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_DOT_DOT2] = ACTIONS(3148), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3947), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), - [sym__dedent] = ACTIONS(3148), + [1407] = { + [sym_block_comment] = STATE(1407), + [sym_compiler_directive_decl] = STATE(1407), + [sym_fsi_directive_decl] = STATE(1407), + [sym_preproc_line] = STATE(1407), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_DASH_GT] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3533), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_DOT_DOT2] = ACTIONS(3233), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), }, - [1428] = { - [sym_block_comment] = STATE(1428), - [sym_compiler_directive_decl] = STATE(1428), - [sym_fsi_directive_decl] = STATE(1428), - [sym_preproc_line] = STATE(1428), - [sym_identifier] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_COLON_QMARK] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3040), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_DOT_LBRACK] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3042), - [anon_sym_DASH_DOT] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [aux_sym_infix_op_token2] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [1408] = { + [sym_block_comment] = STATE(1408), + [sym_compiler_directive_decl] = STATE(1408), + [sym_fsi_directive_decl] = STATE(1408), + [sym_preproc_line] = STATE(1408), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [anon_sym_POUNDendif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1409] = { + [sym_block_comment] = STATE(1409), + [sym_compiler_directive_decl] = STATE(1409), + [sym_fsi_directive_decl] = STATE(1409), + [sym_preproc_line] = STATE(1409), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3921), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, - [1429] = { - [sym_elif_expression] = STATE(1721), - [sym_block_comment] = STATE(1429), - [sym_compiler_directive_decl] = STATE(1429), - [sym_fsi_directive_decl] = STATE(1429), - [sym_preproc_line] = STATE(1429), - [aux_sym_if_expression_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3088), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [1410] = { + [sym_block_comment] = STATE(1410), + [sym_compiler_directive_decl] = STATE(1410), + [sym_fsi_directive_decl] = STATE(1410), + [sym_preproc_line] = STATE(1410), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_AT_AT_GT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3923), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, - [1430] = { - [sym_block_comment] = STATE(1430), - [sym_compiler_directive_decl] = STATE(1430), - [sym_fsi_directive_decl] = STATE(1430), - [sym_preproc_line] = STATE(1430), - [sym_identifier] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_COLON_QMARK] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_DOT_LBRACK] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3095), - [aux_sym_infix_op_token2] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [1411] = { + [sym_block_comment] = STATE(1411), + [sym_compiler_directive_decl] = STATE(1411), + [sym_fsi_directive_decl] = STATE(1411), + [sym_preproc_line] = STATE(1411), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, - [1431] = { - [sym_block_comment] = STATE(1431), - [sym_compiler_directive_decl] = STATE(1431), - [sym_fsi_directive_decl] = STATE(1431), - [sym_preproc_line] = STATE(1431), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [1412] = { + [sym_block_comment] = STATE(1412), + [sym_compiler_directive_decl] = STATE(1412), + [sym_fsi_directive_decl] = STATE(1412), + [sym_preproc_line] = STATE(1412), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1413] = { + [sym_block_comment] = STATE(1413), + [sym_compiler_directive_decl] = STATE(1413), + [sym_fsi_directive_decl] = STATE(1413), + [sym_preproc_line] = STATE(1413), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_AT_AT_GT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, - [1432] = { - [sym_block_comment] = STATE(1432), - [sym_compiler_directive_decl] = STATE(1432), - [sym_fsi_directive_decl] = STATE(1432), - [sym_preproc_line] = STATE(1432), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), + [1414] = { + [sym_block_comment] = STATE(1414), + [sym_compiler_directive_decl] = STATE(1414), + [sym_fsi_directive_decl] = STATE(1414), + [sym_preproc_line] = STATE(1414), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_DOT_DOT2] = ACTIONS(3190), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - [sym__dedent] = ACTIONS(3190), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, - [1433] = { - [sym_block_comment] = STATE(1433), - [sym_compiler_directive_decl] = STATE(1433), - [sym_fsi_directive_decl] = STATE(1433), - [sym_preproc_line] = STATE(1433), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3076), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [aux_sym_infix_op_token2] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_COLON_EQ] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [1415] = { + [sym_block_comment] = STATE(1415), + [sym_compiler_directive_decl] = STATE(1415), + [sym_fsi_directive_decl] = STATE(1415), + [sym_preproc_line] = STATE(1415), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_AT_AT_GT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, - [1434] = { - [sym_block_comment] = STATE(1434), - [sym_compiler_directive_decl] = STATE(1434), - [sym_fsi_directive_decl] = STATE(1434), - [sym_preproc_line] = STATE(1434), + [1416] = { + [sym_block_comment] = STATE(1416), + [sym_compiler_directive_decl] = STATE(1416), + [sym_fsi_directive_decl] = STATE(1416), + [sym_preproc_line] = STATE(1416), + [aux_sym_rules_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_DOT_DOT2] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3930), + [sym__dedent] = ACTIONS(3180), + }, + [1417] = { + [sym_block_comment] = STATE(1417), + [sym_compiler_directive_decl] = STATE(1417), + [sym_fsi_directive_decl] = STATE(1417), + [sym_preproc_line] = STATE(1417), [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3054), [anon_sym_COLON] = ACTIONS(3048), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3054), [anon_sym_null] = ACTIONS(3048), [anon_sym_QMARK] = ACTIONS(3048), [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_AT_AT_GT] = ACTIONS(3048), [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), [anon_sym_for] = ACTIONS(3048), [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), @@ -211232,29 +209961,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), [anon_sym_LPAREN2] = ACTIONS(3048), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -211263,1842 +209991,3762 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3054), [aux_sym_infix_op_token2] = ACTIONS(3048), [anon_sym_PIPE_PIPE] = ACTIONS(3048), [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3054), [anon_sym_DOLLAR] = ACTIONS(3048), [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, - [1435] = { - [sym_block_comment] = STATE(1435), - [sym_compiler_directive_decl] = STATE(1435), - [sym_fsi_directive_decl] = STATE(1435), - [sym_preproc_line] = STATE(1435), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), + [1418] = { + [sym_block_comment] = STATE(1418), + [sym_compiler_directive_decl] = STATE(1418), + [sym_fsi_directive_decl] = STATE(1418), + [sym_preproc_line] = STATE(1418), + [aux_sym_rules_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_DOT_DOT2] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(3935), + [sym__dedent] = ACTIONS(3142), }, - [1436] = { - [sym_elif_expression] = STATE(1797), - [sym_block_comment] = STATE(1436), - [sym_compiler_directive_decl] = STATE(1436), - [sym_fsi_directive_decl] = STATE(1436), - [sym_preproc_line] = STATE(1436), - [aux_sym_if_expression_repeat1] = STATE(1436), - [sym_identifier] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_let_BANG] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_COLON_QMARK] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LBRACK_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_LT_AT] = ACTIONS(3088), - [anon_sym_LT_AT_AT] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(3088), - [anon_sym_LBRACE_PIPE] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_return_BANG] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_yield_BANG] = ACTIONS(3086), - [anon_sym_lazy] = ACTIONS(3088), - [anon_sym_assert] = ACTIONS(3088), - [anon_sym_upcast] = ACTIONS(3088), - [anon_sym_downcast] = ACTIONS(3088), - [anon_sym_COLON_GT] = ACTIONS(3086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3952), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3088), - [anon_sym_match_BANG] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_DOT_LBRACK] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_use] = ACTIONS(3088), - [anon_sym_use_BANG] = ACTIONS(3086), - [anon_sym_do_BANG] = ACTIONS(3086), - [anon_sym_DOT_DOT] = ACTIONS(3086), - [anon_sym_begin] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3088), - [aux_sym_char_token1] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_AT_DQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3086), - [sym_bool] = ACTIONS(3088), - [sym_unit] = ACTIONS(3086), - [anon_sym_LPAREN_PIPE] = ACTIONS(3088), - [sym_op_identifier] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS_DOT] = ACTIONS(3088), - [anon_sym_DASH_DOT] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3086), - [aux_sym_prefix_op_token1] = ACTIONS(3088), - [aux_sym_infix_op_token1] = ACTIONS(3086), - [aux_sym_infix_op_token2] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), - [sym_int] = ACTIONS(3088), - [sym_xint] = ACTIONS(3086), + [1419] = { + [sym_block_comment] = STATE(1419), + [sym_compiler_directive_decl] = STATE(1419), + [sym_fsi_directive_decl] = STATE(1419), + [sym_preproc_line] = STATE(1419), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_AT_GT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, - [1437] = { - [sym_block_comment] = STATE(1437), - [sym_compiler_directive_decl] = STATE(1437), - [sym_fsi_directive_decl] = STATE(1437), - [sym_preproc_line] = STATE(1437), - [sym_identifier] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_COLON_QMARK] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_DOT_LBRACK] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2977), - [anon_sym_DASH_DOT] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2977), - [aux_sym_infix_op_token1] = ACTIONS(2975), - [aux_sym_infix_op_token2] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2977), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [anon_sym_POUNDendif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [1420] = { + [sym_block_comment] = STATE(1420), + [sym_compiler_directive_decl] = STATE(1420), + [sym_fsi_directive_decl] = STATE(1420), + [sym_preproc_line] = STATE(1420), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, - [1438] = { - [sym_block_comment] = STATE(1438), - [sym_compiler_directive_decl] = STATE(1438), - [sym_fsi_directive_decl] = STATE(1438), - [sym_preproc_line] = STATE(1438), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [1421] = { + [sym_block_comment] = STATE(1421), + [sym_compiler_directive_decl] = STATE(1421), + [sym_fsi_directive_decl] = STATE(1421), + [sym_preproc_line] = STATE(1421), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_DOT_DOT2] = ACTIONS(3134), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + [sym__dedent] = ACTIONS(3134), }, - [1439] = { - [sym_block_comment] = STATE(1439), - [sym_compiler_directive_decl] = STATE(1439), - [sym_fsi_directive_decl] = STATE(1439), - [sym_preproc_line] = STATE(1439), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_AT_AT_GT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [1422] = { + [sym_block_comment] = STATE(1422), + [sym_compiler_directive_decl] = STATE(1422), + [sym_fsi_directive_decl] = STATE(1422), + [sym_preproc_line] = STATE(1422), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_DOT_DOT2] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(3938), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__dedent] = ACTIONS(3153), + }, + [1423] = { + [sym_block_comment] = STATE(1423), + [sym_compiler_directive_decl] = STATE(1423), + [sym_fsi_directive_decl] = STATE(1423), + [sym_preproc_line] = STATE(1423), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3054), + [anon_sym_POUNDendif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, - [1440] = { - [sym_block_comment] = STATE(1440), - [sym_compiler_directive_decl] = STATE(1440), - [sym_fsi_directive_decl] = STATE(1440), - [sym_preproc_line] = STATE(1440), - [sym_identifier] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_COLON_QMARK] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3054), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3052), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_DOT_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3054), - [anon_sym_DASH_DOT] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [aux_sym_infix_op_token2] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [1424] = { + [sym_block_comment] = STATE(1424), + [sym_compiler_directive_decl] = STATE(1424), + [sym_fsi_directive_decl] = STATE(1424), + [sym_preproc_line] = STATE(1424), + [aux_sym_rules_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3940), + [sym__dedent] = ACTIONS(3167), }, - [1441] = { - [sym_block_comment] = STATE(1441), - [sym_compiler_directive_decl] = STATE(1441), - [sym_fsi_directive_decl] = STATE(1441), - [sym_preproc_line] = STATE(1441), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [1425] = { + [sym_block_comment] = STATE(1425), + [sym_compiler_directive_decl] = STATE(1425), + [sym_fsi_directive_decl] = STATE(1425), + [sym_preproc_line] = STATE(1425), + [aux_sym_rules_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3940), + [sym__dedent] = ACTIONS(3167), }, - [1442] = { - [sym_block_comment] = STATE(1442), - [sym_compiler_directive_decl] = STATE(1442), - [sym_fsi_directive_decl] = STATE(1442), - [sym_preproc_line] = STATE(1442), - [aux_sym_rules_repeat1] = STATE(1471), - [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_PIPE] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3957), - [sym__dedent] = ACTIONS(3204), + [1426] = { + [sym_block_comment] = STATE(1426), + [sym_compiler_directive_decl] = STATE(1426), + [sym_fsi_directive_decl] = STATE(1426), + [sym_preproc_line] = STATE(1426), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, - [1443] = { - [sym_block_comment] = STATE(1443), - [sym_compiler_directive_decl] = STATE(1443), - [sym_fsi_directive_decl] = STATE(1443), - [sym_preproc_line] = STATE(1443), - [aux_sym_rules_repeat1] = STATE(1421), - [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_PIPE] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(3957), - [sym__dedent] = ACTIONS(3204), + [1427] = { + [sym_block_comment] = STATE(1427), + [sym_compiler_directive_decl] = STATE(1427), + [sym_fsi_directive_decl] = STATE(1427), + [sym_preproc_line] = STATE(1427), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), }, - [1444] = { - [sym_block_comment] = STATE(1444), - [sym_compiler_directive_decl] = STATE(1444), - [sym_fsi_directive_decl] = STATE(1444), - [sym_preproc_line] = STATE(1444), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [1428] = { + [sym_block_comment] = STATE(1428), + [sym_compiler_directive_decl] = STATE(1428), + [sym_fsi_directive_decl] = STATE(1428), + [sym_preproc_line] = STATE(1428), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, - [1445] = { - [sym_block_comment] = STATE(1445), - [sym_compiler_directive_decl] = STATE(1445), - [sym_fsi_directive_decl] = STATE(1445), - [sym_preproc_line] = STATE(1445), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_GT_RBRACK] = ACTIONS(3076), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), + [1429] = { + [sym_block_comment] = STATE(1429), + [sym_compiler_directive_decl] = STATE(1429), + [sym_fsi_directive_decl] = STATE(1429), + [sym_preproc_line] = STATE(1429), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3943), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + }, + [1430] = { + [sym_block_comment] = STATE(1430), + [sym_compiler_directive_decl] = STATE(1430), + [sym_fsi_directive_decl] = STATE(1430), + [sym_preproc_line] = STATE(1430), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3945), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [anon_sym_POUNDendif] = ACTIONS(3134), + [anon_sym_POUNDelse] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1431] = { + [sym_block_comment] = STATE(1431), + [sym_compiler_directive_decl] = STATE(1431), + [sym_fsi_directive_decl] = STATE(1431), + [sym_preproc_line] = STATE(1431), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), + }, + [1432] = { + [sym_block_comment] = STATE(1432), + [sym_compiler_directive_decl] = STATE(1432), + [sym_fsi_directive_decl] = STATE(1432), + [sym_preproc_line] = STATE(1432), + [aux_sym_long_identifier_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [1433] = { + [sym_elif_expression] = STATE(1713), + [sym_block_comment] = STATE(1433), + [sym_compiler_directive_decl] = STATE(1433), + [sym_fsi_directive_decl] = STATE(1433), + [sym_preproc_line] = STATE(1433), + [aux_sym_if_expression_repeat1] = STATE(1433), + [sym_identifier] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_let_BANG] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_COLON_QMARK] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACK_PIPE] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_LT_AT] = ACTIONS(3102), + [anon_sym_LT_AT_AT] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_return_BANG] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_yield_BANG] = ACTIONS(3100), + [anon_sym_lazy] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_upcast] = ACTIONS(3102), + [anon_sym_downcast] = ACTIONS(3102), + [anon_sym_COLON_GT] = ACTIONS(3100), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_elif] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_match_BANG] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_DOT_LBRACK] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_use] = ACTIONS(3102), + [anon_sym_use_BANG] = ACTIONS(3100), + [anon_sym_do_BANG] = ACTIONS(3100), + [anon_sym_begin] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [aux_sym_char_token1] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_AT_DQUOTE] = ACTIONS(3100), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3100), + [sym_bool] = ACTIONS(3102), + [sym_unit] = ACTIONS(3100), + [anon_sym_LPAREN_PIPE] = ACTIONS(3102), + [sym_op_identifier] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_DOT] = ACTIONS(3102), + [anon_sym_DASH_DOT] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [aux_sym_prefix_op_token1] = ACTIONS(3102), + [aux_sym_infix_op_token1] = ACTIONS(3100), + [aux_sym_infix_op_token2] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3102), + [sym_int] = ACTIONS(3102), + [sym_xint] = ACTIONS(3100), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3100), + [sym__newline] = ACTIONS(3100), + }, + [1434] = { + [sym_block_comment] = STATE(1434), + [sym_compiler_directive_decl] = STATE(1434), + [sym_fsi_directive_decl] = STATE(1434), + [sym_preproc_line] = STATE(1434), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1435] = { + [sym_block_comment] = STATE(1435), + [sym_compiler_directive_decl] = STATE(1435), + [sym_fsi_directive_decl] = STATE(1435), + [sym_preproc_line] = STATE(1435), + [aux_sym_rules_repeat1] = STATE(1424), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_DOT_DOT2] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(3950), + [sym__dedent] = ACTIONS(3226), + }, + [1436] = { + [sym_block_comment] = STATE(1436), + [sym_compiler_directive_decl] = STATE(1436), + [sym_fsi_directive_decl] = STATE(1436), + [sym_preproc_line] = STATE(1436), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [anon_sym_POUNDendif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1437] = { + [sym_block_comment] = STATE(1437), + [sym_compiler_directive_decl] = STATE(1437), + [sym_fsi_directive_decl] = STATE(1437), + [sym_preproc_line] = STATE(1437), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3054), + }, + [1438] = { + [sym_block_comment] = STATE(1438), + [sym_compiler_directive_decl] = STATE(1438), + [sym_fsi_directive_decl] = STATE(1438), + [sym_preproc_line] = STATE(1438), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [anon_sym_POUNDendif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + }, + [1439] = { + [sym_block_comment] = STATE(1439), + [sym_compiler_directive_decl] = STATE(1439), + [sym_fsi_directive_decl] = STATE(1439), + [sym_preproc_line] = STATE(1439), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), + }, + [1440] = { + [sym_block_comment] = STATE(1440), + [sym_compiler_directive_decl] = STATE(1440), + [sym_fsi_directive_decl] = STATE(1440), + [sym_preproc_line] = STATE(1440), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), + }, + [1441] = { + [sym_block_comment] = STATE(1441), + [sym_compiler_directive_decl] = STATE(1441), + [sym_fsi_directive_decl] = STATE(1441), + [sym_preproc_line] = STATE(1441), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [1442] = { + [sym_block_comment] = STATE(1442), + [sym_compiler_directive_decl] = STATE(1442), + [sym_fsi_directive_decl] = STATE(1442), + [sym_preproc_line] = STATE(1442), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), + }, + [1443] = { + [sym_block_comment] = STATE(1443), + [sym_compiler_directive_decl] = STATE(1443), + [sym_fsi_directive_decl] = STATE(1443), + [sym_preproc_line] = STATE(1443), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_DOT_DOT2] = ACTIONS(3217), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), + [sym__dedent] = ACTIONS(3217), + }, + [1444] = { + [sym_block_comment] = STATE(1444), + [sym_compiler_directive_decl] = STATE(1444), + [sym_fsi_directive_decl] = STATE(1444), + [sym_preproc_line] = STATE(1444), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), + }, + [1445] = { + [sym_block_comment] = STATE(1445), + [sym_compiler_directive_decl] = STATE(1445), + [sym_fsi_directive_decl] = STATE(1445), + [sym_preproc_line] = STATE(1445), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_DOT_DOT] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1446] = { [sym_block_comment] = STATE(1446), [sym_compiler_directive_decl] = STATE(1446), [sym_fsi_directive_decl] = STATE(1446), [sym_preproc_line] = STATE(1446), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3960), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_DOT_DOT] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3062), + [aux_sym_infix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token2] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [1447] = { [sym_block_comment] = STATE(1447), [sym_compiler_directive_decl] = STATE(1447), [sym_fsi_directive_decl] = STATE(1447), [sym_preproc_line] = STATE(1447), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [1448] = { [sym_block_comment] = STATE(1448), [sym_compiler_directive_decl] = STATE(1448), [sym_fsi_directive_decl] = STATE(1448), [sym_preproc_line] = STATE(1448), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3962), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_PLUS_DOT] = ACTIONS(3088), + [anon_sym_DASH_DOT] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3088), + [aux_sym_infix_op_token1] = ACTIONS(3090), + [aux_sym_infix_op_token2] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3088), + [sym_int] = ACTIONS(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1449] = { [sym_block_comment] = STATE(1449), [sym_compiler_directive_decl] = STATE(1449), [sym_fsi_directive_decl] = STATE(1449), [sym_preproc_line] = STATE(1449), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_AT_GT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, [1450] = { [sym_block_comment] = STATE(1450), [sym_compiler_directive_decl] = STATE(1450), [sym_fsi_directive_decl] = STATE(1450), [sym_preproc_line] = STATE(1450), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(3054), + [anon_sym_POUNDendif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1451] = { [sym_block_comment] = STATE(1451), [sym_compiler_directive_decl] = STATE(1451), [sym_fsi_directive_decl] = STATE(1451), [sym_preproc_line] = STATE(1451), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3064), - [aux_sym_infix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token2] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_COLON_QMARK] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [aux_sym_infix_op_token2] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [1452] = { [sym_block_comment] = STATE(1452), [sym_compiler_directive_decl] = STATE(1452), [sym_fsi_directive_decl] = STATE(1452), [sym_preproc_line] = STATE(1452), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3026), - [aux_sym_infix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token2] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3026), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, [1453] = { [sym_block_comment] = STATE(1453), [sym_compiler_directive_decl] = STATE(1453), [sym_fsi_directive_decl] = STATE(1453), [sym_preproc_line] = STATE(1453), - [sym_identifier] = ACTIONS(3219), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [anon_sym_POUNDendif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [1454] = { + [sym_block_comment] = STATE(1454), + [sym_compiler_directive_decl] = STATE(1454), + [sym_fsi_directive_decl] = STATE(1454), + [sym_preproc_line] = STATE(1454), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1455] = { + [sym_block_comment] = STATE(1455), + [sym_compiler_directive_decl] = STATE(1455), + [sym_fsi_directive_decl] = STATE(1455), + [sym_preproc_line] = STATE(1455), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2990), + [anon_sym_DOT] = 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_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_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(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LT2] = ACTIONS(2990), + [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(2992), + [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(2992), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [1456] = { + [sym_block_comment] = STATE(1456), + [sym_compiler_directive_decl] = STATE(1456), + [sym_fsi_directive_decl] = STATE(1456), + [sym_preproc_line] = STATE(1456), + [sym_identifier] = ACTIONS(3215), [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3215), [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3215), [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), [anon_sym_COLON_GT] = ACTIONS(3217), [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), [anon_sym_DOT_LBRACK] = ACTIONS(3217), [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3215), [anon_sym_use_BANG] = ACTIONS(3217), [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), [anon_sym_AT_DQUOTE] = ACTIONS(3217), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), + [sym_bool] = ACTIONS(3215), [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3215), [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -213108,908 +213756,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3217), [sym__dedent] = ACTIONS(3217), }, - [1454] = { - [sym_block_comment] = STATE(1454), - [sym_compiler_directive_decl] = STATE(1454), - [sym_fsi_directive_decl] = STATE(1454), - [sym_preproc_line] = STATE(1454), - [sym_identifier] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_COLON_QMARK] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3056), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_DOT_LBRACK] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_DOT_DOT] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LT2] = ACTIONS(3964), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3058), - [anon_sym_DASH_DOT] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [aux_sym_infix_op_token2] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), - }, - [1455] = { - [sym_block_comment] = STATE(1455), - [sym_compiler_directive_decl] = STATE(1455), - [sym_fsi_directive_decl] = STATE(1455), - [sym_preproc_line] = STATE(1455), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), - }, - [1456] = { - [sym_block_comment] = STATE(1456), - [sym_compiler_directive_decl] = STATE(1456), - [sym_fsi_directive_decl] = STATE(1456), - [sym_preproc_line] = STATE(1456), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3044), - [aux_sym_infix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token2] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3044), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - }, [1457] = { [sym_block_comment] = STATE(1457), [sym_compiler_directive_decl] = STATE(1457), [sym_fsi_directive_decl] = STATE(1457), [sym_preproc_line] = STATE(1457), - [sym_identifier] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_DOT_LBRACK] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_DOT_DOT] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3066), - [anon_sym_DASH_DOT] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [aux_sym_infix_op_token2] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3066), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [1458] = { [sym_block_comment] = STATE(1458), [sym_compiler_directive_decl] = STATE(1458), [sym_fsi_directive_decl] = STATE(1458), [sym_preproc_line] = STATE(1458), - [aux_sym_long_identifier_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [1459] = { - [sym_block_comment] = STATE(1459), - [sym_compiler_directive_decl] = STATE(1459), - [sym_fsi_directive_decl] = STATE(1459), - [sym_preproc_line] = STATE(1459), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1460] = { - [sym_block_comment] = STATE(1460), - [sym_compiler_directive_decl] = STATE(1460), - [sym_fsi_directive_decl] = STATE(1460), - [sym_preproc_line] = STATE(1460), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - [sym__dedent] = ACTIONS(3132), - }, - [1461] = { - [sym_block_comment] = STATE(1461), - [sym_compiler_directive_decl] = STATE(1461), - [sym_fsi_directive_decl] = STATE(1461), - [sym_preproc_line] = STATE(1461), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_DOT_DOT2] = ACTIONS(2526), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2738), - [aux_sym_decimal_token1] = ACTIONS(2700), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - [sym__dedent] = ACTIONS(2526), - }, - [1462] = { - [sym_block_comment] = STATE(1462), - [sym_compiler_directive_decl] = STATE(1462), - [sym_fsi_directive_decl] = STATE(1462), - [sym_preproc_line] = STATE(1462), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1463] = { - [sym_block_comment] = STATE(1463), - [sym_compiler_directive_decl] = STATE(1463), - [sym_fsi_directive_decl] = STATE(1463), - [sym_preproc_line] = STATE(1463), [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3054), [anon_sym_COLON] = ACTIONS(3048), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3054), [anon_sym_null] = ACTIONS(3048), [anon_sym_QMARK] = ACTIONS(3048), [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), [anon_sym_AT_GT] = ACTIONS(3048), [anon_sym_LT_AT_AT] = ACTIONS(3048), [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), [anon_sym_for] = ACTIONS(3048), [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), @@ -214017,28 +213897,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3048), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), [anon_sym_LPAREN2] = ACTIONS(3048), [anon_sym_STAR] = ACTIONS(3048), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), [anon_sym_or] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), [sym_op_identifier] = ACTIONS(3048), [anon_sym_PLUS] = ACTIONS(3048), @@ -214047,416 +213927,704 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3048), [anon_sym_PERCENT] = ACTIONS(3048), [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3054), [aux_sym_prefix_op_token1] = ACTIONS(3048), - [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3054), [aux_sym_infix_op_token2] = ACTIONS(3048), [anon_sym_PIPE_PIPE] = ACTIONS(3048), [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3054), [anon_sym_DOLLAR] = ACTIONS(3048), [anon_sym_QMARK_LT_DASH] = ACTIONS(3048), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [1464] = { - [sym_block_comment] = STATE(1464), - [sym_compiler_directive_decl] = STATE(1464), - [sym_fsi_directive_decl] = STATE(1464), - [sym_preproc_line] = STATE(1464), - [sym_identifier] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_AT_GT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_DOT_LBRACK] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3101), - [aux_sym_infix_op_token1] = ACTIONS(3103), - [aux_sym_infix_op_token2] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3101), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - }, - [1465] = { - [sym_block_comment] = STATE(1465), - [sym_compiler_directive_decl] = STATE(1465), - [sym_fsi_directive_decl] = STATE(1465), - [sym_preproc_line] = STATE(1465), - [sym_identifier] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_COLON] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_AT_GT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_COLON_GT] = ACTIONS(3097), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_DOT_LBRACK] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3099), - [anon_sym_DASH_DOT] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3099), - [aux_sym_infix_op_token1] = ACTIONS(3097), - [aux_sym_infix_op_token2] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3099), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, - [1466] = { - [sym_block_comment] = STATE(1466), - [sym_compiler_directive_decl] = STATE(1466), - [sym_fsi_directive_decl] = STATE(1466), - [sym_preproc_line] = STATE(1466), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_DOT_DOT2] = ACTIONS(3132), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - [sym__dedent] = ACTIONS(3132), + [1459] = { + [sym_block_comment] = STATE(1459), + [sym_compiler_directive_decl] = STATE(1459), + [sym_fsi_directive_decl] = STATE(1459), + [sym_preproc_line] = STATE(1459), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3959), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, - [1467] = { - [sym_block_comment] = STATE(1467), - [sym_compiler_directive_decl] = STATE(1467), - [sym_fsi_directive_decl] = STATE(1467), - [sym_preproc_line] = STATE(1467), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [1460] = { + [sym_block_comment] = STATE(1460), + [sym_compiler_directive_decl] = STATE(1460), + [sym_fsi_directive_decl] = STATE(1460), + [sym_preproc_line] = STATE(1460), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), + }, + [1461] = { + [sym_block_comment] = STATE(1461), + [sym_compiler_directive_decl] = STATE(1461), + [sym_fsi_directive_decl] = STATE(1461), + [sym_preproc_line] = STATE(1461), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1462] = { + [sym_block_comment] = STATE(1462), + [sym_compiler_directive_decl] = STATE(1462), + [sym_fsi_directive_decl] = STATE(1462), + [sym_preproc_line] = STATE(1462), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), + }, + [1463] = { + [sym_block_comment] = STATE(1463), + [sym_compiler_directive_decl] = STATE(1463), + [sym_fsi_directive_decl] = STATE(1463), + [sym_preproc_line] = STATE(1463), + [sym_identifier] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2979), + [anon_sym_AT_AT_GT] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_DOT_LBRACK] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2979), + [anon_sym_DASH_DOT] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2979), + [aux_sym_infix_op_token1] = ACTIONS(2981), + [aux_sym_infix_op_token2] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2979), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [1464] = { + [sym_block_comment] = STATE(1464), + [sym_compiler_directive_decl] = STATE(1464), + [sym_fsi_directive_decl] = STATE(1464), + [sym_preproc_line] = STATE(1464), + [sym_identifier] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3058), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_DOT_LBRACK] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3060), + [anon_sym_DASH_DOT] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [aux_sym_infix_op_token2] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), + }, + [1465] = { + [sym_block_comment] = STATE(1465), + [sym_compiler_directive_decl] = STATE(1465), + [sym_fsi_directive_decl] = STATE(1465), + [sym_preproc_line] = STATE(1465), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3961), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [anon_sym_POUNDendif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, - [1468] = { - [sym_block_comment] = STATE(1468), - [sym_compiler_directive_decl] = STATE(1468), - [sym_fsi_directive_decl] = STATE(1468), - [sym_preproc_line] = STATE(1468), + [1466] = { + [sym_block_comment] = STATE(1466), + [sym_compiler_directive_decl] = STATE(1466), + [sym_fsi_directive_decl] = STATE(1466), + [sym_preproc_line] = STATE(1466), [sym_identifier] = ACTIONS(3042), [anon_sym_EQ] = ACTIONS(3040), [anon_sym_COLON] = ACTIONS(3042), @@ -214476,7 +214644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(3040), [anon_sym_LBRACE] = ACTIONS(3042), [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_AT_GT] = ACTIONS(3042), [anon_sym_LT_AT_AT] = ACTIONS(3042), [anon_sym_DOT] = ACTIONS(3042), [anon_sym_LBRACE_PIPE] = ACTIONS(3040), @@ -214505,6 +214672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(3042), [anon_sym_use_BANG] = ACTIONS(3040), [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_DOT_DOT] = ACTIONS(3040), [anon_sym_begin] = ACTIONS(3042), [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_STAR] = ACTIONS(3042), @@ -214539,7 +214707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3042), [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -214548,3896 +214716,2769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3040), [sym__newline] = ACTIONS(3040), }, + [1467] = { + [sym_block_comment] = STATE(1467), + [sym_compiler_directive_decl] = STATE(1467), + [sym_fsi_directive_decl] = STATE(1467), + [sym_preproc_line] = STATE(1467), + [sym_identifier] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_COLON_QMARK] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_COLON_GT] = ACTIONS(3080), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_DOT_LBRACK] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3078), + [anon_sym_DASH_DOT] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3078), + [aux_sym_infix_op_token1] = ACTIONS(3080), + [aux_sym_infix_op_token2] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3078), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [1468] = { + [sym_block_comment] = STATE(1468), + [sym_compiler_directive_decl] = STATE(1468), + [sym_fsi_directive_decl] = STATE(1468), + [sym_preproc_line] = STATE(1468), + [sym_identifier] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_COLON_QMARK] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_COLON_GT] = ACTIONS(3074), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_DOT_LBRACK] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_LPAREN2] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3076), + [anon_sym_DASH_DOT] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3076), + [aux_sym_infix_op_token1] = ACTIONS(3074), + [aux_sym_infix_op_token2] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3076), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), + }, [1469] = { [sym_block_comment] = STATE(1469), [sym_compiler_directive_decl] = STATE(1469), [sym_fsi_directive_decl] = STATE(1469), [sym_preproc_line] = STATE(1469), - [sym_identifier] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_COLON_QMARK] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_COLON_GT] = ACTIONS(3084), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_DOT_LBRACK] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3082), - [anon_sym_DASH_DOT] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3082), - [aux_sym_infix_op_token1] = ACTIONS(3084), - [aux_sym_infix_op_token2] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3082), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3082), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, [1470] = { [sym_block_comment] = STATE(1470), [sym_compiler_directive_decl] = STATE(1470), [sym_fsi_directive_decl] = STATE(1470), [sym_preproc_line] = STATE(1470), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_DOT_DOT2] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), - [sym__dedent] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_COLON_QMARK] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_AT_GT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_COLON_GT] = ACTIONS(3082), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_DOT_LBRACK] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_LT2] = ACTIONS(3965), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3084), + [anon_sym_DASH_DOT] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3084), + [aux_sym_infix_op_token1] = ACTIONS(3082), + [aux_sym_infix_op_token2] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3084), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), }, [1471] = { [sym_block_comment] = STATE(1471), [sym_compiler_directive_decl] = STATE(1471), [sym_fsi_directive_decl] = STATE(1471), [sym_preproc_line] = STATE(1471), - [aux_sym_rules_repeat1] = STATE(1421), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(3968), - [sym__dedent] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DASH_GT] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_DOT_DOT] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3967), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1472] = { [sym_block_comment] = STATE(1472), [sym_compiler_directive_decl] = STATE(1472), [sym_fsi_directive_decl] = STATE(1472), [sym_preproc_line] = STATE(1472), - [aux_sym_rules_repeat1] = STATE(1511), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_as] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(3973), + [sym_identifier] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3072), + [anon_sym_AT_AT_GT] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_LPAREN2] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3072), + [anon_sym_DASH_DOT] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3072), + [aux_sym_infix_op_token1] = ACTIONS(3070), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), }, [1473] = { [sym_block_comment] = STATE(1473), [sym_compiler_directive_decl] = STATE(1473), [sym_fsi_directive_decl] = STATE(1473), [sym_preproc_line] = STATE(1473), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_AT_GT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3976), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1474] = { - [sym_block_comment] = STATE(1474), - [sym_compiler_directive_decl] = STATE(1474), - [sym_fsi_directive_decl] = STATE(1474), - [sym_preproc_line] = STATE(1474), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), + [sym_identifier] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2922), - [aux_sym_decimal_token1] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_COLON_GT] = ACTIONS(3070), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_DOT_LBRACK] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_LPAREN2] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3072), + [anon_sym_DASH_DOT] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3072), + [aux_sym_infix_op_token1] = ACTIONS(3070), + [aux_sym_infix_op_token2] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_DOLLAR] = ACTIONS(3072), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3072), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), + }, + [1474] = { + [sym_block_comment] = STATE(1474), + [sym_compiler_directive_decl] = STATE(1474), + [sym_fsi_directive_decl] = STATE(1474), + [sym_preproc_line] = STATE(1474), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [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(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_COLON_GT] = ACTIONS(3094), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), + [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(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_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(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = 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(3094), + [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(3094), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, [1475] = { [sym_block_comment] = STATE(1475), [sym_compiler_directive_decl] = STATE(1475), [sym_fsi_directive_decl] = STATE(1475), [sym_preproc_line] = STATE(1475), - [aux_sym_long_identifier_repeat1] = STATE(1475), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [aux_sym_rules_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3906), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_EQ2] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3969), + [sym__dedent] = ACTIONS(3167), }, [1476] = { [sym_block_comment] = STATE(1476), [sym_compiler_directive_decl] = STATE(1476), [sym_fsi_directive_decl] = STATE(1476), [sym_preproc_line] = STATE(1476), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_DASH_GT] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), }, [1477] = { [sym_block_comment] = STATE(1477), [sym_compiler_directive_decl] = STATE(1477), [sym_fsi_directive_decl] = STATE(1477), [sym_preproc_line] = STATE(1477), - [sym_identifier] = ACTIONS(3165), + [aux_sym_rules_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3906), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [anon_sym_POUNDelse] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym__newline] = ACTIONS(3969), + [sym__dedent] = ACTIONS(3167), }, [1478] = { [sym_block_comment] = STATE(1478), [sym_compiler_directive_decl] = STATE(1478), [sym_fsi_directive_decl] = STATE(1478), [sym_preproc_line] = STATE(1478), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_as] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_COLON_QMARK] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_AT_GT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_DOT_LBRACK] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3046), + [anon_sym_DASH_DOT] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3046), + [aux_sym_infix_op_token1] = ACTIONS(3044), + [aux_sym_infix_op_token2] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_DOLLAR] = ACTIONS(3046), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, [1479] = { [sym_block_comment] = STATE(1479), [sym_compiler_directive_decl] = STATE(1479), [sym_fsi_directive_decl] = STATE(1479), [sym_preproc_line] = STATE(1479), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_DASH_GT] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_DOT_DOT] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, [1480] = { [sym_block_comment] = STATE(1480), [sym_compiler_directive_decl] = STATE(1480), [sym_fsi_directive_decl] = STATE(1480), [sym_preproc_line] = STATE(1480), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3981), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), - }, - [1481] = { - [sym_block_comment] = STATE(1481), - [sym_compiler_directive_decl] = STATE(1481), - [sym_fsi_directive_decl] = STATE(1481), - [sym_preproc_line] = STATE(1481), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2930), - [aux_sym_decimal_token1] = ACTIONS(2728), + [sym_identifier] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3068), + [anon_sym_AT_AT_GT] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_COLON_GT] = ACTIONS(3066), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_DOT_LBRACK] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_LPAREN2] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3068), + [anon_sym_DASH_DOT] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3068), + [aux_sym_infix_op_token1] = ACTIONS(3066), + [aux_sym_infix_op_token2] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_DOLLAR] = ACTIONS(3068), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3068), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), + }, + [1481] = { + [sym_block_comment] = STATE(1481), + [sym_compiler_directive_decl] = STATE(1481), + [sym_fsi_directive_decl] = STATE(1481), + [sym_preproc_line] = STATE(1481), + [sym_identifier] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_AT_GT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_COLON_GT] = ACTIONS(3098), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_DOT_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3096), + [anon_sym_DASH_DOT] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3096), + [aux_sym_infix_op_token1] = ACTIONS(3098), + [aux_sym_infix_op_token2] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_DOLLAR] = ACTIONS(3096), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3096), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, [1482] = { [sym_block_comment] = STATE(1482), [sym_compiler_directive_decl] = STATE(1482), [sym_fsi_directive_decl] = STATE(1482), [sym_preproc_line] = STATE(1482), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3072), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3070), + [aux_sym_rules_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3906), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(3972), + [sym__dedent] = ACTIONS(3142), }, [1483] = { [sym_block_comment] = STATE(1483), [sym_compiler_directive_decl] = STATE(1483), [sym_fsi_directive_decl] = STATE(1483), [sym_preproc_line] = STATE(1483), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(3983), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3975), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [anon_sym_POUNDendif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1484] = { [sym_block_comment] = STATE(1484), [sym_compiler_directive_decl] = STATE(1484), [sym_fsi_directive_decl] = STATE(1484), [sym_preproc_line] = STATE(1484), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(3985), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_DOT_DOT2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - [sym__dedent] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_DOT_DOT2] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), }, [1485] = { [sym_block_comment] = STATE(1485), [sym_compiler_directive_decl] = STATE(1485), [sym_fsi_directive_decl] = STATE(1485), [sym_preproc_line] = STATE(1485), - [aux_sym_rules_repeat1] = STATE(1485), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), + [sym__dedent] = ACTIONS(3370), }, [1486] = { [sym_block_comment] = STATE(1486), [sym_compiler_directive_decl] = STATE(1486), [sym_fsi_directive_decl] = STATE(1486), [sym_preproc_line] = STATE(1486), - [aux_sym_long_identifier_repeat1] = STATE(1521), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3993), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [anon_sym_EQ2] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [sym__dedent] = ACTIONS(3001), - }, - [1487] = { - [sym_block_comment] = STATE(1487), - [sym_compiler_directive_decl] = STATE(1487), - [sym_fsi_directive_decl] = STATE(1487), - [sym_preproc_line] = STATE(1487), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_DASH_GT] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - }, - [1488] = { - [sym_block_comment] = STATE(1488), - [sym_compiler_directive_decl] = STATE(1488), - [sym_fsi_directive_decl] = STATE(1488), - [sym_preproc_line] = STATE(1488), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [anon_sym_POUNDendif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1489] = { - [sym_block_comment] = STATE(1489), - [sym_compiler_directive_decl] = STATE(1489), - [sym_fsi_directive_decl] = STATE(1489), - [sym_preproc_line] = STATE(1489), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(3999), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1490] = { - [sym_block_comment] = STATE(1490), - [sym_compiler_directive_decl] = STATE(1490), - [sym_fsi_directive_decl] = STATE(1490), - [sym_preproc_line] = STATE(1490), - [aux_sym_rules_repeat1] = STATE(1485), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4001), - }, - [1491] = { - [sym_block_comment] = STATE(1491), - [sym_compiler_directive_decl] = STATE(1491), - [sym_fsi_directive_decl] = STATE(1491), - [sym_preproc_line] = STATE(1491), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), - }, - [1492] = { - [sym_block_comment] = STATE(1492), - [sym_compiler_directive_decl] = STATE(1492), - [sym_fsi_directive_decl] = STATE(1492), - [sym_preproc_line] = STATE(1492), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_DOT_DOT2] = ACTIONS(3138), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), - }, - [1493] = { - [sym_block_comment] = STATE(1493), - [sym_compiler_directive_decl] = STATE(1493), - [sym_fsi_directive_decl] = STATE(1493), - [sym_preproc_line] = STATE(1493), - [sym_identifier] = ACTIONS(3165), + [aux_sym_rules_repeat1] = STATE(1500), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_DASH_GT] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1494] = { - [sym_block_comment] = STATE(1494), - [sym_compiler_directive_decl] = STATE(1494), - [sym_fsi_directive_decl] = STATE(1494), - [sym_preproc_line] = STATE(1494), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_as] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - }, - [1495] = { - [sym_block_comment] = STATE(1495), - [sym_compiler_directive_decl] = STATE(1495), - [sym_fsi_directive_decl] = STATE(1495), - [sym_preproc_line] = STATE(1495), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [anon_sym_POUNDendif] = ACTIONS(3190), - [anon_sym_POUNDelse] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - }, - [1496] = { - [sym_block_comment] = STATE(1496), - [sym_compiler_directive_decl] = STATE(1496), - [sym_fsi_directive_decl] = STATE(1496), - [sym_preproc_line] = STATE(1496), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_DOT_DOT2] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), - [sym__dedent] = ACTIONS(3361), + [sym__newline] = ACTIONS(3981), }, - [1497] = { - [sym_block_comment] = STATE(1497), - [sym_compiler_directive_decl] = STATE(1497), - [sym_fsi_directive_decl] = STATE(1497), - [sym_preproc_line] = STATE(1497), - [aux_sym_long_identifier_repeat1] = STATE(1497), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [1487] = { + [sym_block_comment] = STATE(1487), + [sym_compiler_directive_decl] = STATE(1487), + [sym_fsi_directive_decl] = STATE(1487), + [sym_preproc_line] = STATE(1487), + [aux_sym_rules_repeat1] = STATE(1558), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [1498] = { - [sym_block_comment] = STATE(1498), - [sym_compiler_directive_decl] = STATE(1498), - [sym_fsi_directive_decl] = STATE(1498), - [sym_preproc_line] = STATE(1498), - [aux_sym_long_identifier_repeat1] = STATE(1497), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), + [anon_sym_POUNDif] = ACTIONS(3167), + [anon_sym_POUNDendif] = ACTIONS(3167), + [anon_sym_POUNDelse] = ACTIONS(3167), + [sym__newline] = ACTIONS(3986), }, - [1499] = { - [sym_block_comment] = STATE(1499), - [sym_compiler_directive_decl] = STATE(1499), - [sym_fsi_directive_decl] = STATE(1499), - [sym_preproc_line] = STATE(1499), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_DASH_GT] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_DOT_DOT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [1488] = { + [sym_block_comment] = STATE(1488), + [sym_compiler_directive_decl] = STATE(1488), + [sym_fsi_directive_decl] = STATE(1488), + [sym_preproc_line] = STATE(1488), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, - [1500] = { - [sym_block_comment] = STATE(1500), - [sym_compiler_directive_decl] = STATE(1500), - [sym_fsi_directive_decl] = STATE(1500), - [sym_preproc_line] = STATE(1500), - [sym_identifier] = ACTIONS(3165), + [1489] = { + [sym_block_comment] = STATE(1489), + [sym_compiler_directive_decl] = STATE(1489), + [sym_fsi_directive_decl] = STATE(1489), + [sym_preproc_line] = STATE(1489), + [aux_sym_rules_repeat1] = STATE(1543), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), + [anon_sym_POUNDendif] = ACTIONS(3167), + [anon_sym_POUNDelse] = ACTIONS(3167), + [sym__newline] = ACTIONS(3986), }, - [1501] = { - [sym_block_comment] = STATE(1501), - [sym_compiler_directive_decl] = STATE(1501), - [sym_fsi_directive_decl] = STATE(1501), - [sym_preproc_line] = STATE(1501), - [sym_identifier] = ACTIONS(3165), + [1490] = { + [sym_block_comment] = STATE(1490), + [sym_compiler_directive_decl] = STATE(1490), + [sym_fsi_directive_decl] = STATE(1490), + [sym_preproc_line] = STATE(1490), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_DASH_GT] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_DOT_DOT] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), + }, + [1491] = { + [sym_block_comment] = STATE(1491), + [sym_compiler_directive_decl] = STATE(1491), + [sym_fsi_directive_decl] = STATE(1491), + [sym_preproc_line] = STATE(1491), + [aux_sym_rules_repeat1] = STATE(1504), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_DASH_GT] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym__newline] = ACTIONS(3981), }, - [1502] = { - [sym_block_comment] = STATE(1502), - [sym_compiler_directive_decl] = STATE(1502), - [sym_fsi_directive_decl] = STATE(1502), - [sym_preproc_line] = STATE(1502), - [aux_sym_sequential_expression_repeat1] = STATE(1502), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4013), - [sym__dedent] = ACTIONS(3381), + [1492] = { + [sym_block_comment] = STATE(1492), + [sym_compiler_directive_decl] = STATE(1492), + [sym_fsi_directive_decl] = STATE(1492), + [sym_preproc_line] = STATE(1492), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), + [sym__dedent] = ACTIONS(3293), }, - [1503] = { - [sym_block_comment] = STATE(1503), - [sym_compiler_directive_decl] = STATE(1503), - [sym_fsi_directive_decl] = STATE(1503), - [sym_preproc_line] = STATE(1503), - [aux_sym_long_identifier_repeat1] = STATE(1503), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [1493] = { + [sym_block_comment] = STATE(1493), + [sym_compiler_directive_decl] = STATE(1493), + [sym_fsi_directive_decl] = STATE(1493), + [sym_preproc_line] = STATE(1493), + [aux_sym_rules_repeat1] = STATE(1502), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [1504] = { - [sym_block_comment] = STATE(1504), - [sym_compiler_directive_decl] = STATE(1504), - [sym_fsi_directive_decl] = STATE(1504), - [sym_preproc_line] = STATE(1504), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [anon_sym_POUNDendif] = ACTIONS(3132), - [anon_sym_POUNDelse] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1505] = { - [sym_block_comment] = STATE(1505), - [sym_compiler_directive_decl] = STATE(1505), - [sym_fsi_directive_decl] = STATE(1505), - [sym_preproc_line] = STATE(1505), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_AT_AT_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(4019), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1506] = { - [sym_block_comment] = STATE(1506), - [sym_compiler_directive_decl] = STATE(1506), - [sym_fsi_directive_decl] = STATE(1506), - [sym_preproc_line] = STATE(1506), - [aux_sym_long_identifier_repeat1] = STATE(1503), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_DOT_DOT2] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), - }, - [1507] = { - [sym_block_comment] = STATE(1507), - [sym_compiler_directive_decl] = STATE(1507), - [sym_fsi_directive_decl] = STATE(1507), - [sym_preproc_line] = STATE(1507), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4023), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [anon_sym_POUNDendif] = ACTIONS(3148), - [anon_sym_POUNDelse] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(3993), }, - [1508] = { - [sym_block_comment] = STATE(1508), - [sym_compiler_directive_decl] = STATE(1508), - [sym_fsi_directive_decl] = STATE(1508), - [sym_preproc_line] = STATE(1508), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [anon_sym_POUNDendif] = ACTIONS(3163), - [anon_sym_POUNDelse] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [1494] = { + [sym_block_comment] = STATE(1494), + [sym_compiler_directive_decl] = STATE(1494), + [sym_fsi_directive_decl] = STATE(1494), + [sym_preproc_line] = STATE(1494), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + [sym__dedent] = ACTIONS(3260), }, - [1509] = { - [sym_block_comment] = STATE(1509), - [sym_compiler_directive_decl] = STATE(1509), - [sym_fsi_directive_decl] = STATE(1509), - [sym_preproc_line] = STATE(1509), - [sym_identifier] = ACTIONS(3219), + [1495] = { + [sym_block_comment] = STATE(1495), + [sym_compiler_directive_decl] = STATE(1495), + [sym_fsi_directive_decl] = STATE(1495), + [sym_preproc_line] = STATE(1495), + [sym_identifier] = ACTIONS(3215), [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3215), [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3215), [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), [anon_sym_COLON_GT] = ACTIONS(3217), [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_DASH_GT] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), [anon_sym_DOT_LBRACK] = ACTIONS(3217), [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3215), [anon_sym_use_BANG] = ACTIONS(3217), [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), [anon_sym_AT_DQUOTE] = ACTIONS(3217), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), + [sym_bool] = ACTIONS(3215), [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3215), [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -218446,11 +217487,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3217), [sym__newline] = ACTIONS(3217), }, - [1510] = { - [sym_block_comment] = STATE(1510), - [sym_compiler_directive_decl] = STATE(1510), - [sym_fsi_directive_decl] = STATE(1510), - [sym_preproc_line] = STATE(1510), + [1496] = { + [sym_block_comment] = STATE(1496), + [sym_compiler_directive_decl] = STATE(1496), + [sym_fsi_directive_decl] = STATE(1496), + [sym_preproc_line] = STATE(1496), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3533), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_DOT_DOT2] = ACTIONS(3233), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), + }, + [1497] = { + [sym_block_comment] = STATE(1497), + [sym_compiler_directive_decl] = STATE(1497), + [sym_fsi_directive_decl] = STATE(1497), + [sym_preproc_line] = STATE(1497), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -218527,10 +217663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2918), - [aux_sym_decimal_token1] = ACTIONS(2672), + [anon_sym_f] = ACTIONS(2930), + [aux_sym_decimal_token1] = ACTIONS(2700), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -218541,946 +217677,1801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDelse] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, + [1498] = { + [sym_block_comment] = STATE(1498), + [sym_compiler_directive_decl] = STATE(1498), + [sym_fsi_directive_decl] = STATE(1498), + [sym_preproc_line] = STATE(1498), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), + [sym__dedent] = ACTIONS(3180), + }, + [1499] = { + [sym_block_comment] = STATE(1499), + [sym_compiler_directive_decl] = STATE(1499), + [sym_fsi_directive_decl] = STATE(1499), + [sym_preproc_line] = STATE(1499), + [aux_sym_rules_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(3996), + }, + [1500] = { + [sym_block_comment] = STATE(1500), + [sym_compiler_directive_decl] = STATE(1500), + [sym_fsi_directive_decl] = STATE(1500), + [sym_preproc_line] = STATE(1500), + [aux_sym_rules_repeat1] = STATE(1504), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DASH_GT] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(3999), + }, + [1501] = { + [sym_block_comment] = STATE(1501), + [sym_compiler_directive_decl] = STATE(1501), + [sym_fsi_directive_decl] = STATE(1501), + [sym_preproc_line] = STATE(1501), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4002), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [1502] = { + [sym_block_comment] = STATE(1502), + [sym_compiler_directive_decl] = STATE(1502), + [sym_fsi_directive_decl] = STATE(1502), + [sym_preproc_line] = STATE(1502), + [aux_sym_rules_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4004), + }, + [1503] = { + [sym_block_comment] = STATE(1503), + [sym_compiler_directive_decl] = STATE(1503), + [sym_fsi_directive_decl] = STATE(1503), + [sym_preproc_line] = STATE(1503), + [aux_sym_long_identifier_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_DOT_DOT2] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + [sym__dedent] = ACTIONS(3000), + }, + [1504] = { + [sym_block_comment] = STATE(1504), + [sym_compiler_directive_decl] = STATE(1504), + [sym_fsi_directive_decl] = STATE(1504), + [sym_preproc_line] = STATE(1504), + [aux_sym_rules_repeat1] = STATE(1504), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_DASH_GT] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_DOT_DOT] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4014), + }, + [1505] = { + [sym_block_comment] = STATE(1505), + [sym_compiler_directive_decl] = STATE(1505), + [sym_fsi_directive_decl] = STATE(1505), + [sym_preproc_line] = STATE(1505), + [aux_sym_long_identifier_repeat1] = STATE(1555), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + [sym__dedent] = ACTIONS(3000), + }, + [1506] = { + [sym_block_comment] = STATE(1506), + [sym_compiler_directive_decl] = STATE(1506), + [sym_fsi_directive_decl] = STATE(1506), + [sym_preproc_line] = STATE(1506), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_AT_AT_GT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(4021), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1507] = { + [sym_block_comment] = STATE(1507), + [sym_compiler_directive_decl] = STATE(1507), + [sym_fsi_directive_decl] = STATE(1507), + [sym_preproc_line] = STATE(1507), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(4023), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1508] = { + [sym_block_comment] = STATE(1508), + [sym_compiler_directive_decl] = STATE(1508), + [sym_fsi_directive_decl] = STATE(1508), + [sym_preproc_line] = STATE(1508), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4025), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), + [sym__dedent] = ACTIONS(3356), + }, + [1509] = { + [sym_block_comment] = STATE(1509), + [sym_compiler_directive_decl] = STATE(1509), + [sym_fsi_directive_decl] = STATE(1509), + [sym_preproc_line] = STATE(1509), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4027), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT_DOT2] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), + [sym__dedent] = ACTIONS(3356), + }, + [1510] = { + [sym_block_comment] = STATE(1510), + [sym_compiler_directive_decl] = STATE(1510), + [sym_fsi_directive_decl] = STATE(1510), + [sym_preproc_line] = STATE(1510), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DASH_GT] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_DOT_DOT] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, [1511] = { [sym_block_comment] = STATE(1511), [sym_compiler_directive_decl] = STATE(1511), [sym_fsi_directive_decl] = STATE(1511), [sym_preproc_line] = STATE(1511), - [aux_sym_rules_repeat1] = STATE(1485), - [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_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4025), + [sym_identifier] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3943), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3048), + [anon_sym_DASH_DOT] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3050), }, [1512] = { [sym_block_comment] = STATE(1512), [sym_compiler_directive_decl] = STATE(1512), [sym_fsi_directive_decl] = STATE(1512), [sym_preproc_line] = STATE(1512), - [aux_sym_rules_repeat1] = STATE(1490), - [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_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4025), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [anon_sym_POUNDendif] = ACTIONS(3176), + [anon_sym_POUNDelse] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1513] = { [sym_block_comment] = STATE(1513), [sym_compiler_directive_decl] = STATE(1513), [sym_fsi_directive_decl] = STATE(1513), [sym_preproc_line] = STATE(1513), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_DOT_DOT2] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), - [sym__dedent] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), }, [1514] = { [sym_block_comment] = STATE(1514), [sym_compiler_directive_decl] = STATE(1514), [sym_fsi_directive_decl] = STATE(1514), [sym_preproc_line] = STATE(1514), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_DOT_DOT2] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), - [sym__dedent] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_DASH_GT] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4029), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [1515] = { [sym_block_comment] = STATE(1515), [sym_compiler_directive_decl] = STATE(1515), [sym_fsi_directive_decl] = STATE(1515), [sym_preproc_line] = STATE(1515), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - [sym__dedent] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3533), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_DOT_DOT2] = ACTIONS(3233), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1516] = { [sym_block_comment] = STATE(1516), [sym_compiler_directive_decl] = STATE(1516), [sym_fsi_directive_decl] = STATE(1516), [sym_preproc_line] = STATE(1516), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_DOT_DOT2] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), - [sym__dedent] = ACTIONS(3283), - }, - [1517] = { - [sym_block_comment] = STATE(1517), - [sym_compiler_directive_decl] = STATE(1517), - [sym_fsi_directive_decl] = STATE(1517), - [sym_preproc_line] = STATE(1517), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_as] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), - [sym__dedent] = ACTIONS(3283), - }, - [1518] = { - [sym_block_comment] = STATE(1518), - [sym_compiler_directive_decl] = STATE(1518), - [sym_fsi_directive_decl] = STATE(1518), - [sym_preproc_line] = STATE(1518), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_DOT_DOT2] = ACTIONS(3277), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - [sym__dedent] = ACTIONS(3277), - }, - [1519] = { - [sym_block_comment] = STATE(1519), - [sym_compiler_directive_decl] = STATE(1519), - [sym_fsi_directive_decl] = STATE(1519), - [sym_preproc_line] = STATE(1519), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_DOT_DOT2] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), - }, - [1520] = { - [sym_block_comment] = STATE(1520), - [sym_compiler_directive_decl] = STATE(1520), - [sym_fsi_directive_decl] = STATE(1520), - [sym_preproc_line] = STATE(1520), - [sym_identifier] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3215), [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3215), [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3215), [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3215), [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3215), [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), [anon_sym_COLON_GT] = ACTIONS(3217), [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), [anon_sym_DOT_LBRACK] = ACTIONS(3217), [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3215), [anon_sym_use_BANG] = ACTIONS(3217), [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), [anon_sym_AT_DQUOTE] = ACTIONS(3217), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), + [sym_bool] = ACTIONS(3215), [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3215), [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -219491,6887 +219482,7372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDelse] = ACTIONS(3217), [sym__newline] = ACTIONS(3217), }, + [1517] = { + [sym_block_comment] = STATE(1517), + [sym_compiler_directive_decl] = STATE(1517), + [sym_fsi_directive_decl] = STATE(1517), + [sym_preproc_line] = STATE(1517), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_as] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2926), + [aux_sym_decimal_token1] = ACTIONS(2728), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [1518] = { + [sym_block_comment] = STATE(1518), + [sym_compiler_directive_decl] = STATE(1518), + [sym_fsi_directive_decl] = STATE(1518), + [sym_preproc_line] = STATE(1518), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_DOT_DOT2] = ACTIONS(3304), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), + [sym__dedent] = ACTIONS(3304), + }, + [1519] = { + [sym_block_comment] = STATE(1519), + [sym_compiler_directive_decl] = STATE(1519), + [sym_fsi_directive_decl] = STATE(1519), + [sym_preproc_line] = STATE(1519), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4031), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [anon_sym_POUNDendif] = ACTIONS(3233), + [anon_sym_POUNDelse] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1520] = { + [sym_block_comment] = STATE(1520), + [sym_compiler_directive_decl] = STATE(1520), + [sym_fsi_directive_decl] = STATE(1520), + [sym_preproc_line] = STATE(1520), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_DOT_DOT2] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), + [sym__dedent] = ACTIONS(3293), + }, [1521] = { [sym_block_comment] = STATE(1521), [sym_compiler_directive_decl] = STATE(1521), [sym_fsi_directive_decl] = STATE(1521), [sym_preproc_line] = STATE(1521), - [aux_sym_long_identifier_repeat1] = STATE(1475), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4028), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [anon_sym_EQ2] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), + [aux_sym_rules_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4033), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4036), }, [1522] = { [sym_block_comment] = STATE(1522), [sym_compiler_directive_decl] = STATE(1522), [sym_fsi_directive_decl] = STATE(1522), [sym_preproc_line] = STATE(1522), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), - [sym__dedent] = ACTIONS(3221), + [aux_sym_rules_repeat1] = STATE(1489), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [anon_sym_POUNDendif] = ACTIONS(3226), + [anon_sym_POUNDelse] = ACTIONS(3226), + [sym__newline] = ACTIONS(4039), }, [1523] = { [sym_block_comment] = STATE(1523), [sym_compiler_directive_decl] = STATE(1523), [sym_fsi_directive_decl] = STATE(1523), [sym_preproc_line] = STATE(1523), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), - [sym__dedent] = ACTIONS(3310), + [aux_sym_sequential_expression_repeat1] = STATE(1525), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + [sym__dedent] = ACTIONS(3390), }, [1524] = { [sym_block_comment] = STATE(1524), [sym_compiler_directive_decl] = STATE(1524), [sym_fsi_directive_decl] = STATE(1524), [sym_preproc_line] = STATE(1524), - [aux_sym_long_identifier_repeat1] = STATE(1506), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [sym__dedent] = ACTIONS(3001), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_DASH_GT] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2896), + [aux_sym_decimal_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [1525] = { [sym_block_comment] = STATE(1525), [sym_compiler_directive_decl] = STATE(1525), [sym_fsi_directive_decl] = STATE(1525), [sym_preproc_line] = STATE(1525), - [aux_sym_rules_repeat1] = STATE(1539), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [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(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4036), + [aux_sym_sequential_expression_repeat1] = STATE(1525), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4042), + [sym__dedent] = ACTIONS(3297), }, [1526] = { [sym_block_comment] = STATE(1526), [sym_compiler_directive_decl] = STATE(1526), [sym_fsi_directive_decl] = STATE(1526), [sym_preproc_line] = STATE(1526), - [aux_sym_rules_repeat1] = STATE(1529), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [anon_sym_POUNDendif] = ACTIONS(3152), - [anon_sym_POUNDelse] = ACTIONS(3152), - [sym__newline] = ACTIONS(4041), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1527] = { [sym_block_comment] = STATE(1527), [sym_compiler_directive_decl] = STATE(1527), [sym_fsi_directive_decl] = STATE(1527), [sym_preproc_line] = STATE(1527), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), - [sym__dedent] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_DASH_GT] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), }, [1528] = { [sym_block_comment] = STATE(1528), [sym_compiler_directive_decl] = STATE(1528), [sym_fsi_directive_decl] = STATE(1528), [sym_preproc_line] = STATE(1528), - [aux_sym_rules_repeat1] = STATE(1532), - [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_PIPE] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [anon_sym_POUNDendif] = ACTIONS(3204), - [anon_sym_POUNDelse] = ACTIONS(3204), - [sym__newline] = ACTIONS(4046), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_DOT_DOT2] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), + [sym__dedent] = ACTIONS(3180), }, [1529] = { [sym_block_comment] = STATE(1529), [sym_compiler_directive_decl] = STATE(1529), [sym_fsi_directive_decl] = STATE(1529), [sym_preproc_line] = STATE(1529), - [aux_sym_rules_repeat1] = STATE(1533), - [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_PIPE] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [anon_sym_POUNDendif] = ACTIONS(3204), - [anon_sym_POUNDelse] = ACTIONS(3204), - [sym__newline] = ACTIONS(4046), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DOT_DOT2] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + [sym__dedent] = ACTIONS(3260), }, [1530] = { [sym_block_comment] = STATE(1530), [sym_compiler_directive_decl] = STATE(1530), [sym_fsi_directive_decl] = STATE(1530), [sym_preproc_line] = STATE(1530), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), }, [1531] = { [sym_block_comment] = STATE(1531), [sym_compiler_directive_decl] = STATE(1531), [sym_fsi_directive_decl] = STATE(1531), [sym_preproc_line] = STATE(1531), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_as] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3895), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), + [aux_sym_long_identifier_repeat1] = STATE(1531), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4045), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1532] = { [sym_block_comment] = STATE(1532), [sym_compiler_directive_decl] = STATE(1532), [sym_fsi_directive_decl] = STATE(1532), [sym_preproc_line] = STATE(1532), - [aux_sym_rules_repeat1] = STATE(1533), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [anon_sym_POUNDendif] = ACTIONS(3181), - [anon_sym_POUNDelse] = ACTIONS(3181), - [sym__newline] = ACTIONS(4049), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_DOT_DOT2] = ACTIONS(3233), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), }, [1533] = { [sym_block_comment] = STATE(1533), [sym_compiler_directive_decl] = STATE(1533), [sym_fsi_directive_decl] = STATE(1533), [sym_preproc_line] = STATE(1533), - [aux_sym_rules_repeat1] = STATE(1533), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [anon_sym_POUNDendif] = ACTIONS(3221), - [anon_sym_POUNDelse] = ACTIONS(3221), - [sym__newline] = ACTIONS(4055), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [anon_sym_POUNDelse] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1534] = { [sym_block_comment] = STATE(1534), [sym_compiler_directive_decl] = STATE(1534), [sym_fsi_directive_decl] = STATE(1534), [sym_preproc_line] = STATE(1534), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_DOT_DOT2] = ACTIONS(3138), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - }, - [1535] = { - [sym_block_comment] = STATE(1535), - [sym_compiler_directive_decl] = STATE(1535), - [sym_fsi_directive_decl] = STATE(1535), - [sym_preproc_line] = STATE(1535), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + }, + [1535] = { + [sym_block_comment] = STATE(1535), + [sym_compiler_directive_decl] = STATE(1535), + [sym_fsi_directive_decl] = STATE(1535), + [sym_preproc_line] = STATE(1535), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_DOT_DOT2] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), + [sym__dedent] = ACTIONS(3370), }, [1536] = { [sym_block_comment] = STATE(1536), [sym_compiler_directive_decl] = STATE(1536), [sym_fsi_directive_decl] = STATE(1536), [sym_preproc_line] = STATE(1536), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - [sym__dedent] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1537] = { [sym_block_comment] = STATE(1537), [sym_compiler_directive_decl] = STATE(1537), [sym_fsi_directive_decl] = STATE(1537), [sym_preproc_line] = STATE(1537), - [aux_sym_rules_repeat1] = STATE(1541), - [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_PIPE] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4060), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1538] = { [sym_block_comment] = STATE(1538), [sym_compiler_directive_decl] = STATE(1538), [sym_fsi_directive_decl] = STATE(1538), [sym_preproc_line] = STATE(1538), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), }, [1539] = { [sym_block_comment] = STATE(1539), [sym_compiler_directive_decl] = STATE(1539), [sym_fsi_directive_decl] = STATE(1539), [sym_preproc_line] = STATE(1539), - [aux_sym_rules_repeat1] = STATE(1544), - [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_PIPE] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4060), + [aux_sym_long_identifier_repeat1] = STATE(1539), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1540] = { [sym_block_comment] = STATE(1540), [sym_compiler_directive_decl] = STATE(1540), [sym_fsi_directive_decl] = STATE(1540), [sym_preproc_line] = STATE(1540), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(4063), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [anon_sym_POUNDendif] = ACTIONS(3134), + [anon_sym_POUNDelse] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1541] = { [sym_block_comment] = STATE(1541), [sym_compiler_directive_decl] = STATE(1541), [sym_fsi_directive_decl] = STATE(1541), [sym_preproc_line] = STATE(1541), - [aux_sym_rules_repeat1] = STATE(1544), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_DASH_GT] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_DOT_DOT] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4065), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), + [sym__dedent] = ACTIONS(3304), }, [1542] = { [sym_block_comment] = STATE(1542), [sym_compiler_directive_decl] = STATE(1542), [sym_fsi_directive_decl] = STATE(1542), [sym_preproc_line] = STATE(1542), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_DOT_DOT2] = ACTIONS(3138), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__dedent] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4053), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [anon_sym_POUNDendif] = ACTIONS(3153), + [anon_sym_POUNDelse] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [1543] = { [sym_block_comment] = STATE(1543), [sym_compiler_directive_decl] = STATE(1543), [sym_fsi_directive_decl] = STATE(1543), [sym_preproc_line] = STATE(1543), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), + [aux_sym_rules_repeat1] = STATE(1543), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [anon_sym_POUNDendif] = ACTIONS(3180), + [anon_sym_POUNDelse] = ACTIONS(3180), + [sym__newline] = ACTIONS(4058), }, [1544] = { [sym_block_comment] = STATE(1544), [sym_compiler_directive_decl] = STATE(1544), [sym_fsi_directive_decl] = STATE(1544), [sym_preproc_line] = STATE(1544), - [aux_sym_rules_repeat1] = STATE(1544), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_DASH_GT] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4071), + [aux_sym_long_identifier_repeat1] = STATE(1546), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4061), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [anon_sym_EQ2] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), }, [1545] = { [sym_block_comment] = STATE(1545), [sym_compiler_directive_decl] = STATE(1545), [sym_fsi_directive_decl] = STATE(1545), [sym_preproc_line] = STATE(1545), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [anon_sym_POUNDendif] = ACTIONS(3138), - [anon_sym_POUNDelse] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + [sym__dedent] = ACTIONS(3233), }, [1546] = { [sym_block_comment] = STATE(1546), [sym_compiler_directive_decl] = STATE(1546), [sym_fsi_directive_decl] = STATE(1546), [sym_preproc_line] = STATE(1546), - [sym_identifier] = ACTIONS(3165), + [aux_sym_long_identifier_repeat1] = STATE(1546), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4063), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_EQ2] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), + }, + [1547] = { + [sym_block_comment] = STATE(1547), + [sym_compiler_directive_decl] = STATE(1547), + [sym_fsi_directive_decl] = STATE(1547), + [sym_preproc_line] = STATE(1547), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3190), + [anon_sym_POUNDendif] = ACTIONS(3190), + [anon_sym_POUNDelse] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + }, + [1548] = { + [sym_block_comment] = STATE(1548), + [sym_compiler_directive_decl] = STATE(1548), + [sym_fsi_directive_decl] = STATE(1548), + [sym_preproc_line] = STATE(1548), + [aux_sym_rules_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [anon_sym_POUNDelse] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1547] = { - [sym_block_comment] = STATE(1547), - [sym_compiler_directive_decl] = STATE(1547), - [sym_fsi_directive_decl] = STATE(1547), - [sym_preproc_line] = STATE(1547), - [aux_sym_sequential_expression_repeat1] = STATE(1502), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - [sym__dedent] = ACTIONS(3349), - }, - [1548] = { - [sym_block_comment] = STATE(1548), - [sym_compiler_directive_decl] = STATE(1548), - [sym_fsi_directive_decl] = STATE(1548), - [sym_preproc_line] = STATE(1548), - [aux_sym_long_identifier_repeat1] = STATE(1498), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [sym__dedent] = ACTIONS(3001), + [sym__newline] = ACTIONS(3993), }, [1549] = { [sym_block_comment] = STATE(1549), [sym_compiler_directive_decl] = STATE(1549), [sym_fsi_directive_decl] = STATE(1549), [sym_preproc_line] = STATE(1549), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3669), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_with] = ACTIONS(3669), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), - [sym__dedent] = ACTIONS(3671), + [aux_sym_rules_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4066), }, [1550] = { [sym_block_comment] = STATE(1550), [sym_compiler_directive_decl] = STATE(1550), [sym_fsi_directive_decl] = STATE(1550), [sym_preproc_line] = STATE(1550), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_with] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_DOT_DOT2] = ACTIONS(3478), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), - [sym__dedent] = ACTIONS(3478), + [aux_sym_long_identifier_repeat1] = STATE(1531), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_DOT_DOT2] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), }, [1551] = { [sym_block_comment] = STATE(1551), [sym_compiler_directive_decl] = STATE(1551), [sym_fsi_directive_decl] = STATE(1551), [sym_preproc_line] = STATE(1551), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_DOT_DOT2] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_AT_GT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(4071), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), - [sym__dedent] = ACTIONS(3698), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1552] = { [sym_block_comment] = STATE(1552), [sym_compiler_directive_decl] = STATE(1552), [sym_fsi_directive_decl] = STATE(1552), [sym_preproc_line] = STATE(1552), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_DOT_DOT] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1553] = { [sym_block_comment] = STATE(1553), [sym_compiler_directive_decl] = STATE(1553), [sym_fsi_directive_decl] = STATE(1553), [sym_preproc_line] = STATE(1553), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3683), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_DOT_DOT2] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), - [sym__dedent] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [anon_sym_POUNDelse] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1554] = { [sym_block_comment] = STATE(1554), [sym_compiler_directive_decl] = STATE(1554), [sym_fsi_directive_decl] = STATE(1554), [sym_preproc_line] = STATE(1554), - [aux_sym_sequential_expression_repeat1] = STATE(1789), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - [sym__dedent] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_DOT_DOT] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(4073), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1555] = { [sym_block_comment] = STATE(1555), [sym_compiler_directive_decl] = STATE(1555), [sym_fsi_directive_decl] = STATE(1555), [sym_preproc_line] = STATE(1555), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_DASH_GT] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [aux_sym_long_identifier_repeat1] = STATE(1539), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), }, [1556] = { [sym_block_comment] = STATE(1556), [sym_compiler_directive_decl] = STATE(1556), [sym_fsi_directive_decl] = STATE(1556), [sym_preproc_line] = STATE(1556), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_DOT_DOT2] = ACTIONS(3472), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), - [sym__dedent] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1557] = { [sym_block_comment] = STATE(1557), [sym_compiler_directive_decl] = STATE(1557), [sym_fsi_directive_decl] = STATE(1557), [sym_preproc_line] = STATE(1557), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_as] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), - [sym__dedent] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), }, [1558] = { [sym_block_comment] = STATE(1558), [sym_compiler_directive_decl] = STATE(1558), [sym_fsi_directive_decl] = STATE(1558), [sym_preproc_line] = STATE(1558), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_with] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_DOT_DOT2] = ACTIONS(3515), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), - [sym__dedent] = ACTIONS(3515), + [aux_sym_rules_repeat1] = STATE(1543), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [anon_sym_POUNDendif] = ACTIONS(3142), + [anon_sym_POUNDelse] = ACTIONS(3142), + [sym__newline] = ACTIONS(4077), }, [1559] = { [sym_block_comment] = STATE(1559), [sym_compiler_directive_decl] = STATE(1559), [sym_fsi_directive_decl] = STATE(1559), [sym_preproc_line] = STATE(1559), - [aux_sym_long_identifier_repeat1] = STATE(1726), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), + [aux_sym_long_identifier_repeat1] = STATE(1544), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [anon_sym_POUNDendif] = ACTIONS(2971), - [anon_sym_POUNDelse] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_EQ2] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + [sym__dedent] = ACTIONS(3000), }, [1560] = { [sym_block_comment] = STATE(1560), [sym_compiler_directive_decl] = STATE(1560), [sym_fsi_directive_decl] = STATE(1560), [sym_preproc_line] = STATE(1560), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_AT_GT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2946), - [aux_sym_decimal_token1] = ACTIONS(2792), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [aux_sym_long_identifier_repeat1] = STATE(1560), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4084), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1561] = { [sym_block_comment] = STATE(1561), [sym_compiler_directive_decl] = STATE(1561), [sym_fsi_directive_decl] = STATE(1561), [sym_preproc_line] = STATE(1561), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_DOT_DOT2] = ACTIONS(3548), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), - [sym__dedent] = ACTIONS(3548), + [aux_sym_long_identifier_repeat1] = STATE(1796), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [anon_sym_POUNDendif] = ACTIONS(3000), + [anon_sym_POUNDelse] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1562] = { [sym_block_comment] = STATE(1562), [sym_compiler_directive_decl] = STATE(1562), [sym_fsi_directive_decl] = STATE(1562), [sym_preproc_line] = STATE(1562), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_DOT_DOT] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [aux_sym_long_identifier_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_EQ2] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1563] = { [sym_block_comment] = STATE(1563), [sym_compiler_directive_decl] = STATE(1563), [sym_fsi_directive_decl] = STATE(1563), [sym_preproc_line] = STATE(1563), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_DASH_GT] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_DOT_DOT] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_DOT_DOT2] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), + [sym__dedent] = ACTIONS(3663), }, [1564] = { [sym_block_comment] = STATE(1564), [sym_compiler_directive_decl] = STATE(1564), [sym_fsi_directive_decl] = STATE(1564), [sym_preproc_line] = STATE(1564), - [aux_sym_sequential_expression_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_DOT_DOT2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4082), - [sym__dedent] = ACTIONS(3381), - }, - [1565] = { - [sym_block_comment] = STATE(1565), - [sym_compiler_directive_decl] = STATE(1565), - [sym_fsi_directive_decl] = STATE(1565), - [sym_preproc_line] = STATE(1565), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_as] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [anon_sym_POUNDendif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), + [sym__dedent] = ACTIONS(3537), + }, + [1565] = { + [sym_block_comment] = STATE(1565), + [sym_compiler_directive_decl] = STATE(1565), + [sym_fsi_directive_decl] = STATE(1565), + [sym_preproc_line] = STATE(1565), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + [sym__dedent] = ACTIONS(3505), }, [1566] = { [sym_block_comment] = STATE(1566), [sym_compiler_directive_decl] = STATE(1566), [sym_fsi_directive_decl] = STATE(1566), [sym_preproc_line] = STATE(1566), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3144), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - [sym__dedent] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4095), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [1567] = { [sym_block_comment] = STATE(1567), [sym_compiler_directive_decl] = STATE(1567), [sym_fsi_directive_decl] = STATE(1567), [sym_preproc_line] = STATE(1567), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_with] = ACTIONS(3583), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_DOT_DOT2] = ACTIONS(3581), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), - [sym__dedent] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_as] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), + [sym__dedent] = ACTIONS(3497), }, [1568] = { [sym_block_comment] = STATE(1568), [sym_compiler_directive_decl] = STATE(1568), [sym_fsi_directive_decl] = STATE(1568), [sym_preproc_line] = STATE(1568), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_AT_GT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_DOT_DOT2] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), + [sym__dedent] = ACTIONS(3680), }, [1569] = { [sym_block_comment] = STATE(1569), [sym_compiler_directive_decl] = STATE(1569), [sym_fsi_directive_decl] = STATE(1569), [sym_preproc_line] = STATE(1569), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_with] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_DOT_DOT2] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - [sym__dedent] = ACTIONS(3714), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_EQ2] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1570] = { [sym_block_comment] = STATE(1570), [sym_compiler_directive_decl] = STATE(1570), [sym_fsi_directive_decl] = STATE(1570), [sym_preproc_line] = STATE(1570), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_as] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), - [sym__dedent] = ACTIONS(3548), - }, - [1571] = { - [sym_block_comment] = STATE(1571), - [sym_compiler_directive_decl] = STATE(1571), - [sym_fsi_directive_decl] = STATE(1571), - [sym_preproc_line] = STATE(1571), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_DOT_DOT2] = ACTIONS(3615), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3539), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_DOT_DOT2] = ACTIONS(3541), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), - [sym__dedent] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), + [sym__dedent] = ACTIONS(3541), + }, + [1571] = { + [sym_block_comment] = STATE(1571), + [sym_compiler_directive_decl] = STATE(1571), + [sym_fsi_directive_decl] = STATE(1571), + [sym_preproc_line] = STATE(1571), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_DOT_DOT] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1572] = { [sym_block_comment] = STATE(1572), [sym_compiler_directive_decl] = STATE(1572), [sym_fsi_directive_decl] = STATE(1572), [sym_preproc_line] = STATE(1572), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_DOT_DOT2] = ACTIONS(3622), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - [sym__dedent] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [anon_sym_POUNDendif] = ACTIONS(3180), + [anon_sym_POUNDelse] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [1573] = { [sym_block_comment] = STATE(1573), [sym_compiler_directive_decl] = STATE(1573), [sym_fsi_directive_decl] = STATE(1573), [sym_preproc_line] = STATE(1573), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_DOT_DOT2] = ACTIONS(3634), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - [sym__dedent] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_as] = ACTIONS(3533), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), + [sym__dedent] = ACTIONS(3239), }, [1574] = { [sym_block_comment] = STATE(1574), [sym_compiler_directive_decl] = STATE(1574), [sym_fsi_directive_decl] = STATE(1574), [sym_preproc_line] = STATE(1574), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4087), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3641), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_DOT_DOT2] = ACTIONS(3643), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), + [sym__dedent] = ACTIONS(3643), }, [1575] = { [sym_block_comment] = STATE(1575), [sym_compiler_directive_decl] = STATE(1575), [sym_fsi_directive_decl] = STATE(1575), [sym_preproc_line] = STATE(1575), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_as] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_with] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), - [sym__dedent] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_DOT_DOT2] = ACTIONS(3557), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), + [sym__dedent] = ACTIONS(3557), }, [1576] = { [sym_block_comment] = STATE(1576), [sym_compiler_directive_decl] = STATE(1576), [sym_fsi_directive_decl] = STATE(1576), [sym_preproc_line] = STATE(1576), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3683), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), - [sym__dedent] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_DOT_DOT2] = ACTIONS(3639), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), + [sym__dedent] = ACTIONS(3639), }, [1577] = { [sym_block_comment] = STATE(1577), [sym_compiler_directive_decl] = STATE(1577), [sym_fsi_directive_decl] = STATE(1577), [sym_preproc_line] = STATE(1577), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), - [sym__dedent] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_AT_GT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1578] = { [sym_block_comment] = STATE(1578), [sym_compiler_directive_decl] = STATE(1578), [sym_fsi_directive_decl] = STATE(1578), [sym_preproc_line] = STATE(1578), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - [sym__dedent] = ACTIONS(3144), + [aux_sym_long_identifier_repeat1] = STATE(1560), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1579] = { [sym_block_comment] = STATE(1579), [sym_compiler_directive_decl] = STATE(1579), [sym_fsi_directive_decl] = STATE(1579), [sym_preproc_line] = STATE(1579), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_as] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), - [sym__dedent] = ACTIONS(3472), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_AT_GT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2938), + [aux_sym_decimal_token1] = ACTIONS(2784), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [1580] = { [sym_block_comment] = STATE(1580), [sym_compiler_directive_decl] = STATE(1580), [sym_fsi_directive_decl] = STATE(1580), [sym_preproc_line] = STATE(1580), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4099), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [1581] = { + [sym_block_comment] = STATE(1581), + [sym_compiler_directive_decl] = STATE(1581), + [sym_fsi_directive_decl] = STATE(1581), + [sym_preproc_line] = STATE(1581), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [anon_sym_POUNDelse] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1582] = { + [sym_block_comment] = STATE(1582), + [sym_compiler_directive_decl] = STATE(1582), + [sym_fsi_directive_decl] = STATE(1582), + [sym_preproc_line] = STATE(1582), + [aux_sym_sequential_expression_repeat1] = STATE(1603), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_DASH_GT] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_DOT_DOT] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + }, + [1583] = { + [sym_block_comment] = STATE(1583), + [sym_compiler_directive_decl] = STATE(1583), + [sym_fsi_directive_decl] = STATE(1583), + [sym_preproc_line] = STATE(1583), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4101), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [anon_sym_POUNDendif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [1584] = { + [sym_block_comment] = STATE(1584), + [sym_compiler_directive_decl] = STATE(1584), + [sym_fsi_directive_decl] = STATE(1584), + [sym_preproc_line] = STATE(1584), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_as] = ACTIONS(3545), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), + [sym__dedent] = ACTIONS(3543), + }, + [1585] = { + [sym_block_comment] = STATE(1585), + [sym_compiler_directive_decl] = STATE(1585), + [sym_fsi_directive_decl] = STATE(1585), + [sym_preproc_line] = STATE(1585), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_DOT_DOT2] = ACTIONS(3427), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), + [sym__dedent] = ACTIONS(3427), + }, + [1586] = { + [sym_block_comment] = STATE(1586), + [sym_compiler_directive_decl] = STATE(1586), + [sym_fsi_directive_decl] = STATE(1586), + [sym_preproc_line] = STATE(1586), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_with] = ACTIONS(3669), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_DOT_DOT2] = ACTIONS(3671), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), - [sym__dedent] = ACTIONS(3671), - }, - [1581] = { - [sym_block_comment] = STATE(1581), - [sym_compiler_directive_decl] = STATE(1581), - [sym_fsi_directive_decl] = STATE(1581), - [sym_preproc_line] = STATE(1581), - [aux_sym_sequential_expression_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_DOT_DOT2] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - }, - [1582] = { - [sym_block_comment] = STATE(1582), - [sym_compiler_directive_decl] = STATE(1582), - [sym_fsi_directive_decl] = STATE(1582), - [sym_preproc_line] = STATE(1582), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3665), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_DOT_DOT2] = ACTIONS(3667), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), - [sym__dedent] = ACTIONS(3667), - }, - [1583] = { - [sym_block_comment] = STATE(1583), - [sym_compiler_directive_decl] = STATE(1583), - [sym_fsi_directive_decl] = STATE(1583), - [sym_preproc_line] = STATE(1583), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - [sym__dedent] = ACTIONS(3728), - }, - [1584] = { - [sym_block_comment] = STATE(1584), - [sym_compiler_directive_decl] = STATE(1584), - [sym_fsi_directive_decl] = STATE(1584), - [sym_preproc_line] = STATE(1584), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4089), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), - }, - [1585] = { - [sym_block_comment] = STATE(1585), - [sym_compiler_directive_decl] = STATE(1585), - [sym_fsi_directive_decl] = STATE(1585), - [sym_preproc_line] = STATE(1585), - [aux_sym_sequential_expression_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_DOT_DOT2] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - [sym__dedent] = ACTIONS(3349), - }, - [1586] = { - [sym_block_comment] = STATE(1586), - [sym_compiler_directive_decl] = STATE(1586), - [sym_fsi_directive_decl] = STATE(1586), - [sym_preproc_line] = STATE(1586), - [aux_sym_rules_repeat1] = STATE(1645), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4093), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1587] = { [sym_block_comment] = STATE(1587), [sym_compiler_directive_decl] = STATE(1587), [sym_fsi_directive_decl] = STATE(1587), [sym_preproc_line] = STATE(1587), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_AT_GT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_DOT_DOT2] = ACTIONS(3570), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), + [sym__dedent] = ACTIONS(3570), }, [1588] = { [sym_block_comment] = STATE(1588), [sym_compiler_directive_decl] = STATE(1588), [sym_fsi_directive_decl] = STATE(1588), [sym_preproc_line] = STATE(1588), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [aux_sym_sequential_expression_repeat1] = STATE(1635), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3390), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_DOT_DOT2] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1589] = { [sym_block_comment] = STATE(1589), [sym_compiler_directive_decl] = STATE(1589), [sym_fsi_directive_decl] = STATE(1589), [sym_preproc_line] = STATE(1589), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - [sym__dedent] = ACTIONS(3688), + [aux_sym_sequential_expression_repeat1] = STATE(1805), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_DOT_DOT2] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + [sym__dedent] = ACTIONS(3390), }, [1590] = { [sym_block_comment] = STATE(1590), [sym_compiler_directive_decl] = STATE(1590), [sym_fsi_directive_decl] = STATE(1590), [sym_preproc_line] = STATE(1590), - [sym_identifier] = ACTIONS(3165), + [aux_sym_rules_repeat1] = STATE(1832), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4105), + }, + [1591] = { + [sym_block_comment] = STATE(1591), + [sym_compiler_directive_decl] = STATE(1591), + [sym_fsi_directive_decl] = STATE(1591), + [sym_preproc_line] = STATE(1591), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [anon_sym_POUNDendif] = ACTIONS(3260), + [anon_sym_POUNDelse] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + }, + [1592] = { + [sym_block_comment] = STATE(1592), + [sym_compiler_directive_decl] = STATE(1592), + [sym_fsi_directive_decl] = STATE(1592), + [sym_preproc_line] = STATE(1592), + [aux_sym_rules_repeat1] = STATE(1695), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1591] = { - [sym_block_comment] = STATE(1591), - [sym_compiler_directive_decl] = STATE(1591), - [sym_fsi_directive_decl] = STATE(1591), - [sym_preproc_line] = STATE(1591), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), - }, - [1592] = { - [sym_block_comment] = STATE(1592), - [sym_compiler_directive_decl] = STATE(1592), - [sym_fsi_directive_decl] = STATE(1592), - [sym_preproc_line] = STATE(1592), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [sym__newline] = ACTIONS(4110), }, [1593] = { [sym_block_comment] = STATE(1593), [sym_compiler_directive_decl] = STATE(1593), [sym_fsi_directive_decl] = STATE(1593), [sym_preproc_line] = STATE(1593), - [sym_identifier] = ACTIONS(3599), + [aux_sym_rules_repeat1] = STATE(1651), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_AT_GT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4115), + }, + [1594] = { + [sym_block_comment] = STATE(1594), + [sym_compiler_directive_decl] = STATE(1594), + [sym_fsi_directive_decl] = STATE(1594), + [sym_preproc_line] = STATE(1594), + [sym_identifier] = ACTIONS(3603), [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3603), [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3603), [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_with] = ACTIONS(3599), - [anon_sym_new] = ACTIONS(3599), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3603), [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), [anon_sym_COLON_GT] = ACTIONS(3601), [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), [anon_sym_DOT_LBRACK] = ACTIONS(3601), [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), + [anon_sym_use] = ACTIONS(3603), [anon_sym_use_BANG] = ACTIONS(3601), [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), [anon_sym_DOT_DOT2] = ACTIONS(3601), - [anon_sym_or] = ACTIONS(3599), + [anon_sym_or] = ACTIONS(3603), [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), [anon_sym_AT_DQUOTE] = ACTIONS(3601), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), + [sym_bool] = ACTIONS(3603), [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), + [aux_sym_prefix_op_token1] = ACTIONS(3603), [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -226381,575 +226857,1421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3601), [sym__dedent] = ACTIONS(3601), }, - [1594] = { - [sym_block_comment] = STATE(1594), - [sym_compiler_directive_decl] = STATE(1594), - [sym_fsi_directive_decl] = STATE(1594), - [sym_preproc_line] = STATE(1594), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_AT_GT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, [1595] = { [sym_block_comment] = STATE(1595), [sym_compiler_directive_decl] = STATE(1595), [sym_fsi_directive_decl] = STATE(1595), [sym_preproc_line] = STATE(1595), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_with] = ACTIONS(3595), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_DOT_DOT2] = ACTIONS(3597), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), - [sym__dedent] = ACTIONS(3597), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), + [sym__dedent] = ACTIONS(3588), }, [1596] = { [sym_block_comment] = STATE(1596), [sym_compiler_directive_decl] = STATE(1596), [sym_fsi_directive_decl] = STATE(1596), [sym_preproc_line] = STATE(1596), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_as] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_as] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), + [sym__dedent] = ACTIONS(3527), }, [1597] = { [sym_block_comment] = STATE(1597), [sym_compiler_directive_decl] = STATE(1597), [sym_fsi_directive_decl] = STATE(1597), [sym_preproc_line] = STATE(1597), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_as] = ACTIONS(3583), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_with] = ACTIONS(3583), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), - [sym__dedent] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_DOT_DOT2] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), + [sym__dedent] = ACTIONS(3469), }, [1598] = { [sym_block_comment] = STATE(1598), [sym_compiler_directive_decl] = STATE(1598), [sym_fsi_directive_decl] = STATE(1598), [sym_preproc_line] = STATE(1598), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), - [sym__dedent] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3134), + [anon_sym_POUNDendif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), }, [1599] = { [sym_block_comment] = STATE(1599), [sym_compiler_directive_decl] = STATE(1599), [sym_fsi_directive_decl] = STATE(1599), [sym_preproc_line] = STATE(1599), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_as] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - [sym__dedent] = ACTIONS(3622), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), + [sym__dedent] = ACTIONS(3584), }, [1600] = { [sym_block_comment] = STATE(1600), [sym_compiler_directive_decl] = STATE(1600), [sym_fsi_directive_decl] = STATE(1600), [sym_preproc_line] = STATE(1600), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4118), + [sym__dedent] = ACTIONS(3297), + }, + [1601] = { + [sym_block_comment] = STATE(1601), + [sym_compiler_directive_decl] = STATE(1601), + [sym_fsi_directive_decl] = STATE(1601), + [sym_preproc_line] = STATE(1601), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4121), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [anon_sym_POUNDendif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1602] = { + [sym_block_comment] = STATE(1602), + [sym_compiler_directive_decl] = STATE(1602), + [sym_fsi_directive_decl] = STATE(1602), + [sym_preproc_line] = STATE(1602), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_AT_GT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1603] = { + [sym_block_comment] = STATE(1603), + [sym_compiler_directive_decl] = STATE(1603), + [sym_fsi_directive_decl] = STATE(1603), + [sym_preproc_line] = STATE(1603), + [aux_sym_sequential_expression_repeat1] = STATE(1603), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_DASH_GT] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4123), + }, + [1604] = { + [sym_block_comment] = STATE(1604), + [sym_compiler_directive_decl] = STATE(1604), + [sym_fsi_directive_decl] = STATE(1604), + [sym_preproc_line] = STATE(1604), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_DOT_DOT2] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), + [sym__dedent] = ACTIONS(3580), + }, + [1605] = { + [sym_block_comment] = STATE(1605), + [sym_compiler_directive_decl] = STATE(1605), + [sym_fsi_directive_decl] = STATE(1605), + [sym_preproc_line] = STATE(1605), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_DOT_DOT] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1606] = { + [sym_block_comment] = STATE(1606), + [sym_compiler_directive_decl] = STATE(1606), + [sym_fsi_directive_decl] = STATE(1606), + [sym_preproc_line] = STATE(1606), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_AT_AT_GT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1607] = { + [sym_block_comment] = STATE(1607), + [sym_compiler_directive_decl] = STATE(1607), + [sym_fsi_directive_decl] = STATE(1607), + [sym_preproc_line] = STATE(1607), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1608] = { + [sym_block_comment] = STATE(1608), + [sym_compiler_directive_decl] = STATE(1608), + [sym_fsi_directive_decl] = STATE(1608), + [sym_preproc_line] = STATE(1608), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1609] = { + [sym_block_comment] = STATE(1609), + [sym_compiler_directive_decl] = STATE(1609), + [sym_fsi_directive_decl] = STATE(1609), + [sym_preproc_line] = STATE(1609), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), + [sym__dedent] = ACTIONS(3663), + }, + [1610] = { + [sym_block_comment] = STATE(1610), + [sym_compiler_directive_decl] = STATE(1610), + [sym_fsi_directive_decl] = STATE(1610), + [sym_preproc_line] = STATE(1610), [sym_identifier] = ACTIONS(3188), [anon_sym_EQ] = ACTIONS(3190), [anon_sym_COLON] = ACTIONS(3188), @@ -226984,6 +228306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), [anon_sym_for] = ACTIONS(3188), [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), [anon_sym_if] = ACTIONS(3188), [anon_sym_fun] = ACTIONS(3188), [anon_sym_try] = ACTIONS(3188), @@ -227027,10 +228351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), [sym_int] = ACTIONS(3188), [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -227039,2855 +228361,2667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3190), [sym__newline] = ACTIONS(3190), }, - [1601] = { - [sym_block_comment] = STATE(1601), - [sym_compiler_directive_decl] = STATE(1601), - [sym_fsi_directive_decl] = STATE(1601), - [sym_preproc_line] = STATE(1601), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - [sym__dedent] = ACTIONS(3634), - }, - [1602] = { - [sym_block_comment] = STATE(1602), - [sym_compiler_directive_decl] = STATE(1602), - [sym_fsi_directive_decl] = STATE(1602), - [sym_preproc_line] = STATE(1602), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), - }, - [1603] = { - [sym_block_comment] = STATE(1603), - [sym_compiler_directive_decl] = STATE(1603), - [sym_fsi_directive_decl] = STATE(1603), - [sym_preproc_line] = STATE(1603), - [aux_sym_rules_repeat1] = STATE(1661), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [anon_sym_POUNDendif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4098), - }, - [1604] = { - [sym_block_comment] = STATE(1604), - [sym_compiler_directive_decl] = STATE(1604), - [sym_fsi_directive_decl] = STATE(1604), - [sym_preproc_line] = STATE(1604), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_with] = ACTIONS(3591), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_DOT_DOT2] = ACTIONS(3593), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), - [sym__dedent] = ACTIONS(3593), - }, - [1605] = { - [sym_block_comment] = STATE(1605), - [sym_compiler_directive_decl] = STATE(1605), - [sym_fsi_directive_decl] = STATE(1605), - [sym_preproc_line] = STATE(1605), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1606] = { - [sym_block_comment] = STATE(1606), - [sym_compiler_directive_decl] = STATE(1606), - [sym_fsi_directive_decl] = STATE(1606), - [sym_preproc_line] = STATE(1606), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_with] = ACTIONS(3679), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - [sym__dedent] = ACTIONS(3677), - }, - [1607] = { - [sym_block_comment] = STATE(1607), - [sym_compiler_directive_decl] = STATE(1607), - [sym_fsi_directive_decl] = STATE(1607), - [sym_preproc_line] = STATE(1607), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3587), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_DOT_DOT2] = ACTIONS(3589), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), - [sym__dedent] = ACTIONS(3589), - }, - [1608] = { - [sym_block_comment] = STATE(1608), - [sym_compiler_directive_decl] = STATE(1608), - [sym_fsi_directive_decl] = STATE(1608), - [sym_preproc_line] = STATE(1608), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), - [sym__dedent] = ACTIONS(3579), - }, - [1609] = { - [sym_block_comment] = STATE(1609), - [sym_compiler_directive_decl] = STATE(1609), - [sym_fsi_directive_decl] = STATE(1609), - [sym_preproc_line] = STATE(1609), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_DOT_DOT2] = ACTIONS(3575), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - [sym__dedent] = ACTIONS(3575), - }, - [1610] = { - [sym_block_comment] = STATE(1610), - [sym_compiler_directive_decl] = STATE(1610), - [sym_fsi_directive_decl] = STATE(1610), - [sym_preproc_line] = STATE(1610), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_DOT_DOT2] = ACTIONS(3571), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), - [sym__dedent] = ACTIONS(3571), - }, [1611] = { [sym_block_comment] = STATE(1611), [sym_compiler_directive_decl] = STATE(1611), [sym_fsi_directive_decl] = STATE(1611), [sym_preproc_line] = STATE(1611), - [aux_sym_rules_repeat1] = STATE(1611), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4104), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_as] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), + [sym__dedent] = ACTIONS(3523), }, [1612] = { [sym_block_comment] = STATE(1612), [sym_compiler_directive_decl] = STATE(1612), [sym_fsi_directive_decl] = STATE(1612), [sym_preproc_line] = STATE(1612), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3565), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_DOT_DOT2] = ACTIONS(3567), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), - [sym__dedent] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4126), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [anon_sym_POUNDendif] = ACTIONS(3356), + [anon_sym_POUNDelse] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [1613] = { [sym_block_comment] = STATE(1613), [sym_compiler_directive_decl] = STATE(1613), [sym_fsi_directive_decl] = STATE(1613), [sym_preproc_line] = STATE(1613), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), + [aux_sym_rules_repeat1] = STATE(1722), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_with] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_DOT_DOT2] = ACTIONS(3563), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - [sym__dedent] = ACTIONS(3563), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4110), }, [1614] = { [sym_block_comment] = STATE(1614), [sym_compiler_directive_decl] = STATE(1614), [sym_fsi_directive_decl] = STATE(1614), [sym_preproc_line] = STATE(1614), - [aux_sym_rules_repeat1] = STATE(1611), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4109), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1615] = { [sym_block_comment] = STATE(1615), [sym_compiler_directive_decl] = STATE(1615), [sym_fsi_directive_decl] = STATE(1615), [sym_preproc_line] = STATE(1615), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [anon_sym_POUNDendif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [1616] = { [sym_block_comment] = STATE(1616), [sym_compiler_directive_decl] = STATE(1616), [sym_fsi_directive_decl] = STATE(1616), [sym_preproc_line] = STATE(1616), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_as] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_with] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), - [sym__dedent] = ACTIONS(3735), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), + [sym__dedent] = ACTIONS(3584), }, [1617] = { [sym_block_comment] = STATE(1617), [sym_compiler_directive_decl] = STATE(1617), [sym_fsi_directive_decl] = STATE(1617), [sym_preproc_line] = STATE(1617), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_EQ2] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [aux_sym_long_identifier_repeat1] = STATE(1617), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1618] = { [sym_block_comment] = STATE(1618), [sym_compiler_directive_decl] = STATE(1618), [sym_fsi_directive_decl] = STATE(1618), [sym_preproc_line] = STATE(1618), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), + [sym__dedent] = ACTIONS(3596), }, [1619] = { [sym_block_comment] = STATE(1619), [sym_compiler_directive_decl] = STATE(1619), [sym_fsi_directive_decl] = STATE(1619), [sym_preproc_line] = STATE(1619), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - [sym__dedent] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_DOT_DOT2] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), + [sym__dedent] = ACTIONS(3684), }, [1620] = { [sym_block_comment] = STATE(1620), [sym_compiler_directive_decl] = STATE(1620), [sym_fsi_directive_decl] = STATE(1620), [sym_preproc_line] = STATE(1620), - [aux_sym_sequential_expression_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_DOT_DOT2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4114), + [aux_sym_rules_repeat1] = STATE(1743), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [anon_sym_POUNDendif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4133), }, [1621] = { [sym_block_comment] = STATE(1621), [sym_compiler_directive_decl] = STATE(1621), [sym_fsi_directive_decl] = STATE(1621), [sym_preproc_line] = STATE(1621), - [aux_sym_sequential_expression_repeat1] = STATE(1621), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4117), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), }, [1622] = { [sym_block_comment] = STATE(1622), [sym_compiler_directive_decl] = STATE(1622), [sym_fsi_directive_decl] = STATE(1622), [sym_preproc_line] = STATE(1622), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [anon_sym_POUNDendif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1623] = { [sym_block_comment] = STATE(1623), [sym_compiler_directive_decl] = STATE(1623), [sym_fsi_directive_decl] = STATE(1623), [sym_preproc_line] = STATE(1623), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), - [sym__dedent] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_DOT_DOT2] = ACTIONS(3547), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), + [sym__dedent] = ACTIONS(3547), }, [1624] = { [sym_block_comment] = STATE(1624), [sym_compiler_directive_decl] = STATE(1624), [sym_fsi_directive_decl] = STATE(1624), [sym_preproc_line] = STATE(1624), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), - [sym__dedent] = ACTIONS(3395), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [1625] = { [sym_block_comment] = STATE(1625), [sym_compiler_directive_decl] = STATE(1625), [sym_fsi_directive_decl] = STATE(1625), [sym_preproc_line] = STATE(1625), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4120), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_DOT_DOT2] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), + [sym__dedent] = ACTIONS(3665), }, [1626] = { [sym_block_comment] = STATE(1626), [sym_compiler_directive_decl] = STATE(1626), [sym_fsi_directive_decl] = STATE(1626), [sym_preproc_line] = STATE(1626), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - [sym__dedent] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_AT_AT_GT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1627] = { [sym_block_comment] = STATE(1627), [sym_compiler_directive_decl] = STATE(1627), [sym_fsi_directive_decl] = STATE(1627), [sym_preproc_line] = STATE(1627), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2942), - [aux_sym_decimal_token1] = ACTIONS(2848), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [anon_sym_POUNDendif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1628] = { [sym_block_comment] = STATE(1628), [sym_compiler_directive_decl] = STATE(1628), [sym_fsi_directive_decl] = STATE(1628), [sym_preproc_line] = STATE(1628), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3519), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_DOT_DOT2] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), - [sym__dedent] = ACTIONS(3521), - }, - [1629] = { - [sym_block_comment] = STATE(1629), - [sym_compiler_directive_decl] = STATE(1629), - [sym_fsi_directive_decl] = STATE(1629), - [sym_preproc_line] = STATE(1629), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_as] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_AT_AT_GT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - }, - [1630] = { - [sym_block_comment] = STATE(1630), - [sym_compiler_directive_decl] = STATE(1630), - [sym_fsi_directive_decl] = STATE(1630), - [sym_preproc_line] = STATE(1630), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_with] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - [sym__dedent] = ACTIONS(3714), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), + [sym__dedent] = ACTIONS(3559), }, - [1631] = { - [sym_block_comment] = STATE(1631), - [sym_compiler_directive_decl] = STATE(1631), - [sym_fsi_directive_decl] = STATE(1631), - [sym_preproc_line] = STATE(1631), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), + [1629] = { + [sym_block_comment] = STATE(1629), + [sym_compiler_directive_decl] = STATE(1629), + [sym_fsi_directive_decl] = STATE(1629), + [sym_preproc_line] = STATE(1629), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_as] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3517), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), + [sym__dedent] = ACTIONS(3519), + }, + [1630] = { + [sym_block_comment] = STATE(1630), + [sym_compiler_directive_decl] = STATE(1630), + [sym_fsi_directive_decl] = STATE(1630), + [sym_preproc_line] = STATE(1630), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_DOT_DOT2] = ACTIONS(3609), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), + [sym__dedent] = ACTIONS(3609), + }, + [1631] = { + [sym_block_comment] = STATE(1631), + [sym_compiler_directive_decl] = STATE(1631), + [sym_fsi_directive_decl] = STATE(1631), + [sym_preproc_line] = STATE(1631), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_as] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3641), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), + [sym__dedent] = ACTIONS(3643), + }, + [1632] = { + [sym_block_comment] = STATE(1632), + [sym_compiler_directive_decl] = STATE(1632), + [sym_fsi_directive_decl] = STATE(1632), + [sym_preproc_line] = STATE(1632), + [aux_sym_sequential_expression_repeat1] = STATE(1632), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4136), + }, + [1633] = { + [sym_block_comment] = STATE(1633), + [sym_compiler_directive_decl] = STATE(1633), + [sym_fsi_directive_decl] = STATE(1633), + [sym_preproc_line] = STATE(1633), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4139), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [1634] = { + [sym_block_comment] = STATE(1634), + [sym_compiler_directive_decl] = STATE(1634), + [sym_fsi_directive_decl] = STATE(1634), + [sym_preproc_line] = STATE(1634), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), + [sym__dedent] = ACTIONS(3623), + }, + [1635] = { + [sym_block_comment] = STATE(1635), + [sym_compiler_directive_decl] = STATE(1635), + [sym_fsi_directive_decl] = STATE(1635), + [sym_preproc_line] = STATE(1635), + [aux_sym_sequential_expression_repeat1] = STATE(1635), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_RBRACK] = ACTIONS(3297), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_DOT_DOT2] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4141), + }, + [1636] = { + [sym_block_comment] = STATE(1636), + [sym_compiler_directive_decl] = STATE(1636), + [sym_fsi_directive_decl] = STATE(1636), + [sym_preproc_line] = STATE(1636), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_DOT_DOT2] = ACTIONS(3613), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), + [sym__dedent] = ACTIONS(3613), + }, + [1637] = { + [sym_block_comment] = STATE(1637), + [sym_compiler_directive_decl] = STATE(1637), + [sym_fsi_directive_decl] = STATE(1637), + [sym_preproc_line] = STATE(1637), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), + }, + [1638] = { + [sym_block_comment] = STATE(1638), + [sym_compiler_directive_decl] = STATE(1638), + [sym_fsi_directive_decl] = STATE(1638), + [sym_preproc_line] = STATE(1638), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_DOT_DOT2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), + }, + [1639] = { + [sym_block_comment] = STATE(1639), + [sym_compiler_directive_decl] = STATE(1639), + [sym_fsi_directive_decl] = STATE(1639), + [sym_preproc_line] = STATE(1639), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), [anon_sym_yield] = ACTIONS(2528), [anon_sym_yield_BANG] = ACTIONS(2526), [anon_sym_lazy] = ACTIONS(2528), @@ -229910,7 +231044,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -229942,2845 +231075,3034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), [anon_sym_f] = ACTIONS(2934), - [aux_sym_decimal_token1] = ACTIONS(2764), + [aux_sym_decimal_token1] = ACTIONS(2756), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [1632] = { - [sym_block_comment] = STATE(1632), - [sym_compiler_directive_decl] = STATE(1632), - [sym_fsi_directive_decl] = STATE(1632), - [sym_preproc_line] = STATE(1632), - [aux_sym_long_identifier_repeat1] = STATE(1813), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [1633] = { - [sym_block_comment] = STATE(1633), - [sym_compiler_directive_decl] = STATE(1633), - [sym_fsi_directive_decl] = STATE(1633), - [sym_preproc_line] = STATE(1633), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [1640] = { + [sym_block_comment] = STATE(1640), + [sym_compiler_directive_decl] = STATE(1640), + [sym_fsi_directive_decl] = STATE(1640), + [sym_preproc_line] = STATE(1640), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_DOT_DOT2] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3669), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_DOT_DOT2] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), - [sym__dedent] = ACTIONS(3513), - }, - [1634] = { - [sym_block_comment] = STATE(1634), - [sym_compiler_directive_decl] = STATE(1634), - [sym_fsi_directive_decl] = STATE(1634), - [sym_preproc_line] = STATE(1634), - [aux_sym_rules_repeat1] = STATE(1611), - [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_PIPE] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4126), - }, - [1635] = { - [sym_block_comment] = STATE(1635), - [sym_compiler_directive_decl] = STATE(1635), - [sym_fsi_directive_decl] = STATE(1635), - [sym_preproc_line] = STATE(1635), - [aux_sym_rules_repeat1] = STATE(1614), - [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_PIPE] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4126), - }, - [1636] = { - [sym_block_comment] = STATE(1636), - [sym_compiler_directive_decl] = STATE(1636), - [sym_fsi_directive_decl] = STATE(1636), - [sym_preproc_line] = STATE(1636), - [aux_sym_rules_repeat1] = STATE(1636), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_AT_AT_GT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4132), - }, - [1637] = { - [sym_block_comment] = STATE(1637), - [sym_compiler_directive_decl] = STATE(1637), - [sym_fsi_directive_decl] = STATE(1637), - [sym_preproc_line] = STATE(1637), - [aux_sym_rules_repeat1] = STATE(1636), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_AT_AT_GT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4137), - }, - [1638] = { - [sym_block_comment] = STATE(1638), - [sym_compiler_directive_decl] = STATE(1638), - [sym_fsi_directive_decl] = STATE(1638), - [sym_preproc_line] = STATE(1638), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - }, - [1639] = { - [sym_block_comment] = STATE(1639), - [sym_compiler_directive_decl] = STATE(1639), - [sym_fsi_directive_decl] = STATE(1639), - [sym_preproc_line] = STATE(1639), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4087), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - }, - [1640] = { - [sym_block_comment] = STATE(1640), - [sym_compiler_directive_decl] = STATE(1640), - [sym_fsi_directive_decl] = STATE(1640), - [sym_preproc_line] = STATE(1640), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4142), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [anon_sym_POUNDendif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), + [sym__dedent] = ACTIONS(3671), }, [1641] = { [sym_block_comment] = STATE(1641), [sym_compiler_directive_decl] = STATE(1641), [sym_fsi_directive_decl] = STATE(1641), [sym_preproc_line] = STATE(1641), - [aux_sym_long_identifier_repeat1] = STATE(1559), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [anon_sym_POUNDendif] = ACTIONS(3001), - [anon_sym_POUNDelse] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_DOT_DOT2] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + [sym__dedent] = ACTIONS(3505), }, [1642] = { [sym_block_comment] = STATE(1642), [sym_compiler_directive_decl] = STATE(1642), [sym_fsi_directive_decl] = STATE(1642), [sym_preproc_line] = STATE(1642), - [aux_sym_sequential_expression_repeat1] = STATE(1642), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [anon_sym_POUNDendif] = ACTIONS(3381), - [anon_sym_POUNDelse] = ACTIONS(3381), - [sym__newline] = ACTIONS(4148), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_AT_AT_GT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1643] = { [sym_block_comment] = STATE(1643), [sym_compiler_directive_decl] = STATE(1643), [sym_fsi_directive_decl] = STATE(1643), [sym_preproc_line] = STATE(1643), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_as] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3665), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), - [sym__dedent] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4144), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [1644] = { [sym_block_comment] = STATE(1644), [sym_compiler_directive_decl] = STATE(1644), [sym_fsi_directive_decl] = STATE(1644), [sym_preproc_line] = STATE(1644), - [aux_sym_rules_repeat1] = STATE(1680), - [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_PIPE] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4151), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DOT_DOT2] = ACTIONS(3497), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), + [sym__dedent] = ACTIONS(3497), }, [1645] = { [sym_block_comment] = STATE(1645), [sym_compiler_directive_decl] = STATE(1645), [sym_fsi_directive_decl] = STATE(1645), [sym_preproc_line] = STATE(1645), - [aux_sym_rules_repeat1] = STATE(1683), - [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_PIPE] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4151), + [aux_sym_rules_repeat1] = STATE(1645), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_AT_AT_GT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4149), }, [1646] = { [sym_block_comment] = STATE(1646), [sym_compiler_directive_decl] = STATE(1646), [sym_fsi_directive_decl] = STATE(1646), [sym_preproc_line] = STATE(1646), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4087), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [aux_sym_rules_repeat1] = STATE(1645), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_AT_AT_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4154), }, [1647] = { [sym_block_comment] = STATE(1647), [sym_compiler_directive_decl] = STATE(1647), [sym_fsi_directive_decl] = STATE(1647), [sym_preproc_line] = STATE(1647), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_as] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), + [sym__dedent] = ACTIONS(3633), + }, + [1648] = { + [sym_block_comment] = STATE(1648), + [sym_compiler_directive_decl] = STATE(1648), + [sym_fsi_directive_decl] = STATE(1648), + [sym_preproc_line] = STATE(1648), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_as] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3539), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), - }, - [1648] = { - [sym_block_comment] = STATE(1648), - [sym_compiler_directive_decl] = STATE(1648), - [sym_fsi_directive_decl] = STATE(1648), - [sym_preproc_line] = STATE(1648), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), - [sym__dedent] = ACTIONS(3640), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), + [sym__dedent] = ACTIONS(3541), }, [1649] = { [sym_block_comment] = STATE(1649), [sym_compiler_directive_decl] = STATE(1649), [sym_fsi_directive_decl] = STATE(1649), [sym_preproc_line] = STATE(1649), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), - [sym__dedent] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3215), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), }, [1650] = { [sym_block_comment] = STATE(1650), [sym_compiler_directive_decl] = STATE(1650), [sym_fsi_directive_decl] = STATE(1650), [sym_preproc_line] = STATE(1650), - [sym_identifier] = ACTIONS(3165), + [aux_sym_rules_repeat1] = STATE(1686), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_AT_GT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym__newline] = ACTIONS(4157), }, [1651] = { [sym_block_comment] = STATE(1651), [sym_compiler_directive_decl] = STATE(1651), [sym_fsi_directive_decl] = STATE(1651), [sym_preproc_line] = STATE(1651), - [aux_sym_sequential_expression_repeat1] = STATE(1621), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [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(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [aux_sym_rules_repeat1] = STATE(1689), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4157), }, [1652] = { [sym_block_comment] = STATE(1652), [sym_compiler_directive_decl] = STATE(1652), [sym_fsi_directive_decl] = STATE(1652), [sym_preproc_line] = STATE(1652), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_DOT_DOT2] = ACTIONS(3494), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), - [sym__dedent] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [anon_sym_POUNDendif] = ACTIONS(3304), + [anon_sym_POUNDelse] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [1653] = { [sym_block_comment] = STATE(1653), [sym_compiler_directive_decl] = STATE(1653), [sym_fsi_directive_decl] = STATE(1653), [sym_preproc_line] = STATE(1653), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_as] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_with] = ACTIONS(3599), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_AT_GT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [sym__dedent] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), }, [1654] = { [sym_block_comment] = STATE(1654), [sym_compiler_directive_decl] = STATE(1654), [sym_fsi_directive_decl] = STATE(1654), [sym_preproc_line] = STATE(1654), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), - [sym__dedent] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_DOT_DOT2] = ACTIONS(3239), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), + [sym__dedent] = ACTIONS(3239), }, [1655] = { [sym_block_comment] = STATE(1655), [sym_compiler_directive_decl] = STATE(1655), [sym_fsi_directive_decl] = STATE(1655), [sym_preproc_line] = STATE(1655), - [aux_sym_rules_repeat1] = STATE(1634), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_GT] = ACTIONS(3154), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4154), + [aux_sym_rules_repeat1] = STATE(1655), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_DOT_DOT] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4163), }, [1656] = { [sym_block_comment] = STATE(1656), [sym_compiler_directive_decl] = STATE(1656), [sym_fsi_directive_decl] = STATE(1656), [sym_preproc_line] = STATE(1656), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_as] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_with] = ACTIONS(3595), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), - [sym__dedent] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_DOT_DOT2] = ACTIONS(3625), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), + [sym__dedent] = ACTIONS(3625), }, [1657] = { [sym_block_comment] = STATE(1657), [sym_compiler_directive_decl] = STATE(1657), [sym_fsi_directive_decl] = STATE(1657), [sym_preproc_line] = STATE(1657), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_AT_AT_GT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_DASH_GT] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1658] = { [sym_block_comment] = STATE(1658), [sym_compiler_directive_decl] = STATE(1658), [sym_fsi_directive_decl] = STATE(1658), [sym_preproc_line] = STATE(1658), - [aux_sym_rules_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_PIPE] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [anon_sym_POUNDendif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4157), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_DOT_DOT2] = ACTIONS(3559), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), + [sym__dedent] = ACTIONS(3559), }, [1659] = { [sym_block_comment] = STATE(1659), [sym_compiler_directive_decl] = STATE(1659), [sym_fsi_directive_decl] = STATE(1659), [sym_preproc_line] = STATE(1659), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_DOT_DOT2] = ACTIONS(3490), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), - [sym__dedent] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_as] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), + [sym__dedent] = ACTIONS(3557), }, [1660] = { [sym_block_comment] = STATE(1660), [sym_compiler_directive_decl] = STATE(1660), [sym_fsi_directive_decl] = STATE(1660), [sym_preproc_line] = STATE(1660), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_DOT_DOT2] = ACTIONS(3482), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - [sym__dedent] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3605), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_DOT_DOT2] = ACTIONS(3607), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + [sym__dedent] = ACTIONS(3607), }, [1661] = { [sym_block_comment] = STATE(1661), [sym_compiler_directive_decl] = STATE(1661), [sym_fsi_directive_decl] = STATE(1661), [sym_preproc_line] = STATE(1661), - [aux_sym_rules_repeat1] = STATE(1705), - [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_PIPE] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [anon_sym_POUNDendif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4157), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3669), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), + [sym__dedent] = ACTIONS(3671), }, [1662] = { [sym_block_comment] = STATE(1662), [sym_compiler_directive_decl] = STATE(1662), [sym_fsi_directive_decl] = STATE(1662), [sym_preproc_line] = STATE(1662), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_as] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), + [sym__dedent] = ACTIONS(3451), + }, + [1663] = { + [sym_block_comment] = STATE(1663), + [sym_compiler_directive_decl] = STATE(1663), + [sym_fsi_directive_decl] = STATE(1663), + [sym_preproc_line] = STATE(1663), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_AT_AT_GT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + }, + [1664] = { + [sym_block_comment] = STATE(1664), + [sym_compiler_directive_decl] = STATE(1664), + [sym_fsi_directive_decl] = STATE(1664), + [sym_preproc_line] = STATE(1664), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_DOT_DOT2] = ACTIONS(3447), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + [sym__dedent] = ACTIONS(3447), + }, + [1665] = { + [sym_block_comment] = STATE(1665), + [sym_compiler_directive_decl] = STATE(1665), + [sym_fsi_directive_decl] = STATE(1665), + [sym_preproc_line] = STATE(1665), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_DOT_DOT2] = ACTIONS(3617), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + [sym__dedent] = ACTIONS(3617), + }, + [1666] = { + [sym_block_comment] = STATE(1666), + [sym_compiler_directive_decl] = STATE(1666), + [sym_fsi_directive_decl] = STATE(1666), + [sym_preproc_line] = STATE(1666), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3217), + [anon_sym_POUNDendif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), + }, + [1667] = { + [sym_block_comment] = STATE(1667), + [sym_compiler_directive_decl] = STATE(1667), + [sym_fsi_directive_decl] = STATE(1667), + [sym_preproc_line] = STATE(1667), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_DOT_DOT2] = ACTIONS(3537), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), + [sym__dedent] = ACTIONS(3537), + }, + [1668] = { + [sym_block_comment] = STATE(1668), + [sym_compiler_directive_decl] = STATE(1668), + [sym_fsi_directive_decl] = STATE(1668), + [sym_preproc_line] = STATE(1668), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), + [sym__dedent] = ACTIONS(3477), + }, + [1669] = { + [sym_block_comment] = STATE(1669), + [sym_compiler_directive_decl] = STATE(1669), + [sym_fsi_directive_decl] = STATE(1669), + [sym_preproc_line] = STATE(1669), + [aux_sym_long_identifier_repeat1] = STATE(1617), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1670] = { + [sym_block_comment] = STATE(1670), + [sym_compiler_directive_decl] = STATE(1670), + [sym_fsi_directive_decl] = STATE(1670), + [sym_preproc_line] = STATE(1670), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_DOT_DOT] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), + }, + [1671] = { + [sym_block_comment] = STATE(1671), + [sym_compiler_directive_decl] = STATE(1671), + [sym_fsi_directive_decl] = STATE(1671), + [sym_preproc_line] = STATE(1671), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4031), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [anon_sym_POUNDendif] = ACTIONS(3233), + [anon_sym_POUNDelse] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1672] = { + [sym_block_comment] = STATE(1672), + [sym_compiler_directive_decl] = STATE(1672), + [sym_fsi_directive_decl] = STATE(1672), + [sym_preproc_line] = STATE(1672), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_COLON] = ACTIONS(3675), [anon_sym_return] = ACTIONS(3675), [anon_sym_do] = ACTIONS(3675), [anon_sym_let] = ACTIONS(3675), @@ -232857,7 +234179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3675), [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -232867,1985 +234189,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3673), [sym__dedent] = ACTIONS(3673), }, - [1663] = { - [sym_block_comment] = STATE(1663), - [sym_compiler_directive_decl] = STATE(1663), - [sym_fsi_directive_decl] = STATE(1663), - [sym_preproc_line] = STATE(1663), - [aux_sym_long_identifier_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_EQ2] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1664] = { - [sym_block_comment] = STATE(1664), - [sym_compiler_directive_decl] = STATE(1664), - [sym_fsi_directive_decl] = STATE(1664), - [sym_preproc_line] = STATE(1664), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_as] = ACTIONS(3591), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_with] = ACTIONS(3591), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), - [sym__dedent] = ACTIONS(3593), - }, - [1665] = { - [sym_block_comment] = STATE(1665), - [sym_compiler_directive_decl] = STATE(1665), - [sym_fsi_directive_decl] = STATE(1665), - [sym_preproc_line] = STATE(1665), - [aux_sym_sequential_expression_repeat1] = STATE(1724), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - }, - [1666] = { - [sym_block_comment] = STATE(1666), - [sym_compiler_directive_decl] = STATE(1666), - [sym_fsi_directive_decl] = STATE(1666), - [sym_preproc_line] = STATE(1666), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3587), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), - [sym__dedent] = ACTIONS(3589), - }, - [1667] = { - [sym_block_comment] = STATE(1667), - [sym_compiler_directive_decl] = STATE(1667), - [sym_fsi_directive_decl] = STATE(1667), - [sym_preproc_line] = STATE(1667), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), - [sym__dedent] = ACTIONS(3579), - }, - [1668] = { - [sym_block_comment] = STATE(1668), - [sym_compiler_directive_decl] = STATE(1668), - [sym_fsi_directive_decl] = STATE(1668), - [sym_preproc_line] = STATE(1668), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1669] = { - [sym_block_comment] = STATE(1669), - [sym_compiler_directive_decl] = STATE(1669), - [sym_fsi_directive_decl] = STATE(1669), - [sym_preproc_line] = STATE(1669), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_as] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - [sym__dedent] = ACTIONS(3575), - }, - [1670] = { - [sym_block_comment] = STATE(1670), - [sym_compiler_directive_decl] = STATE(1670), - [sym_fsi_directive_decl] = STATE(1670), - [sym_preproc_line] = STATE(1670), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_as] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), - [sym__dedent] = ACTIONS(3571), - }, - [1671] = { - [sym_block_comment] = STATE(1671), - [sym_compiler_directive_decl] = STATE(1671), - [sym_fsi_directive_decl] = STATE(1671), - [sym_preproc_line] = STATE(1671), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [anon_sym_POUNDendif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), - }, - [1672] = { - [sym_block_comment] = STATE(1672), - [sym_compiler_directive_decl] = STATE(1672), - [sym_fsi_directive_decl] = STATE(1672), - [sym_preproc_line] = STATE(1672), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_AT_GT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), - }, [1673] = { [sym_block_comment] = STATE(1673), [sym_compiler_directive_decl] = STATE(1673), [sym_fsi_directive_decl] = STATE(1673), [sym_preproc_line] = STATE(1673), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3565), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), - [sym__dedent] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [1674] = { [sym_block_comment] = STATE(1674), [sym_compiler_directive_decl] = STATE(1674), [sym_fsi_directive_decl] = STATE(1674), [sym_preproc_line] = STATE(1674), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_with] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_DOT_DOT2] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), - [sym__dedent] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_DOT_DOT2] = ACTIONS(3745), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + [sym__dedent] = ACTIONS(3745), }, [1675] = { [sym_block_comment] = STATE(1675), [sym_compiler_directive_decl] = STATE(1675), [sym_fsi_directive_decl] = STATE(1675), [sym_preproc_line] = STATE(1675), - [aux_sym_long_identifier_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4163), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [anon_sym_EQ2] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_DOT_DOT2] = ACTIONS(3629), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), + [sym__dedent] = ACTIONS(3629), }, [1676] = { [sym_block_comment] = STATE(1676), [sym_compiler_directive_decl] = STATE(1676), [sym_fsi_directive_decl] = STATE(1676), [sym_preproc_line] = STATE(1676), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_as] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_as] = ACTIONS(3605), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_with] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3605), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - [sym__dedent] = ACTIONS(3563), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + [sym__dedent] = ACTIONS(3607), }, [1677] = { [sym_block_comment] = STATE(1677), [sym_compiler_directive_decl] = STATE(1677), [sym_fsi_directive_decl] = STATE(1677), [sym_preproc_line] = STATE(1677), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4165), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), - }, - [1678] = { - [sym_block_comment] = STATE(1678), - [sym_compiler_directive_decl] = STATE(1678), - [sym_fsi_directive_decl] = STATE(1678), - [sym_preproc_line] = STATE(1678), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1679] = { - [sym_block_comment] = STATE(1679), - [sym_compiler_directive_decl] = STATE(1679), - [sym_fsi_directive_decl] = STATE(1679), - [sym_preproc_line] = STATE(1679), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - [sym__dedent] = ACTIONS(3535), - }, - [1680] = { - [sym_block_comment] = STATE(1680), - [sym_compiler_directive_decl] = STATE(1680), - [sym_fsi_directive_decl] = STATE(1680), - [sym_preproc_line] = STATE(1680), - [aux_sym_rules_repeat1] = STATE(1683), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_AT_GT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4167), - }, - [1681] = { - [sym_block_comment] = STATE(1681), - [sym_compiler_directive_decl] = STATE(1681), - [sym_fsi_directive_decl] = STATE(1681), - [sym_preproc_line] = STATE(1681), - [aux_sym_rules_repeat1] = STATE(1636), - [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_PIPE] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4170), - }, - [1682] = { - [sym_block_comment] = STATE(1682), - [sym_compiler_directive_decl] = STATE(1682), - [sym_fsi_directive_decl] = STATE(1682), - [sym_preproc_line] = STATE(1682), - [aux_sym_rules_repeat1] = STATE(1637), - [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_PIPE] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4170), - }, - [1683] = { - [sym_block_comment] = STATE(1683), - [sym_compiler_directive_decl] = STATE(1683), - [sym_fsi_directive_decl] = STATE(1683), - [sym_preproc_line] = STATE(1683), - [aux_sym_rules_repeat1] = STATE(1683), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4173), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_AT_GT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4176), - }, - [1684] = { - [sym_block_comment] = STATE(1684), - [sym_compiler_directive_decl] = STATE(1684), - [sym_fsi_directive_decl] = STATE(1684), - [sym_preproc_line] = STATE(1684), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -234889,10 +234613,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(2528), [anon_sym_DOT_LBRACK] = ACTIONS(2526), [anon_sym_LT] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2528), [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -234923,10 +234647,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2950), - [aux_sym_decimal_token1] = ACTIONS(2876), + [anon_sym_f] = ACTIONS(2946), + [aux_sym_decimal_token1] = ACTIONS(2812), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -234935,4617 +234659,3301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [1685] = { - [sym_block_comment] = STATE(1685), - [sym_compiler_directive_decl] = STATE(1685), - [sym_fsi_directive_decl] = STATE(1685), - [sym_preproc_line] = STATE(1685), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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), + [1678] = { + [sym_block_comment] = STATE(1678), + [sym_compiler_directive_decl] = STATE(1678), + [sym_fsi_directive_decl] = STATE(1678), + [sym_preproc_line] = STATE(1678), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), + }, + [1679] = { + [sym_block_comment] = STATE(1679), + [sym_compiler_directive_decl] = STATE(1679), + [sym_fsi_directive_decl] = STATE(1679), + [sym_preproc_line] = STATE(1679), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1680] = { + [sym_block_comment] = STATE(1680), + [sym_compiler_directive_decl] = STATE(1680), + [sym_fsi_directive_decl] = STATE(1680), + [sym_preproc_line] = STATE(1680), + [aux_sym_long_identifier_repeat1] = STATE(1578), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [1681] = { + [sym_block_comment] = STATE(1681), + [sym_compiler_directive_decl] = STATE(1681), + [sym_fsi_directive_decl] = STATE(1681), + [sym_preproc_line] = STATE(1681), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_DOT_DOT2] = ACTIONS(3527), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), + [sym__dedent] = ACTIONS(3527), + }, + [1682] = { + [sym_block_comment] = STATE(1682), + [sym_compiler_directive_decl] = STATE(1682), + [sym_fsi_directive_decl] = STATE(1682), + [sym_preproc_line] = STATE(1682), + [aux_sym_rules_repeat1] = STATE(1645), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), - [sym__dedent] = ACTIONS(3529), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4174), }, - [1686] = { - [sym_block_comment] = STATE(1686), - [sym_compiler_directive_decl] = STATE(1686), - [sym_fsi_directive_decl] = STATE(1686), - [sym_preproc_line] = STATE(1686), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), + [1683] = { + [sym_block_comment] = STATE(1683), + [sym_compiler_directive_decl] = STATE(1683), + [sym_fsi_directive_decl] = STATE(1683), + [sym_preproc_line] = STATE(1683), + [aux_sym_rules_repeat1] = STATE(1646), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), - [sym__dedent] = ACTIONS(3397), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4174), }, - [1687] = { - [sym_block_comment] = STATE(1687), - [sym_compiler_directive_decl] = STATE(1687), - [sym_fsi_directive_decl] = STATE(1687), - [sym_preproc_line] = STATE(1687), - [sym_identifier] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_QMARK] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3188), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3188), + [1684] = { + [sym_block_comment] = STATE(1684), + [sym_compiler_directive_decl] = STATE(1684), + [sym_fsi_directive_decl] = STATE(1684), + [sym_preproc_line] = STATE(1684), + [sym_identifier] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_AT_GT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_COLON_GT] = ACTIONS(3190), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_DOT_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_or] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3188), - [anon_sym_DASH_DOT] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3188), - [aux_sym_infix_op_token1] = ACTIONS(3190), - [aux_sym_infix_op_token2] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_COLON_EQ] = ACTIONS(3190), - [anon_sym_DOLLAR] = ACTIONS(3188), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_DOT_DOT2] = ACTIONS(3421), + [anon_sym_or] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3190), - [sym__newline] = ACTIONS(3190), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), + [sym__dedent] = ACTIONS(3421), }, - [1688] = { - [sym_block_comment] = STATE(1688), - [sym_compiler_directive_decl] = STATE(1688), - [sym_fsi_directive_decl] = STATE(1688), - [sym_preproc_line] = STATE(1688), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - [sym__dedent] = ACTIONS(3525), + [1685] = { + [sym_block_comment] = STATE(1685), + [sym_compiler_directive_decl] = STATE(1685), + [sym_fsi_directive_decl] = STATE(1685), + [sym_preproc_line] = STATE(1685), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [anon_sym_POUNDendif] = ACTIONS(3293), + [anon_sym_POUNDelse] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, - [1689] = { - [sym_block_comment] = STATE(1689), - [sym_compiler_directive_decl] = STATE(1689), + [1686] = { + [sym_block_comment] = STATE(1686), + [sym_compiler_directive_decl] = STATE(1686), + [sym_fsi_directive_decl] = STATE(1686), + [sym_preproc_line] = STATE(1686), + [aux_sym_rules_repeat1] = STATE(1689), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_AT_GT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4177), + }, + [1687] = { + [sym_block_comment] = STATE(1687), + [sym_compiler_directive_decl] = STATE(1687), + [sym_fsi_directive_decl] = STATE(1687), + [sym_preproc_line] = STATE(1687), + [aux_sym_rules_repeat1] = STATE(1687), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [anon_sym_POUNDendif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4183), + }, + [1688] = { + [sym_block_comment] = STATE(1688), + [sym_compiler_directive_decl] = STATE(1688), + [sym_fsi_directive_decl] = STATE(1688), + [sym_preproc_line] = STATE(1688), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1689] = { + [sym_block_comment] = STATE(1689), + [sym_compiler_directive_decl] = STATE(1689), [sym_fsi_directive_decl] = STATE(1689), [sym_preproc_line] = STATE(1689), - [aux_sym_long_identifier_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [anon_sym_EQ2] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [aux_sym_rules_repeat1] = STATE(1689), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_AT_GT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4189), }, [1690] = { [sym_block_comment] = STATE(1690), [sym_compiler_directive_decl] = STATE(1690), [sym_fsi_directive_decl] = STATE(1690), [sym_preproc_line] = STATE(1690), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_as] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3519), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), - [sym__dedent] = ACTIONS(3521), + [aux_sym_rules_repeat1] = STATE(1655), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4192), }, [1691] = { [sym_block_comment] = STATE(1691), [sym_compiler_directive_decl] = STATE(1691), [sym_fsi_directive_decl] = STATE(1691), [sym_preproc_line] = STATE(1691), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_as] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), - [sym__dedent] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1692] = { [sym_block_comment] = STATE(1692), [sym_compiler_directive_decl] = STATE(1692), [sym_fsi_directive_decl] = STATE(1692), [sym_preproc_line] = STATE(1692), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_DOT_DOT2] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), - [sym__dedent] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_as] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), + [sym__dedent] = ACTIONS(3639), }, [1693] = { [sym_block_comment] = STATE(1693), [sym_compiler_directive_decl] = STATE(1693), [sym_fsi_directive_decl] = STATE(1693), [sym_preproc_line] = STATE(1693), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_DOT_DOT2] = ACTIONS(3443), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), - [sym__dedent] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_AT_GT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1694] = { [sym_block_comment] = STATE(1694), [sym_compiler_directive_decl] = STATE(1694), [sym_fsi_directive_decl] = STATE(1694), [sym_preproc_line] = STATE(1694), - [aux_sym_rules_repeat1] = STATE(1705), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [anon_sym_POUNDendif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4183), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_DOT_DOT2] = ACTIONS(3523), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), + [sym__dedent] = ACTIONS(3523), }, [1695] = { [sym_block_comment] = STATE(1695), [sym_compiler_directive_decl] = STATE(1695), [sym_fsi_directive_decl] = STATE(1695), [sym_preproc_line] = STATE(1695), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_with] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), - [sym__dedent] = ACTIONS(3702), + [aux_sym_rules_repeat1] = STATE(1722), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4195), }, [1696] = { [sym_block_comment] = STATE(1696), [sym_compiler_directive_decl] = STATE(1696), [sym_fsi_directive_decl] = STATE(1696), [sym_preproc_line] = STATE(1696), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_DOT_DOT2] = ACTIONS(3439), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), - [sym__dedent] = ACTIONS(3439), - }, - [1697] = { - [sym_block_comment] = STATE(1697), - [sym_compiler_directive_decl] = STATE(1697), - [sym_fsi_directive_decl] = STATE(1697), - [sym_preproc_line] = STATE(1697), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3517), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_DOT_DOT2] = ACTIONS(3519), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), + [sym__dedent] = ACTIONS(3519), + }, + [1697] = { + [sym_block_comment] = STATE(1697), + [sym_compiler_directive_decl] = STATE(1697), + [sym_fsi_directive_decl] = STATE(1697), + [sym_preproc_line] = STATE(1697), + [aux_sym_sequential_expression_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [anon_sym_POUNDendif] = ACTIONS(3390), + [anon_sym_POUNDelse] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1698] = { [sym_block_comment] = STATE(1698), [sym_compiler_directive_decl] = STATE(1698), [sym_fsi_directive_decl] = STATE(1698), [sym_preproc_line] = STATE(1698), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [anon_sym_POUNDendif] = ACTIONS(3277), - [anon_sym_POUNDelse] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_DOT_DOT2] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), + [sym__dedent] = ACTIONS(3489), }, [1699] = { [sym_block_comment] = STATE(1699), [sym_compiler_directive_decl] = STATE(1699), [sym_fsi_directive_decl] = STATE(1699), [sym_preproc_line] = STATE(1699), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_DOT_DOT2] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), - [sym__dedent] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_DOT_DOT2] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), + [sym__dedent] = ACTIONS(3459), }, [1700] = { [sym_block_comment] = STATE(1700), [sym_compiler_directive_decl] = STATE(1700), [sym_fsi_directive_decl] = STATE(1700), [sym_preproc_line] = STATE(1700), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [anon_sym_POUNDendif] = ACTIONS(3283), - [anon_sym_POUNDelse] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_DOT_DOT2] = ACTIONS(3501), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), + [sym__dedent] = ACTIONS(3501), }, [1701] = { [sym_block_comment] = STATE(1701), [sym_compiler_directive_decl] = STATE(1701), [sym_fsi_directive_decl] = STATE(1701), [sym_preproc_line] = STATE(1701), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_DOT_DOT2] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - [sym__dedent] = ACTIONS(3435), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1702] = { [sym_block_comment] = STATE(1702), [sym_compiler_directive_decl] = STATE(1702), [sym_fsi_directive_decl] = STATE(1702), [sym_preproc_line] = STATE(1702), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), - [sym__dedent] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_DOT_DOT2] = ACTIONS(3566), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + [sym__dedent] = ACTIONS(3566), }, [1703] = { [sym_block_comment] = STATE(1703), [sym_compiler_directive_decl] = STATE(1703), [sym_fsi_directive_decl] = STATE(1703), [sym_preproc_line] = STATE(1703), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), - [sym__dedent] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_DASH_GT] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1704] = { [sym_block_comment] = STATE(1704), [sym_compiler_directive_decl] = STATE(1704), [sym_fsi_directive_decl] = STATE(1704), [sym_preproc_line] = STATE(1704), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_with] = ACTIONS(3675), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), - [sym__dedent] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_COLON] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_COLON_QMARK] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_COLON_GT] = ACTIONS(3176), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_DOT_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3174), + [anon_sym_DASH_DOT] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3174), + [aux_sym_infix_op_token1] = ACTIONS(3176), + [aux_sym_infix_op_token2] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3176), + [anon_sym_DOLLAR] = ACTIONS(3174), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3174), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), + [sym__newline] = ACTIONS(3176), }, [1705] = { [sym_block_comment] = STATE(1705), [sym_compiler_directive_decl] = STATE(1705), [sym_fsi_directive_decl] = STATE(1705), [sym_preproc_line] = STATE(1705), - [aux_sym_rules_repeat1] = STATE(1705), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [anon_sym_POUNDendif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4189), - }, - [1706] = { - [sym_block_comment] = STATE(1706), - [sym_compiler_directive_decl] = STATE(1706), - [sym_fsi_directive_decl] = STATE(1706), - [sym_preproc_line] = STATE(1706), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_as] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), + [sym__dedent] = ACTIONS(3513), + }, + [1706] = { + [sym_block_comment] = STATE(1706), + [sym_compiler_directive_decl] = STATE(1706), + [sym_fsi_directive_decl] = STATE(1706), + [sym_preproc_line] = STATE(1706), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4198), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [anon_sym_POUNDendif] = ACTIONS(3370), + [anon_sym_POUNDelse] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1707] = { [sym_block_comment] = STATE(1707), [sym_compiler_directive_decl] = STATE(1707), [sym_fsi_directive_decl] = STATE(1707), [sym_preproc_line] = STATE(1707), - [aux_sym_rules_repeat1] = STATE(1707), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(4192), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(4195), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [1708] = { [sym_block_comment] = STATE(1708), [sym_compiler_directive_decl] = STATE(1708), [sym_fsi_directive_decl] = STATE(1708), [sym_preproc_line] = STATE(1708), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_DOT_DOT2] = ACTIONS(3484), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), - [sym__dedent] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_DOT_DOT2] = ACTIONS(3721), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), + [sym__dedent] = ACTIONS(3721), }, [1709] = { [sym_block_comment] = STATE(1709), [sym_compiler_directive_decl] = STATE(1709), [sym_fsi_directive_decl] = STATE(1709), [sym_preproc_line] = STATE(1709), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), - [sym__dedent] = ACTIONS(3503), + [aux_sym_rules_repeat1] = STATE(1687), + [sym_identifier] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_let_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_COLON_QMARK] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LBRACK_PIPE] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LT_AT] = ACTIONS(3144), + [anon_sym_LT_AT_AT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_LBRACE_PIPE] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_return_BANG] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_yield_BANG] = ACTIONS(3142), + [anon_sym_lazy] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_upcast] = ACTIONS(3144), + [anon_sym_downcast] = ACTIONS(3144), + [anon_sym_COLON_GT] = ACTIONS(3142), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_match_BANG] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_DOT_LBRACK] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_use_BANG] = ACTIONS(3142), + [anon_sym_do_BANG] = ACTIONS(3142), + [anon_sym_begin] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [aux_sym_char_token1] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_AT_DQUOTE] = ACTIONS(3142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3142), + [sym_bool] = ACTIONS(3144), + [sym_unit] = ACTIONS(3142), + [anon_sym_LPAREN_PIPE] = ACTIONS(3144), + [sym_op_identifier] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_PLUS_DOT] = ACTIONS(3144), + [anon_sym_DASH_DOT] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [aux_sym_prefix_op_token1] = ACTIONS(3144), + [aux_sym_infix_op_token1] = ACTIONS(3142), + [aux_sym_infix_op_token2] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_DOLLAR] = ACTIONS(3144), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3144), + [sym_int] = ACTIONS(3144), + [sym_xint] = ACTIONS(3142), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3142), + [anon_sym_POUNDendif] = ACTIONS(3142), + [sym__newline] = ACTIONS(4200), }, [1710] = { [sym_block_comment] = STATE(1710), [sym_compiler_directive_decl] = STATE(1710), [sym_fsi_directive_decl] = STATE(1710), [sym_preproc_line] = STATE(1710), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), - [sym__dedent] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3717), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_DOT_DOT2] = ACTIONS(3715), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), + [sym__dedent] = ACTIONS(3715), }, [1711] = { [sym_block_comment] = STATE(1711), [sym_compiler_directive_decl] = STATE(1711), [sym_fsi_directive_decl] = STATE(1711), [sym_preproc_line] = STATE(1711), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_with] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_DOT_DOT2] = ACTIONS(3735), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), - [sym__dedent] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_AT_GT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_elif] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1712] = { [sym_block_comment] = STATE(1712), [sym_compiler_directive_decl] = STATE(1712), [sym_fsi_directive_decl] = STATE(1712), [sym_preproc_line] = STATE(1712), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), - [sym__dedent] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1713] = { [sym_block_comment] = STATE(1713), [sym_compiler_directive_decl] = STATE(1713), [sym_fsi_directive_decl] = STATE(1713), [sym_preproc_line] = STATE(1713), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_AT_GT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - }, - [1714] = { - [sym_block_comment] = STATE(1714), - [sym_compiler_directive_decl] = STATE(1714), - [sym_fsi_directive_decl] = STATE(1714), - [sym_preproc_line] = STATE(1714), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [anon_sym_POUNDendif] = ACTIONS(3221), - [anon_sym_POUNDelse] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), - }, - [1715] = { - [sym_block_comment] = STATE(1715), - [sym_compiler_directive_decl] = STATE(1715), - [sym_fsi_directive_decl] = STATE(1715), - [sym_preproc_line] = STATE(1715), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [anon_sym_POUNDendif] = ACTIONS(3310), - [anon_sym_POUNDelse] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), - }, - [1716] = { - [sym_block_comment] = STATE(1716), - [sym_compiler_directive_decl] = STATE(1716), - [sym_fsi_directive_decl] = STATE(1716), - [sym_preproc_line] = STATE(1716), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_AT_AT_GT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4198), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - }, - [1717] = { - [sym_block_comment] = STATE(1717), - [sym_compiler_directive_decl] = STATE(1717), - [sym_fsi_directive_decl] = STATE(1717), - [sym_preproc_line] = STATE(1717), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), - }, - [1718] = { - [sym_block_comment] = STATE(1718), - [sym_compiler_directive_decl] = STATE(1718), - [sym_fsi_directive_decl] = STATE(1718), - [sym_preproc_line] = STATE(1718), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [1719] = { - [sym_block_comment] = STATE(1719), - [sym_compiler_directive_decl] = STATE(1719), - [sym_fsi_directive_decl] = STATE(1719), - [sym_preproc_line] = STATE(1719), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_as] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - [sym__dedent] = ACTIONS(3482), - }, - [1720] = { - [sym_block_comment] = STATE(1720), - [sym_compiler_directive_decl] = STATE(1720), - [sym_fsi_directive_decl] = STATE(1720), - [sym_preproc_line] = STATE(1720), - [aux_sym_rules_repeat1] = STATE(1707), - [sym_identifier] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_let_BANG] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_COLON_QMARK] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_LT_AT] = ACTIONS(3179), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_return_BANG] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_yield_BANG] = ACTIONS(3181), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_upcast] = ACTIONS(3179), - [anon_sym_downcast] = ACTIONS(3179), - [anon_sym_COLON_GT] = ACTIONS(3181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_fun] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_match_BANG] = ACTIONS(3181), - [anon_sym_function] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_DOT_LBRACK] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_use] = ACTIONS(3179), - [anon_sym_use_BANG] = ACTIONS(3181), - [anon_sym_do_BANG] = ACTIONS(3181), - [anon_sym_DOT_DOT] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [aux_sym_char_token1] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [anon_sym_AT_DQUOTE] = ACTIONS(3181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3181), - [sym_bool] = ACTIONS(3179), - [sym_unit] = ACTIONS(3181), - [anon_sym_LPAREN_PIPE] = ACTIONS(3179), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [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(3181), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [aux_sym_infix_op_token1] = ACTIONS(3181), - [aux_sym_infix_op_token2] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3179), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3179), - [sym_int] = ACTIONS(3179), - [sym_xint] = ACTIONS(3181), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3181), - [sym__newline] = ACTIONS(4202), - }, - [1721] = { - [sym_block_comment] = STATE(1721), - [sym_compiler_directive_decl] = STATE(1721), - [sym_fsi_directive_decl] = STATE(1721), - [sym_preproc_line] = STATE(1721), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), - }, - [1722] = { - [sym_block_comment] = STATE(1722), - [sym_compiler_directive_decl] = STATE(1722), - [sym_fsi_directive_decl] = STATE(1722), - [sym_preproc_line] = STATE(1722), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_as] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_with] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), - [sym__dedent] = ACTIONS(3478), - }, - [1723] = { - [sym_block_comment] = STATE(1723), - [sym_compiler_directive_decl] = STATE(1723), - [sym_fsi_directive_decl] = STATE(1723), - [sym_preproc_line] = STATE(1723), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_with] = ACTIONS(3679), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_DOT_DOT2] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - [sym__dedent] = ACTIONS(3677), - }, - [1724] = { - [sym_block_comment] = STATE(1724), - [sym_compiler_directive_decl] = STATE(1724), - [sym_fsi_directive_decl] = STATE(1724), - [sym_preproc_line] = STATE(1724), - [aux_sym_sequential_expression_repeat1] = STATE(1724), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4205), - }, - [1725] = { - [sym_block_comment] = STATE(1725), - [sym_compiler_directive_decl] = STATE(1725), - [sym_fsi_directive_decl] = STATE(1725), - [sym_preproc_line] = STATE(1725), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), - [sym__dedent] = ACTIONS(3447), - }, - [1726] = { - [sym_block_comment] = STATE(1726), - [sym_compiler_directive_decl] = STATE(1726), - [sym_fsi_directive_decl] = STATE(1726), - [sym_preproc_line] = STATE(1726), - [aux_sym_long_identifier_repeat1] = STATE(1726), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [anon_sym_POUNDelse] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1727] = { - [sym_block_comment] = STATE(1727), - [sym_compiler_directive_decl] = STATE(1727), - [sym_fsi_directive_decl] = STATE(1727), - [sym_preproc_line] = STATE(1727), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1728] = { - [sym_block_comment] = STATE(1728), - [sym_compiler_directive_decl] = STATE(1728), - [sym_fsi_directive_decl] = STATE(1728), - [sym_preproc_line] = STATE(1728), - [aux_sym_rules_repeat1] = STATE(1707), - [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_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4211), - }, - [1729] = { - [sym_block_comment] = STATE(1729), - [sym_compiler_directive_decl] = STATE(1729), - [sym_fsi_directive_decl] = STATE(1729), - [sym_preproc_line] = STATE(1729), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_as] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), - [sym__dedent] = ACTIONS(3443), - }, - [1730] = { - [sym_block_comment] = STATE(1730), - [sym_compiler_directive_decl] = STATE(1730), - [sym_fsi_directive_decl] = STATE(1730), - [sym_preproc_line] = STATE(1730), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - [sym__dedent] = ACTIONS(3728), - }, - [1731] = { - [sym_block_comment] = STATE(1731), - [sym_compiler_directive_decl] = STATE(1731), - [sym_fsi_directive_decl] = STATE(1731), - [sym_preproc_line] = STATE(1731), - [aux_sym_rules_repeat1] = STATE(1720), - [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_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3), - [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(3202), - [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(3202), - [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(3204), - [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(3204), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3204), - [sym__newline] = ACTIONS(4211), - }, - [1732] = { - [sym_block_comment] = STATE(1732), - [sym_compiler_directive_decl] = STATE(1732), - [sym_fsi_directive_decl] = STATE(1732), - [sym_preproc_line] = STATE(1732), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), - [sym__dedent] = ACTIONS(3439), - }, - [1733] = { - [sym_block_comment] = STATE(1733), - [sym_compiler_directive_decl] = STATE(1733), - [sym_fsi_directive_decl] = STATE(1733), - [sym_preproc_line] = STATE(1733), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - [sym__dedent] = ACTIONS(3435), - }, - [1734] = { - [sym_block_comment] = STATE(1734), - [sym_compiler_directive_decl] = STATE(1734), - [sym_fsi_directive_decl] = STATE(1734), - [sym_preproc_line] = STATE(1734), [sym_identifier] = ACTIONS(3188), [anon_sym_EQ] = ACTIONS(3190), [anon_sym_COLON] = ACTIONS(3188), @@ -239580,6 +237988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), [anon_sym_for] = ACTIONS(3188), [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), [anon_sym_if] = ACTIONS(3188), [anon_sym_fun] = ACTIONS(3188), [anon_sym_try] = ACTIONS(3188), @@ -239589,6 +237999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(3188), [anon_sym_DOT_LBRACK] = ACTIONS(3190), [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3188), [anon_sym_use] = ACTIONS(3188), [anon_sym_use_BANG] = ACTIONS(3190), [anon_sym_do_BANG] = ACTIONS(3190), @@ -239622,118 +238033,1525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), [sym_int] = ACTIONS(3188), [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3190), - [anon_sym_POUNDendif] = ACTIONS(3190), [sym__newline] = ACTIONS(3190), }, - [1735] = { - [sym_block_comment] = STATE(1735), - [sym_compiler_directive_decl] = STATE(1735), - [sym_fsi_directive_decl] = STATE(1735), - [sym_preproc_line] = STATE(1735), - [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), + [1714] = { + [sym_block_comment] = STATE(1714), + [sym_compiler_directive_decl] = STATE(1714), + [sym_fsi_directive_decl] = STATE(1714), + [sym_preproc_line] = STATE(1714), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_DOT_DOT2] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), + [sym__dedent] = ACTIONS(3657), + }, + [1715] = { + [sym_block_comment] = STATE(1715), + [sym_compiler_directive_decl] = STATE(1715), + [sym_fsi_directive_decl] = STATE(1715), + [sym_preproc_line] = STATE(1715), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), + [sym__dedent] = ACTIONS(3623), + }, + [1716] = { + [sym_block_comment] = STATE(1716), + [sym_compiler_directive_decl] = STATE(1716), + [sym_fsi_directive_decl] = STATE(1716), + [sym_preproc_line] = STATE(1716), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), + [sym__dedent] = ACTIONS(3403), + }, + [1717] = { + [sym_block_comment] = STATE(1717), + [sym_compiler_directive_decl] = STATE(1717), + [sym_fsi_directive_decl] = STATE(1717), + [sym_preproc_line] = STATE(1717), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + }, + [1718] = { + [sym_block_comment] = STATE(1718), + [sym_compiler_directive_decl] = STATE(1718), + [sym_fsi_directive_decl] = STATE(1718), + [sym_preproc_line] = STATE(1718), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_DOT_DOT2] = ACTIONS(3397), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), - [sym__dedent] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), + [sym__dedent] = ACTIONS(3397), }, - [1736] = { - [sym_block_comment] = STATE(1736), - [sym_compiler_directive_decl] = STATE(1736), - [sym_fsi_directive_decl] = STATE(1736), - [sym_preproc_line] = STATE(1736), + [1719] = { + [sym_block_comment] = STATE(1719), + [sym_compiler_directive_decl] = STATE(1719), + [sym_fsi_directive_decl] = STATE(1719), + [sym_preproc_line] = STATE(1719), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(2942), + [aux_sym_decimal_token1] = ACTIONS(2840), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [1720] = { + [sym_block_comment] = STATE(1720), + [sym_compiler_directive_decl] = STATE(1720), + [sym_fsi_directive_decl] = STATE(1720), + [sym_preproc_line] = STATE(1720), + [aux_sym_long_identifier_repeat1] = STATE(1720), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_EQ2] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1721] = { + [sym_block_comment] = STATE(1721), + [sym_compiler_directive_decl] = STATE(1721), + [sym_fsi_directive_decl] = STATE(1721), + [sym_preproc_line] = STATE(1721), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, + [1722] = { + [sym_block_comment] = STATE(1722), + [sym_compiler_directive_decl] = STATE(1722), + [sym_fsi_directive_decl] = STATE(1722), + [sym_preproc_line] = STATE(1722), + [aux_sym_rules_repeat1] = STATE(1722), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(4209), + }, + [1723] = { + [sym_block_comment] = STATE(1723), + [sym_compiler_directive_decl] = STATE(1723), + [sym_fsi_directive_decl] = STATE(1723), + [sym_preproc_line] = STATE(1723), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_AT_AT_GT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1724] = { + [sym_block_comment] = STATE(1724), + [sym_compiler_directive_decl] = STATE(1724), + [sym_fsi_directive_decl] = STATE(1724), + [sym_preproc_line] = STATE(1724), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), + [sym__dedent] = ACTIONS(3407), + }, + [1725] = { + [sym_block_comment] = STATE(1725), + [sym_compiler_directive_decl] = STATE(1725), + [sym_fsi_directive_decl] = STATE(1725), + [sym_preproc_line] = STATE(1725), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), + }, + [1726] = { + [sym_block_comment] = STATE(1726), + [sym_compiler_directive_decl] = STATE(1726), + [sym_fsi_directive_decl] = STATE(1726), + [sym_preproc_line] = STATE(1726), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_as] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + [sym__dedent] = ACTIONS(3447), + }, + [1727] = { + [sym_block_comment] = STATE(1727), + [sym_compiler_directive_decl] = STATE(1727), + [sym_fsi_directive_decl] = STATE(1727), + [sym_preproc_line] = STATE(1727), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), + [sym__dedent] = ACTIONS(3403), + }, + [1728] = { + [sym_block_comment] = STATE(1728), + [sym_compiler_directive_decl] = STATE(1728), + [sym_fsi_directive_decl] = STATE(1728), + [sym_preproc_line] = STATE(1728), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_DOT_DOT2] = ACTIONS(3455), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), + [sym__dedent] = ACTIONS(3455), + }, + [1729] = { + [sym_block_comment] = STATE(1729), + [sym_compiler_directive_decl] = STATE(1729), + [sym_fsi_directive_decl] = STATE(1729), + [sym_preproc_line] = STATE(1729), + [aux_sym_sequential_expression_repeat1] = STATE(1632), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + }, + [1730] = { + [sym_block_comment] = STATE(1730), + [sym_compiler_directive_decl] = STATE(1730), + [sym_fsi_directive_decl] = STATE(1730), + [sym_preproc_line] = STATE(1730), [sym_identifier] = ACTIONS(3405), [anon_sym_EQ] = ACTIONS(3407), [anon_sym_COLON] = ACTIONS(3405), @@ -239813,7 +239631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3405), [sym_xint] = ACTIONS(3407), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -239823,1797 +239641,1797 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3407), [sym__dedent] = ACTIONS(3407), }, + [1731] = { + [sym_block_comment] = STATE(1731), + [sym_compiler_directive_decl] = STATE(1731), + [sym_fsi_directive_decl] = STATE(1731), + [sym_preproc_line] = STATE(1731), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_AT_GT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1732] = { + [sym_block_comment] = STATE(1732), + [sym_compiler_directive_decl] = STATE(1732), + [sym_fsi_directive_decl] = STATE(1732), + [sym_preproc_line] = STATE(1732), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), + }, + [1733] = { + [sym_block_comment] = STATE(1733), + [sym_compiler_directive_decl] = STATE(1733), + [sym_fsi_directive_decl] = STATE(1733), + [sym_preproc_line] = STATE(1733), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), + [sym__dedent] = ACTIONS(3411), + }, + [1734] = { + [sym_block_comment] = STATE(1734), + [sym_compiler_directive_decl] = STATE(1734), + [sym_fsi_directive_decl] = STATE(1734), + [sym_preproc_line] = STATE(1734), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_DOT_DOT2] = ACTIONS(2526), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + [sym__dedent] = ACTIONS(2526), + }, + [1735] = { + [sym_block_comment] = STATE(1735), + [sym_compiler_directive_decl] = STATE(1735), + [sym_fsi_directive_decl] = STATE(1735), + [sym_preproc_line] = STATE(1735), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3741), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), + [sym__dedent] = ACTIONS(3739), + }, + [1736] = { + [sym_block_comment] = STATE(1736), + [sym_compiler_directive_decl] = STATE(1736), + [sym_fsi_directive_decl] = STATE(1736), + [sym_preproc_line] = STATE(1736), + [sym_identifier] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_COLON_QMARK] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3132), + [anon_sym_AT_AT_GT] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_COLON_GT] = ACTIONS(3134), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_DOT_LBRACK] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3132), + [anon_sym_DASH_DOT] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3132), + [aux_sym_infix_op_token1] = ACTIONS(3134), + [aux_sym_infix_op_token2] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3132), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3132), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + [sym__newline] = ACTIONS(3134), + }, [1737] = { [sym_block_comment] = STATE(1737), [sym_compiler_directive_decl] = STATE(1737), [sym_fsi_directive_decl] = STATE(1737), [sym_preproc_line] = STATE(1737), - [sym_identifier] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_DASH_GT] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1738] = { + [sym_block_comment] = STATE(1738), + [sym_compiler_directive_decl] = STATE(1738), + [sym_fsi_directive_decl] = STATE(1738), + [sym_preproc_line] = STATE(1738), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_DOT_DOT2] = ACTIONS(3543), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), + [sym__dedent] = ACTIONS(3543), + }, + [1739] = { + [sym_block_comment] = STATE(1739), + [sym_compiler_directive_decl] = STATE(1739), + [sym_fsi_directive_decl] = STATE(1739), + [sym_preproc_line] = STATE(1739), + [aux_sym_rules_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDendif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4218), }, - [1738] = { - [sym_block_comment] = STATE(1738), - [sym_compiler_directive_decl] = STATE(1738), - [sym_fsi_directive_decl] = STATE(1738), - [sym_preproc_line] = STATE(1738), - [sym_identifier] = ACTIONS(3165), + [1740] = { + [sym_block_comment] = STATE(1740), + [sym_compiler_directive_decl] = STATE(1740), + [sym_fsi_directive_decl] = STATE(1740), + [sym_preproc_line] = STATE(1740), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_AT_GT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), + }, + [1741] = { + [sym_block_comment] = STATE(1741), + [sym_compiler_directive_decl] = STATE(1741), + [sym_fsi_directive_decl] = STATE(1741), + [sym_preproc_line] = STATE(1741), + [aux_sym_rules_repeat1] = STATE(1682), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_AT_AT_GT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4221), + }, + [1742] = { + [sym_block_comment] = STATE(1742), + [sym_compiler_directive_decl] = STATE(1742), + [sym_fsi_directive_decl] = STATE(1742), + [sym_preproc_line] = STATE(1742), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), + [sym__dedent] = ACTIONS(3415), + }, + [1743] = { + [sym_block_comment] = STATE(1743), + [sym_compiler_directive_decl] = STATE(1743), + [sym_fsi_directive_decl] = STATE(1743), + [sym_preproc_line] = STATE(1743), + [aux_sym_rules_repeat1] = STATE(1687), + [sym_identifier] = ACTIONS(3169), [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3169), [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3169), [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3169), [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3169), [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), [anon_sym_COLON_GT] = ACTIONS(3167), [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), [anon_sym_DOT_LBRACK] = ACTIONS(3167), [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3169), [anon_sym_use_BANG] = ACTIONS(3167), [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), [anon_sym_AT_DQUOTE] = ACTIONS(3167), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), + [sym_bool] = ACTIONS(3169), [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3169), [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1739] = { - [sym_block_comment] = STATE(1739), - [sym_compiler_directive_decl] = STATE(1739), - [sym_fsi_directive_decl] = STATE(1739), - [sym_preproc_line] = STATE(1739), - [aux_sym_long_identifier_repeat1] = STATE(1762), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_DOT_DOT] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1740] = { - [sym_block_comment] = STATE(1740), - [sym_compiler_directive_decl] = STATE(1740), - [sym_fsi_directive_decl] = STATE(1740), - [sym_preproc_line] = STATE(1740), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_as] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), - [sym__dedent] = ACTIONS(3484), + [anon_sym_POUNDendif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4218), }, - [1741] = { - [sym_block_comment] = STATE(1741), - [sym_compiler_directive_decl] = STATE(1741), - [sym_fsi_directive_decl] = STATE(1741), - [sym_preproc_line] = STATE(1741), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [1744] = { + [sym_block_comment] = STATE(1744), + [sym_compiler_directive_decl] = STATE(1744), + [sym_fsi_directive_decl] = STATE(1744), + [sym_preproc_line] = STATE(1744), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [1742] = { - [sym_block_comment] = STATE(1742), - [sym_compiler_directive_decl] = STATE(1742), - [sym_fsi_directive_decl] = STATE(1742), - [sym_preproc_line] = STATE(1742), - [sym_identifier] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(3132), - [anon_sym_COLON] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3130), - [anon_sym_COLON_QMARK] = ACTIONS(3130), - [anon_sym_COLON_COLON] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3130), - [anon_sym_AT_AT_GT] = ACTIONS(3130), - [anon_sym_DOT] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_COLON_GT] = ACTIONS(3132), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3130), - [anon_sym_DOT_LBRACK] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_or] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3130), - [anon_sym_DASH_DOT] = ACTIONS(3130), - [anon_sym_PERCENT] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3130), - [aux_sym_infix_op_token1] = ACTIONS(3132), - [aux_sym_infix_op_token2] = ACTIONS(3130), - [anon_sym_PIPE_PIPE] = ACTIONS(3130), - [anon_sym_BANG_EQ] = ACTIONS(3130), - [anon_sym_COLON_EQ] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3130), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - [sym__newline] = ACTIONS(3132), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), + [sym__dedent] = ACTIONS(3411), }, - [1743] = { - [sym_block_comment] = STATE(1743), - [sym_compiler_directive_decl] = STATE(1743), - [sym_fsi_directive_decl] = STATE(1743), - [sym_preproc_line] = STATE(1743), - [aux_sym_sequential_expression_repeat1] = STATE(1642), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [anon_sym_POUNDendif] = ACTIONS(3349), - [anon_sym_POUNDelse] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - }, - [1744] = { - [sym_block_comment] = STATE(1744), - [sym_compiler_directive_decl] = STATE(1744), - [sym_fsi_directive_decl] = STATE(1744), - [sym_preproc_line] = STATE(1744), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_AT_AT_GT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - }, - [1745] = { - [sym_block_comment] = STATE(1745), - [sym_compiler_directive_decl] = STATE(1745), - [sym_fsi_directive_decl] = STATE(1745), - [sym_preproc_line] = STATE(1745), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_as] = ACTIONS(3611), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_with] = ACTIONS(3611), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), - [sym__dedent] = ACTIONS(3613), + [1745] = { + [sym_block_comment] = STATE(1745), + [sym_compiler_directive_decl] = STATE(1745), + [sym_fsi_directive_decl] = STATE(1745), + [sym_preproc_line] = STATE(1745), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1746] = { [sym_block_comment] = STATE(1746), [sym_compiler_directive_decl] = STATE(1746), [sym_fsi_directive_decl] = STATE(1746), [sym_preproc_line] = STATE(1746), - [sym_identifier] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_let_BANG] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_COLON_QMARK] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LBRACK_PIPE] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_LT_AT] = ACTIONS(3219), - [anon_sym_LT_AT_AT] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_return_BANG] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_yield_BANG] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_upcast] = ACTIONS(3219), - [anon_sym_downcast] = ACTIONS(3219), - [anon_sym_COLON_GT] = ACTIONS(3217), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_fun] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_match_BANG] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_DOT_LBRACK] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_use] = ACTIONS(3219), - [anon_sym_use_BANG] = ACTIONS(3217), - [anon_sym_do_BANG] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3217), - [anon_sym_begin] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [aux_sym_char_token1] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_AT_DQUOTE] = ACTIONS(3217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), - [sym_bool] = ACTIONS(3219), - [sym_unit] = ACTIONS(3217), - [anon_sym_LPAREN_PIPE] = ACTIONS(3219), - [sym_op_identifier] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS_DOT] = ACTIONS(3219), - [anon_sym_DASH_DOT] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [aux_sym_prefix_op_token1] = ACTIONS(3219), - [aux_sym_infix_op_token1] = ACTIONS(3217), - [aux_sym_infix_op_token2] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3219), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3219), - [sym_int] = ACTIONS(3219), - [sym_xint] = ACTIONS(3217), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), + [sym__dedent] = ACTIONS(3415), }, [1747] = { [sym_block_comment] = STATE(1747), [sym_compiler_directive_decl] = STATE(1747), [sym_fsi_directive_decl] = STATE(1747), [sym_preproc_line] = STATE(1747), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_DOT_DOT2] = ACTIONS(3688), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - [sym__dedent] = ACTIONS(3688), - }, - [1748] = { - [sym_block_comment] = STATE(1748), - [sym_compiler_directive_decl] = STATE(1748), - [sym_fsi_directive_decl] = STATE(1748), - [sym_preproc_line] = STATE(1748), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_as] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_with] = ACTIONS(3611), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_DOT_DOT2] = ACTIONS(3613), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), - [sym__dedent] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), + [sym__dedent] = ACTIONS(3397), + }, + [1748] = { + [sym_block_comment] = STATE(1748), + [sym_compiler_directive_decl] = STATE(1748), + [sym_fsi_directive_decl] = STATE(1748), + [sym_preproc_line] = STATE(1748), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_as] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), + [sym__dedent] = ACTIONS(3580), }, [1749] = { [sym_block_comment] = STATE(1749), [sym_compiler_directive_decl] = STATE(1749), [sym_fsi_directive_decl] = STATE(1749), [sym_preproc_line] = STATE(1749), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_DOT_DOT2] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), - [sym__dedent] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_DOT_DOT2] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), + [sym__dedent] = ACTIONS(3694), }, [1750] = { [sym_block_comment] = STATE(1750), [sym_compiler_directive_decl] = STATE(1750), [sym_fsi_directive_decl] = STATE(1750), [sym_preproc_line] = STATE(1750), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_DOT_DOT2] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), - [sym__dedent] = ACTIONS(3632), - }, - [1751] = { - [sym_block_comment] = STATE(1751), - [sym_compiler_directive_decl] = STATE(1751), - [sym_fsi_directive_decl] = STATE(1751), - [sym_preproc_line] = STATE(1751), - [aux_sym_rules_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4216), - }, - [1752] = { - [sym_block_comment] = STATE(1752), - [sym_compiler_directive_decl] = STATE(1752), - [sym_fsi_directive_decl] = STATE(1752), - [sym_preproc_line] = STATE(1752), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), - [sym__dedent] = ACTIONS(3628), - }, - [1753] = { - [sym_block_comment] = STATE(1753), - [sym_compiler_directive_decl] = STATE(1753), - [sym_fsi_directive_decl] = STATE(1753), - [sym_preproc_line] = STATE(1753), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - [sym__dedent] = ACTIONS(3644), - }, - [1754] = { - [sym_block_comment] = STATE(1754), - [sym_compiler_directive_decl] = STATE(1754), - [sym_fsi_directive_decl] = STATE(1754), - [sym_preproc_line] = STATE(1754), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_as] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), - [sym__dedent] = ACTIONS(3632), - }, - [1755] = { - [sym_block_comment] = STATE(1755), - [sym_compiler_directive_decl] = STATE(1755), - [sym_fsi_directive_decl] = STATE(1755), - [sym_preproc_line] = STATE(1755), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - [sym__dedent] = ACTIONS(3644), - }, - [1756] = { - [sym_block_comment] = STATE(1756), - [sym_compiler_directive_decl] = STATE(1756), - [sym_fsi_directive_decl] = STATE(1756), - [sym_preproc_line] = STATE(1756), [sym_identifier] = ACTIONS(3655), [anon_sym_EQ] = ACTIONS(3653), [anon_sym_COLON] = ACTIONS(3655), @@ -241693,7 +241511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3655), [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -241703,857 +241521,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(3653), [sym__dedent] = ACTIONS(3653), }, - [1757] = { - [sym_block_comment] = STATE(1757), - [sym_compiler_directive_decl] = STATE(1757), - [sym_fsi_directive_decl] = STATE(1757), - [sym_preproc_line] = STATE(1757), - [aux_sym_rules_repeat1] = STATE(1681), - [sym_identifier] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3152), - [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(3152), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_COLON_QMARK] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LBRACK_PIPE] = ACTIONS(3152), - [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(3152), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_return_BANG] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_yield_BANG] = ACTIONS(3152), - [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(3152), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_fun] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_match_BANG] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_LT_DASH] = ACTIONS(3154), - [anon_sym_DOT_LBRACK] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_use] = ACTIONS(3154), - [anon_sym_use_BANG] = ACTIONS(3152), - [anon_sym_do_BANG] = ACTIONS(3152), - [anon_sym_begin] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_or] = ACTIONS(3154), - [aux_sym_char_token1] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_AT_DQUOTE] = ACTIONS(3152), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3152), - [sym_bool] = ACTIONS(3154), - [sym_unit] = ACTIONS(3152), - [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(3152), - [aux_sym_prefix_op_token1] = ACTIONS(3154), - [aux_sym_infix_op_token1] = ACTIONS(3152), - [aux_sym_infix_op_token2] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3154), - [anon_sym_COLON_EQ] = ACTIONS(3152), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), - [sym_int] = ACTIONS(3154), - [sym_xint] = ACTIONS(3152), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3152), - [sym__newline] = ACTIONS(4219), - }, - [1758] = { - [sym_block_comment] = STATE(1758), - [sym_compiler_directive_decl] = STATE(1758), - [sym_fsi_directive_decl] = STATE(1758), - [sym_preproc_line] = STATE(1758), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), + [1751] = { + [sym_block_comment] = STATE(1751), + [sym_compiler_directive_decl] = STATE(1751), + [sym_fsi_directive_decl] = STATE(1751), + [sym_preproc_line] = STATE(1751), + [sym_identifier] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_let_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_COLON_QMARK] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_with] = ACTIONS(3655), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_LBRACK_PIPE] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LT_AT] = ACTIONS(3215), + [anon_sym_LT_AT_AT] = ACTIONS(3215), + [anon_sym_AT_AT_GT] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_return_BANG] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_yield_BANG] = ACTIONS(3217), + [anon_sym_lazy] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_upcast] = ACTIONS(3215), + [anon_sym_downcast] = ACTIONS(3215), + [anon_sym_COLON_GT] = ACTIONS(3217), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_elif] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_fun] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_match_BANG] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_DOT_LBRACK] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_use_BANG] = ACTIONS(3217), + [anon_sym_do_BANG] = ACTIONS(3217), + [anon_sym_begin] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_or] = ACTIONS(3215), + [aux_sym_char_token1] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_AT_DQUOTE] = ACTIONS(3217), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3217), + [sym_bool] = ACTIONS(3215), + [sym_unit] = ACTIONS(3217), + [anon_sym_LPAREN_PIPE] = ACTIONS(3215), + [sym_op_identifier] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_DOT] = ACTIONS(3215), + [anon_sym_DASH_DOT] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [aux_sym_prefix_op_token1] = ACTIONS(3215), + [aux_sym_infix_op_token1] = ACTIONS(3217), + [aux_sym_infix_op_token2] = ACTIONS(3215), + [anon_sym_PIPE_PIPE] = ACTIONS(3215), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(3215), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3215), + [sym_int] = ACTIONS(3215), + [sym_xint] = ACTIONS(3217), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), - [sym__dedent] = ACTIONS(3653), - }, - [1759] = { - [sym_block_comment] = STATE(1759), - [sym_compiler_directive_decl] = STATE(1759), - [sym_fsi_directive_decl] = STATE(1759), - [sym_preproc_line] = STATE(1759), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - }, - [1760] = { - [sym_block_comment] = STATE(1760), - [sym_compiler_directive_decl] = STATE(1760), - [sym_fsi_directive_decl] = STATE(1760), - [sym_preproc_line] = STATE(1760), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_as] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [anon_sym_POUNDif] = ACTIONS(3217), + [sym__newline] = ACTIONS(3217), }, - [1761] = { - [sym_block_comment] = STATE(1761), - [sym_compiler_directive_decl] = STATE(1761), - [sym_fsi_directive_decl] = STATE(1761), - [sym_preproc_line] = STATE(1761), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_with] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), - [sym__dedent] = ACTIONS(3710), + [1752] = { + [sym_block_comment] = STATE(1752), + [sym_compiler_directive_decl] = STATE(1752), + [sym_fsi_directive_decl] = STATE(1752), + [sym_preproc_line] = STATE(1752), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_as] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), + [sym__dedent] = ACTIONS(3455), }, - [1762] = { - [sym_block_comment] = STATE(1762), - [sym_compiler_directive_decl] = STATE(1762), - [sym_fsi_directive_decl] = STATE(1762), - [sym_preproc_line] = STATE(1762), - [aux_sym_long_identifier_repeat1] = STATE(1762), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [1753] = { + [sym_block_comment] = STATE(1753), + [sym_compiler_directive_decl] = STATE(1753), + [sym_fsi_directive_decl] = STATE(1753), + [sym_preproc_line] = STATE(1753), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4222), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1763] = { - [sym_block_comment] = STATE(1763), - [sym_compiler_directive_decl] = STATE(1763), - [sym_fsi_directive_decl] = STATE(1763), - [sym_preproc_line] = STATE(1763), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_as] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - [sym__dedent] = ACTIONS(3468), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), + [sym__dedent] = ACTIONS(3425), }, - [1764] = { - [sym_block_comment] = STATE(1764), - [sym_compiler_directive_decl] = STATE(1764), - [sym_fsi_directive_decl] = STATE(1764), - [sym_preproc_line] = STATE(1764), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_as] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - [sym__dedent] = ACTIONS(3460), + [1754] = { + [sym_block_comment] = STATE(1754), + [sym_compiler_directive_decl] = STATE(1754), + [sym_fsi_directive_decl] = STATE(1754), + [sym_preproc_line] = STATE(1754), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), + [sym__dedent] = ACTIONS(3684), }, - [1765] = { - [sym_block_comment] = STATE(1765), - [sym_compiler_directive_decl] = STATE(1765), - [sym_fsi_directive_decl] = STATE(1765), - [sym_preproc_line] = STATE(1765), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_as] = ACTIONS(3458), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - [sym__dedent] = ACTIONS(3456), + [1755] = { + [sym_block_comment] = STATE(1755), + [sym_compiler_directive_decl] = STATE(1755), + [sym_fsi_directive_decl] = STATE(1755), + [sym_preproc_line] = STATE(1755), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), + [sym__dedent] = ACTIONS(3433), }, - [1766] = { - [sym_block_comment] = STATE(1766), - [sym_compiler_directive_decl] = STATE(1766), - [sym_fsi_directive_decl] = STATE(1766), - [sym_preproc_line] = STATE(1766), + [1756] = { + [sym_block_comment] = STATE(1756), + [sym_compiler_directive_decl] = STATE(1756), + [sym_fsi_directive_decl] = STATE(1756), + [sym_preproc_line] = STATE(1756), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -242633,7 +242075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -242643,663 +242085,1603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(2526), [sym__dedent] = ACTIONS(2526), }, + [1757] = { + [sym_block_comment] = STATE(1757), + [sym_compiler_directive_decl] = STATE(1757), + [sym_fsi_directive_decl] = STATE(1757), + [sym_preproc_line] = STATE(1757), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), + [sym__dedent] = ACTIONS(3437), + }, + [1758] = { + [sym_block_comment] = STATE(1758), + [sym_compiler_directive_decl] = STATE(1758), + [sym_fsi_directive_decl] = STATE(1758), + [sym_preproc_line] = STATE(1758), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), + [sym__dedent] = ACTIONS(3596), + }, + [1759] = { + [sym_block_comment] = STATE(1759), + [sym_compiler_directive_decl] = STATE(1759), + [sym_fsi_directive_decl] = STATE(1759), + [sym_preproc_line] = STATE(1759), + [aux_sym_long_identifier_repeat1] = STATE(1669), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), + }, + [1760] = { + [sym_block_comment] = STATE(1760), + [sym_compiler_directive_decl] = STATE(1760), + [sym_fsi_directive_decl] = STATE(1760), + [sym_preproc_line] = STATE(1760), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), + [sym__dedent] = ACTIONS(3694), + }, + [1761] = { + [sym_block_comment] = STATE(1761), + [sym_compiler_directive_decl] = STATE(1761), + [sym_fsi_directive_decl] = STATE(1761), + [sym_preproc_line] = STATE(1761), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), + [sym__dedent] = ACTIONS(3441), + }, + [1762] = { + [sym_block_comment] = STATE(1762), + [sym_compiler_directive_decl] = STATE(1762), + [sym_fsi_directive_decl] = STATE(1762), + [sym_preproc_line] = STATE(1762), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_DASH_GT] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_DOT_DOT] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), + }, + [1763] = { + [sym_block_comment] = STATE(1763), + [sym_compiler_directive_decl] = STATE(1763), + [sym_fsi_directive_decl] = STATE(1763), + [sym_preproc_line] = STATE(1763), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), + [sym__dedent] = ACTIONS(3700), + }, + [1764] = { + [sym_block_comment] = STATE(1764), + [sym_compiler_directive_decl] = STATE(1764), + [sym_fsi_directive_decl] = STATE(1764), + [sym_preproc_line] = STATE(1764), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_DOT_DOT] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), + }, + [1765] = { + [sym_block_comment] = STATE(1765), + [sym_compiler_directive_decl] = STATE(1765), + [sym_fsi_directive_decl] = STATE(1765), + [sym_preproc_line] = STATE(1765), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_DOT_DOT2] = ACTIONS(3477), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), + [sym__dedent] = ACTIONS(3477), + }, + [1766] = { + [sym_block_comment] = STATE(1766), + [sym_compiler_directive_decl] = STATE(1766), + [sym_fsi_directive_decl] = STATE(1766), + [sym_preproc_line] = STATE(1766), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_DOT_DOT2] = ACTIONS(3425), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), + [sym__dedent] = ACTIONS(3425), + }, [1767] = { [sym_block_comment] = STATE(1767), [sym_compiler_directive_decl] = STATE(1767), [sym_fsi_directive_decl] = STATE(1767), [sym_preproc_line] = STATE(1767), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - [sym__dedent] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_as] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3725), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), + [sym__dedent] = ACTIONS(3723), }, [1768] = { [sym_block_comment] = STATE(1768), [sym_compiler_directive_decl] = STATE(1768), [sym_fsi_directive_decl] = STATE(1768), [sym_preproc_line] = STATE(1768), - [aux_sym_long_identifier_repeat1] = STATE(1739), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4225), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_DASH_GT] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), + [sym__dedent] = ACTIONS(3445), }, [1769] = { [sym_block_comment] = STATE(1769), [sym_compiler_directive_decl] = STATE(1769), [sym_fsi_directive_decl] = STATE(1769), [sym_preproc_line] = STATE(1769), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_DOT_DOT2] = ACTIONS(3468), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - [sym__dedent] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_DOT_DOT2] = ACTIONS(3590), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), + [sym__dedent] = ACTIONS(3590), }, [1770] = { [sym_block_comment] = STATE(1770), [sym_compiler_directive_decl] = STATE(1770), [sym_fsi_directive_decl] = STATE(1770), [sym_preproc_line] = STATE(1770), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_DOT_DOT2] = ACTIONS(3460), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - [sym__dedent] = ACTIONS(3460), - }, - [1771] = { - [sym_block_comment] = STATE(1771), - [sym_compiler_directive_decl] = STATE(1771), - [sym_fsi_directive_decl] = STATE(1771), - [sym_preproc_line] = STATE(1771), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - [sym__dedent] = ACTIONS(3429), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), + [sym__dedent] = ACTIONS(3427), + }, + [1771] = { + [sym_block_comment] = STATE(1771), + [sym_compiler_directive_decl] = STATE(1771), + [sym_fsi_directive_decl] = STATE(1771), + [sym_preproc_line] = STATE(1771), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_DOT_DOT2] = ACTIONS(3491), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), + [sym__dedent] = ACTIONS(3491), }, [1772] = { [sym_block_comment] = STATE(1772), [sym_compiler_directive_decl] = STATE(1772), [sym_fsi_directive_decl] = STATE(1772), [sym_preproc_line] = STATE(1772), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_DOT_DOT2] = ACTIONS(3456), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - [sym__dedent] = ACTIONS(3456), + [aux_sym_sequential_expression_repeat1] = STATE(1772), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [anon_sym_POUNDendif] = ACTIONS(3297), + [anon_sym_POUNDelse] = ACTIONS(3297), + [sym__newline] = ACTIONS(4228), }, [1773] = { [sym_block_comment] = STATE(1773), [sym_compiler_directive_decl] = STATE(1773), [sym_fsi_directive_decl] = STATE(1773), [sym_preproc_line] = STATE(1773), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_DOT_DOT2] = ACTIONS(3452), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - [sym__dedent] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_as] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), + [sym__dedent] = ACTIONS(3501), }, [1774] = { [sym_block_comment] = STATE(1774), @@ -243307,64 +243689,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(1774), [sym_preproc_line] = STATE(1774), [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3433), [anon_sym_COLON] = ACTIONS(3431), [anon_sym_return] = ACTIONS(3431), [anon_sym_do] = ACTIONS(3431), [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3433), [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3433), [anon_sym_null] = ACTIONS(3431), [anon_sym_QMARK] = ACTIONS(3431), [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3433), [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), [anon_sym_LBRACE] = ACTIONS(3431), [anon_sym_LT_AT] = ACTIONS(3431), [anon_sym_LT_AT_AT] = ACTIONS(3431), [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), [anon_sym_with] = ACTIONS(3431), [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3433), [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3433), [anon_sym_lazy] = ACTIONS(3431), [anon_sym_assert] = ACTIONS(3431), [anon_sym_upcast] = ACTIONS(3431), [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), [anon_sym_for] = ACTIONS(3431), [anon_sym_while] = ACTIONS(3431), [anon_sym_if] = ACTIONS(3431), [anon_sym_fun] = ACTIONS(3431), [anon_sym_try] = ACTIONS(3431), [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3433), [anon_sym_function] = ACTIONS(3431), [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), [anon_sym_begin] = ACTIONS(3431), [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_DOT_DOT2] = ACTIONS(3429), + [anon_sym_DOT_DOT2] = ACTIONS(3433), [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3433), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), + [sym_unit] = ACTIONS(3433), [anon_sym_LPAREN_PIPE] = ACTIONS(3431), [sym_op_identifier] = ACTIONS(3431), [anon_sym_PLUS] = ACTIONS(3431), @@ -243373,1690 +243755,3382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3431), [anon_sym_PERCENT] = ACTIONS(3431), [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3433), [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3433), [aux_sym_infix_op_token2] = ACTIONS(3431), [anon_sym_PIPE_PIPE] = ACTIONS(3431), [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3433), [anon_sym_DOLLAR] = ACTIONS(3431), [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - [sym__dedent] = ACTIONS(3429), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), + [sym__dedent] = ACTIONS(3433), }, [1775] = { [sym_block_comment] = STATE(1775), [sym_compiler_directive_decl] = STATE(1775), [sym_fsi_directive_decl] = STATE(1775), [sym_preproc_line] = STATE(1775), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_DOT_DOT2] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), - [sym__dedent] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_as] = ACTIONS(3717), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3717), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), + [sym__dedent] = ACTIONS(3715), }, [1776] = { [sym_block_comment] = STATE(1776), [sym_compiler_directive_decl] = STATE(1776), [sym_fsi_directive_decl] = STATE(1776), [sym_preproc_line] = STATE(1776), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_DOT_DOT2] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), - [sym__dedent] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_done] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1777] = { [sym_block_comment] = STATE(1777), [sym_compiler_directive_decl] = STATE(1777), [sym_fsi_directive_decl] = STATE(1777), [sym_preproc_line] = STATE(1777), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_DOT_DOT2] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), - [sym__dedent] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), + [sym__dedent] = ACTIONS(3680), }, [1778] = { [sym_block_comment] = STATE(1778), [sym_compiler_directive_decl] = STATE(1778), [sym_fsi_directive_decl] = STATE(1778), [sym_preproc_line] = STATE(1778), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_DOT_DOT2] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), - [sym__dedent] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_DOT_DOT2] = ACTIONS(3700), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), + [sym__dedent] = ACTIONS(3700), }, [1779] = { [sym_block_comment] = STATE(1779), [sym_compiler_directive_decl] = STATE(1779), [sym_fsi_directive_decl] = STATE(1779), [sym_preproc_line] = STATE(1779), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_DOT_DOT2] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - [sym__dedent] = ACTIONS(3401), - }, - [1780] = { - [sym_block_comment] = STATE(1780), - [sym_compiler_directive_decl] = STATE(1780), - [sym_fsi_directive_decl] = STATE(1780), - [sym_preproc_line] = STATE(1780), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_DOT_DOT2] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), - [sym__dedent] = ACTIONS(3397), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), + }, + [1780] = { + [sym_block_comment] = STATE(1780), + [sym_compiler_directive_decl] = STATE(1780), + [sym_fsi_directive_decl] = STATE(1780), + [sym_preproc_line] = STATE(1780), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3741), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_DOT_DOT2] = ACTIONS(3739), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), + [sym__dedent] = ACTIONS(3739), }, [1781] = { [sym_block_comment] = STATE(1781), [sym_compiler_directive_decl] = STATE(1781), [sym_fsi_directive_decl] = STATE(1781), [sym_preproc_line] = STATE(1781), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_with] = ACTIONS(3663), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_DOT_DOT2] = ACTIONS(3661), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), - [sym__dedent] = ACTIONS(3661), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), + [sym__dedent] = ACTIONS(3437), }, [1782] = { [sym_block_comment] = STATE(1782), [sym_compiler_directive_decl] = STATE(1782), [sym_fsi_directive_decl] = STATE(1782), [sym_preproc_line] = STATE(1782), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_DOT_DOT2] = ACTIONS(3552), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), - [sym__dedent] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_DOT_DOT2] = ACTIONS(3649), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), + [sym__dedent] = ACTIONS(3649), }, [1783] = { [sym_block_comment] = STATE(1783), [sym_compiler_directive_decl] = STATE(1783), [sym_fsi_directive_decl] = STATE(1783), [sym_preproc_line] = STATE(1783), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_with] = ACTIONS(3605), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_DOT_DOT2] = ACTIONS(3603), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), - [sym__dedent] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_DOT_DOT2] = ACTIONS(3451), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), + [sym__dedent] = ACTIONS(3451), }, [1784] = { [sym_block_comment] = STATE(1784), [sym_compiler_directive_decl] = STATE(1784), [sym_fsi_directive_decl] = STATE(1784), [sym_preproc_line] = STATE(1784), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_as] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_with] = ACTIONS(3609), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_DOT_DOT2] = ACTIONS(3607), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), - [sym__dedent] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), + [sym__dedent] = ACTIONS(3673), }, [1785] = { [sym_block_comment] = STATE(1785), [sym_compiler_directive_decl] = STATE(1785), [sym_fsi_directive_decl] = STATE(1785), [sym_preproc_line] = STATE(1785), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_DOT_DOT2] = ACTIONS(3706), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), - [sym__dedent] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), + [sym__dedent] = ACTIONS(3665), }, [1786] = { [sym_block_comment] = STATE(1786), [sym_compiler_directive_decl] = STATE(1786), [sym_fsi_directive_decl] = STATE(1786), [sym_preproc_line] = STATE(1786), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_as] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - [sym__dedent] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_DOT_DOT2] = ACTIONS(3645), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + [sym__dedent] = ACTIONS(3645), }, [1787] = { [sym_block_comment] = STATE(1787), [sym_compiler_directive_decl] = STATE(1787), [sym_fsi_directive_decl] = STATE(1787), [sym_preproc_line] = STATE(1787), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_AT_AT_GT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), + [sym__dedent] = ACTIONS(3441), }, [1788] = { [sym_block_comment] = STATE(1788), [sym_compiler_directive_decl] = STATE(1788), [sym_fsi_directive_decl] = STATE(1788), [sym_preproc_line] = STATE(1788), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), - [sym__dedent] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_DOT_DOT2] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), + [sym__dedent] = ACTIONS(3481), }, [1789] = { [sym_block_comment] = STATE(1789), [sym_compiler_directive_decl] = STATE(1789), [sym_fsi_directive_decl] = STATE(1789), [sym_preproc_line] = STATE(1789), - [aux_sym_sequential_expression_repeat1] = STATE(1789), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4229), - [sym__dedent] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [1790] = { [sym_block_comment] = STATE(1790), [sym_compiler_directive_decl] = STATE(1790), [sym_fsi_directive_decl] = STATE(1790), [sym_preproc_line] = STATE(1790), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_elif] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_as] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + [sym__dedent] = ACTIONS(3566), }, [1791] = { [sym_block_comment] = STATE(1791), [sym_compiler_directive_decl] = STATE(1791), [sym_fsi_directive_decl] = STATE(1791), [sym_preproc_line] = STATE(1791), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_as] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), + }, + [1792] = { + [sym_block_comment] = STATE(1792), + [sym_compiler_directive_decl] = STATE(1792), + [sym_fsi_directive_decl] = STATE(1792), + [sym_preproc_line] = STATE(1792), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_as] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + [sym__dedent] = ACTIONS(3745), + }, + [1793] = { + [sym_block_comment] = STATE(1793), + [sym_compiler_directive_decl] = STATE(1793), + [sym_fsi_directive_decl] = STATE(1793), + [sym_preproc_line] = STATE(1793), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), + [sym__dedent] = ACTIONS(3590), + }, + [1794] = { + [sym_block_comment] = STATE(1794), + [sym_compiler_directive_decl] = STATE(1794), + [sym_fsi_directive_decl] = STATE(1794), + [sym_preproc_line] = STATE(1794), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1795] = { + [sym_block_comment] = STATE(1795), + [sym_compiler_directive_decl] = STATE(1795), + [sym_fsi_directive_decl] = STATE(1795), + [sym_preproc_line] = STATE(1795), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_DOT_DOT2] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), + [sym__dedent] = ACTIONS(3633), + }, + [1796] = { + [sym_block_comment] = STATE(1796), + [sym_compiler_directive_decl] = STATE(1796), + [sym_fsi_directive_decl] = STATE(1796), + [sym_preproc_line] = STATE(1796), + [aux_sym_long_identifier_repeat1] = STATE(1822), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [anon_sym_POUNDendif] = ACTIONS(2954), + [anon_sym_POUNDelse] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1797] = { + [sym_block_comment] = STATE(1797), + [sym_compiler_directive_decl] = STATE(1797), + [sym_fsi_directive_decl] = STATE(1797), + [sym_preproc_line] = STATE(1797), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_as] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), + [sym__dedent] = ACTIONS(3547), + }, + [1798] = { + [sym_block_comment] = STATE(1798), + [sym_compiler_directive_decl] = STATE(1798), + [sym_fsi_directive_decl] = STATE(1798), + [sym_preproc_line] = STATE(1798), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4235), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), + }, + [1799] = { + [sym_block_comment] = STATE(1799), + [sym_compiler_directive_decl] = STATE(1799), + [sym_fsi_directive_decl] = STATE(1799), + [sym_preproc_line] = STATE(1799), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_as] = ACTIONS(3467), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), + [sym__dedent] = ACTIONS(3469), + }, + [1800] = { + [sym_block_comment] = STATE(1800), + [sym_compiler_directive_decl] = STATE(1800), + [sym_fsi_directive_decl] = STATE(1800), + [sym_preproc_line] = STATE(1800), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), + [sym__dedent] = ACTIONS(3459), + }, + [1801] = { + [sym_block_comment] = STATE(1801), + [sym_compiler_directive_decl] = STATE(1801), + [sym_fsi_directive_decl] = STATE(1801), + [sym_preproc_line] = STATE(1801), + [sym_identifier] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_let_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_COLON_QMARK] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3188), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LBRACK_PIPE] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LT_AT] = ACTIONS(3188), + [anon_sym_LT_AT_AT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_LBRACE_PIPE] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_return_BANG] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_yield_BANG] = ACTIONS(3190), + [anon_sym_lazy] = ACTIONS(3188), + [anon_sym_assert] = ACTIONS(3188), + [anon_sym_upcast] = ACTIONS(3188), + [anon_sym_downcast] = ACTIONS(3188), + [anon_sym_COLON_GT] = ACTIONS(3190), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_elif] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_fun] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_match_BANG] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_DOT_LBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_use_BANG] = ACTIONS(3190), + [anon_sym_do_BANG] = ACTIONS(3190), + [anon_sym_begin] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3188), + [aux_sym_char_token1] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_AT_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), + [sym_bool] = ACTIONS(3188), + [sym_unit] = ACTIONS(3190), + [anon_sym_LPAREN_PIPE] = ACTIONS(3188), + [sym_op_identifier] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_PLUS_DOT] = ACTIONS(3188), + [anon_sym_DASH_DOT] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3190), + [aux_sym_prefix_op_token1] = ACTIONS(3188), + [aux_sym_infix_op_token1] = ACTIONS(3190), + [aux_sym_infix_op_token2] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(3188), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3188), + [sym_int] = ACTIONS(3188), + [sym_xint] = ACTIONS(3190), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), - [sym__dedent] = ACTIONS(3421), + [anon_sym_POUNDif] = ACTIONS(3190), + [anon_sym_POUNDendif] = ACTIONS(3190), + [sym__newline] = ACTIONS(3190), }, - [1792] = { - [sym_block_comment] = STATE(1792), - [sym_compiler_directive_decl] = STATE(1792), - [sym_fsi_directive_decl] = STATE(1792), - [sym_preproc_line] = STATE(1792), + [1802] = { + [sym_block_comment] = STATE(1802), + [sym_compiler_directive_decl] = STATE(1802), + [sym_fsi_directive_decl] = STATE(1802), + [sym_preproc_line] = STATE(1802), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), + [sym__dedent] = ACTIONS(3721), + }, + [1803] = { + [sym_block_comment] = STATE(1803), + [sym_compiler_directive_decl] = STATE(1803), + [sym_fsi_directive_decl] = STATE(1803), + [sym_preproc_line] = STATE(1803), + [aux_sym_long_identifier_repeat1] = STATE(1720), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [anon_sym_EQ2] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [1804] = { + [sym_block_comment] = STATE(1804), + [sym_compiler_directive_decl] = STATE(1804), + [sym_fsi_directive_decl] = STATE(1804), + [sym_preproc_line] = STATE(1804), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), + [sym__dedent] = ACTIONS(3588), + }, + [1805] = { + [sym_block_comment] = STATE(1805), + [sym_compiler_directive_decl] = STATE(1805), + [sym_fsi_directive_decl] = STATE(1805), + [sym_preproc_line] = STATE(1805), + [aux_sym_sequential_expression_repeat1] = STATE(1805), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_DOT_DOT2] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4239), + [sym__dedent] = ACTIONS(3297), + }, + [1806] = { + [sym_block_comment] = STATE(1806), + [sym_compiler_directive_decl] = STATE(1806), + [sym_fsi_directive_decl] = STATE(1806), + [sym_preproc_line] = STATE(1806), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4242), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [1807] = { + [sym_block_comment] = STATE(1807), + [sym_compiler_directive_decl] = STATE(1807), + [sym_fsi_directive_decl] = STATE(1807), + [sym_preproc_line] = STATE(1807), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_as] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), + [sym__dedent] = ACTIONS(3481), + }, + [1808] = { + [sym_block_comment] = STATE(1808), + [sym_compiler_directive_decl] = STATE(1808), + [sym_fsi_directive_decl] = STATE(1808), + [sym_preproc_line] = STATE(1808), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), + [sym__dedent] = ACTIONS(3657), + }, + [1809] = { + [sym_block_comment] = STATE(1809), + [sym_compiler_directive_decl] = STATE(1809), + [sym_fsi_directive_decl] = STATE(1809), + [sym_preproc_line] = STATE(1809), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [sym__dedent] = ACTIONS(3485), + }, + [1810] = { + [sym_block_comment] = STATE(1810), + [sym_compiler_directive_decl] = STATE(1810), + [sym_fsi_directive_decl] = STATE(1810), + [sym_preproc_line] = STATE(1810), [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3421), [anon_sym_COLON] = ACTIONS(3419), [anon_sym_return] = ACTIONS(3419), [anon_sym_do] = ACTIONS(3419), [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3421), [anon_sym_as] = ACTIONS(3419), [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3421), [anon_sym_null] = ACTIONS(3419), [anon_sym_QMARK] = ACTIONS(3419), [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3421), [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), [anon_sym_LBRACE] = ACTIONS(3419), [anon_sym_LT_AT] = ACTIONS(3419), [anon_sym_LT_AT_AT] = ACTIONS(3419), [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), [anon_sym_with] = ACTIONS(3419), [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3421), [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3421), [anon_sym_lazy] = ACTIONS(3419), [anon_sym_assert] = ACTIONS(3419), [anon_sym_upcast] = ACTIONS(3419), [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), [anon_sym_for] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), [anon_sym_fun] = ACTIONS(3419), [anon_sym_try] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3421), [anon_sym_function] = ACTIONS(3419), [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), [anon_sym_begin] = ACTIONS(3419), [anon_sym_LPAREN2] = ACTIONS(3419), [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), + [sym_unit] = ACTIONS(3421), [anon_sym_LPAREN_PIPE] = ACTIONS(3419), [sym_op_identifier] = ACTIONS(3419), [anon_sym_PLUS] = ACTIONS(3419), @@ -245065,1443 +247139,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3419), [anon_sym_PERCENT] = ACTIONS(3419), [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3421), [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3421), [aux_sym_infix_op_token2] = ACTIONS(3419), [anon_sym_PIPE_PIPE] = ACTIONS(3419), [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3421), [anon_sym_DOLLAR] = ACTIONS(3419), [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), - [sym__dedent] = ACTIONS(3417), - }, - [1793] = { - [sym_block_comment] = STATE(1793), - [sym_compiler_directive_decl] = STATE(1793), - [sym_fsi_directive_decl] = STATE(1793), - [sym_preproc_line] = STATE(1793), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_AT_AT_GT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_done] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), + [sym__dedent] = ACTIONS(3421), }, - [1794] = { - [sym_block_comment] = STATE(1794), - [sym_compiler_directive_decl] = STATE(1794), - [sym_fsi_directive_decl] = STATE(1794), - [sym_preproc_line] = STATE(1794), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [1811] = { + [sym_block_comment] = STATE(1811), + [sym_compiler_directive_decl] = STATE(1811), + [sym_fsi_directive_decl] = STATE(1811), + [sym_preproc_line] = STATE(1811), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [anon_sym_EQ2] = ACTIONS(4232), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), - }, - [1795] = { - [sym_block_comment] = STATE(1795), - [sym_compiler_directive_decl] = STATE(1795), - [sym_fsi_directive_decl] = STATE(1795), - [sym_preproc_line] = STATE(1795), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), - }, - [1796] = { - [sym_block_comment] = STATE(1796), - [sym_compiler_directive_decl] = STATE(1796), - [sym_fsi_directive_decl] = STATE(1796), - [sym_preproc_line] = STATE(1796), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_DOT_DOT2] = ACTIONS(3541), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), - [sym__dedent] = ACTIONS(3541), - }, - [1797] = { - [sym_block_comment] = STATE(1797), - [sym_compiler_directive_decl] = STATE(1797), - [sym_fsi_directive_decl] = STATE(1797), - [sym_preproc_line] = STATE(1797), - [sym_identifier] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_let_BANG] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_null] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_COLON_QMARK] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_LT_AT] = ACTIONS(3161), - [anon_sym_LT_AT_AT] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_LBRACE_PIPE] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_return_BANG] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_yield_BANG] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_upcast] = ACTIONS(3161), - [anon_sym_downcast] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_elif] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_fun] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_match_BANG] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_DOT_LBRACK] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_use] = ACTIONS(3161), - [anon_sym_use_BANG] = ACTIONS(3163), - [anon_sym_do_BANG] = ACTIONS(3163), - [anon_sym_DOT_DOT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [aux_sym_char_token1] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [anon_sym_AT_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3163), - [sym_bool] = ACTIONS(3161), - [sym_unit] = ACTIONS(3163), - [anon_sym_LPAREN_PIPE] = ACTIONS(3161), - [sym_op_identifier] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3163), - [aux_sym_prefix_op_token1] = ACTIONS(3161), - [aux_sym_infix_op_token1] = ACTIONS(3163), - [aux_sym_infix_op_token2] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), - [sym_int] = ACTIONS(3161), - [sym_xint] = ACTIONS(3163), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3163), - [sym__newline] = ACTIONS(3163), - }, - [1798] = { - [sym_block_comment] = STATE(1798), - [sym_compiler_directive_decl] = STATE(1798), - [sym_fsi_directive_decl] = STATE(1798), - [sym_preproc_line] = STATE(1798), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4234), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [anon_sym_POUNDendif] = ACTIONS(3314), - [anon_sym_POUNDelse] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - }, - [1799] = { - [sym_block_comment] = STATE(1799), - [sym_compiler_directive_decl] = STATE(1799), - [sym_fsi_directive_decl] = STATE(1799), - [sym_preproc_line] = STATE(1799), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [anon_sym_POUNDelse] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1800] = { - [sym_block_comment] = STATE(1800), - [sym_compiler_directive_decl] = STATE(1800), - [sym_fsi_directive_decl] = STATE(1800), - [sym_preproc_line] = STATE(1800), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_DOT_DOT2] = ACTIONS(3537), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - [sym__dedent] = ACTIONS(3537), - }, - [1801] = { - [sym_block_comment] = STATE(1801), - [sym_compiler_directive_decl] = STATE(1801), - [sym_fsi_directive_decl] = STATE(1801), - [sym_preproc_line] = STATE(1801), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), - [sym__dedent] = ACTIONS(3541), - }, - [1802] = { - [sym_block_comment] = STATE(1802), - [sym_compiler_directive_decl] = STATE(1802), - [sym_fsi_directive_decl] = STATE(1802), - [sym_preproc_line] = STATE(1802), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), - [sym__dedent] = ACTIONS(3720), - }, - [1803] = { - [sym_block_comment] = STATE(1803), - [sym_compiler_directive_decl] = STATE(1803), - [sym_fsi_directive_decl] = STATE(1803), - [sym_preproc_line] = STATE(1803), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), - [sym__dedent] = ACTIONS(3706), - }, - [1804] = { - [sym_block_comment] = STATE(1804), - [sym_compiler_directive_decl] = STATE(1804), - [sym_fsi_directive_decl] = STATE(1804), - [sym_preproc_line] = STATE(1804), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_AT_GT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4236), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), + [sym__dedent] = ACTIONS(3653), }, - [1805] = { - [sym_block_comment] = STATE(1805), - [sym_compiler_directive_decl] = STATE(1805), - [sym_fsi_directive_decl] = STATE(1805), - [sym_preproc_line] = STATE(1805), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), - [sym__dedent] = ACTIONS(3413), + [1812] = { + [sym_block_comment] = STATE(1812), + [sym_compiler_directive_decl] = STATE(1812), + [sym_fsi_directive_decl] = STATE(1812), + [sym_preproc_line] = STATE(1812), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_as] = ACTIONS(3651), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), + [sym__dedent] = ACTIONS(3649), }, - [1806] = { - [sym_block_comment] = STATE(1806), - [sym_compiler_directive_decl] = STATE(1806), - [sym_fsi_directive_decl] = STATE(1806), - [sym_preproc_line] = STATE(1806), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_DOT_DOT2] = ACTIONS(3507), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), - [sym__dedent] = ACTIONS(3507), + [1813] = { + [sym_block_comment] = STATE(1813), + [sym_compiler_directive_decl] = STATE(1813), + [sym_fsi_directive_decl] = STATE(1813), + [sym_preproc_line] = STATE(1813), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3151), + [aux_sym_infix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token2] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3151), + [sym_int] = ACTIONS(4244), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, - [1807] = { - [sym_block_comment] = STATE(1807), - [sym_compiler_directive_decl] = STATE(1807), - [sym_fsi_directive_decl] = STATE(1807), - [sym_preproc_line] = STATE(1807), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_DOT_DOT2] = ACTIONS(2526), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - [sym__dedent] = ACTIONS(2526), + [1814] = { + [sym_block_comment] = STATE(1814), + [sym_compiler_directive_decl] = STATE(1814), + [sym_fsi_directive_decl] = STATE(1814), + [sym_preproc_line] = STATE(1814), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), + [sym__dedent] = ACTIONS(3445), }, - [1808] = { - [sym_block_comment] = STATE(1808), - [sym_compiler_directive_decl] = STATE(1808), - [sym_fsi_directive_decl] = STATE(1808), - [sym_preproc_line] = STATE(1808), + [1815] = { + [sym_block_comment] = STATE(1815), + [sym_compiler_directive_decl] = STATE(1815), + [sym_fsi_directive_decl] = STATE(1815), + [sym_preproc_line] = STATE(1815), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -246579,10 +247619,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(2938), - [aux_sym_decimal_token1] = ACTIONS(2820), + [anon_sym_f] = ACTIONS(2950), + [aux_sym_decimal_token1] = ACTIONS(2872), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -246591,3638 +247631,3270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, - [1809] = { - [sym_block_comment] = STATE(1809), - [sym_compiler_directive_decl] = STATE(1809), - [sym_fsi_directive_decl] = STATE(1809), - [sym_preproc_line] = STATE(1809), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_with] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_DOT_DOT2] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), - [sym__dedent] = ACTIONS(3710), - }, - [1810] = { - [sym_block_comment] = STATE(1810), - [sym_compiler_directive_decl] = STATE(1810), - [sym_fsi_directive_decl] = STATE(1810), - [sym_preproc_line] = STATE(1810), - [aux_sym_long_identifier_repeat1] = STATE(1810), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4238), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1811] = { - [sym_block_comment] = STATE(1811), - [sym_compiler_directive_decl] = STATE(1811), - [sym_fsi_directive_decl] = STATE(1811), - [sym_preproc_line] = STATE(1811), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4241), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [anon_sym_POUNDendif] = ACTIONS(3361), - [anon_sym_POUNDelse] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), - }, - [1812] = { - [sym_block_comment] = STATE(1812), - [sym_compiler_directive_decl] = STATE(1812), - [sym_fsi_directive_decl] = STATE(1812), - [sym_preproc_line] = STATE(1812), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_as] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_with] = ACTIONS(3609), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), - [sym__dedent] = ACTIONS(3607), - }, - [1813] = { - [sym_block_comment] = STATE(1813), - [sym_compiler_directive_decl] = STATE(1813), - [sym_fsi_directive_decl] = STATE(1813), - [sym_preproc_line] = STATE(1813), - [aux_sym_long_identifier_repeat1] = STATE(1810), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4243), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), - }, - [1814] = { - [sym_block_comment] = STATE(1814), - [sym_compiler_directive_decl] = STATE(1814), - [sym_fsi_directive_decl] = STATE(1814), - [sym_preproc_line] = STATE(1814), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - [sym__dedent] = ACTIONS(3401), - }, - [1815] = { - [sym_block_comment] = STATE(1815), - [sym_compiler_directive_decl] = STATE(1815), - [sym_fsi_directive_decl] = STATE(1815), - [sym_preproc_line] = STATE(1815), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_with] = ACTIONS(3605), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), - [sym__dedent] = ACTIONS(3603), - }, [1816] = { [sym_block_comment] = STATE(1816), [sym_compiler_directive_decl] = STATE(1816), [sym_fsi_directive_decl] = STATE(1816), [sym_preproc_line] = STATE(1816), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_as] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), + [sym__dedent] = ACTIONS(3570), + }, + [1817] = { + [sym_block_comment] = STATE(1817), + [sym_compiler_directive_decl] = STATE(1817), + [sym_fsi_directive_decl] = STATE(1817), + [sym_preproc_line] = STATE(1817), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), - [sym__dedent] = ACTIONS(3425), - }, - [1817] = { - [sym_block_comment] = STATE(1817), - [sym_compiler_directive_decl] = STATE(1817), - [sym_fsi_directive_decl] = STATE(1817), - [sym_preproc_line] = STATE(1817), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4245), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3140), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [sym__dedent] = ACTIONS(3601), }, [1818] = { [sym_block_comment] = STATE(1818), [sym_compiler_directive_decl] = STATE(1818), [sym_fsi_directive_decl] = STATE(1818), [sym_preproc_line] = STATE(1818), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_as] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), - [sym__dedent] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + [sym__dedent] = ACTIONS(3645), }, [1819] = { [sym_block_comment] = STATE(1819), [sym_compiler_directive_decl] = STATE(1819), [sym_fsi_directive_decl] = STATE(1819), [sym_preproc_line] = STATE(1819), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_as] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_with] = ACTIONS(3663), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), - [sym__dedent] = ACTIONS(3661), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [sym__dedent] = ACTIONS(3485), }, [1820] = { [sym_block_comment] = STATE(1820), [sym_compiler_directive_decl] = STATE(1820), [sym_fsi_directive_decl] = STATE(1820), [sym_preproc_line] = STATE(1820), - [sym_identifier] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_COLON] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_COLON_QMARK] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3146), - [anon_sym_AT_AT_GT] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_COLON_GT] = ACTIONS(3148), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_LT_DASH] = ACTIONS(3146), - [anon_sym_DOT_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_or] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3146), - [anon_sym_DASH_DOT] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3146), - [aux_sym_infix_op_token1] = ACTIONS(3148), - [aux_sym_infix_op_token2] = ACTIONS(3146), - [anon_sym_PIPE_PIPE] = ACTIONS(3146), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_COLON_EQ] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3146), - [sym_int] = ACTIONS(4247), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), - [sym__newline] = ACTIONS(3148), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + [sym__dedent] = ACTIONS(3390), }, [1821] = { [sym_block_comment] = STATE(1821), [sym_compiler_directive_decl] = STATE(1821), [sym_fsi_directive_decl] = STATE(1821), [sym_preproc_line] = STATE(1821), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4249), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [aux_sym_rules_repeat1] = STATE(1690), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4246), }, [1822] = { [sym_block_comment] = STATE(1822), [sym_compiler_directive_decl] = STATE(1822), [sym_fsi_directive_decl] = STATE(1822), [sym_preproc_line] = STATE(1822), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [anon_sym_POUNDendif] = ACTIONS(3138), - [anon_sym_POUNDelse] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [aux_sym_long_identifier_repeat1] = STATE(1822), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [anon_sym_POUNDelse] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1823] = { [sym_block_comment] = STATE(1823), [sym_compiler_directive_decl] = STATE(1823), [sym_fsi_directive_decl] = STATE(1823), [sym_preproc_line] = STATE(1823), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4251), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_DASH_GT] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_DOT_DOT] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_DOT_DOT2] = ACTIONS(3513), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), + [sym__dedent] = ACTIONS(3513), }, [1824] = { [sym_block_comment] = STATE(1824), [sym_compiler_directive_decl] = STATE(1824), [sym_fsi_directive_decl] = STATE(1824), [sym_preproc_line] = STATE(1824), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [anon_sym_POUNDendif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [aux_sym_rules_repeat1] = STATE(1613), + [sym_identifier] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3228), + [anon_sym_COLON_QMARK] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LBRACK_PIPE] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LT_AT] = ACTIONS(3228), + [anon_sym_LT_AT_AT] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_LBRACE_PIPE] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_return_BANG] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_yield_BANG] = ACTIONS(3226), + [anon_sym_lazy] = ACTIONS(3228), + [anon_sym_assert] = ACTIONS(3228), + [anon_sym_upcast] = ACTIONS(3228), + [anon_sym_downcast] = ACTIONS(3228), + [anon_sym_COLON_GT] = ACTIONS(3226), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_match_BANG] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_DOT_LBRACK] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_use_BANG] = ACTIONS(3226), + [anon_sym_do_BANG] = ACTIONS(3226), + [anon_sym_begin] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3228), + [aux_sym_char_token1] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_AT_DQUOTE] = ACTIONS(3226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3226), + [sym_bool] = ACTIONS(3228), + [sym_unit] = ACTIONS(3226), + [anon_sym_LPAREN_PIPE] = ACTIONS(3228), + [sym_op_identifier] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_DOT] = ACTIONS(3228), + [anon_sym_DASH_DOT] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3226), + [aux_sym_prefix_op_token1] = ACTIONS(3228), + [aux_sym_infix_op_token1] = ACTIONS(3226), + [aux_sym_infix_op_token2] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3228), + [sym_int] = ACTIONS(3228), + [sym_xint] = ACTIONS(3226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3226), + [sym__newline] = ACTIONS(4252), }, [1825] = { [sym_block_comment] = STATE(1825), [sym_compiler_directive_decl] = STATE(1825), [sym_fsi_directive_decl] = STATE(1825), [sym_preproc_line] = STATE(1825), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [anon_sym_POUNDendif] = ACTIONS(3706), - [anon_sym_POUNDelse] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_as] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), + [sym__dedent] = ACTIONS(3489), }, [1826] = { [sym_block_comment] = STATE(1826), [sym_compiler_directive_decl] = STATE(1826), [sym_fsi_directive_decl] = STATE(1826), [sym_preproc_line] = STATE(1826), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [anon_sym_POUNDendif] = ACTIONS(3439), - [anon_sym_POUNDelse] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_as] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), + [sym__dedent] = ACTIONS(3609), }, [1827] = { [sym_block_comment] = STATE(1827), [sym_compiler_directive_decl] = STATE(1827), [sym_fsi_directive_decl] = STATE(1827), [sym_preproc_line] = STATE(1827), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [anon_sym_POUNDendif] = ACTIONS(3443), - [anon_sym_POUNDelse] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), - }, - [1828] = { - [sym_block_comment] = STATE(1828), - [sym_compiler_directive_decl] = STATE(1828), - [sym_fsi_directive_decl] = STATE(1828), - [sym_preproc_line] = STATE(1828), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_as] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [anon_sym_POUNDendif] = ACTIONS(3447), - [anon_sym_POUNDelse] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), + [sym__dedent] = ACTIONS(3613), + }, + [1828] = { + [sym_block_comment] = STATE(1828), + [sym_compiler_directive_decl] = STATE(1828), + [sym_fsi_directive_decl] = STATE(1828), + [sym_preproc_line] = STATE(1828), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_as] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + [sym__dedent] = ACTIONS(3617), }, [1829] = { [sym_block_comment] = STATE(1829), [sym_compiler_directive_decl] = STATE(1829), [sym_fsi_directive_decl] = STATE(1829), [sym_preproc_line] = STATE(1829), - [aux_sym_long_identifier_repeat1] = STATE(1907), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4253), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3052), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_EQ2] = ACTIONS(4255), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1830] = { [sym_block_comment] = STATE(1830), [sym_compiler_directive_decl] = STATE(1830), [sym_fsi_directive_decl] = STATE(1830), [sym_preproc_line] = STATE(1830), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [anon_sym_POUNDendif] = ACTIONS(3552), - [anon_sym_POUNDelse] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_as] = ACTIONS(3627), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), + [sym__dedent] = ACTIONS(3625), }, [1831] = { [sym_block_comment] = STATE(1831), [sym_compiler_directive_decl] = STATE(1831), [sym_fsi_directive_decl] = STATE(1831), [sym_preproc_line] = STATE(1831), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4255), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_DOT_DOT] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_as] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), + [sym__dedent] = ACTIONS(3629), }, [1832] = { [sym_block_comment] = STATE(1832), [sym_compiler_directive_decl] = STATE(1832), [sym_fsi_directive_decl] = STATE(1832), [sym_preproc_line] = STATE(1832), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [anon_sym_POUNDendif] = ACTIONS(3710), - [anon_sym_POUNDelse] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), - }, - [1833] = { - [sym_block_comment] = STATE(1833), - [sym_compiler_directive_decl] = STATE(1833), - [sym_fsi_directive_decl] = STATE(1833), - [sym_preproc_line] = STATE(1833), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [anon_sym_POUNDendif] = ACTIONS(3435), - [anon_sym_POUNDelse] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - }, - [1834] = { - [sym_block_comment] = STATE(1834), - [sym_compiler_directive_decl] = STATE(1834), - [sym_fsi_directive_decl] = STATE(1834), - [sym_preproc_line] = STATE(1834), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), + [aux_sym_rules_repeat1] = STATE(1655), + [sym_identifier] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_let_BANG] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(3169), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LT_AT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_return_BANG] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_yield_BANG] = ACTIONS(3167), + [anon_sym_lazy] = ACTIONS(3169), + [anon_sym_assert] = ACTIONS(3169), + [anon_sym_upcast] = ACTIONS(3169), + [anon_sym_downcast] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3167), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_fun] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3169), + [anon_sym_match_BANG] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_DOT_LBRACK] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3169), + [anon_sym_use_BANG] = ACTIONS(3167), + [anon_sym_do_BANG] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_begin] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3169), + [aux_sym_char_token1] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [anon_sym_AT_DQUOTE] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), + [sym_bool] = ACTIONS(3169), + [sym_unit] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(3169), + [sym_op_identifier] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [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(3167), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [aux_sym_infix_op_token2] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_DOLLAR] = ACTIONS(3169), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3169), + [sym_xint] = ACTIONS(3167), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), - [anon_sym_POUNDelse] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [anon_sym_POUNDif] = ACTIONS(3167), + [sym__newline] = ACTIONS(4246), + }, + [1833] = { + [sym_block_comment] = STATE(1833), + [sym_compiler_directive_decl] = STATE(1833), + [sym_fsi_directive_decl] = STATE(1833), + [sym_preproc_line] = STATE(1833), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_as] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), + [sym__dedent] = ACTIONS(3491), + }, + [1834] = { + [sym_block_comment] = STATE(1834), + [sym_compiler_directive_decl] = STATE(1834), + [sym_fsi_directive_decl] = STATE(1834), + [sym_preproc_line] = STATE(1834), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3725), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_DOT_DOT2] = ACTIONS(3723), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), + [sym__dedent] = ACTIONS(3723), }, [1835] = { [sym_block_comment] = STATE(1835), [sym_compiler_directive_decl] = STATE(1835), [sym_fsi_directive_decl] = STATE(1835), [sym_preproc_line] = STATE(1835), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [anon_sym_POUNDendif] = ACTIONS(3537), - [anon_sym_POUNDelse] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_AT_GT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), }, [1836] = { [sym_block_comment] = STATE(1836), [sym_compiler_directive_decl] = STATE(1836), [sym_fsi_directive_decl] = STATE(1836), [sym_preproc_line] = STATE(1836), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [anon_sym_POUNDendif] = ACTIONS(3478), - [anon_sym_POUNDelse] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [anon_sym_POUNDelse] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1837] = { [sym_block_comment] = STATE(1837), [sym_compiler_directive_decl] = STATE(1837), [sym_fsi_directive_decl] = STATE(1837), [sym_preproc_line] = STATE(1837), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [anon_sym_POUNDendif] = ACTIONS(3482), - [anon_sym_POUNDelse] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [anon_sym_POUNDendif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [1838] = { [sym_block_comment] = STATE(1838), [sym_compiler_directive_decl] = STATE(1838), [sym_fsi_directive_decl] = STATE(1838), [sym_preproc_line] = STATE(1838), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [anon_sym_POUNDendif] = ACTIONS(3490), - [anon_sym_POUNDelse] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [anon_sym_POUNDendif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), }, [1839] = { [sym_block_comment] = STATE(1839), [sym_compiler_directive_decl] = STATE(1839), [sym_fsi_directive_decl] = STATE(1839), [sym_preproc_line] = STATE(1839), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [anon_sym_POUNDendif] = ACTIONS(3575), - [anon_sym_POUNDelse] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [aux_sym_sequential_expression_repeat1] = STATE(2118), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_GT] = ACTIONS(3392), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1840] = { [sym_block_comment] = STATE(1840), [sym_compiler_directive_decl] = STATE(1840), [sym_fsi_directive_decl] = STATE(1840), [sym_preproc_line] = STATE(1840), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [anon_sym_POUNDendif] = ACTIONS(3452), - [anon_sym_POUNDelse] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [aux_sym_long_identifier_repeat1] = STATE(1841), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_AT_AT_GT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1841] = { [sym_block_comment] = STATE(1841), [sym_compiler_directive_decl] = STATE(1841), [sym_fsi_directive_decl] = STATE(1841), [sym_preproc_line] = STATE(1841), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_as] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_with] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [aux_sym_long_identifier_repeat1] = STATE(1841), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1842] = { [sym_block_comment] = STATE(1842), [sym_compiler_directive_decl] = STATE(1842), [sym_fsi_directive_decl] = STATE(1842), [sym_preproc_line] = STATE(1842), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_DASH_GT] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [anon_sym_POUNDendif] = ACTIONS(3684), + [anon_sym_POUNDelse] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [1843] = { [sym_block_comment] = STATE(1843), [sym_compiler_directive_decl] = STATE(1843), [sym_fsi_directive_decl] = STATE(1843), [sym_preproc_line] = STATE(1843), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [aux_sym_sequential_expression_repeat1] = STATE(1843), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4262), }, [1844] = { [sym_block_comment] = STATE(1844), [sym_compiler_directive_decl] = STATE(1844), [sym_fsi_directive_decl] = STATE(1844), [sym_preproc_line] = STATE(1844), - [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), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [anon_sym_POUNDendif] = ACTIONS(3411), - [anon_sym_POUNDelse] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1845] = { [sym_block_comment] = STATE(1845), [sym_compiler_directive_decl] = STATE(1845), [sym_fsi_directive_decl] = STATE(1845), [sym_preproc_line] = STATE(1845), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_DOT_DOT] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [1846] = { [sym_block_comment] = STATE(1846), [sym_compiler_directive_decl] = STATE(1846), [sym_fsi_directive_decl] = STATE(1846), [sym_preproc_line] = STATE(1846), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_DASH_GT] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_DOT_DOT] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [1847] = { [sym_block_comment] = STATE(1847), [sym_compiler_directive_decl] = STATE(1847), [sym_fsi_directive_decl] = STATE(1847), [sym_preproc_line] = STATE(1847), - [sym_identifier] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4265), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), + }, + [1848] = { + [sym_block_comment] = STATE(1848), + [sym_compiler_directive_decl] = STATE(1848), + [sym_fsi_directive_decl] = STATE(1848), + [sym_preproc_line] = STATE(1848), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [anon_sym_POUNDendif] = ACTIONS(3739), + [anon_sym_POUNDelse] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), + }, + [1849] = { + [sym_block_comment] = STATE(1849), + [sym_compiler_directive_decl] = STATE(1849), + [sym_fsi_directive_decl] = STATE(1849), + [sym_preproc_line] = STATE(1849), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [anon_sym_EQ2] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), + }, + [1850] = { + [sym_block_comment] = STATE(1850), + [sym_compiler_directive_decl] = STATE(1850), + [sym_fsi_directive_decl] = STATE(1850), + [sym_preproc_line] = STATE(1850), + [sym_identifier] = ACTIONS(3515), [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3515), [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3515), [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), + [anon_sym_new] = ACTIONS(3515), [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), + [anon_sym_yield] = ACTIONS(3515), [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), [anon_sym_COLON_GT] = ACTIONS(3513), [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), [anon_sym_DOT_LBRACK] = ACTIONS(3513), [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), + [anon_sym_use] = ACTIONS(3515), [anon_sym_use_BANG] = ACTIONS(3513), [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), [anon_sym_AT_DQUOTE] = ACTIONS(3513), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), + [sym_bool] = ACTIONS(3515), [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), + [aux_sym_prefix_op_token1] = ACTIONS(3515), [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -250233,4655 +250905,4376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDelse] = ACTIONS(3513), [sym__newline] = ACTIONS(3513), }, - [1848] = { - [sym_block_comment] = STATE(1848), - [sym_compiler_directive_decl] = STATE(1848), - [sym_fsi_directive_decl] = STATE(1848), - [sym_preproc_line] = STATE(1848), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [anon_sym_POUNDendif] = ACTIONS(3521), - [anon_sym_POUNDelse] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), - }, - [1849] = { - [sym_block_comment] = STATE(1849), - [sym_compiler_directive_decl] = STATE(1849), - [sym_fsi_directive_decl] = STATE(1849), - [sym_preproc_line] = STATE(1849), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [anon_sym_POUNDendif] = ACTIONS(3525), - [anon_sym_POUNDelse] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - }, - [1850] = { - [sym_block_comment] = STATE(1850), - [sym_compiler_directive_decl] = STATE(1850), - [sym_fsi_directive_decl] = STATE(1850), - [sym_preproc_line] = STATE(1850), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [anon_sym_POUNDendif] = ACTIONS(3529), - [anon_sym_POUNDelse] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), - }, [1851] = { [sym_block_comment] = STATE(1851), [sym_compiler_directive_decl] = STATE(1851), [sym_fsi_directive_decl] = STATE(1851), [sym_preproc_line] = STATE(1851), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [anon_sym_POUNDendif] = ACTIONS(3407), - [anon_sym_POUNDelse] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [1852] = { [sym_block_comment] = STATE(1852), [sym_compiler_directive_decl] = STATE(1852), [sym_fsi_directive_decl] = STATE(1852), [sym_preproc_line] = STATE(1852), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [anon_sym_POUNDendif] = ACTIONS(3535), - [anon_sym_POUNDelse] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_DOT_DOT] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [1853] = { [sym_block_comment] = STATE(1853), [sym_compiler_directive_decl] = STATE(1853), [sym_fsi_directive_decl] = STATE(1853), [sym_preproc_line] = STATE(1853), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [anon_sym_POUNDendif] = ACTIONS(3070), - [anon_sym_POUNDelse] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_DOT_DOT] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), }, [1854] = { [sym_block_comment] = STATE(1854), [sym_compiler_directive_decl] = STATE(1854), [sym_fsi_directive_decl] = STATE(1854), [sym_preproc_line] = STATE(1854), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_DASH_GT] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_as] = ACTIONS(3545), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_with] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [1855] = { [sym_block_comment] = STATE(1855), [sym_compiler_directive_decl] = STATE(1855), [sym_fsi_directive_decl] = STATE(1855), [sym_preproc_line] = STATE(1855), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [anon_sym_POUNDendif] = ACTIONS(3563), - [anon_sym_POUNDelse] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1856] = { [sym_block_comment] = STATE(1856), [sym_compiler_directive_decl] = STATE(1856), [sym_fsi_directive_decl] = STATE(1856), [sym_preproc_line] = STATE(1856), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [anon_sym_POUNDendif] = ACTIONS(3567), - [anon_sym_POUNDelse] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [anon_sym_POUNDendif] = ACTIONS(3643), + [anon_sym_POUNDelse] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [1857] = { [sym_block_comment] = STATE(1857), [sym_compiler_directive_decl] = STATE(1857), [sym_fsi_directive_decl] = STATE(1857), [sym_preproc_line] = STATE(1857), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4257), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [anon_sym_POUNDendif] = ACTIONS(3639), + [anon_sym_POUNDelse] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [1858] = { [sym_block_comment] = STATE(1858), [sym_compiler_directive_decl] = STATE(1858), [sym_fsi_directive_decl] = STATE(1858), [sym_preproc_line] = STATE(1858), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [anon_sym_POUNDendif] = ACTIONS(3070), - [anon_sym_POUNDelse] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [anon_sym_POUNDendif] = ACTIONS(3477), + [anon_sym_POUNDelse] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [1859] = { [sym_block_comment] = STATE(1859), [sym_compiler_directive_decl] = STATE(1859), [sym_fsi_directive_decl] = STATE(1859), [sym_preproc_line] = STATE(1859), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [anon_sym_POUNDendif] = ACTIONS(3735), - [anon_sym_POUNDelse] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), - }, - [1860] = { - [sym_block_comment] = STATE(1860), - [sym_compiler_directive_decl] = STATE(1860), - [sym_fsi_directive_decl] = STATE(1860), - [sym_preproc_line] = STATE(1860), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3427), + [anon_sym_POUNDendif] = ACTIONS(3427), + [anon_sym_POUNDelse] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), + }, + [1860] = { + [sym_block_comment] = STATE(1860), + [sym_compiler_directive_decl] = STATE(1860), + [sym_fsi_directive_decl] = STATE(1860), + [sym_preproc_line] = STATE(1860), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [anon_sym_POUNDendif] = ACTIONS(3588), + [anon_sym_POUNDelse] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [1861] = { [sym_block_comment] = STATE(1861), [sym_compiler_directive_decl] = STATE(1861), [sym_fsi_directive_decl] = STATE(1861), [sym_preproc_line] = STATE(1861), - [aux_sym_sequential_expression_repeat1] = STATE(1888), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [anon_sym_POUNDendif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [anon_sym_POUNDendif] = ACTIONS(3584), + [anon_sym_POUNDelse] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [1862] = { [sym_block_comment] = STATE(1862), [sym_compiler_directive_decl] = STATE(1862), [sym_fsi_directive_decl] = STATE(1862), [sym_preproc_line] = STATE(1862), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [anon_sym_POUNDendif] = ACTIONS(3484), - [anon_sym_POUNDelse] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [anon_sym_POUNDendif] = ACTIONS(3580), + [anon_sym_POUNDelse] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [1863] = { [sym_block_comment] = STATE(1863), [sym_compiler_directive_decl] = STATE(1863), [sym_fsi_directive_decl] = STATE(1863), [sym_preproc_line] = STATE(1863), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_AT_GT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4259), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4242), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1864] = { [sym_block_comment] = STATE(1864), [sym_compiler_directive_decl] = STATE(1864), [sym_fsi_directive_decl] = STATE(1864), [sym_preproc_line] = STATE(1864), - [aux_sym_long_identifier_repeat1] = STATE(1864), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [anon_sym_POUNDendif] = ACTIONS(3596), + [anon_sym_POUNDelse] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [1865] = { [sym_block_comment] = STATE(1865), [sym_compiler_directive_decl] = STATE(1865), [sym_fsi_directive_decl] = STATE(1865), [sym_preproc_line] = STATE(1865), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [anon_sym_POUNDendif] = ACTIONS(3571), - [anon_sym_POUNDelse] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [aux_sym_sequential_expression_repeat1] = STATE(1865), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_DASH_GT] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4267), }, [1866] = { [sym_block_comment] = STATE(1866), [sym_compiler_directive_decl] = STATE(1866), [sym_fsi_directive_decl] = STATE(1866), [sym_preproc_line] = STATE(1866), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [anon_sym_POUNDendif] = ACTIONS(3494), - [anon_sym_POUNDelse] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [aux_sym_long_identifier_repeat1] = STATE(1840), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1867] = { [sym_block_comment] = STATE(1867), [sym_compiler_directive_decl] = STATE(1867), [sym_fsi_directive_decl] = STATE(1867), [sym_preproc_line] = STATE(1867), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [anon_sym_POUNDendif] = ACTIONS(3579), - [anon_sym_POUNDelse] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_with] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [1868] = { [sym_block_comment] = STATE(1868), [sym_compiler_directive_decl] = STATE(1868), [sym_fsi_directive_decl] = STATE(1868), [sym_preproc_line] = STATE(1868), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [anon_sym_POUNDendif] = ACTIONS(3720), - [anon_sym_POUNDelse] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [1869] = { [sym_block_comment] = STATE(1869), [sym_compiler_directive_decl] = STATE(1869), [sym_fsi_directive_decl] = STATE(1869), [sym_preproc_line] = STATE(1869), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [anon_sym_POUNDendif] = ACTIONS(3589), - [anon_sym_POUNDelse] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [anon_sym_POUNDendif] = ACTIONS(3537), + [anon_sym_POUNDelse] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [1870] = { [sym_block_comment] = STATE(1870), [sym_compiler_directive_decl] = STATE(1870), [sym_fsi_directive_decl] = STATE(1870), [sym_preproc_line] = STATE(1870), - [aux_sym_sequential_expression_repeat1] = STATE(1870), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4264), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [anon_sym_POUNDendif] = ACTIONS(3527), + [anon_sym_POUNDelse] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [1871] = { [sym_block_comment] = STATE(1871), [sym_compiler_directive_decl] = STATE(1871), [sym_fsi_directive_decl] = STATE(1871), [sym_preproc_line] = STATE(1871), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3836), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [anon_sym_POUNDendif] = ACTIONS(3523), + [anon_sym_POUNDelse] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [1872] = { [sym_block_comment] = STATE(1872), [sym_compiler_directive_decl] = STATE(1872), [sym_fsi_directive_decl] = STATE(1872), [sym_preproc_line] = STATE(1872), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [anon_sym_POUNDendif] = ACTIONS(3607), - [anon_sym_POUNDelse] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3519), + [anon_sym_POUNDendif] = ACTIONS(3519), + [anon_sym_POUNDelse] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [1873] = { [sym_block_comment] = STATE(1873), [sym_compiler_directive_decl] = STATE(1873), [sym_fsi_directive_decl] = STATE(1873), [sym_preproc_line] = STATE(1873), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [anon_sym_POUNDendif] = ACTIONS(3603), - [anon_sym_POUNDelse] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [anon_sym_POUNDendif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [1874] = { [sym_block_comment] = STATE(1874), [sym_compiler_directive_decl] = STATE(1874), [sym_fsi_directive_decl] = STATE(1874), [sym_preproc_line] = STATE(1874), - [aux_sym_long_identifier_repeat1] = STATE(1893), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [anon_sym_POUNDelse] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1875] = { [sym_block_comment] = STATE(1875), [sym_compiler_directive_decl] = STATE(1875), [sym_fsi_directive_decl] = STATE(1875), [sym_preproc_line] = STATE(1875), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_as] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [anon_sym_POUNDendif] = ACTIONS(3566), + [anon_sym_POUNDelse] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [1876] = { [sym_block_comment] = STATE(1876), [sym_compiler_directive_decl] = STATE(1876), [sym_fsi_directive_decl] = STATE(1876), [sym_preproc_line] = STATE(1876), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [anon_sym_POUNDendif] = ACTIONS(3593), - [anon_sym_POUNDelse] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [anon_sym_POUNDendif] = ACTIONS(3732), + [anon_sym_POUNDelse] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [1877] = { [sym_block_comment] = STATE(1877), [sym_compiler_directive_decl] = STATE(1877), [sym_fsi_directive_decl] = STATE(1877), [sym_preproc_line] = STATE(1877), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [anon_sym_POUNDendif] = ACTIONS(3661), - [anon_sym_POUNDelse] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1878] = { [sym_block_comment] = STATE(1878), [sym_compiler_directive_decl] = STATE(1878), [sym_fsi_directive_decl] = STATE(1878), [sym_preproc_line] = STATE(1878), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [anon_sym_POUNDendif] = ACTIONS(3397), - [anon_sym_POUNDelse] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [anon_sym_POUNDendif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [1879] = { [sym_block_comment] = STATE(1879), [sym_compiler_directive_decl] = STATE(1879), [sym_fsi_directive_decl] = STATE(1879), [sym_preproc_line] = STATE(1879), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_DASH_GT] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_DOT_DOT] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [anon_sym_POUNDendif] = ACTIONS(3491), + [anon_sym_POUNDelse] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [1880] = { [sym_block_comment] = STATE(1880), [sym_compiler_directive_decl] = STATE(1880), [sym_fsi_directive_decl] = STATE(1880), [sym_preproc_line] = STATE(1880), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [anon_sym_POUNDendif] = ACTIONS(3597), - [anon_sym_POUNDelse] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_AT_AT_GT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4276), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1881] = { [sym_block_comment] = STATE(1881), [sym_compiler_directive_decl] = STATE(1881), [sym_fsi_directive_decl] = STATE(1881), [sym_preproc_line] = STATE(1881), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [anon_sym_POUNDendif] = ACTIONS(3601), - [anon_sym_POUNDelse] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [anon_sym_POUNDendif] = ACTIONS(3489), + [anon_sym_POUNDelse] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [1882] = { [sym_block_comment] = STATE(1882), [sym_compiler_directive_decl] = STATE(1882), [sym_fsi_directive_decl] = STATE(1882), [sym_preproc_line] = STATE(1882), - [aux_sym_long_identifier_repeat1] = STATE(1864), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4271), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [anon_sym_POUNDendif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [anon_sym_POUNDelse] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1883] = { [sym_block_comment] = STATE(1883), [sym_compiler_directive_decl] = STATE(1883), [sym_fsi_directive_decl] = STATE(1883), [sym_preproc_line] = STATE(1883), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [anon_sym_POUNDendif] = ACTIONS(3677), - [anon_sym_POUNDelse] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [anon_sym_POUNDendif] = ACTIONS(3481), + [anon_sym_POUNDelse] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [1884] = { [sym_block_comment] = STATE(1884), [sym_compiler_directive_decl] = STATE(1884), [sym_fsi_directive_decl] = STATE(1884), [sym_preproc_line] = STATE(1884), - [aux_sym_type_argument_repeat1] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_module] = ACTIONS(2977), - [anon_sym_open] = ACTIONS(2977), - [anon_sym_LBRACK_LT] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_and] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [aux_sym_access_modifier_token1] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(4273), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_member] = ACTIONS(2977), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_exception] = ACTIONS(2977), - [anon_sym_abstract] = ACTIONS(2977), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_val] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2975), - [anon_sym_POUNDload] = ACTIONS(2975), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [anon_sym_POUNDendif] = ACTIONS(3543), + [anon_sym_POUNDelse] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [1885] = { [sym_block_comment] = STATE(1885), [sym_compiler_directive_decl] = STATE(1885), [sym_fsi_directive_decl] = STATE(1885), [sym_preproc_line] = STATE(1885), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [anon_sym_POUNDendif] = ACTIONS(3413), - [anon_sym_POUNDelse] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [anon_sym_POUNDendif] = ACTIONS(3469), + [anon_sym_POUNDelse] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [1886] = { [sym_block_comment] = STATE(1886), [sym_compiler_directive_decl] = STATE(1886), [sym_fsi_directive_decl] = STATE(1886), [sym_preproc_line] = STATE(1886), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [anon_sym_POUNDendif] = ACTIONS(3417), - [anon_sym_POUNDelse] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [aux_sym_long_identifier_repeat1] = STATE(1886), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1887] = { [sym_block_comment] = STATE(1887), [sym_compiler_directive_decl] = STATE(1887), [sym_fsi_directive_decl] = STATE(1887), [sym_preproc_line] = STATE(1887), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4276), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [anon_sym_POUNDendif] = ACTIONS(3745), + [anon_sym_POUNDelse] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [1888] = { [sym_block_comment] = STATE(1888), [sym_compiler_directive_decl] = STATE(1888), [sym_fsi_directive_decl] = STATE(1888), [sym_preproc_line] = STATE(1888), - [aux_sym_sequential_expression_repeat1] = STATE(1888), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [anon_sym_POUNDendif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4278), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [anon_sym_POUNDendif] = ACTIONS(3590), + [anon_sym_POUNDelse] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [1889] = { [sym_block_comment] = STATE(1889), [sym_compiler_directive_decl] = STATE(1889), [sym_fsi_directive_decl] = STATE(1889), [sym_preproc_line] = STATE(1889), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [anon_sym_POUNDendif] = ACTIONS(3421), - [anon_sym_POUNDelse] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [anon_sym_POUNDendif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1890] = { [sym_block_comment] = STATE(1890), [sym_compiler_directive_decl] = STATE(1890), [sym_fsi_directive_decl] = STATE(1890), [sym_preproc_line] = STATE(1890), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [anon_sym_POUNDendif] = ACTIONS(3667), - [anon_sym_POUNDelse] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [anon_sym_POUNDendif] = ACTIONS(3547), + [anon_sym_POUNDelse] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [1891] = { [sym_block_comment] = STATE(1891), [sym_compiler_directive_decl] = STATE(1891), [sym_fsi_directive_decl] = STATE(1891), [sym_preproc_line] = STATE(1891), - [aux_sym_sequential_expression_repeat1] = STATE(1911), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_as] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [1892] = { [sym_block_comment] = STATE(1892), [sym_compiler_directive_decl] = STATE(1892), [sym_fsi_directive_decl] = STATE(1892), [sym_preproc_line] = STATE(1892), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [anon_sym_POUNDendif] = ACTIONS(3671), - [anon_sym_POUNDelse] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [aux_sym_long_identifier_repeat1] = STATE(1886), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1893] = { [sym_block_comment] = STATE(1893), [sym_compiler_directive_decl] = STATE(1893), [sym_fsi_directive_decl] = STATE(1893), [sym_preproc_line] = STATE(1893), - [aux_sym_long_identifier_repeat1] = STATE(1923), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_AT_AT_GT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1894] = { [sym_block_comment] = STATE(1894), [sym_compiler_directive_decl] = STATE(1894), [sym_fsi_directive_decl] = STATE(1894), [sym_preproc_line] = STATE(1894), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_AT_AT_GT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4283), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [anon_sym_POUNDendif] = ACTIONS(3445), + [anon_sym_POUNDelse] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [1895] = { [sym_block_comment] = STATE(1895), [sym_compiler_directive_decl] = STATE(1895), [sym_fsi_directive_decl] = STATE(1895), [sym_preproc_line] = STATE(1895), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [anon_sym_POUNDendif] = ACTIONS(3425), - [anon_sym_POUNDelse] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [anon_sym_POUNDendif] = ACTIONS(3441), + [anon_sym_POUNDelse] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [1896] = { [sym_block_comment] = STATE(1896), [sym_compiler_directive_decl] = STATE(1896), [sym_fsi_directive_decl] = STATE(1896), [sym_preproc_line] = STATE(1896), - [aux_sym_long_identifier_repeat1] = STATE(1896), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), + [aux_sym_long_identifier_repeat1] = STATE(1964), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), [anon_sym_DOT] = ACTIONS(4285), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [anon_sym_POUNDendif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1897] = { [sym_block_comment] = STATE(1897), [sym_compiler_directive_decl] = STATE(1897), [sym_fsi_directive_decl] = STATE(1897), [sym_preproc_line] = STATE(1897), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [anon_sym_POUNDendif] = ACTIONS(3437), + [anon_sym_POUNDelse] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [1898] = { [sym_block_comment] = STATE(1898), @@ -254889,62 +255282,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(1898), [sym_preproc_line] = STATE(1898), [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3433), [anon_sym_COLON] = ACTIONS(3431), [anon_sym_return] = ACTIONS(3431), [anon_sym_do] = ACTIONS(3431), [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3433), [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3433), [anon_sym_null] = ACTIONS(3431), [anon_sym_QMARK] = ACTIONS(3431), [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3433), [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), [anon_sym_LBRACE] = ACTIONS(3431), [anon_sym_LT_AT] = ACTIONS(3431), [anon_sym_LT_AT_AT] = ACTIONS(3431), [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3433), [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3433), [anon_sym_lazy] = ACTIONS(3431), [anon_sym_assert] = ACTIONS(3431), [anon_sym_upcast] = ACTIONS(3431), [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), [anon_sym_for] = ACTIONS(3431), [anon_sym_while] = ACTIONS(3431), [anon_sym_if] = ACTIONS(3431), [anon_sym_fun] = ACTIONS(3431), [anon_sym_try] = ACTIONS(3431), [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3433), [anon_sym_function] = ACTIONS(3431), [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), [anon_sym_begin] = ACTIONS(3431), [anon_sym_LPAREN2] = ACTIONS(3431), [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3433), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), + [sym_unit] = ACTIONS(3433), [anon_sym_LPAREN_PIPE] = ACTIONS(3431), [sym_op_identifier] = ACTIONS(3431), [anon_sym_PLUS] = ACTIONS(3431), @@ -254953,1336 +255346,2638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3431), [anon_sym_PERCENT] = ACTIONS(3431), [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3433), [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3433), [aux_sym_infix_op_token2] = ACTIONS(3431), [anon_sym_PIPE_PIPE] = ACTIONS(3431), [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3433), [anon_sym_DOLLAR] = ACTIONS(3431), [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [anon_sym_POUNDendif] = ACTIONS(3429), - [anon_sym_POUNDelse] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), + [anon_sym_POUNDif] = ACTIONS(3433), + [anon_sym_POUNDendif] = ACTIONS(3433), + [anon_sym_POUNDelse] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [1899] = { [sym_block_comment] = STATE(1899), [sym_compiler_directive_decl] = STATE(1899), [sym_fsi_directive_decl] = STATE(1899), [sym_preproc_line] = STATE(1899), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [anon_sym_POUNDendif] = ACTIONS(3541), - [anon_sym_POUNDelse] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3425), + [anon_sym_POUNDendif] = ACTIONS(3425), + [anon_sym_POUNDelse] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, [1900] = { [sym_block_comment] = STATE(1900), [sym_compiler_directive_decl] = STATE(1900), [sym_fsi_directive_decl] = STATE(1900), [sym_preproc_line] = STATE(1900), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [anon_sym_POUNDendif] = ACTIONS(3634), - [anon_sym_POUNDelse] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [anon_sym_POUNDendif] = ACTIONS(3415), + [anon_sym_POUNDelse] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, [1901] = { [sym_block_comment] = STATE(1901), [sym_compiler_directive_decl] = STATE(1901), [sym_fsi_directive_decl] = STATE(1901), [sym_preproc_line] = STATE(1901), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [anon_sym_POUNDendif] = ACTIONS(3622), - [anon_sym_POUNDelse] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4121), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [anon_sym_POUNDendif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1902] = { [sym_block_comment] = STATE(1902), [sym_compiler_directive_decl] = STATE(1902), [sym_fsi_directive_decl] = STATE(1902), [sym_preproc_line] = STATE(1902), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [anon_sym_POUNDendif] = ACTIONS(3456), - [anon_sym_POUNDelse] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [anon_sym_POUNDendif] = ACTIONS(3570), + [anon_sym_POUNDelse] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [1903] = { [sym_block_comment] = STATE(1903), [sym_compiler_directive_decl] = STATE(1903), [sym_fsi_directive_decl] = STATE(1903), [sym_preproc_line] = STATE(1903), - [aux_sym_sequential_expression_repeat1] = STATE(1870), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3411), + [anon_sym_POUNDendif] = ACTIONS(3411), + [anon_sym_POUNDelse] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, [1904] = { [sym_block_comment] = STATE(1904), [sym_compiler_directive_decl] = STATE(1904), [sym_fsi_directive_decl] = STATE(1904), [sym_preproc_line] = STATE(1904), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [anon_sym_POUNDendif] = ACTIONS(3460), - [anon_sym_POUNDelse] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_as] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3539), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [1905] = { [sym_block_comment] = STATE(1905), [sym_compiler_directive_decl] = STATE(1905), [sym_fsi_directive_decl] = STATE(1905), [sym_preproc_line] = STATE(1905), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [anon_sym_POUNDendif] = ACTIONS(3468), - [anon_sym_POUNDelse] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3601), + [anon_sym_POUNDendif] = ACTIONS(3601), + [anon_sym_POUNDelse] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [1906] = { [sym_block_comment] = STATE(1906), [sym_compiler_directive_decl] = STATE(1906), [sym_fsi_directive_decl] = STATE(1906), [sym_preproc_line] = STATE(1906), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [anon_sym_POUNDendif] = ACTIONS(3688), - [anon_sym_POUNDelse] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - }, - [1907] = { - [sym_block_comment] = STATE(1907), - [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(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [anon_sym_POUNDendif] = ACTIONS(3407), + [anon_sym_POUNDelse] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), + }, + [1907] = { + [sym_block_comment] = STATE(1907), + [sym_compiler_directive_decl] = STATE(1907), + [sym_fsi_directive_decl] = STATE(1907), + [sym_preproc_line] = STATE(1907), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3403), + [anon_sym_POUNDendif] = ACTIONS(3403), + [anon_sym_POUNDelse] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [1908] = { [sym_block_comment] = STATE(1908), [sym_compiler_directive_decl] = STATE(1908), [sym_fsi_directive_decl] = STATE(1908), [sym_preproc_line] = STATE(1908), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [anon_sym_POUNDendif] = ACTIONS(3615), - [anon_sym_POUNDelse] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3609), + [anon_sym_POUNDendif] = ACTIONS(3609), + [anon_sym_POUNDelse] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [1909] = { [sym_block_comment] = STATE(1909), [sym_compiler_directive_decl] = STATE(1909), [sym_fsi_directive_decl] = STATE(1909), [sym_preproc_line] = STATE(1909), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [anon_sym_POUNDendif] = ACTIONS(3581), - [anon_sym_POUNDelse] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [1910] = { [sym_block_comment] = STATE(1910), [sym_compiler_directive_decl] = STATE(1910), [sym_fsi_directive_decl] = STATE(1910), [sym_preproc_line] = STATE(1910), - [aux_sym_type_argument_repeat1] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_namespace] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [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(3015), - [aux_sym_access_modifier_token1] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(4291), - [anon_sym_static] = ACTIONS(3017), - [anon_sym_member] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_exception] = ACTIONS(3017), - [anon_sym_abstract] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3017), - [anon_sym_val] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [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(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_AT_GT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [1911] = { [sym_block_comment] = STATE(1911), [sym_compiler_directive_decl] = STATE(1911), [sym_fsi_directive_decl] = STATE(1911), [sym_preproc_line] = STATE(1911), - [aux_sym_sequential_expression_repeat1] = STATE(1911), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4293), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_as] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), }, [1912] = { [sym_block_comment] = STATE(1912), [sym_compiler_directive_decl] = STATE(1912), [sym_fsi_directive_decl] = STATE(1912), [sym_preproc_line] = STATE(1912), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [anon_sym_POUNDendif] = ACTIONS(3507), - [anon_sym_POUNDelse] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [anon_sym_POUNDendif] = ACTIONS(3613), + [anon_sym_POUNDelse] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [1913] = { [sym_block_comment] = STATE(1913), [sym_compiler_directive_decl] = STATE(1913), [sym_fsi_directive_decl] = STATE(1913), [sym_preproc_line] = STATE(1913), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [anon_sym_POUNDendif] = ACTIONS(3617), + [anon_sym_POUNDelse] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + }, + [1914] = { + [sym_block_comment] = STATE(1914), + [sym_compiler_directive_decl] = STATE(1914), + [sym_fsi_directive_decl] = STATE(1914), + [sym_preproc_line] = STATE(1914), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_as] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_with] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), + }, + [1915] = { + [sym_block_comment] = STATE(1915), + [sym_compiler_directive_decl] = STATE(1915), + [sym_fsi_directive_decl] = STATE(1915), + [sym_preproc_line] = STATE(1915), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_with] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [1916] = { + [sym_block_comment] = STATE(1916), + [sym_compiler_directive_decl] = STATE(1916), + [sym_fsi_directive_decl] = STATE(1916), + [sym_preproc_line] = STATE(1916), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_as] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), + }, + [1917] = { + [sym_block_comment] = STATE(1917), + [sym_compiler_directive_decl] = STATE(1917), + [sym_fsi_directive_decl] = STATE(1917), + [sym_preproc_line] = STATE(1917), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_as] = ACTIONS(3533), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), + }, + [1918] = { + [sym_block_comment] = STATE(1918), + [sym_compiler_directive_decl] = STATE(1918), + [sym_fsi_directive_decl] = STATE(1918), + [sym_preproc_line] = STATE(1918), + [sym_identifier] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_as] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), + }, + [1919] = { + [sym_block_comment] = STATE(1919), + [sym_compiler_directive_decl] = STATE(1919), + [sym_fsi_directive_decl] = STATE(1919), + [sym_preproc_line] = STATE(1919), + [aux_sym_type_argument_repeat1] = STATE(1919), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = 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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2990), + [anon_sym_or] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_member] = ACTIONS(2990), + [anon_sym_interface] = ACTIONS(2990), + [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2992), + [anon_sym_POUNDload] = ACTIONS(2992), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + }, + [1920] = { + [sym_block_comment] = STATE(1920), + [sym_compiler_directive_decl] = STATE(1920), + [sym_fsi_directive_decl] = STATE(1920), + [sym_preproc_line] = STATE(1920), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [anon_sym_POUNDendif] = ACTIONS(3625), + [anon_sym_POUNDelse] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), + }, + [1921] = { + [sym_block_comment] = STATE(1921), + [sym_compiler_directive_decl] = STATE(1921), + [sym_fsi_directive_decl] = STATE(1921), + [sym_preproc_line] = STATE(1921), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [1922] = { + [sym_block_comment] = STATE(1922), + [sym_compiler_directive_decl] = STATE(1922), + [sym_fsi_directive_decl] = STATE(1922), + [sym_preproc_line] = STATE(1922), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [anon_sym_POUNDendif] = ACTIONS(3629), + [anon_sym_POUNDelse] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), + }, + [1923] = { + [sym_block_comment] = STATE(1923), + [sym_compiler_directive_decl] = STATE(1923), + [sym_fsi_directive_decl] = STATE(1923), + [sym_preproc_line] = STATE(1923), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_DOT_DOT] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), + }, + [1924] = { + [sym_block_comment] = STATE(1924), + [sym_compiler_directive_decl] = STATE(1924), + [sym_fsi_directive_decl] = STATE(1924), + [sym_preproc_line] = STATE(1924), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [anon_sym_POUNDendif] = ACTIONS(3633), + [anon_sym_POUNDelse] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), + }, + [1925] = { + [sym_block_comment] = STATE(1925), + [sym_compiler_directive_decl] = STATE(1925), + [sym_fsi_directive_decl] = STATE(1925), + [sym_preproc_line] = STATE(1925), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [anon_sym_POUNDendif] = ACTIONS(3645), + [anon_sym_POUNDelse] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + }, + [1926] = { + [sym_block_comment] = STATE(1926), + [sym_compiler_directive_decl] = STATE(1926), + [sym_fsi_directive_decl] = STATE(1926), + [sym_preproc_line] = STATE(1926), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [anon_sym_POUNDendif] = ACTIONS(3649), + [anon_sym_POUNDelse] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), + }, + [1927] = { + [sym_block_comment] = STATE(1927), + [sym_compiler_directive_decl] = STATE(1927), + [sym_fsi_directive_decl] = STATE(1927), + [sym_preproc_line] = STATE(1927), [sym_identifier] = ACTIONS(3655), [anon_sym_EQ] = ACTIONS(3653), [anon_sym_COLON] = ACTIONS(3655), @@ -256360,7 +258055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3655), [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -256371,755 +258066,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDelse] = ACTIONS(3653), [sym__newline] = ACTIONS(3653), }, - [1914] = { - [sym_block_comment] = STATE(1914), - [sym_compiler_directive_decl] = STATE(1914), - [sym_fsi_directive_decl] = STATE(1914), - [sym_preproc_line] = STATE(1914), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [anon_sym_POUNDendif] = ACTIONS(3644), - [anon_sym_POUNDelse] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - }, - [1915] = { - [sym_block_comment] = STATE(1915), - [sym_compiler_directive_decl] = STATE(1915), - [sym_fsi_directive_decl] = STATE(1915), - [sym_preproc_line] = STATE(1915), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [anon_sym_POUNDendif] = ACTIONS(3472), - [anon_sym_POUNDelse] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), - }, - [1916] = { - [sym_block_comment] = STATE(1916), - [sym_compiler_directive_decl] = STATE(1916), - [sym_fsi_directive_decl] = STATE(1916), - [sym_preproc_line] = STATE(1916), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), - }, - [1917] = { - [sym_block_comment] = STATE(1917), - [sym_compiler_directive_decl] = STATE(1917), - [sym_fsi_directive_decl] = STATE(1917), - [sym_preproc_line] = STATE(1917), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_AT_GT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - }, - [1918] = { - [sym_block_comment] = STATE(1918), - [sym_compiler_directive_decl] = STATE(1918), - [sym_fsi_directive_decl] = STATE(1918), - [sym_preproc_line] = STATE(1918), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [anon_sym_POUNDendif] = ACTIONS(3632), - [anon_sym_POUNDelse] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), - }, - [1919] = { - [sym_block_comment] = STATE(1919), - [sym_compiler_directive_decl] = STATE(1919), - [sym_fsi_directive_decl] = STATE(1919), - [sym_preproc_line] = STATE(1919), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [anon_sym_POUNDendif] = ACTIONS(3628), - [anon_sym_POUNDelse] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), - }, - [1920] = { - [sym_block_comment] = STATE(1920), - [sym_compiler_directive_decl] = STATE(1920), - [sym_fsi_directive_decl] = STATE(1920), - [sym_preproc_line] = STATE(1920), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [1928] = { + [sym_block_comment] = STATE(1928), + [sym_compiler_directive_decl] = STATE(1928), + [sym_fsi_directive_decl] = STATE(1928), + [sym_preproc_line] = STATE(1928), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [anon_sym_POUNDendif] = ACTIONS(3613), - [anon_sym_POUNDelse] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3607), + [anon_sym_POUNDendif] = ACTIONS(3607), + [anon_sym_POUNDelse] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), }, - [1921] = { - [sym_block_comment] = STATE(1921), - [sym_compiler_directive_decl] = STATE(1921), - [sym_fsi_directive_decl] = STATE(1921), - [sym_preproc_line] = STATE(1921), - [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), + [1929] = { + [sym_block_comment] = STATE(1929), + [sym_compiler_directive_decl] = STATE(1929), + [sym_fsi_directive_decl] = STATE(1929), + [sym_preproc_line] = STATE(1929), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [anon_sym_POUNDendif] = ACTIONS(3657), + [anon_sym_POUNDelse] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), + }, + [1930] = { + [sym_block_comment] = STATE(1930), + [sym_compiler_directive_decl] = STATE(1930), + [sym_fsi_directive_decl] = STATE(1930), + [sym_preproc_line] = STATE(1930), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [anon_sym_POUNDif] = ACTIONS(3671), + [anon_sym_POUNDendif] = ACTIONS(3671), + [anon_sym_POUNDelse] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, - [1922] = { - [sym_block_comment] = STATE(1922), - [sym_compiler_directive_decl] = STATE(1922), - [sym_fsi_directive_decl] = STATE(1922), - [sym_preproc_line] = STATE(1922), + [1931] = { + [sym_block_comment] = STATE(1931), + [sym_compiler_directive_decl] = STATE(1931), + [sym_fsi_directive_decl] = STATE(1931), + [sym_preproc_line] = STATE(1931), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [anon_sym_POUNDendif] = ACTIONS(3665), + [anon_sym_POUNDelse] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), + }, + [1932] = { + [sym_block_comment] = STATE(1932), + [sym_compiler_directive_decl] = STATE(1932), + [sym_fsi_directive_decl] = STATE(1932), + [sym_preproc_line] = STATE(1932), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_AT_GT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), + }, + [1933] = { + [sym_block_comment] = STATE(1933), + [sym_compiler_directive_decl] = STATE(1933), + [sym_fsi_directive_decl] = STATE(1933), + [sym_preproc_line] = STATE(1933), [sym_identifier] = ACTIONS(3675), [anon_sym_EQ] = ACTIONS(3673), [anon_sym_COLON] = ACTIONS(3675), @@ -257156,7 +258572,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3673), @@ -257167,7 +258582,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(3675), [anon_sym_use_BANG] = ACTIONS(3673), [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), [anon_sym_begin] = ACTIONS(3675), [anon_sym_LPAREN2] = ACTIONS(3675), [anon_sym_or] = ACTIONS(3675), @@ -257199,1660 +258613,823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3675), [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3673), + [anon_sym_POUNDendif] = ACTIONS(3673), + [anon_sym_POUNDelse] = ACTIONS(3673), [sym__newline] = ACTIONS(3673), }, - [1923] = { - [sym_block_comment] = STATE(1923), - [sym_compiler_directive_decl] = STATE(1923), - [sym_fsi_directive_decl] = STATE(1923), - [sym_preproc_line] = STATE(1923), - [aux_sym_long_identifier_repeat1] = STATE(1923), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4296), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [1924] = { - [sym_block_comment] = STATE(1924), - [sym_compiler_directive_decl] = STATE(1924), - [sym_fsi_directive_decl] = STATE(1924), - [sym_preproc_line] = STATE(1924), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - }, - [1925] = { - [sym_block_comment] = STATE(1925), - [sym_compiler_directive_decl] = STATE(1925), - [sym_fsi_directive_decl] = STATE(1925), - [sym_preproc_line] = STATE(1925), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_DASH_GT] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - }, - [1926] = { - [sym_block_comment] = STATE(1926), - [sym_compiler_directive_decl] = STATE(1926), - [sym_fsi_directive_decl] = STATE(1926), - [sym_preproc_line] = STATE(1926), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1927] = { - [sym_block_comment] = STATE(1927), - [sym_compiler_directive_decl] = STATE(1927), - [sym_fsi_directive_decl] = STATE(1927), - [sym_preproc_line] = STATE(1927), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_DASH_GT] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_DOT_DOT] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), - }, - [1928] = { - [sym_block_comment] = STATE(1928), - [sym_compiler_directive_decl] = STATE(1928), - [sym_fsi_directive_decl] = STATE(1928), - [sym_preproc_line] = STATE(1928), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - }, - [1929] = { - [sym_block_comment] = STATE(1929), - [sym_compiler_directive_decl] = STATE(1929), - [sym_fsi_directive_decl] = STATE(1929), - [sym_preproc_line] = STATE(1929), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [anon_sym_POUNDendif] = ACTIONS(3646), - [anon_sym_POUNDelse] = ACTIONS(3646), - [sym__newline] = ACTIONS(3144), - }, - [1930] = { - [sym_block_comment] = STATE(1930), - [sym_compiler_directive_decl] = STATE(1930), - [sym_fsi_directive_decl] = STATE(1930), - [sym_preproc_line] = STATE(1930), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_DOT_DOT] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), - }, - [1931] = { - [sym_block_comment] = STATE(1931), - [sym_compiler_directive_decl] = STATE(1931), - [sym_fsi_directive_decl] = STATE(1931), - [sym_preproc_line] = STATE(1931), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [anon_sym_POUNDendif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), - }, - [1932] = { - [sym_block_comment] = STATE(1932), - [sym_compiler_directive_decl] = STATE(1932), - [sym_fsi_directive_decl] = STATE(1932), - [sym_preproc_line] = STATE(1932), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - }, - [1933] = { - [sym_block_comment] = STATE(1933), - [sym_compiler_directive_decl] = STATE(1933), - [sym_fsi_directive_decl] = STATE(1933), - [sym_preproc_line] = STATE(1933), - [aux_sym_sequential_expression_repeat1] = STATE(1933), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4299), - }, [1934] = { [sym_block_comment] = STATE(1934), [sym_compiler_directive_decl] = STATE(1934), [sym_fsi_directive_decl] = STATE(1934), [sym_preproc_line] = STATE(1934), - [aux_sym_long_identifier_repeat1] = STATE(1896), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_AT_GT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [anon_sym_POUNDendif] = ACTIONS(3680), + [anon_sym_POUNDelse] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [1935] = { [sym_block_comment] = STATE(1935), [sym_compiler_directive_decl] = STATE(1935), [sym_fsi_directive_decl] = STATE(1935), [sym_preproc_line] = STATE(1935), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [anon_sym_POUNDendif] = ACTIONS(3640), - [anon_sym_POUNDelse] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_AT_AT_GT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [1936] = { [sym_block_comment] = STATE(1936), [sym_compiler_directive_decl] = STATE(1936), [sym_fsi_directive_decl] = STATE(1936), [sym_preproc_line] = STATE(1936), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [anon_sym_POUNDendif] = ACTIONS(3715), + [anon_sym_POUNDelse] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [1937] = { [sym_block_comment] = STATE(1937), [sym_compiler_directive_decl] = STATE(1937), [sym_fsi_directive_decl] = STATE(1937), [sym_preproc_line] = STATE(1937), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_DOT_DOT] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [aux_sym_long_identifier_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4292), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1938] = { [sym_block_comment] = STATE(1938), [sym_compiler_directive_decl] = STATE(1938), [sym_fsi_directive_decl] = STATE(1938), [sym_preproc_line] = STATE(1938), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [anon_sym_POUNDendif] = ACTIONS(3144), - [anon_sym_POUNDelse] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [anon_sym_POUNDendif] = ACTIONS(3723), + [anon_sym_POUNDelse] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [1939] = { [sym_block_comment] = STATE(1939), [sym_compiler_directive_decl] = STATE(1939), [sym_fsi_directive_decl] = STATE(1939), [sym_preproc_line] = STATE(1939), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4304), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3316), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3529), + [anon_sym_POUNDelse] = ACTIONS(3529), + [sym__newline] = ACTIONS(3239), }, [1940] = { [sym_block_comment] = STATE(1940), [sym_compiler_directive_decl] = STATE(1940), [sym_fsi_directive_decl] = STATE(1940), [sym_preproc_line] = STATE(1940), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_as] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), + }, + [1941] = { + [sym_block_comment] = STATE(1941), + [sym_compiler_directive_decl] = STATE(1941), + [sym_fsi_directive_decl] = STATE(1941), + [sym_preproc_line] = STATE(1941), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1942] = { + [sym_block_comment] = STATE(1942), + [sym_compiler_directive_decl] = STATE(1942), + [sym_fsi_directive_decl] = STATE(1942), + [sym_preproc_line] = STATE(1942), [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), + [anon_sym_EQ] = ACTIONS(3559), [anon_sym_COLON] = ACTIONS(3561), [anon_sym_return] = ACTIONS(3561), [anon_sym_do] = ACTIONS(3561), [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), + [anon_sym_let_BANG] = ACTIONS(3559), [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), + [anon_sym_COMMA] = ACTIONS(3559), [anon_sym_null] = ACTIONS(3561), [anon_sym_QMARK] = ACTIONS(3561), [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_COLON_COLON] = ACTIONS(3559), [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), [anon_sym_LBRACE] = ACTIONS(3561), [anon_sym_LT_AT] = ACTIONS(3561), [anon_sym_LT_AT_AT] = ACTIONS(3561), [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), + [anon_sym_return_BANG] = ACTIONS(3559), [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), + [anon_sym_yield_BANG] = ACTIONS(3559), [anon_sym_lazy] = ACTIONS(3561), [anon_sym_assert] = ACTIONS(3561), [anon_sym_upcast] = ACTIONS(3561), [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), [anon_sym_for] = ACTIONS(3561), [anon_sym_while] = ACTIONS(3561), [anon_sym_if] = ACTIONS(3561), [anon_sym_fun] = ACTIONS(3561), - [anon_sym_DASH_GT] = ACTIONS(3561), [anon_sym_try] = ACTIONS(3561), [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), + [anon_sym_match_BANG] = ACTIONS(3559), [anon_sym_function] = ACTIONS(3561), [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_DOT_DOT] = ACTIONS(3563), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), [anon_sym_begin] = ACTIONS(3561), [anon_sym_LPAREN2] = ACTIONS(3561), [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), + [aux_sym_char_token1] = ACTIONS(3559), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), + [sym_unit] = ACTIONS(3559), [anon_sym_LPAREN_PIPE] = ACTIONS(3561), [sym_op_identifier] = ACTIONS(3561), [anon_sym_PLUS] = ACTIONS(3561), @@ -258861,4976 +259438,4606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3561), [anon_sym_PERCENT] = ACTIONS(3561), [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3559), [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), + [aux_sym_infix_op_token1] = ACTIONS(3559), [aux_sym_infix_op_token2] = ACTIONS(3561), [anon_sym_PIPE_PIPE] = ACTIONS(3561), [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), + [anon_sym_COLON_EQ] = ACTIONS(3559), [anon_sym_DOLLAR] = ACTIONS(3561), [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - }, - [1941] = { - [sym_block_comment] = STATE(1941), - [sym_compiler_directive_decl] = STATE(1941), - [sym_fsi_directive_decl] = STATE(1941), - [sym_preproc_line] = STATE(1941), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), - }, - [1942] = { - [sym_block_comment] = STATE(1942), - [sym_compiler_directive_decl] = STATE(1942), - [sym_fsi_directive_decl] = STATE(1942), - [sym_preproc_line] = STATE(1942), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [anon_sym_POUNDendif] = ACTIONS(3698), - [anon_sym_POUNDelse] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [anon_sym_POUNDif] = ACTIONS(3559), + [anon_sym_POUNDendif] = ACTIONS(3559), + [anon_sym_POUNDelse] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, [1943] = { [sym_block_comment] = STATE(1943), [sym_compiler_directive_decl] = STATE(1943), [sym_fsi_directive_decl] = STATE(1943), [sym_preproc_line] = STATE(1943), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_AT_AT_GT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3447), + [anon_sym_POUNDendif] = ACTIONS(3447), + [anon_sym_POUNDelse] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), }, [1944] = { [sym_block_comment] = STATE(1944), [sym_compiler_directive_decl] = STATE(1944), [sym_fsi_directive_decl] = STATE(1944), [sym_preproc_line] = STATE(1944), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [anon_sym_EQ2] = ACTIONS(4232), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [anon_sym_POUNDendif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [1945] = { [sym_block_comment] = STATE(1945), [sym_compiler_directive_decl] = STATE(1945), [sym_fsi_directive_decl] = STATE(1945), [sym_preproc_line] = STATE(1945), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [anon_sym_POUNDendif] = ACTIONS(3728), - [anon_sym_POUNDelse] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [anon_sym_POUNDendif] = ACTIONS(3459), + [anon_sym_POUNDelse] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [1946] = { [sym_block_comment] = STATE(1946), [sym_compiler_directive_decl] = STATE(1946), [sym_fsi_directive_decl] = STATE(1946), [sym_preproc_line] = STATE(1946), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_AT_AT_GT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4198), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [anon_sym_POUNDendif] = ACTIONS(3721), + [anon_sym_POUNDelse] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [1947] = { [sym_block_comment] = STATE(1947), [sym_compiler_directive_decl] = STATE(1947), [sym_fsi_directive_decl] = STATE(1947), [sym_preproc_line] = STATE(1947), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_DOT_DOT] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), - }, - [1948] = { - [sym_block_comment] = STATE(1948), - [sym_compiler_directive_decl] = STATE(1948), - [sym_fsi_directive_decl] = STATE(1948), - [sym_preproc_line] = STATE(1948), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3943), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [anon_sym_POUNDendif] = ACTIONS(3515), - [anon_sym_POUNDelse] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1948] = { + [sym_block_comment] = STATE(1948), + [sym_compiler_directive_decl] = STATE(1948), + [sym_fsi_directive_decl] = STATE(1948), + [sym_preproc_line] = STATE(1948), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [anon_sym_POUNDendif] = ACTIONS(3623), + [anon_sym_POUNDelse] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [1949] = { [sym_block_comment] = STATE(1949), [sym_compiler_directive_decl] = STATE(1949), [sym_fsi_directive_decl] = STATE(1949), [sym_preproc_line] = STATE(1949), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_DASH_GT] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_DOT_DOT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_with] = ACTIONS(3719), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [1950] = { [sym_block_comment] = STATE(1950), [sym_compiler_directive_decl] = STATE(1950), [sym_fsi_directive_decl] = STATE(1950), [sym_preproc_line] = STATE(1950), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [1951] = { [sym_block_comment] = STATE(1951), [sym_compiler_directive_decl] = STATE(1951), [sym_fsi_directive_decl] = STATE(1951), [sym_preproc_line] = STATE(1951), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [anon_sym_POUNDendif] = ACTIONS(3548), - [anon_sym_POUNDelse] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_as] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), }, [1952] = { [sym_block_comment] = STATE(1952), [sym_compiler_directive_decl] = STATE(1952), [sym_fsi_directive_decl] = STATE(1952), [sym_preproc_line] = STATE(1952), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4306), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [anon_sym_POUNDendif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1953] = { [sym_block_comment] = STATE(1953), [sym_compiler_directive_decl] = STATE(1953), [sym_fsi_directive_decl] = STATE(1953), [sym_preproc_line] = STATE(1953), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_DASH_GT] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_DOT_DOT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [aux_sym_type_argument_repeat1] = STATE(1919), + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_module] = ACTIONS(2962), + [anon_sym_open] = ACTIONS(2962), + [anon_sym_LBRACK_LT] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_and] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [aux_sym_access_modifier_token1] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2960), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_or] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_member] = ACTIONS(2962), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_exception] = ACTIONS(2962), + [anon_sym_abstract] = ACTIONS(2962), + [anon_sym_override] = ACTIONS(2962), + [anon_sym_val] = ACTIONS(2962), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2960), + [anon_sym_DASH_DOT] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2960), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2960), + [anon_sym_POUNDload] = ACTIONS(2960), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), }, [1954] = { [sym_block_comment] = STATE(1954), [sym_compiler_directive_decl] = STATE(1954), [sym_fsi_directive_decl] = STATE(1954), [sym_preproc_line] = STATE(1954), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4245), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3140), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_as] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, [1955] = { [sym_block_comment] = STATE(1955), [sym_compiler_directive_decl] = STATE(1955), [sym_fsi_directive_decl] = STATE(1955), [sym_preproc_line] = STATE(1955), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_AT_GT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4308), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [anon_sym_POUNDendif] = ACTIONS(3700), + [anon_sym_POUNDelse] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [1956] = { [sym_block_comment] = STATE(1956), [sym_compiler_directive_decl] = STATE(1956), [sym_fsi_directive_decl] = STATE(1956), [sym_preproc_line] = STATE(1956), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [anon_sym_POUNDendif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_AT_GT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1957] = { [sym_block_comment] = STATE(1957), [sym_compiler_directive_decl] = STATE(1957), [sym_fsi_directive_decl] = STATE(1957), [sym_preproc_line] = STATE(1957), - [aux_sym_sequential_expression_repeat1] = STATE(2032), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [aux_sym_sequential_expression_repeat1] = STATE(1843), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_DOT_DOT] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1958] = { [sym_block_comment] = STATE(1958), [sym_compiler_directive_decl] = STATE(1958), [sym_fsi_directive_decl] = STATE(1958), [sym_preproc_line] = STATE(1958), - [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_AMP] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [anon_sym_POUNDendif] = ACTIONS(3694), + [anon_sym_POUNDelse] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), + }, + [1959] = { + [sym_block_comment] = STATE(1959), + [sym_compiler_directive_decl] = STATE(1959), + [sym_fsi_directive_decl] = STATE(1959), + [sym_preproc_line] = STATE(1959), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - }, - [1959] = { - [sym_block_comment] = STATE(1959), - [sym_compiler_directive_decl] = STATE(1959), - [sym_fsi_directive_decl] = STATE(1959), - [sym_preproc_line] = STATE(1959), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_as] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), + [anon_sym_POUNDelse] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [1960] = { [sym_block_comment] = STATE(1960), [sym_compiler_directive_decl] = STATE(1960), [sym_fsi_directive_decl] = STATE(1960), [sym_preproc_line] = STATE(1960), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [anon_sym_POUNDendif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [anon_sym_POUNDendif] = ACTIONS(3451), + [anon_sym_POUNDelse] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [1961] = { [sym_block_comment] = STATE(1961), [sym_compiler_directive_decl] = STATE(1961), [sym_fsi_directive_decl] = STATE(1961), [sym_preproc_line] = STATE(1961), - [aux_sym_long_identifier_repeat1] = STATE(1882), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [anon_sym_POUNDendif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3669), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, [1962] = { [sym_block_comment] = STATE(1962), [sym_compiler_directive_decl] = STATE(1962), [sym_fsi_directive_decl] = STATE(1962), [sym_preproc_line] = STATE(1962), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_DOT_DOT] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [1963] = { [sym_block_comment] = STATE(1963), [sym_compiler_directive_decl] = STATE(1963), [sym_fsi_directive_decl] = STATE(1963), [sym_preproc_line] = STATE(1963), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [aux_sym_long_identifier_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [1964] = { [sym_block_comment] = STATE(1964), [sym_compiler_directive_decl] = STATE(1964), [sym_fsi_directive_decl] = STATE(1964), [sym_preproc_line] = STATE(1964), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [aux_sym_long_identifier_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4302), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [anon_sym_POUNDendif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1965] = { [sym_block_comment] = STATE(1965), [sym_compiler_directive_decl] = STATE(1965), [sym_fsi_directive_decl] = STATE(1965), [sym_preproc_line] = STATE(1965), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_as] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_as] = ACTIONS(3605), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_with] = ACTIONS(3605), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), }, [1966] = { [sym_block_comment] = STATE(1966), [sym_compiler_directive_decl] = STATE(1966), [sym_fsi_directive_decl] = STATE(1966), [sym_preproc_line] = STATE(1966), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_as] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_with] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [1967] = { [sym_block_comment] = STATE(1967), [sym_compiler_directive_decl] = STATE(1967), [sym_fsi_directive_decl] = STATE(1967), [sym_preproc_line] = STATE(1967), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_DASH_GT] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [aux_sym_long_identifier_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_AT_GT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, [1968] = { [sym_block_comment] = STATE(1968), [sym_compiler_directive_decl] = STATE(1968), [sym_fsi_directive_decl] = STATE(1968), [sym_preproc_line] = STATE(1968), - [aux_sym_long_identifier_repeat1] = STATE(1983), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [anon_sym_POUNDendif] = ACTIONS(3455), + [anon_sym_POUNDelse] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [1969] = { [sym_block_comment] = STATE(1969), [sym_compiler_directive_decl] = STATE(1969), [sym_fsi_directive_decl] = STATE(1969), [sym_preproc_line] = STATE(1969), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_AT_GT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_DASH_GT] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), }, [1970] = { [sym_block_comment] = STATE(1970), [sym_compiler_directive_decl] = STATE(1970), [sym_fsi_directive_decl] = STATE(1970), [sym_preproc_line] = STATE(1970), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, [1971] = { [sym_block_comment] = STATE(1971), [sym_compiler_directive_decl] = STATE(1971), [sym_fsi_directive_decl] = STATE(1971), [sym_preproc_line] = STATE(1971), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [anon_sym_POUNDendif] = ACTIONS(3702), - [anon_sym_POUNDelse] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4306), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), }, [1972] = { [sym_block_comment] = STATE(1972), [sym_compiler_directive_decl] = STATE(1972), [sym_fsi_directive_decl] = STATE(1972), [sym_preproc_line] = STATE(1972), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3683), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [aux_sym_sequential_expression_repeat1] = STATE(2125), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [anon_sym_POUNDendif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [1973] = { [sym_block_comment] = STATE(1973), [sym_compiler_directive_decl] = STATE(1973), [sym_fsi_directive_decl] = STATE(1973), [sym_preproc_line] = STATE(1973), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_DASH_GT] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_DOT_DOT] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, [1974] = { [sym_block_comment] = STATE(1974), [sym_compiler_directive_decl] = STATE(1974), [sym_fsi_directive_decl] = STATE(1974), [sym_preproc_line] = STATE(1974), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_DASH_GT] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_AT_GT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [1975] = { [sym_block_comment] = STATE(1975), [sym_compiler_directive_decl] = STATE(1975), [sym_fsi_directive_decl] = STATE(1975), [sym_preproc_line] = STATE(1975), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_as] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [1976] = { [sym_block_comment] = STATE(1976), [sym_compiler_directive_decl] = STATE(1976), [sym_fsi_directive_decl] = STATE(1976), [sym_preproc_line] = STATE(1976), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_as] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [1977] = { [sym_block_comment] = STATE(1977), [sym_compiler_directive_decl] = STATE(1977), [sym_fsi_directive_decl] = STATE(1977), [sym_preproc_line] = STATE(1977), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [anon_sym_POUNDendif] = ACTIONS(3681), - [anon_sym_POUNDelse] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [1978] = { [sym_block_comment] = STATE(1978), [sym_compiler_directive_decl] = STATE(1978), [sym_fsi_directive_decl] = STATE(1978), [sym_preproc_line] = STATE(1978), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [anon_sym_POUNDendif] = ACTIONS(3401), - [anon_sym_POUNDelse] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), + [aux_sym_long_identifier_repeat1] = STATE(2142), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [1979] = { [sym_block_comment] = STATE(1979), [sym_compiler_directive_decl] = STATE(1979), [sym_fsi_directive_decl] = STATE(1979), [sym_preproc_line] = STATE(1979), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [anon_sym_POUNDendif] = ACTIONS(3395), - [anon_sym_POUNDelse] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [1980] = { [sym_block_comment] = STATE(1980), [sym_compiler_directive_decl] = STATE(1980), [sym_fsi_directive_decl] = STATE(1980), [sym_preproc_line] = STATE(1980), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_DOT_DOT] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [1981] = { [sym_block_comment] = STATE(1981), [sym_compiler_directive_decl] = STATE(1981), [sym_fsi_directive_decl] = STATE(1981), [sym_preproc_line] = STATE(1981), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_EQ2] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), }, [1982] = { [sym_block_comment] = STATE(1982), [sym_compiler_directive_decl] = STATE(1982), [sym_fsi_directive_decl] = STATE(1982), [sym_preproc_line] = STATE(1982), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, [1983] = { [sym_block_comment] = STATE(1983), [sym_compiler_directive_decl] = STATE(1983), [sym_fsi_directive_decl] = STATE(1983), [sym_preproc_line] = STATE(1983), - [aux_sym_long_identifier_repeat1] = STATE(1985), - [sym_identifier] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_COLON_QMARK] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_COLON_GT] = ACTIONS(2971), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_DOT_LBRACK] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_DOT_DOT] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2973), - [anon_sym_DASH_DOT] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2973), - [aux_sym_infix_op_token1] = ACTIONS(2971), - [aux_sym_infix_op_token2] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2973), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_as] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3725), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [1984] = { [sym_block_comment] = STATE(1984), [sym_compiler_directive_decl] = STATE(1984), [sym_fsi_directive_decl] = STATE(1984), [sym_preproc_line] = STATE(1984), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_as] = ACTIONS(3583), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_with] = ACTIONS(3583), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3239), + [anon_sym_POUNDelse] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [1985] = { [sym_block_comment] = STATE(1985), [sym_compiler_directive_decl] = STATE(1985), [sym_fsi_directive_decl] = STATE(1985), [sym_preproc_line] = STATE(1985), - [aux_sym_long_identifier_repeat1] = STATE(1985), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(4322), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, [1986] = { [sym_block_comment] = STATE(1986), [sym_compiler_directive_decl] = STATE(1986), [sym_fsi_directive_decl] = STATE(1986), [sym_preproc_line] = STATE(1986), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [anon_sym_POUNDendif] = ACTIONS(3497), + [anon_sym_POUNDelse] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [1987] = { [sym_block_comment] = STATE(1987), [sym_compiler_directive_decl] = STATE(1987), [sym_fsi_directive_decl] = STATE(1987), [sym_preproc_line] = STATE(1987), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_as] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [anon_sym_POUNDendif] = ACTIONS(3505), + [anon_sym_POUNDelse] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), }, [1988] = { [sym_block_comment] = STATE(1988), [sym_compiler_directive_decl] = STATE(1988), [sym_fsi_directive_decl] = STATE(1988), [sym_preproc_line] = STATE(1988), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_as] = ACTIONS(3717), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3717), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [1989] = { [sym_block_comment] = STATE(1989), [sym_compiler_directive_decl] = STATE(1989), [sym_fsi_directive_decl] = STATE(1989), [sym_preproc_line] = STATE(1989), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_DASH_GT] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, [1990] = { [sym_block_comment] = STATE(1990), [sym_compiler_directive_decl] = STATE(1990), [sym_fsi_directive_decl] = STATE(1990), [sym_preproc_line] = STATE(1990), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4257), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [1991] = { [sym_block_comment] = STATE(1991), [sym_compiler_directive_decl] = STATE(1991), [sym_fsi_directive_decl] = STATE(1991), [sym_preproc_line] = STATE(1991), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3669), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_with] = ACTIONS(3669), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), - }, - [1992] = { - [sym_block_comment] = STATE(1992), - [sym_compiler_directive_decl] = STATE(1992), - [sym_fsi_directive_decl] = STATE(1992), - [sym_preproc_line] = STATE(1992), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - }, - [1993] = { - [sym_block_comment] = STATE(1993), - [sym_compiler_directive_decl] = STATE(1993), - [sym_fsi_directive_decl] = STATE(1993), - [sym_preproc_line] = STATE(1993), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), - }, - [1994] = { - [sym_block_comment] = STATE(1994), - [sym_compiler_directive_decl] = STATE(1994), - [sym_fsi_directive_decl] = STATE(1994), - [sym_preproc_line] = STATE(1994), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), + }, + [1992] = { + [sym_block_comment] = STATE(1992), + [sym_compiler_directive_decl] = STATE(1992), + [sym_fsi_directive_decl] = STATE(1992), + [sym_preproc_line] = STATE(1992), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_as] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3675), [anon_sym_LBRACK_PIPE] = ACTIONS(3673), @@ -263895,7 +264102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3675), [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -263904,5809 +264111,5902 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3673), [sym__newline] = ACTIONS(3673), }, + [1993] = { + [sym_block_comment] = STATE(1993), + [sym_compiler_directive_decl] = STATE(1993), + [sym_fsi_directive_decl] = STATE(1993), + [sym_preproc_line] = STATE(1993), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDendif] = ACTIONS(3050), + [anon_sym_POUNDelse] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1994] = { + [sym_block_comment] = STATE(1994), + [sym_compiler_directive_decl] = STATE(1994), + [sym_fsi_directive_decl] = STATE(1994), + [sym_preproc_line] = STATE(1994), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3667), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), + }, [1995] = { [sym_block_comment] = STATE(1995), [sym_compiler_directive_decl] = STATE(1995), [sym_fsi_directive_decl] = STATE(1995), [sym_preproc_line] = STATE(1995), - [aux_sym_sequential_expression_repeat1] = STATE(1995), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4325), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_DASH_GT] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_DOT_DOT] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [1996] = { [sym_block_comment] = STATE(1996), [sym_compiler_directive_decl] = STATE(1996), [sym_fsi_directive_decl] = STATE(1996), [sym_preproc_line] = STATE(1996), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_as] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3665), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3659), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [1997] = { [sym_block_comment] = STATE(1997), [sym_compiler_directive_decl] = STATE(1997), [sym_fsi_directive_decl] = STATE(1997), [sym_preproc_line] = STATE(1997), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_with] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), }, [1998] = { [sym_block_comment] = STATE(1998), [sym_compiler_directive_decl] = STATE(1998), [sym_fsi_directive_decl] = STATE(1998), [sym_preproc_line] = STATE(1998), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_LT_AT] = ACTIONS(3316), - [anon_sym_LT_AT_AT] = ACTIONS(3316), - [anon_sym_AT_AT_GT] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3316), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3316), - [anon_sym_assert] = ACTIONS(3316), - [anon_sym_upcast] = ACTIONS(3316), - [anon_sym_downcast] = ACTIONS(3316), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_done] = ACTIONS(4328), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_fun] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_match] = ACTIONS(3316), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_LT_DASH] = ACTIONS(3316), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3316), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3316), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_or] = ACTIONS(3316), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3316), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3316), - [sym_op_identifier] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_DOT] = ACTIONS(3316), - [anon_sym_DASH_DOT] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3316), - [aux_sym_infix_op_token1] = ACTIONS(3314), - [aux_sym_infix_op_token2] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3316), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3316), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3316), - [sym_int] = ACTIONS(3316), - [sym_xint] = ACTIONS(3314), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_as] = ACTIONS(3651), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_with] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [1999] = { [sym_block_comment] = STATE(1999), [sym_compiler_directive_decl] = STATE(1999), [sym_fsi_directive_decl] = STATE(1999), [sym_preproc_line] = STATE(1999), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_DASH_GT] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_DOT_DOT] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3872), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDendif] = ACTIONS(3050), + [anon_sym_POUNDelse] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2000] = { [sym_block_comment] = STATE(2000), [sym_compiler_directive_decl] = STATE(2000), [sym_fsi_directive_decl] = STATE(2000), [sym_preproc_line] = STATE(2000), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [anon_sym_POUNDendif] = ACTIONS(3714), - [anon_sym_POUNDelse] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2001] = { [sym_block_comment] = STATE(2001), [sym_compiler_directive_decl] = STATE(2001), [sym_fsi_directive_decl] = STATE(2001), [sym_preproc_line] = STATE(2001), - [aux_sym_sequential_expression_repeat1] = STATE(1933), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_fun] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_match_BANG] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3647), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [2002] = { [sym_block_comment] = STATE(2002), [sym_compiler_directive_decl] = STATE(2002), [sym_fsi_directive_decl] = STATE(2002), [sym_preproc_line] = STATE(2002), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_DASH_GT] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_DOT_DOT] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_as] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_with] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2003] = { [sym_block_comment] = STATE(2003), [sym_compiler_directive_decl] = STATE(2003), [sym_fsi_directive_decl] = STATE(2003), [sym_preproc_line] = STATE(2003), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_as] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_with] = ACTIONS(3599), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(3541), + [anon_sym_POUNDendif] = ACTIONS(3541), + [anon_sym_POUNDelse] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [2004] = { [sym_block_comment] = STATE(2004), [sym_compiler_directive_decl] = STATE(2004), [sym_fsi_directive_decl] = STATE(2004), [sym_preproc_line] = STATE(2004), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_as] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_with] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2005] = { [sym_block_comment] = STATE(2005), [sym_compiler_directive_decl] = STATE(2005), [sym_fsi_directive_decl] = STATE(2005), [sym_preproc_line] = STATE(2005), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_AT_AT_GT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [2006] = { [sym_block_comment] = STATE(2006), [sym_compiler_directive_decl] = STATE(2006), [sym_fsi_directive_decl] = STATE(2006), [sym_preproc_line] = STATE(2006), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_as] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_with] = ACTIONS(3595), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2007] = { [sym_block_comment] = STATE(2007), [sym_compiler_directive_decl] = STATE(2007), [sym_fsi_directive_decl] = STATE(2007), [sym_preproc_line] = STATE(2007), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_with] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2008] = { [sym_block_comment] = STATE(2008), [sym_compiler_directive_decl] = STATE(2008), [sym_fsi_directive_decl] = STATE(2008), [sym_preproc_line] = STATE(2008), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [anon_sym_POUNDendif] = ACTIONS(3673), - [anon_sym_POUNDelse] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_as] = ACTIONS(3627), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2009] = { [sym_block_comment] = STATE(2009), [sym_compiler_directive_decl] = STATE(2009), [sym_fsi_directive_decl] = STATE(2009), [sym_preproc_line] = STATE(2009), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_as] = ACTIONS(3591), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_with] = ACTIONS(3591), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_as] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_with] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [2010] = { [sym_block_comment] = STATE(2010), [sym_compiler_directive_decl] = STATE(2010), [sym_fsi_directive_decl] = STATE(2010), [sym_preproc_line] = STATE(2010), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_with] = ACTIONS(3587), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_AT_AT_GT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [2011] = { [sym_block_comment] = STATE(2011), [sym_compiler_directive_decl] = STATE(2011), [sym_fsi_directive_decl] = STATE(2011), [sym_preproc_line] = STATE(2011), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_AT_AT_GT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), }, [2012] = { [sym_block_comment] = STATE(2012), [sym_compiler_directive_decl] = STATE(2012), [sym_fsi_directive_decl] = STATE(2012), [sym_preproc_line] = STATE(2012), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_AT_AT_GT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [2013] = { [sym_block_comment] = STATE(2013), [sym_compiler_directive_decl] = STATE(2013), [sym_fsi_directive_decl] = STATE(2013), [sym_preproc_line] = STATE(2013), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_as] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [anon_sym_POUNDendif] = ACTIONS(3557), + [anon_sym_POUNDelse] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [2014] = { [sym_block_comment] = STATE(2014), [sym_compiler_directive_decl] = STATE(2014), [sym_fsi_directive_decl] = STATE(2014), [sym_preproc_line] = STATE(2014), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_as] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_as] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_with] = ACTIONS(3615), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [2015] = { [sym_block_comment] = STATE(2015), [sym_compiler_directive_decl] = STATE(2015), [sym_fsi_directive_decl] = STATE(2015), [sym_preproc_line] = STATE(2015), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3565), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_as] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_with] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [2016] = { [sym_block_comment] = STATE(2016), [sym_compiler_directive_decl] = STATE(2016), [sym_fsi_directive_decl] = STATE(2016), [sym_preproc_line] = STATE(2016), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_with] = ACTIONS(3679), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_with] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [2017] = { [sym_block_comment] = STATE(2017), [sym_compiler_directive_decl] = STATE(2017), [sym_fsi_directive_decl] = STATE(2017), [sym_preproc_line] = STATE(2017), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_as] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_with] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_as] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [2018] = { [sym_block_comment] = STATE(2018), [sym_compiler_directive_decl] = STATE(2018), [sym_fsi_directive_decl] = STATE(2018), [sym_preproc_line] = STATE(2018), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_as] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_with] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_as] = ACTIONS(3467), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [2019] = { [sym_block_comment] = STATE(2019), [sym_compiler_directive_decl] = STATE(2019), [sym_fsi_directive_decl] = STATE(2019), [sym_preproc_line] = STATE(2019), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_as] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_with] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2020] = { [sym_block_comment] = STATE(2020), [sym_compiler_directive_decl] = STATE(2020), [sym_fsi_directive_decl] = STATE(2020), [sym_preproc_line] = STATE(2020), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2021] = { [sym_block_comment] = STATE(2021), [sym_compiler_directive_decl] = STATE(2021), [sym_fsi_directive_decl] = STATE(2021), [sym_preproc_line] = STATE(2021), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_as] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2022] = { [sym_block_comment] = STATE(2022), [sym_compiler_directive_decl] = STATE(2022), [sym_fsi_directive_decl] = STATE(2022), [sym_preproc_line] = STATE(2022), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_as] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3519), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_as] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_with] = ACTIONS(3743), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [2023] = { [sym_block_comment] = STATE(2023), [sym_compiler_directive_decl] = STATE(2023), [sym_fsi_directive_decl] = STATE(2023), [sym_preproc_line] = STATE(2023), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_as] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_as] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2024] = { [sym_block_comment] = STATE(2024), [sym_compiler_directive_decl] = STATE(2024), [sym_fsi_directive_decl] = STATE(2024), [sym_preproc_line] = STATE(2024), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2025] = { [sym_block_comment] = STATE(2025), [sym_compiler_directive_decl] = STATE(2025), [sym_fsi_directive_decl] = STATE(2025), [sym_preproc_line] = STATE(2025), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3310), - [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(3310), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3310), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3310), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), - [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(3310), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3310), - [anon_sym_do_BANG] = ACTIONS(3310), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3310), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3310), - [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(3310), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3310), - [aux_sym_infix_op_token2] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3310), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3310), - [sym__newline] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_as] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [2026] = { [sym_block_comment] = STATE(2026), [sym_compiler_directive_decl] = STATE(2026), [sym_fsi_directive_decl] = STATE(2026), [sym_preproc_line] = STATE(2026), - [sym_identifier] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_let_BANG] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LBRACK_PIPE] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_LT_AT] = ACTIONS(3223), - [anon_sym_LT_AT_AT] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_LBRACE_PIPE] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_return_BANG] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_yield_BANG] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_upcast] = ACTIONS(3223), - [anon_sym_downcast] = ACTIONS(3223), - [anon_sym_COLON_GT] = ACTIONS(3221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_fun] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_match_BANG] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_DOT_LBRACK] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_use] = ACTIONS(3223), - [anon_sym_use_BANG] = ACTIONS(3221), - [anon_sym_do_BANG] = ACTIONS(3221), - [anon_sym_begin] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [aux_sym_char_token1] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_AT_DQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3221), - [sym_bool] = ACTIONS(3223), - [sym_unit] = ACTIONS(3221), - [anon_sym_LPAREN_PIPE] = ACTIONS(3223), - [sym_op_identifier] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS_DOT] = ACTIONS(3223), - [anon_sym_DASH_DOT] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [aux_sym_prefix_op_token1] = ACTIONS(3223), - [aux_sym_infix_op_token1] = ACTIONS(3221), - [aux_sym_infix_op_token2] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3223), - [sym_int] = ACTIONS(3223), - [sym_xint] = ACTIONS(3221), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_as] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2027] = { [sym_block_comment] = STATE(2027), [sym_compiler_directive_decl] = STATE(2027), [sym_fsi_directive_decl] = STATE(2027), [sym_preproc_line] = STATE(2027), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_DASH_GT] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_as] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2028] = { [sym_block_comment] = STATE(2028), [sym_compiler_directive_decl] = STATE(2028), [sym_fsi_directive_decl] = STATE(2028), [sym_preproc_line] = STATE(2028), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_AT_GT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4314), }, [2029] = { [sym_block_comment] = STATE(2029), [sym_compiler_directive_decl] = STATE(2029), [sym_fsi_directive_decl] = STATE(2029), [sym_preproc_line] = STATE(2029), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_DOT_DOT] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, [2030] = { [sym_block_comment] = STATE(2030), [sym_compiler_directive_decl] = STATE(2030), [sym_fsi_directive_decl] = STATE(2030), [sym_preproc_line] = STATE(2030), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_DASH_GT] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [2031] = { [sym_block_comment] = STATE(2031), [sym_compiler_directive_decl] = STATE(2031), [sym_fsi_directive_decl] = STATE(2031), [sym_preproc_line] = STATE(2031), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_as] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [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(3260), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACK_PIPE] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LT_AT] = ACTIONS(3262), + [anon_sym_LT_AT_AT] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_LBRACE_PIPE] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_return_BANG] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield_BANG] = ACTIONS(3260), + [anon_sym_lazy] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_upcast] = ACTIONS(3262), + [anon_sym_downcast] = ACTIONS(3262), + [anon_sym_COLON_GT] = ACTIONS(3260), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3260), + [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(3260), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_DOT_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_use] = ACTIONS(3262), + [anon_sym_use_BANG] = ACTIONS(3260), + [anon_sym_do_BANG] = ACTIONS(3260), + [anon_sym_begin] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [aux_sym_char_token1] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_AT_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3260), + [sym_bool] = ACTIONS(3262), + [sym_unit] = ACTIONS(3260), + [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(3260), + [aux_sym_prefix_op_token1] = ACTIONS(3262), + [aux_sym_infix_op_token1] = ACTIONS(3260), + [aux_sym_infix_op_token2] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), + [sym_int] = ACTIONS(3262), + [sym_xint] = ACTIONS(3260), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3260), + [sym__newline] = ACTIONS(3260), }, [2032] = { [sym_block_comment] = STATE(2032), [sym_compiler_directive_decl] = STATE(2032), [sym_fsi_directive_decl] = STATE(2032), [sym_preproc_line] = STATE(2032), - [aux_sym_sequential_expression_repeat1] = STATE(2032), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3381), - [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(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [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(3381), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3381), - [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(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3381), - [aux_sym_infix_op_token2] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3381), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(4330), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_DASH_GT] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [2033] = { [sym_block_comment] = STATE(2033), [sym_compiler_directive_decl] = STATE(2033), [sym_fsi_directive_decl] = STATE(2033), [sym_preproc_line] = STATE(2033), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_DASH_GT] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_DOT_DOT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [2034] = { [sym_block_comment] = STATE(2034), [sym_compiler_directive_decl] = STATE(2034), [sym_fsi_directive_decl] = STATE(2034), [sym_preproc_line] = STATE(2034), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [anon_sym_POUNDendif] = ACTIONS(3503), - [anon_sym_POUNDelse] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2035] = { [sym_block_comment] = STATE(2035), [sym_compiler_directive_decl] = STATE(2035), [sym_fsi_directive_decl] = STATE(2035), [sym_preproc_line] = STATE(2035), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_let_BANG] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_COLON_QMARK] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACK_PIPE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LT_AT] = ACTIONS(3178), + [anon_sym_LT_AT_AT] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE_PIPE] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_return_BANG] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_yield_BANG] = ACTIONS(3180), + [anon_sym_lazy] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_upcast] = ACTIONS(3178), + [anon_sym_downcast] = ACTIONS(3178), + [anon_sym_COLON_GT] = ACTIONS(3180), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_fun] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_match_BANG] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_DOT_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_use] = ACTIONS(3178), + [anon_sym_use_BANG] = ACTIONS(3180), + [anon_sym_do_BANG] = ACTIONS(3180), + [anon_sym_begin] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [aux_sym_char_token1] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_AT_DQUOTE] = ACTIONS(3180), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3180), + [sym_bool] = ACTIONS(3178), + [sym_unit] = ACTIONS(3180), + [anon_sym_LPAREN_PIPE] = ACTIONS(3178), + [sym_op_identifier] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_DOT] = ACTIONS(3178), + [anon_sym_DASH_DOT] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [aux_sym_prefix_op_token1] = ACTIONS(3178), + [aux_sym_infix_op_token1] = ACTIONS(3180), + [aux_sym_infix_op_token2] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3180), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3178), + [sym_int] = ACTIONS(3178), + [sym_xint] = ACTIONS(3180), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3180), + [sym__newline] = ACTIONS(3180), }, [2036] = { [sym_block_comment] = STATE(2036), [sym_compiler_directive_decl] = STATE(2036), [sym_fsi_directive_decl] = STATE(2036), [sym_preproc_line] = STATE(2036), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_as] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [anon_sym_POUNDendif] = ACTIONS(3663), + [anon_sym_POUNDelse] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [2037] = { [sym_block_comment] = STATE(2037), [sym_compiler_directive_decl] = STATE(2037), [sym_fsi_directive_decl] = STATE(2037), [sym_preproc_line] = STATE(2037), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2038] = { [sym_block_comment] = STATE(2038), [sym_compiler_directive_decl] = STATE(2038), [sym_fsi_directive_decl] = STATE(2038), [sym_preproc_line] = STATE(2038), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_as] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_with] = ACTIONS(3517), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [2039] = { [sym_block_comment] = STATE(2039), [sym_compiler_directive_decl] = STATE(2039), [sym_fsi_directive_decl] = STATE(2039), [sym_preproc_line] = STATE(2039), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [2040] = { [sym_block_comment] = STATE(2040), [sym_compiler_directive_decl] = STATE(2040), [sym_fsi_directive_decl] = STATE(2040), [sym_preproc_line] = STATE(2040), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [2041] = { [sym_block_comment] = STATE(2041), [sym_compiler_directive_decl] = STATE(2041), [sym_fsi_directive_decl] = STATE(2041), [sym_preproc_line] = STATE(2041), - [sym_identifier] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3283), - [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(3283), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_COLON_QMARK] = ACTIONS(3285), - [anon_sym_COLON_COLON] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LBRACK_PIPE] = ACTIONS(3283), - [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(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_return_BANG] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_yield_BANG] = ACTIONS(3283), - [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(3283), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), - [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(3283), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_DOT_LBRACK] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_use] = ACTIONS(3285), - [anon_sym_use_BANG] = ACTIONS(3283), - [anon_sym_do_BANG] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [anon_sym_LPAREN2] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3285), - [aux_sym_char_token1] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_AT_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), - [sym_bool] = ACTIONS(3285), - [sym_unit] = ACTIONS(3283), - [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(3283), - [aux_sym_prefix_op_token1] = ACTIONS(3285), - [aux_sym_infix_op_token1] = ACTIONS(3283), - [aux_sym_infix_op_token2] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), - [sym_int] = ACTIONS(3285), - [sym_xint] = ACTIONS(3283), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3283), - [sym__newline] = ACTIONS(3283), - }, - [2042] = { - [sym_block_comment] = STATE(2042), - [sym_compiler_directive_decl] = STATE(2042), - [sym_fsi_directive_decl] = STATE(2042), - [sym_preproc_line] = STATE(2042), - [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), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_DASH_GT] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [2042] = { + [sym_block_comment] = STATE(2042), + [sym_compiler_directive_decl] = STATE(2042), + [sym_fsi_directive_decl] = STATE(2042), + [sym_preproc_line] = STATE(2042), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_DASH_GT] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_DOT_DOT] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [2043] = { [sym_block_comment] = STATE(2043), [sym_compiler_directive_decl] = STATE(2043), [sym_fsi_directive_decl] = STATE(2043), [sym_preproc_line] = STATE(2043), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [2044] = { [sym_block_comment] = STATE(2044), [sym_compiler_directive_decl] = STATE(2044), [sym_fsi_directive_decl] = STATE(2044), [sym_preproc_line] = STATE(2044), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_DASH_GT] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_DOT_DOT] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_DASH_GT] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_DOT_DOT] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [2045] = { [sym_block_comment] = STATE(2045), [sym_compiler_directive_decl] = STATE(2045), [sym_fsi_directive_decl] = STATE(2045), [sym_preproc_line] = STATE(2045), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_DASH_GT] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_as] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_with] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [2046] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2046), [sym_compiler_directive_decl] = STATE(2046), [sym_fsi_directive_decl] = STATE(2046), [sym_preproc_line] = STATE(2046), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(2912), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_open] = ACTIONS(2912), - [anon_sym_LBRACK_LT] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_and] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [aux_sym_access_modifier_token1] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2910), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_member] = ACTIONS(2912), - [anon_sym_interface] = ACTIONS(2912), - [anon_sym_exception] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2912), - [anon_sym_override] = ACTIONS(2912), - [anon_sym_val] = ACTIONS(2912), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2910), - [anon_sym_DASH_DOT] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2910), - [anon_sym_POUNDload] = ACTIONS(2910), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_as] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_with] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [2047] = { [sym_block_comment] = STATE(2047), [sym_compiler_directive_decl] = STATE(2047), [sym_fsi_directive_decl] = STATE(2047), [sym_preproc_line] = STATE(2047), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_DASH_GT] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_as] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_with] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [2048] = { [sym_block_comment] = STATE(2048), [sym_compiler_directive_decl] = STATE(2048), [sym_fsi_directive_decl] = STATE(2048), [sym_preproc_line] = STATE(2048), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_as] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_DASH_GT] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [2049] = { [sym_block_comment] = STATE(2049), [sym_compiler_directive_decl] = STATE(2049), [sym_fsi_directive_decl] = STATE(2049), [sym_preproc_line] = STATE(2049), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_DASH_GT] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_DOT_DOT] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_AT_AT_GT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [2050] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2050), [sym_compiler_directive_decl] = STATE(2050), [sym_fsi_directive_decl] = STATE(2050), [sym_preproc_line] = STATE(2050), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(2916), - [anon_sym_module] = ACTIONS(2916), - [anon_sym_open] = ACTIONS(2916), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_and] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [aux_sym_access_modifier_token1] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_member] = ACTIONS(2916), - [anon_sym_interface] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2916), - [anon_sym_abstract] = ACTIONS(2916), - [anon_sym_override] = ACTIONS(2916), - [anon_sym_val] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_as] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [2051] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2051), [sym_compiler_directive_decl] = STATE(2051), [sym_fsi_directive_decl] = STATE(2051), [sym_preproc_line] = STATE(2051), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_open] = ACTIONS(2886), - [anon_sym_LBRACK_LT] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_and] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [aux_sym_access_modifier_token1] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_member] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_exception] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_override] = ACTIONS(2886), - [anon_sym_val] = ACTIONS(2886), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2884), - [anon_sym_DASH_DOT] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2884), - [anon_sym_POUNDload] = ACTIONS(2884), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [2052] = { [sym_block_comment] = STATE(2052), [sym_compiler_directive_decl] = STATE(2052), [sym_fsi_directive_decl] = STATE(2052), [sym_preproc_line] = STATE(2052), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3293), + [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(3293), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_COLON_QMARK] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LBRACK_PIPE] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LT_AT] = ACTIONS(3295), + [anon_sym_LT_AT_AT] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LBRACE_PIPE] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_return_BANG] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_yield_BANG] = ACTIONS(3293), + [anon_sym_lazy] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_upcast] = ACTIONS(3295), + [anon_sym_downcast] = ACTIONS(3295), + [anon_sym_COLON_GT] = ACTIONS(3293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3293), + [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(3293), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_DOT_LBRACK] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_use_BANG] = ACTIONS(3293), + [anon_sym_do_BANG] = ACTIONS(3293), + [anon_sym_begin] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [aux_sym_char_token1] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_AT_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3293), + [sym_bool] = ACTIONS(3295), + [sym_unit] = ACTIONS(3293), + [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(3293), + [aux_sym_prefix_op_token1] = ACTIONS(3295), + [aux_sym_infix_op_token1] = ACTIONS(3293), + [aux_sym_infix_op_token2] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(3295), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), + [sym_int] = ACTIONS(3295), + [sym_xint] = ACTIONS(3293), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3293), + [sym__newline] = ACTIONS(3293), }, [2053] = { [sym_block_comment] = STATE(2053), [sym_compiler_directive_decl] = STATE(2053), [sym_fsi_directive_decl] = STATE(2053), [sym_preproc_line] = STATE(2053), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [aux_sym_sequential_expression_repeat1] = STATE(2053), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_AT_AT_GT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4319), }, [2054] = { [sym_block_comment] = STATE(2054), [sym_compiler_directive_decl] = STATE(2054), [sym_fsi_directive_decl] = STATE(2054), [sym_preproc_line] = STATE(2054), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_DASH_GT] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_DOT_DOT] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [2055] = { [sym_block_comment] = STATE(2055), [sym_compiler_directive_decl] = STATE(2055), [sym_fsi_directive_decl] = STATE(2055), [sym_preproc_line] = STATE(2055), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_DASH_GT] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_DOT_DOT] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [aux_sym_long_identifier_repeat1] = STATE(1892), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [2056] = { [sym_block_comment] = STATE(2056), [sym_compiler_directive_decl] = STATE(2056), [sym_fsi_directive_decl] = STATE(2056), [sym_preproc_line] = STATE(2056), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - }, - [2057] = { - [sym_block_comment] = STATE(2057), - [sym_compiler_directive_decl] = STATE(2057), - [sym_fsi_directive_decl] = STATE(2057), - [sym_preproc_line] = STATE(2057), [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3519), [anon_sym_COLON] = ACTIONS(3517), [anon_sym_return] = ACTIONS(3517), [anon_sym_do] = ACTIONS(3517), [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3519), [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3519), [anon_sym_null] = ACTIONS(3517), [anon_sym_QMARK] = ACTIONS(3517), [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3519), [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), [anon_sym_LBRACE] = ACTIONS(3517), [anon_sym_LT_AT] = ACTIONS(3517), [anon_sym_LT_AT_AT] = ACTIONS(3517), [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3519), [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3519), [anon_sym_lazy] = ACTIONS(3517), [anon_sym_assert] = ACTIONS(3517), [anon_sym_upcast] = ACTIONS(3517), [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), [anon_sym_for] = ACTIONS(3517), [anon_sym_while] = ACTIONS(3517), [anon_sym_if] = ACTIONS(3517), @@ -269714,26 +270014,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3517), [anon_sym_try] = ACTIONS(3517), [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3519), [anon_sym_function] = ACTIONS(3517), [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_DOT_DOT] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_DOT_DOT] = ACTIONS(3519), [anon_sym_begin] = ACTIONS(3517), [anon_sym_LPAREN2] = ACTIONS(3517), [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3519), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), + [sym_unit] = ACTIONS(3519), [anon_sym_LPAREN_PIPE] = ACTIONS(3517), [sym_op_identifier] = ACTIONS(3517), [anon_sym_PLUS] = ACTIONS(3517), @@ -269742,3067 +270042,3251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3517), [anon_sym_PERCENT] = ACTIONS(3517), [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3519), [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3519), [aux_sym_infix_op_token2] = ACTIONS(3517), [anon_sym_PIPE_PIPE] = ACTIONS(3517), [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3519), [anon_sym_DOLLAR] = ACTIONS(3517), [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), + }, + [2057] = { + [sym_block_comment] = STATE(2057), + [sym_compiler_directive_decl] = STATE(2057), + [sym_fsi_directive_decl] = STATE(2057), + [sym_preproc_line] = STATE(2057), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_AT_GT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), }, [2058] = { [sym_block_comment] = STATE(2058), [sym_compiler_directive_decl] = STATE(2058), [sym_fsi_directive_decl] = STATE(2058), [sym_preproc_line] = STATE(2058), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + }, + [2059] = { + [sym_block_comment] = STATE(2059), + [sym_compiler_directive_decl] = STATE(2059), + [sym_fsi_directive_decl] = STATE(2059), + [sym_preproc_line] = STATE(2059), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3052), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_EQ2] = ACTIONS(4255), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), - }, - [2059] = { - [sym_block_comment] = STATE(2059), - [sym_compiler_directive_decl] = STATE(2059), - [sym_fsi_directive_decl] = STATE(2059), - [sym_preproc_line] = STATE(2059), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_DASH_GT] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2060] = { [sym_block_comment] = STATE(2060), [sym_compiler_directive_decl] = STATE(2060), [sym_fsi_directive_decl] = STATE(2060), [sym_preproc_line] = STATE(2060), - [sym_identifier] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_let_BANG] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_null] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LBRACK_PIPE] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LT_AT] = ACTIONS(3279), - [anon_sym_LT_AT_AT] = ACTIONS(3279), - [anon_sym_AT_AT_GT] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_LBRACE_PIPE] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_return_BANG] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_yield_BANG] = ACTIONS(3277), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_upcast] = ACTIONS(3279), - [anon_sym_downcast] = ACTIONS(3279), - [anon_sym_COLON_GT] = ACTIONS(3277), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_fun] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_match_BANG] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_DOT_LBRACK] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_use] = ACTIONS(3279), - [anon_sym_use_BANG] = ACTIONS(3277), - [anon_sym_do_BANG] = ACTIONS(3277), - [anon_sym_begin] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [aux_sym_char_token1] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_AT_DQUOTE] = ACTIONS(3277), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3277), - [sym_bool] = ACTIONS(3279), - [sym_unit] = ACTIONS(3277), - [anon_sym_LPAREN_PIPE] = ACTIONS(3279), - [sym_op_identifier] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_PLUS_DOT] = ACTIONS(3279), - [anon_sym_DASH_DOT] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [aux_sym_prefix_op_token1] = ACTIONS(3279), - [aux_sym_infix_op_token1] = ACTIONS(3277), - [aux_sym_infix_op_token2] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3279), - [sym_int] = ACTIONS(3279), - [sym_xint] = ACTIONS(3277), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3277), - [sym__newline] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [2061] = { [sym_block_comment] = STATE(2061), [sym_compiler_directive_decl] = STATE(2061), [sym_fsi_directive_decl] = STATE(2061), [sym_preproc_line] = STATE(2061), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_DOT_DOT] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [2062] = { [sym_block_comment] = STATE(2062), [sym_compiler_directive_decl] = STATE(2062), [sym_fsi_directive_decl] = STATE(2062), [sym_preproc_line] = STATE(2062), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_with] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2063] = { [sym_block_comment] = STATE(2063), [sym_compiler_directive_decl] = STATE(2063), [sym_fsi_directive_decl] = STATE(2063), [sym_preproc_line] = STATE(2063), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_DASH_GT] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_DASH_GT] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [2064] = { [sym_block_comment] = STATE(2064), [sym_compiler_directive_decl] = STATE(2064), [sym_fsi_directive_decl] = STATE(2064), [sym_preproc_line] = STATE(2064), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_DASH_GT] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_DOT_DOT] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2065] = { [sym_block_comment] = STATE(2065), [sym_compiler_directive_decl] = STATE(2065), [sym_fsi_directive_decl] = STATE(2065), [sym_preproc_line] = STATE(2065), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_DASH_GT] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [2066] = { [sym_block_comment] = STATE(2066), [sym_compiler_directive_decl] = STATE(2066), [sym_fsi_directive_decl] = STATE(2066), [sym_preproc_line] = STATE(2066), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [2067] = { [sym_block_comment] = STATE(2067), [sym_compiler_directive_decl] = STATE(2067), [sym_fsi_directive_decl] = STATE(2067), [sym_preproc_line] = STATE(2067), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2068] = { [sym_block_comment] = STATE(2068), [sym_compiler_directive_decl] = STATE(2068), [sym_fsi_directive_decl] = STATE(2068), [sym_preproc_line] = STATE(2068), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_DASH_GT] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_DOT_DOT] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_AT_AT_GT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [2069] = { [sym_block_comment] = STATE(2069), [sym_compiler_directive_decl] = STATE(2069), [sym_fsi_directive_decl] = STATE(2069), [sym_preproc_line] = STATE(2069), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_DASH_GT] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_DOT_DOT] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_DASH_GT] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [2070] = { [sym_block_comment] = STATE(2070), [sym_compiler_directive_decl] = STATE(2070), [sym_fsi_directive_decl] = STATE(2070), [sym_preproc_line] = STATE(2070), - [aux_sym_long_identifier_repeat1] = STATE(1829), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4343), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - }, - [2071] = { - [sym_block_comment] = STATE(2071), - [sym_compiler_directive_decl] = STATE(2071), - [sym_fsi_directive_decl] = STATE(2071), - [sym_preproc_line] = STATE(2071), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_DASH_GT] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_DOT_DOT] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_DOT_DOT] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), + }, + [2071] = { + [sym_block_comment] = STATE(2071), + [sym_compiler_directive_decl] = STATE(2071), + [sym_fsi_directive_decl] = STATE(2071), + [sym_preproc_line] = STATE(2071), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_DASH_GT] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [2072] = { [sym_block_comment] = STATE(2072), [sym_compiler_directive_decl] = STATE(2072), [sym_fsi_directive_decl] = STATE(2072), [sym_preproc_line] = STATE(2072), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_as] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [2073] = { [sym_block_comment] = STATE(2073), [sym_compiler_directive_decl] = STATE(2073), [sym_fsi_directive_decl] = STATE(2073), [sym_preproc_line] = STATE(2073), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_AT_AT_GT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), }, [2074] = { [sym_block_comment] = STATE(2074), [sym_compiler_directive_decl] = STATE(2074), [sym_fsi_directive_decl] = STATE(2074), [sym_preproc_line] = STATE(2074), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_DOT_DOT] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_as] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_with] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [2075] = { [sym_block_comment] = STATE(2075), [sym_compiler_directive_decl] = STATE(2075), [sym_fsi_directive_decl] = STATE(2075), [sym_preproc_line] = STATE(2075), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_as] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_with] = ACTIONS(3641), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [2076] = { [sym_block_comment] = STATE(2076), [sym_compiler_directive_decl] = STATE(2076), [sym_fsi_directive_decl] = STATE(2076), [sym_preproc_line] = STATE(2076), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_let_BANG] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_COLON_QMARK] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LT_AT] = ACTIONS(3306), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_return_BANG] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_yield_BANG] = ACTIONS(3304), + [anon_sym_lazy] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_upcast] = ACTIONS(3306), + [anon_sym_downcast] = ACTIONS(3306), + [anon_sym_COLON_GT] = ACTIONS(3304), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_fun] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_match_BANG] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_DOT_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_GT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3306), + [anon_sym_use_BANG] = ACTIONS(3304), + [anon_sym_do_BANG] = ACTIONS(3304), + [anon_sym_begin] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_AT_DQUOTE] = ACTIONS(3304), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3304), + [sym_bool] = ACTIONS(3306), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3306), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [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(3304), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token2] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3306), + [sym_int] = ACTIONS(3306), + [sym_xint] = ACTIONS(3304), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3304), + [sym__newline] = ACTIONS(3304), }, [2077] = { [sym_block_comment] = STATE(2077), [sym_compiler_directive_decl] = STATE(2077), [sym_fsi_directive_decl] = STATE(2077), [sym_preproc_line] = STATE(2077), - [sym_identifier] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_AT_GT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_DOT_LBRACK] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3165), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token2] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [2078] = { [sym_block_comment] = STATE(2078), [sym_compiler_directive_decl] = STATE(2078), [sym_fsi_directive_decl] = STATE(2078), [sym_preproc_line] = STATE(2078), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_DASH_GT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_DASH_GT] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_DOT_DOT] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2079] = { [sym_block_comment] = STATE(2079), [sym_compiler_directive_decl] = STATE(2079), [sym_fsi_directive_decl] = STATE(2079), [sym_preproc_line] = STATE(2079), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_AT_GT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_DASH_GT] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), }, [2080] = { [sym_block_comment] = STATE(2080), [sym_compiler_directive_decl] = STATE(2080), [sym_fsi_directive_decl] = STATE(2080), [sym_preproc_line] = STATE(2080), - [sym_identifier] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_let_BANG] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_LT_AT] = ACTIONS(3359), - [anon_sym_LT_AT_AT] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE_PIPE] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_return_BANG] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_yield_BANG] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_upcast] = ACTIONS(3359), - [anon_sym_downcast] = ACTIONS(3359), - [anon_sym_COLON_GT] = ACTIONS(3361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_done] = ACTIONS(4347), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_fun] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_match_BANG] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_DOT_LBRACK] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_use] = ACTIONS(3359), - [anon_sym_use_BANG] = ACTIONS(3361), - [anon_sym_do_BANG] = ACTIONS(3361), - [anon_sym_begin] = ACTIONS(3359), - [anon_sym_LPAREN2] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [aux_sym_char_token1] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_AT_DQUOTE] = ACTIONS(3361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3361), - [sym_bool] = ACTIONS(3359), - [sym_unit] = ACTIONS(3361), - [anon_sym_LPAREN_PIPE] = ACTIONS(3359), - [sym_op_identifier] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3359), - [anon_sym_DASH_DOT] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [aux_sym_prefix_op_token1] = ACTIONS(3359), - [aux_sym_infix_op_token1] = ACTIONS(3361), - [aux_sym_infix_op_token2] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3359), - [sym_int] = ACTIONS(3359), - [sym_xint] = ACTIONS(3361), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3361), - [anon_sym_POUNDendif] = ACTIONS(3361), - [sym__newline] = ACTIONS(3361), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [2081] = { [sym_block_comment] = STATE(2081), [sym_compiler_directive_decl] = STATE(2081), [sym_fsi_directive_decl] = STATE(2081), [sym_preproc_line] = STATE(2081), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_DASH_GT] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_DOT_DOT] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_DASH_GT] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_DOT_DOT] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [2082] = { [sym_block_comment] = STATE(2082), [sym_compiler_directive_decl] = STATE(2082), [sym_fsi_directive_decl] = STATE(2082), [sym_preproc_line] = STATE(2082), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2083] = { [sym_block_comment] = STATE(2083), [sym_compiler_directive_decl] = STATE(2083), [sym_fsi_directive_decl] = STATE(2083), [sym_preproc_line] = STATE(2083), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_as] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_with] = ACTIONS(3609), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_DASH_GT] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_DOT_DOT] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [2084] = { [sym_block_comment] = STATE(2084), [sym_compiler_directive_decl] = STATE(2084), [sym_fsi_directive_decl] = STATE(2084), [sym_preproc_line] = STATE(2084), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_with] = ACTIONS(3605), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_DASH_GT] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2085] = { [sym_block_comment] = STATE(2085), [sym_compiler_directive_decl] = STATE(2085), [sym_fsi_directive_decl] = STATE(2085), [sym_preproc_line] = STATE(2085), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_as] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_DOT_DOT] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [2086] = { [sym_block_comment] = STATE(2086), [sym_compiler_directive_decl] = STATE(2086), [sym_fsi_directive_decl] = STATE(2086), [sym_preproc_line] = STATE(2086), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_as] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_with] = ACTIONS(3663), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2087] = { [sym_block_comment] = STATE(2087), [sym_compiler_directive_decl] = STATE(2087), [sym_fsi_directive_decl] = STATE(2087), [sym_preproc_line] = STATE(2087), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2088] = { [sym_block_comment] = STATE(2088), [sym_compiler_directive_decl] = STATE(2088), [sym_fsi_directive_decl] = STATE(2088), [sym_preproc_line] = STATE(2088), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_DASH_GT] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_DOT_DOT] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2089] = { [sym_block_comment] = STATE(2089), [sym_compiler_directive_decl] = STATE(2089), [sym_fsi_directive_decl] = STATE(2089), [sym_preproc_line] = STATE(2089), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2090] = { [sym_block_comment] = STATE(2090), [sym_compiler_directive_decl] = STATE(2090), [sym_fsi_directive_decl] = STATE(2090), [sym_preproc_line] = STATE(2090), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), + }, + [2091] = { + [sym_block_comment] = STATE(2091), + [sym_compiler_directive_decl] = STATE(2091), + [sym_fsi_directive_decl] = STATE(2091), + [sym_preproc_line] = STATE(2091), [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3421), [anon_sym_COLON] = ACTIONS(3419), [anon_sym_return] = ACTIONS(3419), [anon_sym_do] = ACTIONS(3419), [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_as] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3421), [anon_sym_null] = ACTIONS(3419), [anon_sym_QMARK] = ACTIONS(3419), [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3421), [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), [anon_sym_LBRACE] = ACTIONS(3419), [anon_sym_LT_AT] = ACTIONS(3419), [anon_sym_LT_AT_AT] = ACTIONS(3419), [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3421), [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3421), [anon_sym_lazy] = ACTIONS(3419), [anon_sym_assert] = ACTIONS(3419), [anon_sym_upcast] = ACTIONS(3419), [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), [anon_sym_for] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), [anon_sym_fun] = ACTIONS(3419), [anon_sym_try] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3421), [anon_sym_function] = ACTIONS(3419), [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), [anon_sym_begin] = ACTIONS(3419), [anon_sym_LPAREN2] = ACTIONS(3419), [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), + [sym_unit] = ACTIONS(3421), [anon_sym_LPAREN_PIPE] = ACTIONS(3419), [sym_op_identifier] = ACTIONS(3419), [anon_sym_PLUS] = ACTIONS(3419), @@ -272811,118 +273295,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3419), [anon_sym_PERCENT] = ACTIONS(3419), [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3421), [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3421), [aux_sym_infix_op_token2] = ACTIONS(3419), [anon_sym_PIPE_PIPE] = ACTIONS(3419), [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3421), [anon_sym_DOLLAR] = ACTIONS(3419), [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), - }, - [2091] = { - [sym_block_comment] = STATE(2091), - [sym_compiler_directive_decl] = STATE(2091), - [sym_fsi_directive_decl] = STATE(2091), - [sym_preproc_line] = STATE(2091), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3421), + [anon_sym_POUNDendif] = ACTIONS(3421), + [anon_sym_POUNDelse] = ACTIONS(3421), [sym__newline] = ACTIONS(3421), }, [2092] = { @@ -272930,158 +273323,623 @@ 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(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_as] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, [2093] = { [sym_block_comment] = STATE(2093), [sym_compiler_directive_decl] = STATE(2093), [sym_fsi_directive_decl] = STATE(2093), [sym_preproc_line] = STATE(2093), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_DASH_GT] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), + }, + [2094] = { + [sym_block_comment] = STATE(2094), + [sym_compiler_directive_decl] = STATE(2094), + [sym_fsi_directive_decl] = STATE(2094), + [sym_preproc_line] = STATE(2094), + [sym_identifier] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_AT_GT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_COLON_GT] = ACTIONS(3219), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_DOT_LBRACK] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_or] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3221), + [anon_sym_DASH_DOT] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3221), + [aux_sym_infix_op_token1] = ACTIONS(3219), + [aux_sym_infix_op_token2] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3221), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + }, + [2095] = { + [sym_block_comment] = STATE(2095), + [sym_compiler_directive_decl] = STATE(2095), + [sym_fsi_directive_decl] = STATE(2095), + [sym_preproc_line] = STATE(2095), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_DASH_GT] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_DOT_DOT] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + }, + [2096] = { + [sym_block_comment] = STATE(2096), + [sym_compiler_directive_decl] = STATE(2096), + [sym_fsi_directive_decl] = STATE(2096), + [sym_preproc_line] = STATE(2096), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), + }, + [2097] = { + [sym_block_comment] = STATE(2097), + [sym_compiler_directive_decl] = STATE(2097), + [sym_fsi_directive_decl] = STATE(2097), + [sym_preproc_line] = STATE(2097), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_AT_GT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), + }, + [2098] = { + [sym_block_comment] = STATE(2098), + [sym_compiler_directive_decl] = STATE(2098), + [sym_fsi_directive_decl] = STATE(2098), + [sym_preproc_line] = STATE(2098), [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3433), [anon_sym_COLON] = ACTIONS(3431), [anon_sym_return] = ACTIONS(3431), [anon_sym_do] = ACTIONS(3431), [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3433), [anon_sym_null] = ACTIONS(3431), [anon_sym_QMARK] = ACTIONS(3431), [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3433), [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), [anon_sym_LBRACE] = ACTIONS(3431), [anon_sym_LT_AT] = ACTIONS(3431), [anon_sym_LT_AT_AT] = ACTIONS(3431), [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3433), [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3433), [anon_sym_lazy] = ACTIONS(3431), [anon_sym_assert] = ACTIONS(3431), [anon_sym_upcast] = ACTIONS(3431), [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), [anon_sym_for] = ACTIONS(3431), [anon_sym_while] = ACTIONS(3431), [anon_sym_if] = ACTIONS(3431), [anon_sym_fun] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3431), [anon_sym_try] = ACTIONS(3431), [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3433), [anon_sym_function] = ACTIONS(3431), [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_DOT_DOT] = ACTIONS(3433), [anon_sym_begin] = ACTIONS(3431), [anon_sym_LPAREN2] = ACTIONS(3431), [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3433), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), + [sym_unit] = ACTIONS(3433), [anon_sym_LPAREN_PIPE] = ACTIONS(3431), [sym_op_identifier] = ACTIONS(3431), [anon_sym_PLUS] = ACTIONS(3431), @@ -273090,1207 +273948,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3431), [anon_sym_PERCENT] = ACTIONS(3431), [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3433), [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3433), [aux_sym_infix_op_token2] = ACTIONS(3431), [anon_sym_PIPE_PIPE] = ACTIONS(3431), [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3433), [anon_sym_DOLLAR] = ACTIONS(3431), [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [2094] = { - [sym_block_comment] = STATE(2094), - [sym_compiler_directive_decl] = STATE(2094), - [sym_fsi_directive_decl] = STATE(2094), - [sym_preproc_line] = STATE(2094), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - }, - [2095] = { - [sym_block_comment] = STATE(2095), - [sym_compiler_directive_decl] = STATE(2095), - [sym_fsi_directive_decl] = STATE(2095), - [sym_preproc_line] = STATE(2095), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_as] = ACTIONS(3458), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - }, - [2096] = { - [sym_block_comment] = STATE(2096), - [sym_compiler_directive_decl] = STATE(2096), - [sym_fsi_directive_decl] = STATE(2096), - [sym_preproc_line] = STATE(2096), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_DASH_GT] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), - }, - [2097] = { - [sym_block_comment] = STATE(2097), - [sym_compiler_directive_decl] = STATE(2097), - [sym_fsi_directive_decl] = STATE(2097), - [sym_preproc_line] = STATE(2097), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_as] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - }, - [2098] = { - [sym_block_comment] = STATE(2098), - [sym_compiler_directive_decl] = STATE(2098), - [sym_fsi_directive_decl] = STATE(2098), - [sym_preproc_line] = STATE(2098), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_as] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [2099] = { [sym_block_comment] = STATE(2099), [sym_compiler_directive_decl] = STATE(2099), [sym_fsi_directive_decl] = STATE(2099), [sym_preproc_line] = STATE(2099), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_with] = ACTIONS(3655), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_DOT_DOT] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, [2100] = { [sym_block_comment] = STATE(2100), [sym_compiler_directive_decl] = STATE(2100), [sym_fsi_directive_decl] = STATE(2100), [sym_preproc_line] = STATE(2100), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_DASH_GT] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_DOT_DOT] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [2101] = { [sym_block_comment] = STATE(2101), [sym_compiler_directive_decl] = STATE(2101), [sym_fsi_directive_decl] = STATE(2101), [sym_preproc_line] = STATE(2101), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_as] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_DASH_GT] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_DOT_DOT] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [2102] = { [sym_block_comment] = STATE(2102), [sym_compiler_directive_decl] = STATE(2102), [sym_fsi_directive_decl] = STATE(2102), [sym_preproc_line] = STATE(2102), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_DASH_GT] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_let_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LBRACK_PIPE] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_LT_AT] = ACTIONS(3235), + [anon_sym_LT_AT_AT] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_LBRACE_PIPE] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_return_BANG] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_yield_BANG] = ACTIONS(3233), + [anon_sym_lazy] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_upcast] = ACTIONS(3235), + [anon_sym_downcast] = ACTIONS(3235), + [anon_sym_COLON_GT] = ACTIONS(3233), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_done] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_fun] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_match_BANG] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_DOT_LBRACK] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_use_BANG] = ACTIONS(3233), + [anon_sym_do_BANG] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3235), + [aux_sym_char_token1] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_AT_DQUOTE] = ACTIONS(3233), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), + [sym_bool] = ACTIONS(3235), + [sym_unit] = ACTIONS(3233), + [anon_sym_LPAREN_PIPE] = ACTIONS(3235), + [sym_op_identifier] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_DOT] = ACTIONS(3235), + [anon_sym_DASH_DOT] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3233), + [aux_sym_prefix_op_token1] = ACTIONS(3235), + [aux_sym_infix_op_token1] = ACTIONS(3233), + [aux_sym_infix_op_token2] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_DOLLAR] = ACTIONS(3235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3235), + [sym_int] = ACTIONS(3235), + [sym_xint] = ACTIONS(3233), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3233), + [sym__newline] = ACTIONS(3233), }, [2103] = { [sym_block_comment] = STATE(2103), [sym_compiler_directive_decl] = STATE(2103), [sym_fsi_directive_decl] = STATE(2103), [sym_preproc_line] = STATE(2103), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_DOT_DOT] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), - }, - [2104] = { - [sym_block_comment] = STATE(2104), - [sym_compiler_directive_decl] = STATE(2104), - [sym_fsi_directive_decl] = STATE(2104), - [sym_preproc_line] = STATE(2104), - [aux_sym_sequential_expression_repeat1] = STATE(1995), - [sym_identifier] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3349), - [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(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3349), - [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(3349), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_return_BANG] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_yield_BANG] = ACTIONS(3349), - [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(3349), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3349), - [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(3349), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_DOT_LBRACK] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_use] = ACTIONS(3351), - [anon_sym_use_BANG] = ACTIONS(3349), - [anon_sym_do_BANG] = ACTIONS(3349), - [anon_sym_begin] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [aux_sym_char_token1] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_AT_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3349), - [sym_bool] = ACTIONS(3351), - [sym_unit] = ACTIONS(3349), - [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(3349), - [aux_sym_prefix_op_token1] = ACTIONS(3351), - [aux_sym_infix_op_token1] = ACTIONS(3349), - [aux_sym_infix_op_token2] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3351), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), - [sym_int] = ACTIONS(3351), - [sym_xint] = ACTIONS(3349), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - }, - [2105] = { - [sym_block_comment] = STATE(2105), - [sym_compiler_directive_decl] = STATE(2105), - [sym_fsi_directive_decl] = STATE(2105), - [sym_preproc_line] = STATE(2105), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), - }, - [2106] = { - [sym_block_comment] = STATE(2106), - [sym_compiler_directive_decl] = STATE(2106), - [sym_fsi_directive_decl] = STATE(2106), - [sym_preproc_line] = STATE(2106), [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_EQ] = ACTIONS(3609), [anon_sym_COLON] = ACTIONS(3611), [anon_sym_return] = ACTIONS(3611), [anon_sym_do] = ACTIONS(3611), [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_as] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_COMMA] = ACTIONS(3609), [anon_sym_null] = ACTIONS(3611), [anon_sym_QMARK] = ACTIONS(3611), [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3609), [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), [anon_sym_LBRACE] = ACTIONS(3611), [anon_sym_LT_AT] = ACTIONS(3611), [anon_sym_LT_AT_AT] = ACTIONS(3611), [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_with] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_return_BANG] = ACTIONS(3609), [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_yield_BANG] = ACTIONS(3609), [anon_sym_lazy] = ACTIONS(3611), [anon_sym_assert] = ACTIONS(3611), [anon_sym_upcast] = ACTIONS(3611), [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), [anon_sym_for] = ACTIONS(3611), [anon_sym_while] = ACTIONS(3611), [anon_sym_if] = ACTIONS(3611), [anon_sym_fun] = ACTIONS(3611), + [anon_sym_DASH_GT] = ACTIONS(3611), [anon_sym_try] = ACTIONS(3611), [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_match_BANG] = ACTIONS(3609), [anon_sym_function] = ACTIONS(3611), [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_DOT_DOT] = ACTIONS(3609), [anon_sym_begin] = ACTIONS(3611), [anon_sym_LPAREN2] = ACTIONS(3611), [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), + [aux_sym_char_token1] = ACTIONS(3609), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), + [sym_unit] = ACTIONS(3609), [anon_sym_LPAREN_PIPE] = ACTIONS(3611), [sym_op_identifier] = ACTIONS(3611), [anon_sym_PLUS] = ACTIONS(3611), @@ -274299,1459 +274413,1645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3611), [anon_sym_PERCENT] = ACTIONS(3611), [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3609), [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token1] = ACTIONS(3609), [aux_sym_infix_op_token2] = ACTIONS(3611), [anon_sym_PIPE_PIPE] = ACTIONS(3611), [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_COLON_EQ] = ACTIONS(3609), [anon_sym_DOLLAR] = ACTIONS(3611), [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), + }, + [2104] = { + [sym_block_comment] = STATE(2104), + [sym_compiler_directive_decl] = STATE(2104), + [sym_fsi_directive_decl] = STATE(2104), + [sym_preproc_line] = STATE(2104), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + }, + [2105] = { + [sym_block_comment] = STATE(2105), + [sym_compiler_directive_decl] = STATE(2105), + [sym_fsi_directive_decl] = STATE(2105), + [sym_preproc_line] = STATE(2105), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), + }, + [2106] = { + [sym_block_comment] = STATE(2106), + [sym_compiler_directive_decl] = STATE(2106), + [sym_fsi_directive_decl] = STATE(2106), + [sym_preproc_line] = STATE(2106), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_DASH_GT] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [2107] = { [sym_block_comment] = STATE(2107), [sym_compiler_directive_decl] = STATE(2107), [sym_fsi_directive_decl] = STATE(2107), [sym_preproc_line] = STATE(2107), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_DASH_GT] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_DASH_GT] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2108] = { [sym_block_comment] = STATE(2108), [sym_compiler_directive_decl] = STATE(2108), [sym_fsi_directive_decl] = STATE(2108), [sym_preproc_line] = STATE(2108), - [sym_identifier] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_let_BANG] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_COLON_QMARK] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LBRACK_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_LT_AT] = ACTIONS(3140), - [anon_sym_LT_AT_AT] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(3140), - [anon_sym_LBRACE_PIPE] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_return_BANG] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_yield_BANG] = ACTIONS(3138), - [anon_sym_lazy] = ACTIONS(3140), - [anon_sym_assert] = ACTIONS(3140), - [anon_sym_upcast] = ACTIONS(3140), - [anon_sym_downcast] = ACTIONS(3140), - [anon_sym_COLON_GT] = ACTIONS(3138), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_done] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_match] = ACTIONS(3140), - [anon_sym_match_BANG] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3140), - [anon_sym_DOT_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_use] = ACTIONS(3140), - [anon_sym_use_BANG] = ACTIONS(3138), - [anon_sym_do_BANG] = ACTIONS(3138), - [anon_sym_begin] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3140), - [anon_sym_or] = ACTIONS(3140), - [aux_sym_char_token1] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_AT_DQUOTE] = ACTIONS(3138), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3138), - [sym_bool] = ACTIONS(3140), - [sym_unit] = ACTIONS(3138), - [anon_sym_LPAREN_PIPE] = ACTIONS(3140), - [sym_op_identifier] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS_DOT] = ACTIONS(3140), - [anon_sym_DASH_DOT] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_prefix_op_token1] = ACTIONS(3140), - [aux_sym_infix_op_token1] = ACTIONS(3138), - [aux_sym_infix_op_token2] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_COLON_EQ] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3140), - [sym_int] = ACTIONS(3140), - [sym_xint] = ACTIONS(3138), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3138), - [anon_sym_POUNDendif] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_DASH_GT] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_DOT_DOT] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2109] = { [sym_block_comment] = STATE(2109), [sym_compiler_directive_decl] = STATE(2109), [sym_fsi_directive_decl] = STATE(2109), [sym_preproc_line] = STATE(2109), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_DASH_GT] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_with] = ACTIONS(3741), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2110] = { [sym_block_comment] = STATE(2110), [sym_compiler_directive_decl] = STATE(2110), [sym_fsi_directive_decl] = STATE(2110), [sym_preproc_line] = STATE(2110), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_DOT_DOT] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [2111] = { [sym_block_comment] = STATE(2111), [sym_compiler_directive_decl] = STATE(2111), [sym_fsi_directive_decl] = STATE(2111), [sym_preproc_line] = STATE(2111), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, [2112] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2112), [sym_compiler_directive_decl] = STATE(2112), [sym_fsi_directive_decl] = STATE(2112), [sym_preproc_line] = STATE(2112), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_open] = ACTIONS(2928), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_and] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [aux_sym_access_modifier_token1] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(2928), - [anon_sym_static] = ACTIONS(2928), - [anon_sym_member] = ACTIONS(2928), - [anon_sym_interface] = ACTIONS(2928), - [anon_sym_exception] = ACTIONS(2928), - [anon_sym_abstract] = ACTIONS(2928), - [anon_sym_override] = ACTIONS(2928), - [anon_sym_val] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [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(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), }, [2113] = { [sym_block_comment] = STATE(2113), [sym_compiler_directive_decl] = STATE(2113), [sym_fsi_directive_decl] = STATE(2113), [sym_preproc_line] = STATE(2113), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [anon_sym_POUNDelse] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [2114] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_comment] = STATE(2114), [sym_compiler_directive_decl] = STATE(2114), [sym_fsi_directive_decl] = STATE(2114), [sym_preproc_line] = STATE(2114), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_DASH_GT] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_DOT_DOT] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(2910), + [anon_sym_module] = ACTIONS(2910), + [anon_sym_open] = ACTIONS(2910), + [anon_sym_LBRACK_LT] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_and] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [aux_sym_access_modifier_token1] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_member] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_exception] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_override] = ACTIONS(2910), + [anon_sym_val] = ACTIONS(2910), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2908), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2908), + [anon_sym_POUNDload] = ACTIONS(2908), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), }, [2115] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_comment] = STATE(2115), [sym_compiler_directive_decl] = STATE(2115), [sym_fsi_directive_decl] = STATE(2115), [sym_preproc_line] = STATE(2115), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_open] = ACTIONS(2886), + [anon_sym_LBRACK_LT] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_and] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [aux_sym_access_modifier_token1] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_DASH_GT] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_DOT_DOT] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_member] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_exception] = ACTIONS(2886), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_override] = ACTIONS(2886), + [anon_sym_val] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [anon_sym_POUNDif] = ACTIONS(2882), }, [2116] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_comment] = STATE(2116), [sym_compiler_directive_decl] = STATE(2116), [sym_fsi_directive_decl] = STATE(2116), [sym_preproc_line] = STATE(2116), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_DASH_GT] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_DOT_DOT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(2902), + [anon_sym_module] = ACTIONS(2902), + [anon_sym_open] = ACTIONS(2902), + [anon_sym_LBRACK_LT] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [aux_sym_access_modifier_token1] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_member] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_exception] = ACTIONS(2902), + [anon_sym_abstract] = ACTIONS(2902), + [anon_sym_override] = ACTIONS(2902), + [anon_sym_val] = ACTIONS(2902), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2900), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2900), + [anon_sym_POUNDload] = ACTIONS(2900), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), }, [2117] = { [sym_block_comment] = STATE(2117), [sym_compiler_directive_decl] = STATE(2117), [sym_fsi_directive_decl] = STATE(2117), [sym_preproc_line] = STATE(2117), - [aux_sym_long_identifier_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_let_BANG] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_COLON_QMARK] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_LT_AT] = ACTIONS(3004), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(4349), - [anon_sym_LBRACE_PIPE] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_return_BANG] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_yield_BANG] = ACTIONS(3001), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_assert] = ACTIONS(3004), - [anon_sym_upcast] = ACTIONS(3004), - [anon_sym_downcast] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3001), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_fun] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_match_BANG] = ACTIONS(3001), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_DOT_LBRACK] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_use_BANG] = ACTIONS(3001), - [anon_sym_do_BANG] = ACTIONS(3001), - [anon_sym_begin] = ACTIONS(3004), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3004), - [aux_sym_char_token1] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_AT_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3001), - [sym_bool] = ACTIONS(3004), - [sym_unit] = ACTIONS(3001), - [anon_sym_LPAREN_PIPE] = ACTIONS(3004), - [sym_op_identifier] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_PLUS_DOT] = ACTIONS(3004), - [anon_sym_DASH_DOT] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3001), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3001), - [aux_sym_infix_op_token2] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3004), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3004), - [sym_xint] = ACTIONS(3001), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_DASH_GT] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_DOT_DOT] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [2118] = { [sym_block_comment] = STATE(2118), [sym_compiler_directive_decl] = STATE(2118), [sym_fsi_directive_decl] = STATE(2118), [sym_preproc_line] = STATE(2118), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [aux_sym_sequential_expression_repeat1] = STATE(2118), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4338), }, [2119] = { [sym_block_comment] = STATE(2119), [sym_compiler_directive_decl] = STATE(2119), [sym_fsi_directive_decl] = STATE(2119), [sym_preproc_line] = STATE(2119), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [2120] = { [sym_block_comment] = STATE(2120), [sym_compiler_directive_decl] = STATE(2120), [sym_fsi_directive_decl] = STATE(2120), [sym_preproc_line] = STATE(2120), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_with] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2121] = { [sym_block_comment] = STATE(2121), [sym_compiler_directive_decl] = STATE(2121), [sym_fsi_directive_decl] = STATE(2121), [sym_preproc_line] = STATE(2121), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_DASH_GT] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_DOT_DOT] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), - }, - [2122] = { - [sym_block_comment] = STATE(2122), - [sym_compiler_directive_decl] = STATE(2122), - [sym_fsi_directive_decl] = STATE(2122), - [sym_preproc_line] = STATE(2122), [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3607), [anon_sym_COLON] = ACTIONS(3605), [anon_sym_return] = ACTIONS(3605), [anon_sym_do] = ACTIONS(3605), [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3607), [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3607), [anon_sym_null] = ACTIONS(3605), [anon_sym_QMARK] = ACTIONS(3605), [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3607), [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), [anon_sym_LBRACE] = ACTIONS(3605), [anon_sym_LT_AT] = ACTIONS(3605), [anon_sym_LT_AT_AT] = ACTIONS(3605), [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3607), [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3607), [anon_sym_lazy] = ACTIONS(3605), [anon_sym_assert] = ACTIONS(3605), [anon_sym_upcast] = ACTIONS(3605), [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), [anon_sym_for] = ACTIONS(3605), [anon_sym_while] = ACTIONS(3605), [anon_sym_if] = ACTIONS(3605), @@ -275759,26 +276059,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3605), [anon_sym_try] = ACTIONS(3605), [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3607), [anon_sym_function] = ACTIONS(3605), [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_DOT_DOT] = ACTIONS(3607), [anon_sym_begin] = ACTIONS(3605), [anon_sym_LPAREN2] = ACTIONS(3605), [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3607), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), + [sym_unit] = ACTIONS(3607), [anon_sym_LPAREN_PIPE] = ACTIONS(3605), [sym_op_identifier] = ACTIONS(3605), [anon_sym_PLUS] = ACTIONS(3605), @@ -275787,404 +276087,1055 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3605), [anon_sym_PERCENT] = ACTIONS(3605), [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3607), [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3607), [aux_sym_infix_op_token2] = ACTIONS(3605), [anon_sym_PIPE_PIPE] = ACTIONS(3605), [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3607), [anon_sym_DOLLAR] = ACTIONS(3605), [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), + [sym_xint] = ACTIONS(3607), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + }, + [2122] = { + [sym_block_comment] = STATE(2122), + [sym_compiler_directive_decl] = STATE(2122), + [sym_fsi_directive_decl] = STATE(2122), + [sym_preproc_line] = STATE(2122), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_DASH_GT] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, [2123] = { [sym_block_comment] = STATE(2123), [sym_compiler_directive_decl] = STATE(2123), [sym_fsi_directive_decl] = STATE(2123), [sym_preproc_line] = STATE(2123), - [aux_sym_type_argument_repeat1] = STATE(1910), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_and] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [aux_sym_access_modifier_token1] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_default] = ACTIONS(3026), - [anon_sym_or] = ACTIONS(4291), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_member] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_exception] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_val] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), + [aux_sym_long_identifier_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(4341), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2124] = { [sym_block_comment] = STATE(2124), [sym_compiler_directive_decl] = STATE(2124), [sym_fsi_directive_decl] = STATE(2124), [sym_preproc_line] = STATE(2124), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_DOT_DOT] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), - }, - [2125] = { - [sym_block_comment] = STATE(2125), - [sym_compiler_directive_decl] = STATE(2125), - [sym_fsi_directive_decl] = STATE(2125), - [sym_preproc_line] = STATE(2125), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_DASH_GT] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_DOT_DOT] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_DASH_GT] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + }, + [2125] = { + [sym_block_comment] = STATE(2125), + [sym_compiler_directive_decl] = STATE(2125), + [sym_fsi_directive_decl] = STATE(2125), + [sym_preproc_line] = STATE(2125), + [aux_sym_sequential_expression_repeat1] = STATE(2125), + [sym_identifier] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_let_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LBRACK_PIPE] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_LT_AT] = ACTIONS(3299), + [anon_sym_LT_AT_AT] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE_PIPE] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_return_BANG] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_yield_BANG] = ACTIONS(3297), + [anon_sym_lazy] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_upcast] = ACTIONS(3299), + [anon_sym_downcast] = ACTIONS(3299), + [anon_sym_COLON_GT] = ACTIONS(3297), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_fun] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_match_BANG] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_use_BANG] = ACTIONS(3297), + [anon_sym_do_BANG] = ACTIONS(3297), + [anon_sym_begin] = ACTIONS(3299), + [anon_sym_LPAREN2] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [aux_sym_char_token1] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_AT_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), + [sym_bool] = ACTIONS(3299), + [sym_unit] = ACTIONS(3297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3299), + [sym_op_identifier] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_DOT] = ACTIONS(3299), + [anon_sym_DASH_DOT] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [aux_sym_prefix_op_token1] = ACTIONS(3299), + [aux_sym_infix_op_token1] = ACTIONS(3297), + [aux_sym_infix_op_token2] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3299), + [sym_int] = ACTIONS(3299), + [sym_xint] = ACTIONS(3297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3297), + [anon_sym_POUNDendif] = ACTIONS(3297), + [sym__newline] = ACTIONS(4344), }, [2126] = { [sym_block_comment] = STATE(2126), [sym_compiler_directive_decl] = STATE(2126), [sym_fsi_directive_decl] = STATE(2126), [sym_preproc_line] = STATE(2126), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_DASH_GT] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_DOT_DOT] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_DASH_GT] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_DOT_DOT] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [2127] = { [sym_block_comment] = STATE(2127), [sym_compiler_directive_decl] = STATE(2127), [sym_fsi_directive_decl] = STATE(2127), [sym_preproc_line] = STATE(2127), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [anon_sym_POUNDendif] = ACTIONS(3501), + [anon_sym_POUNDelse] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), + }, + [2128] = { + [sym_block_comment] = STATE(2128), + [sym_compiler_directive_decl] = STATE(2128), + [sym_fsi_directive_decl] = STATE(2128), + [sym_preproc_line] = STATE(2128), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), + }, + [2129] = { + [sym_block_comment] = STATE(2129), + [sym_compiler_directive_decl] = STATE(2129), + [sym_fsi_directive_decl] = STATE(2129), + [sym_preproc_line] = STATE(2129), + [sym_identifier] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_let_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACK_PIPE] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LT_AT] = ACTIONS(3358), + [anon_sym_LT_AT_AT] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_return_BANG] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_yield_BANG] = ACTIONS(3356), + [anon_sym_lazy] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_upcast] = ACTIONS(3358), + [anon_sym_downcast] = ACTIONS(3358), + [anon_sym_COLON_GT] = ACTIONS(3356), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_done] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_match_BANG] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_use_BANG] = ACTIONS(3356), + [anon_sym_do_BANG] = ACTIONS(3356), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [anon_sym_begin] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [aux_sym_char_token1] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_AT_DQUOTE] = ACTIONS(3356), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3356), + [sym_bool] = ACTIONS(3358), + [sym_unit] = ACTIONS(3356), + [anon_sym_LPAREN_PIPE] = ACTIONS(3358), + [sym_op_identifier] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [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(3356), + [aux_sym_prefix_op_token1] = ACTIONS(3358), + [aux_sym_infix_op_token1] = ACTIONS(3356), + [aux_sym_infix_op_token2] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(3358), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3358), + [sym_int] = ACTIONS(3358), + [sym_xint] = ACTIONS(3356), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3356), + [sym__newline] = ACTIONS(3356), + }, + [2130] = { + [sym_block_comment] = STATE(2130), + [sym_compiler_directive_decl] = STATE(2130), + [sym_fsi_directive_decl] = STATE(2130), + [sym_preproc_line] = STATE(2130), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_DASH_GT] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), + }, + [2131] = { + [sym_block_comment] = STATE(2131), + [sym_compiler_directive_decl] = STATE(2131), + [sym_fsi_directive_decl] = STATE(2131), + [sym_preproc_line] = STATE(2131), + [aux_sym_type_argument_repeat1] = STATE(1953), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_open] = ACTIONS(2979), + [anon_sym_LBRACK_LT] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [aux_sym_access_modifier_token1] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_member] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_exception] = ACTIONS(2979), + [anon_sym_abstract] = ACTIONS(2979), + [anon_sym_override] = ACTIONS(2979), + [anon_sym_val] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2981), + [anon_sym_POUNDload] = ACTIONS(2981), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + }, + [2132] = { + [sym_block_comment] = STATE(2132), + [sym_compiler_directive_decl] = STATE(2132), + [sym_fsi_directive_decl] = STATE(2132), + [sym_preproc_line] = STATE(2132), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_DASH_GT] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_DOT_DOT] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + }, + [2133] = { + [sym_block_comment] = STATE(2133), + [sym_compiler_directive_decl] = STATE(2133), + [sym_fsi_directive_decl] = STATE(2133), + [sym_preproc_line] = STATE(2133), [sym_identifier] = ACTIONS(3399), [anon_sym_EQ] = ACTIONS(3397), [anon_sym_COLON] = ACTIONS(3399), @@ -276221,7 +277172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3399), [anon_sym_if] = ACTIONS(3399), [anon_sym_fun] = ACTIONS(3399), - [anon_sym_DASH_GT] = ACTIONS(3399), [anon_sym_try] = ACTIONS(3399), [anon_sym_match] = ACTIONS(3399), [anon_sym_match_BANG] = ACTIONS(3397), @@ -276232,7 +277182,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(3399), [anon_sym_use_BANG] = ACTIONS(3397), [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_DOT_DOT] = ACTIONS(3397), [anon_sym_begin] = ACTIONS(3399), [anon_sym_LPAREN2] = ACTIONS(3399), [anon_sym_or] = ACTIONS(3399), @@ -276264,1095 +277213,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3399), [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3397), + [anon_sym_POUNDendif] = ACTIONS(3397), + [anon_sym_POUNDelse] = ACTIONS(3397), [sym__newline] = ACTIONS(3397), }, - [2128] = { - [sym_block_comment] = STATE(2128), - [sym_compiler_directive_decl] = STATE(2128), - [sym_fsi_directive_decl] = STATE(2128), - [sym_preproc_line] = STATE(2128), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_DASH_GT] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - }, - [2129] = { - [sym_block_comment] = STATE(2129), - [sym_compiler_directive_decl] = STATE(2129), - [sym_fsi_directive_decl] = STATE(2129), - [sym_preproc_line] = STATE(2129), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_DASH_GT] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), - }, - [2130] = { - [sym_block_comment] = STATE(2130), - [sym_compiler_directive_decl] = STATE(2130), - [sym_fsi_directive_decl] = STATE(2130), - [sym_preproc_line] = STATE(2130), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - }, - [2131] = { - [sym_block_comment] = STATE(2131), - [sym_compiler_directive_decl] = STATE(2131), - [sym_fsi_directive_decl] = STATE(2131), - [sym_preproc_line] = STATE(2131), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_DOT_DOT] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - }, - [2132] = { - [sym_block_comment] = STATE(2132), - [sym_compiler_directive_decl] = STATE(2132), - [sym_fsi_directive_decl] = STATE(2132), - [sym_preproc_line] = STATE(2132), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_DASH_GT] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_DOT_DOT] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), - }, - [2133] = { - [sym_block_comment] = STATE(2133), - [sym_compiler_directive_decl] = STATE(2133), - [sym_fsi_directive_decl] = STATE(2133), - [sym_preproc_line] = STATE(2133), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), - }, [2134] = { [sym_block_comment] = STATE(2134), [sym_compiler_directive_decl] = STATE(2134), [sym_fsi_directive_decl] = STATE(2134), [sym_preproc_line] = STATE(2134), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [anon_sym_POUNDendif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [aux_sym_sequential_expression_repeat1] = STATE(2053), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_AT_AT_GT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), }, [2135] = { [sym_block_comment] = STATE(2135), [sym_compiler_directive_decl] = STATE(2135), [sym_fsi_directive_decl] = STATE(2135), [sym_preproc_line] = STATE(2135), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_AT_GT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - }, - [2136] = { - [sym_block_comment] = STATE(2136), - [sym_compiler_directive_decl] = STATE(2136), - [sym_fsi_directive_decl] = STATE(2136), - [sym_preproc_line] = STATE(2136), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_AT_GT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), - }, - [2137] = { - [sym_block_comment] = STATE(2137), - [sym_compiler_directive_decl] = STATE(2137), - [sym_fsi_directive_decl] = STATE(2137), - [sym_preproc_line] = STATE(2137), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_AT_GT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), - }, - [2138] = { - [sym_block_comment] = STATE(2138), - [sym_compiler_directive_decl] = STATE(2138), - [sym_fsi_directive_decl] = STATE(2138), - [sym_preproc_line] = STATE(2138), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - }, - [2139] = { - [sym_block_comment] = STATE(2139), - [sym_compiler_directive_decl] = STATE(2139), - [sym_fsi_directive_decl] = STATE(2139), - [sym_preproc_line] = STATE(2139), [sym_identifier] = ACTIONS(3533), - [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3239), [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_let_BANG] = ACTIONS(3239), [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3239), [anon_sym_null] = ACTIONS(3533), [anon_sym_QMARK] = ACTIONS(3533), [anon_sym_COLON_QMARK] = ACTIONS(3533), - [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3239), [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), [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_LBRACE_PIPE] = ACTIONS(3239), [anon_sym_new] = ACTIONS(3533), - [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3239), [anon_sym_yield] = ACTIONS(3533), - [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3239), [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_COLON_GT] = ACTIONS(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), [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_match_BANG] = ACTIONS(3239), [anon_sym_function] = ACTIONS(3533), [anon_sym_LT_DASH] = ACTIONS(3533), - [anon_sym_DOT_LBRACK] = ACTIONS(3535), - [anon_sym_LT] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), [anon_sym_use] = ACTIONS(3533), - [anon_sym_use_BANG] = ACTIONS(3535), - [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_DOT_DOT] = ACTIONS(3239), [anon_sym_begin] = ACTIONS(3533), [anon_sym_LPAREN2] = ACTIONS(3533), [anon_sym_or] = ACTIONS(3533), - [aux_sym_char_token1] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3239), [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), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), [sym_bool] = ACTIONS(3533), - [sym_unit] = ACTIONS(3535), + [sym_unit] = ACTIONS(3239), [anon_sym_LPAREN_PIPE] = ACTIONS(3533), [sym_op_identifier] = ACTIONS(3533), [anon_sym_PLUS] = ACTIONS(3533), @@ -277361,550 +277389,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3533), [anon_sym_PERCENT] = ACTIONS(3533), [anon_sym_AMP_AMP] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3239), [aux_sym_prefix_op_token1] = ACTIONS(3533), - [aux_sym_infix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3239), [aux_sym_infix_op_token2] = ACTIONS(3533), [anon_sym_PIPE_PIPE] = ACTIONS(3533), [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3239), [anon_sym_DOLLAR] = ACTIONS(3533), [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), [sym_int] = ACTIONS(3533), - [sym_xint] = ACTIONS(3535), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), + }, + [2136] = { + [sym_block_comment] = STATE(2136), + [sym_compiler_directive_decl] = STATE(2136), + [sym_fsi_directive_decl] = STATE(2136), + [sym_preproc_line] = STATE(2136), + [sym_identifier] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_let_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACK_PIPE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_LT_AT] = ACTIONS(3368), + [anon_sym_AT_GT] = ACTIONS(3368), + [anon_sym_LT_AT_AT] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_return_BANG] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_yield_BANG] = ACTIONS(3370), + [anon_sym_lazy] = ACTIONS(3368), + [anon_sym_assert] = ACTIONS(3368), + [anon_sym_upcast] = ACTIONS(3368), + [anon_sym_downcast] = ACTIONS(3368), + [anon_sym_COLON_GT] = ACTIONS(3370), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_done] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_match_BANG] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_DOT_LBRACK] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_use_BANG] = ACTIONS(3370), + [anon_sym_do_BANG] = ACTIONS(3370), + [anon_sym_begin] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3368), + [aux_sym_char_token1] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_AT_DQUOTE] = ACTIONS(3370), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [sym_bool] = ACTIONS(3368), + [sym_unit] = ACTIONS(3370), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_op_identifier] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_DOT] = ACTIONS(3368), + [anon_sym_DASH_DOT] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3370), + [aux_sym_prefix_op_token1] = ACTIONS(3368), + [aux_sym_infix_op_token1] = ACTIONS(3370), + [aux_sym_infix_op_token2] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_DOLLAR] = ACTIONS(3368), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3368), + [sym_int] = ACTIONS(3368), + [sym_xint] = ACTIONS(3370), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3370), + [sym__newline] = ACTIONS(3370), + }, + [2137] = { + [sym_block_comment] = STATE(2137), + [sym_compiler_directive_decl] = STATE(2137), + [sym_fsi_directive_decl] = STATE(2137), + [sym_preproc_line] = STATE(2137), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_DASH_GT] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [2138] = { + [sym_block_comment] = STATE(2138), + [sym_compiler_directive_decl] = STATE(2138), + [sym_fsi_directive_decl] = STATE(2138), + [sym_preproc_line] = STATE(2138), + [aux_sym_sequential_expression_repeat1] = STATE(1865), + [sym_identifier] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_let_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_COLON_QMARK] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LBRACK_PIPE] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_LT_AT] = ACTIONS(3392), + [anon_sym_LT_AT_AT] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_LBRACE_PIPE] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_return_BANG] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_yield_BANG] = ACTIONS(3390), + [anon_sym_lazy] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_upcast] = ACTIONS(3392), + [anon_sym_downcast] = ACTIONS(3392), + [anon_sym_COLON_GT] = ACTIONS(3390), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_fun] = ACTIONS(3392), + [anon_sym_DASH_GT] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_match_BANG] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_DOT_LBRACK] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_use_BANG] = ACTIONS(3390), + [anon_sym_do_BANG] = ACTIONS(3390), + [anon_sym_begin] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [aux_sym_char_token1] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_AT_DQUOTE] = ACTIONS(3390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3390), + [sym_bool] = ACTIONS(3392), + [sym_unit] = ACTIONS(3390), + [anon_sym_LPAREN_PIPE] = ACTIONS(3392), + [sym_op_identifier] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS_DOT] = ACTIONS(3392), + [anon_sym_DASH_DOT] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [aux_sym_prefix_op_token1] = ACTIONS(3392), + [aux_sym_infix_op_token1] = ACTIONS(3390), + [aux_sym_infix_op_token2] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3392), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3392), + [sym_int] = ACTIONS(3392), + [sym_xint] = ACTIONS(3390), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3390), + [sym__newline] = ACTIONS(3390), + }, + [2139] = { + [sym_block_comment] = STATE(2139), + [sym_compiler_directive_decl] = STATE(2139), + [sym_fsi_directive_decl] = STATE(2139), + [sym_preproc_line] = STATE(2139), + [aux_sym_long_identifier_repeat1] = STATE(1967), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2997), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(3000), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_COLON_GT] = ACTIONS(3000), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(3000), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(3000), + [anon_sym_do_BANG] = ACTIONS(3000), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [aux_sym_char_token1] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(3000), + [anon_sym_LPAREN_PIPE] = ACTIONS(2997), + [sym_op_identifier] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3000), + [aux_sym_prefix_op_token1] = ACTIONS(2997), + [aux_sym_infix_op_token1] = ACTIONS(3000), + [aux_sym_infix_op_token2] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2997), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(3000), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3000), + [sym__newline] = ACTIONS(3000), }, [2140] = { [sym_block_comment] = STATE(2140), [sym_compiler_directive_decl] = STATE(2140), [sym_fsi_directive_decl] = STATE(2140), [sym_preproc_line] = STATE(2140), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_DASH_GT] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [2141] = { [sym_block_comment] = STATE(2141), [sym_compiler_directive_decl] = STATE(2141), [sym_fsi_directive_decl] = STATE(2141), [sym_preproc_line] = STATE(2141), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_GT] = ACTIONS(3624), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - }, - [2142] = { - [sym_block_comment] = STATE(2142), - [sym_compiler_directive_decl] = STATE(2142), - [sym_fsi_directive_decl] = STATE(2142), - [sym_preproc_line] = STATE(2142), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_AT_GT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), - }, - [2143] = { - [sym_block_comment] = STATE(2143), - [sym_compiler_directive_decl] = STATE(2143), - [sym_fsi_directive_decl] = STATE(2143), - [sym_preproc_line] = STATE(2143), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_AT_GT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), - }, - [2144] = { - [sym_block_comment] = STATE(2144), - [sym_compiler_directive_decl] = STATE(2144), - [sym_fsi_directive_decl] = STATE(2144), - [sym_preproc_line] = STATE(2144), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_AT_GT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), - }, - [2145] = { - [sym_block_comment] = STATE(2145), - [sym_compiler_directive_decl] = STATE(2145), - [sym_fsi_directive_decl] = STATE(2145), - [sym_preproc_line] = STATE(2145), [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), + [anon_sym_EQ] = ACTIONS(3559), [anon_sym_COLON] = ACTIONS(3561), [anon_sym_return] = ACTIONS(3561), [anon_sym_do] = ACTIONS(3561), [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), + [anon_sym_let_BANG] = ACTIONS(3559), [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), + [anon_sym_COMMA] = ACTIONS(3559), [anon_sym_null] = ACTIONS(3561), [anon_sym_QMARK] = ACTIONS(3561), [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_COLON_COLON] = ACTIONS(3559), [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), [anon_sym_LBRACE] = ACTIONS(3561), [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_AT_GT] = ACTIONS(3561), [anon_sym_LT_AT_AT] = ACTIONS(3561), [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), + [anon_sym_return_BANG] = ACTIONS(3559), [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), + [anon_sym_yield_BANG] = ACTIONS(3559), [anon_sym_lazy] = ACTIONS(3561), [anon_sym_assert] = ACTIONS(3561), [anon_sym_upcast] = ACTIONS(3561), [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), [anon_sym_for] = ACTIONS(3561), [anon_sym_while] = ACTIONS(3561), [anon_sym_if] = ACTIONS(3561), [anon_sym_fun] = ACTIONS(3561), + [anon_sym_DASH_GT] = ACTIONS(3561), [anon_sym_try] = ACTIONS(3561), [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), + [anon_sym_match_BANG] = ACTIONS(3559), [anon_sym_function] = ACTIONS(3561), [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_DOT_DOT] = ACTIONS(3559), [anon_sym_begin] = ACTIONS(3561), [anon_sym_LPAREN2] = ACTIONS(3561), [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), + [aux_sym_char_token1] = ACTIONS(3559), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), + [sym_unit] = ACTIONS(3559), [anon_sym_LPAREN_PIPE] = ACTIONS(3561), [sym_op_identifier] = ACTIONS(3561), [anon_sym_PLUS] = ACTIONS(3561), @@ -277913,3252 +277947,4542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3561), [anon_sym_PERCENT] = ACTIONS(3561), [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3559), [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), + [aux_sym_infix_op_token1] = ACTIONS(3559), [aux_sym_infix_op_token2] = ACTIONS(3561), [anon_sym_PIPE_PIPE] = ACTIONS(3561), [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), + [anon_sym_COLON_EQ] = ACTIONS(3559), [anon_sym_DOLLAR] = ACTIONS(3561), [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - }, - [2146] = { - [sym_block_comment] = STATE(2146), - [sym_compiler_directive_decl] = STATE(2146), - [sym_fsi_directive_decl] = STATE(2146), - [sym_preproc_line] = STATE(2146), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_DOT_DOT] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, - [2147] = { - [sym_block_comment] = STATE(2147), - [sym_compiler_directive_decl] = STATE(2147), - [sym_fsi_directive_decl] = STATE(2147), - [sym_preproc_line] = STATE(2147), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_AT_GT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [2142] = { + [sym_block_comment] = STATE(2142), + [sym_compiler_directive_decl] = STATE(2142), + [sym_fsi_directive_decl] = STATE(2142), + [sym_preproc_line] = STATE(2142), + [aux_sym_long_identifier_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_COLON_GT] = ACTIONS(2954), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_DOT_LBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2956), + [anon_sym_DASH_DOT] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2956), + [aux_sym_infix_op_token1] = ACTIONS(2954), + [aux_sym_infix_op_token2] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2956), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2956), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), }, - [2148] = { - [sym_block_comment] = STATE(2148), - [sym_compiler_directive_decl] = STATE(2148), - [sym_fsi_directive_decl] = STATE(2148), + [2143] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), + [sym_block_comment] = STATE(2143), + [sym_compiler_directive_decl] = STATE(2143), + [sym_fsi_directive_decl] = STATE(2143), + [sym_preproc_line] = STATE(2143), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_open] = ACTIONS(2906), + [anon_sym_LBRACK_LT] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_and] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [aux_sym_access_modifier_token1] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_member] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_exception] = ACTIONS(2906), + [anon_sym_abstract] = ACTIONS(2906), + [anon_sym_override] = ACTIONS(2906), + [anon_sym_val] = ACTIONS(2906), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2904), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2904), + [anon_sym_POUNDload] = ACTIONS(2904), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + }, + [2144] = { + [sym_block_comment] = STATE(2144), + [sym_compiler_directive_decl] = STATE(2144), + [sym_fsi_directive_decl] = STATE(2144), + [sym_preproc_line] = STATE(2144), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_DOT_DOT] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), + }, + [2145] = { + [sym_block_comment] = STATE(2145), + [sym_compiler_directive_decl] = STATE(2145), + [sym_fsi_directive_decl] = STATE(2145), + [sym_preproc_line] = STATE(2145), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + }, + [2146] = { + [sym_block_comment] = STATE(2146), + [sym_compiler_directive_decl] = STATE(2146), + [sym_fsi_directive_decl] = STATE(2146), + [sym_preproc_line] = STATE(2146), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_DOT_DOT] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), + }, + [2147] = { + [sym_block_comment] = STATE(2147), + [sym_compiler_directive_decl] = STATE(2147), + [sym_fsi_directive_decl] = STATE(2147), + [sym_preproc_line] = STATE(2147), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_DOT_DOT] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), + }, + [2148] = { + [sym_block_comment] = STATE(2148), + [sym_compiler_directive_decl] = STATE(2148), + [sym_fsi_directive_decl] = STATE(2148), [sym_preproc_line] = STATE(2148), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_AT_GT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4357), }, [2149] = { [sym_block_comment] = STATE(2149), [sym_compiler_directive_decl] = STATE(2149), [sym_fsi_directive_decl] = STATE(2149), [sym_preproc_line] = STATE(2149), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_GT] = ACTIONS(3561), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4353), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, [2150] = { [sym_block_comment] = STATE(2150), [sym_compiler_directive_decl] = STATE(2150), [sym_fsi_directive_decl] = STATE(2150), [sym_preproc_line] = STATE(2150), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_AT_GT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_GT] = ACTIONS(3449), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), }, [2151] = { [sym_block_comment] = STATE(2151), [sym_compiler_directive_decl] = STATE(2151), [sym_fsi_directive_decl] = STATE(2151), [sym_preproc_line] = STATE(2151), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_AT_GT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [2152] = { [sym_block_comment] = STATE(2152), [sym_compiler_directive_decl] = STATE(2152), [sym_fsi_directive_decl] = STATE(2152), [sym_preproc_line] = STATE(2152), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_AT_GT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_GT] = ACTIONS(3719), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [2153] = { [sym_block_comment] = STATE(2153), [sym_compiler_directive_decl] = STATE(2153), [sym_fsi_directive_decl] = STATE(2153), [sym_preproc_line] = STATE(2153), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_GT] = ACTIONS(3617), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [2154] = { [sym_block_comment] = STATE(2154), [sym_compiler_directive_decl] = STATE(2154), [sym_fsi_directive_decl] = STATE(2154), [sym_preproc_line] = STATE(2154), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_AT_GT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - }, - [2155] = { - [sym_block_comment] = STATE(2155), - [sym_compiler_directive_decl] = STATE(2155), - [sym_fsi_directive_decl] = STATE(2155), - [sym_preproc_line] = STATE(2155), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4355), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), + }, + [2155] = { + [sym_block_comment] = STATE(2155), + [sym_compiler_directive_decl] = STATE(2155), + [sym_fsi_directive_decl] = STATE(2155), + [sym_preproc_line] = STATE(2155), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3682), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [2156] = { [sym_block_comment] = STATE(2156), [sym_compiler_directive_decl] = STATE(2156), [sym_fsi_directive_decl] = STATE(2156), [sym_preproc_line] = STATE(2156), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3675), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), }, [2157] = { [sym_block_comment] = STATE(2157), [sym_compiler_directive_decl] = STATE(2157), [sym_fsi_directive_decl] = STATE(2157), [sym_preproc_line] = STATE(2157), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_AT_GT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_AT_GT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [2158] = { [sym_block_comment] = STATE(2158), [sym_compiler_directive_decl] = STATE(2158), [sym_fsi_directive_decl] = STATE(2158), [sym_preproc_line] = STATE(2158), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_DOT_DOT] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_AT_GT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [2159] = { [sym_block_comment] = STATE(2159), [sym_compiler_directive_decl] = STATE(2159), [sym_fsi_directive_decl] = STATE(2159), [sym_preproc_line] = STATE(2159), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_DOT_DOT] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_AT_GT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [2160] = { [sym_block_comment] = STATE(2160), [sym_compiler_directive_decl] = STATE(2160), [sym_fsi_directive_decl] = STATE(2160), [sym_preproc_line] = STATE(2160), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_AT_GT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_AT_GT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [2161] = { [sym_block_comment] = STATE(2161), [sym_compiler_directive_decl] = STATE(2161), [sym_fsi_directive_decl] = STATE(2161), [sym_preproc_line] = STATE(2161), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_GT] = ACTIONS(3667), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [2162] = { [sym_block_comment] = STATE(2162), [sym_compiler_directive_decl] = STATE(2162), [sym_fsi_directive_decl] = STATE(2162), [sym_preproc_line] = STATE(2162), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_GT] = ACTIONS(3474), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_AT_GT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [2163] = { [sym_block_comment] = STATE(2163), [sym_compiler_directive_decl] = STATE(2163), [sym_fsi_directive_decl] = STATE(2163), [sym_preproc_line] = STATE(2163), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_AT_GT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [2164] = { [sym_block_comment] = STATE(2164), [sym_compiler_directive_decl] = STATE(2164), [sym_fsi_directive_decl] = STATE(2164), [sym_preproc_line] = STATE(2164), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_AT_GT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2165] = { [sym_block_comment] = STATE(2165), [sym_compiler_directive_decl] = STATE(2165), [sym_fsi_directive_decl] = STATE(2165), [sym_preproc_line] = STATE(2165), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_AT_GT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2166] = { [sym_block_comment] = STATE(2166), [sym_compiler_directive_decl] = STATE(2166), [sym_fsi_directive_decl] = STATE(2166), [sym_preproc_line] = STATE(2166), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_DOT_DOT] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_AT_GT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2167] = { [sym_block_comment] = STATE(2167), [sym_compiler_directive_decl] = STATE(2167), [sym_fsi_directive_decl] = STATE(2167), [sym_preproc_line] = STATE(2167), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_DOT_DOT] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_AT_GT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [2168] = { [sym_block_comment] = STATE(2168), [sym_compiler_directive_decl] = STATE(2168), [sym_fsi_directive_decl] = STATE(2168), [sym_preproc_line] = STATE(2168), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_AT_GT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_AT_GT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [2169] = { [sym_block_comment] = STATE(2169), [sym_compiler_directive_decl] = STATE(2169), [sym_fsi_directive_decl] = STATE(2169), [sym_preproc_line] = STATE(2169), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_DOT_DOT] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_AT_GT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), }, [2170] = { [sym_block_comment] = STATE(2170), [sym_compiler_directive_decl] = STATE(2170), [sym_fsi_directive_decl] = STATE(2170), [sym_preproc_line] = STATE(2170), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_DOT_DOT] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_AT_GT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [2171] = { [sym_block_comment] = STATE(2171), [sym_compiler_directive_decl] = STATE(2171), [sym_fsi_directive_decl] = STATE(2171), [sym_preproc_line] = STATE(2171), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_AT_GT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [2172] = { [sym_block_comment] = STATE(2172), [sym_compiler_directive_decl] = STATE(2172), [sym_fsi_directive_decl] = STATE(2172), [sym_preproc_line] = STATE(2172), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_DOT_DOT] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), }, [2173] = { [sym_block_comment] = STATE(2173), [sym_compiler_directive_decl] = STATE(2173), [sym_fsi_directive_decl] = STATE(2173), [sym_preproc_line] = STATE(2173), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_AT_GT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), + }, + [2174] = { + [sym_block_comment] = STATE(2174), + [sym_compiler_directive_decl] = STATE(2174), + [sym_fsi_directive_decl] = STATE(2174), + [sym_preproc_line] = STATE(2174), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_AT_GT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), + }, + [2175] = { + [sym_block_comment] = STATE(2175), + [sym_compiler_directive_decl] = STATE(2175), + [sym_fsi_directive_decl] = STATE(2175), + [sym_preproc_line] = STATE(2175), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_AT_GT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), + }, + [2176] = { + [sym_block_comment] = STATE(2176), + [sym_compiler_directive_decl] = STATE(2176), + [sym_fsi_directive_decl] = STATE(2176), + [sym_preproc_line] = STATE(2176), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_AT_GT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), + }, + [2177] = { + [sym_block_comment] = STATE(2177), + [sym_compiler_directive_decl] = STATE(2177), + [sym_fsi_directive_decl] = STATE(2177), + [sym_preproc_line] = STATE(2177), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_AT_GT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, - [2174] = { - [sym_block_comment] = STATE(2174), - [sym_compiler_directive_decl] = STATE(2174), - [sym_fsi_directive_decl] = STATE(2174), - [sym_preproc_line] = STATE(2174), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), + [2178] = { + [sym_block_comment] = STATE(2178), + [sym_compiler_directive_decl] = STATE(2178), + [sym_fsi_directive_decl] = STATE(2178), + [sym_preproc_line] = STATE(2178), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_AT_AT_GT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), + }, + [2179] = { + [sym_block_comment] = STATE(2179), + [sym_compiler_directive_decl] = STATE(2179), + [sym_fsi_directive_decl] = STATE(2179), + [sym_preproc_line] = STATE(2179), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_AT_AT_GT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [2180] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5591), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym__pattern_param] = STATE(2604), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(3554), + [sym_format_string] = STATE(3553), + [sym__string_literal] = STATE(3553), + [sym_string] = STATE(3554), + [sym_verbatim_string] = STATE(3554), + [sym_bytearray] = STATE(3554), + [sym_verbatim_bytearray] = STATE(3554), + [sym_format_triple_quoted_string] = STATE(3552), + [sym_triple_quoted_string] = STATE(3554), + [sym_const] = STATE(3534), + [sym_long_identifier] = STATE(3391), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(3554), + [sym_byte] = STATE(3554), + [sym_int16] = STATE(3554), + [sym_uint16] = STATE(3554), + [sym_int32] = STATE(3554), + [sym_uint32] = STATE(3554), + [sym_nativeint] = STATE(3554), + [sym_unativeint] = STATE(3554), + [sym_int64] = STATE(3554), + [sym_uint64] = STATE(3554), + [sym_ieee32] = STATE(3554), + [sym_ieee64] = STATE(3554), + [sym_bignum] = STATE(3554), + [sym_decimal] = STATE(3554), + [sym_float] = STATE(3366), + [sym_block_comment] = STATE(2180), + [sym_compiler_directive_decl] = STATE(2180), + [sym_fsi_directive_decl] = STATE(2180), + [sym_preproc_line] = STATE(2180), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4369), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DASH_GT] = ACTIONS(4367), + [anon_sym_when] = ACTIONS(4363), + [aux_sym_char_token1] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4387), + [anon_sym_AT_DQUOTE] = ACTIONS(4389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4393), + [sym_bool] = ACTIONS(4395), + [sym_unit] = ACTIONS(4397), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4403), + [sym_xint] = ACTIONS(4405), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), }, - [2175] = { - [sym_block_comment] = STATE(2175), - [sym_compiler_directive_decl] = STATE(2175), - [sym_fsi_directive_decl] = STATE(2175), - [sym_preproc_line] = STATE(2175), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), + [2181] = { + [sym_block_comment] = STATE(2181), + [sym_compiler_directive_decl] = STATE(2181), + [sym_fsi_directive_decl] = STATE(2181), + [sym_preproc_line] = STATE(2181), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [anon_sym_POUNDif] = ACTIONS(3700), + [anon_sym_POUNDendif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, - [2176] = { - [sym_block_comment] = STATE(2176), - [sym_compiler_directive_decl] = STATE(2176), - [sym_fsi_directive_decl] = STATE(2176), - [sym_preproc_line] = STATE(2176), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [2182] = { + [sym_block_comment] = STATE(2182), + [sym_compiler_directive_decl] = STATE(2182), + [sym_fsi_directive_decl] = STATE(2182), + [sym_preproc_line] = STATE(2182), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [anon_sym_POUNDendif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), + }, + [2183] = { + [sym_block_comment] = STATE(2183), + [sym_compiler_directive_decl] = STATE(2183), + [sym_fsi_directive_decl] = STATE(2183), + [sym_preproc_line] = STATE(2183), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, - [2177] = { - [sym_block_comment] = STATE(2177), - [sym_compiler_directive_decl] = STATE(2177), - [sym_fsi_directive_decl] = STATE(2177), - [sym_preproc_line] = STATE(2177), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_DOT_DOT] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [2184] = { + [sym_block_comment] = STATE(2184), + [sym_compiler_directive_decl] = STATE(2184), + [sym_fsi_directive_decl] = STATE(2184), + [sym_preproc_line] = STATE(2184), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3529), + [sym__dedent] = ACTIONS(3529), }, - [2178] = { - [sym_block_comment] = STATE(2178), - [sym_compiler_directive_decl] = STATE(2178), - [sym_fsi_directive_decl] = STATE(2178), - [sym_preproc_line] = STATE(2178), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_DOT_DOT] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [2185] = { + [sym_block_comment] = STATE(2185), + [sym_compiler_directive_decl] = STATE(2185), + [sym_fsi_directive_decl] = STATE(2185), + [sym_preproc_line] = STATE(2185), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_DOT_DOT] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, - [2179] = { - [sym_block_comment] = STATE(2179), - [sym_compiler_directive_decl] = STATE(2179), - [sym_fsi_directive_decl] = STATE(2179), - [sym_preproc_line] = STATE(2179), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [2186] = { + [sym_block_comment] = STATE(2186), + [sym_compiler_directive_decl] = STATE(2186), + [sym_fsi_directive_decl] = STATE(2186), + [sym_preproc_line] = STATE(2186), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, - [2180] = { - [sym_block_comment] = STATE(2180), - [sym_compiler_directive_decl] = STATE(2180), - [sym_fsi_directive_decl] = STATE(2180), - [sym_preproc_line] = STATE(2180), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_DOT_DOT] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [2187] = { + [sym_block_comment] = STATE(2187), + [sym_compiler_directive_decl] = STATE(2187), + [sym_fsi_directive_decl] = STATE(2187), + [sym_preproc_line] = STATE(2187), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, - [2181] = { - [sym_block_comment] = STATE(2181), - [sym_compiler_directive_decl] = STATE(2181), - [sym_fsi_directive_decl] = STATE(2181), - [sym_preproc_line] = STATE(2181), + [2188] = { + [sym_block_comment] = STATE(2188), + [sym_compiler_directive_decl] = STATE(2188), + [sym_fsi_directive_decl] = STATE(2188), + [sym_preproc_line] = STATE(2188), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_DOT_DOT] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), + }, + [2189] = { + [sym_block_comment] = STATE(2189), + [sym_compiler_directive_decl] = STATE(2189), + [sym_fsi_directive_decl] = STATE(2189), + [sym_preproc_line] = STATE(2189), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [anon_sym_POUNDendif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [2190] = { + [sym_block_comment] = STATE(2190), + [sym_compiler_directive_decl] = STATE(2190), + [sym_fsi_directive_decl] = STATE(2190), + [sym_preproc_line] = STATE(2190), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), + }, + [2191] = { + [sym_block_comment] = STATE(2191), + [sym_compiler_directive_decl] = STATE(2191), + [sym_fsi_directive_decl] = STATE(2191), + [sym_preproc_line] = STATE(2191), [sym_identifier] = ACTIONS(3655), [anon_sym_EQ] = ACTIONS(3653), [anon_sym_COLON] = ACTIONS(3655), @@ -281202,10 +282526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(3655), [anon_sym_DOT_LBRACK] = ACTIONS(3653), [anon_sym_LT] = ACTIONS(3653), + [anon_sym_GT] = ACTIONS(3655), [anon_sym_use] = ACTIONS(3655), [anon_sym_use_BANG] = ACTIONS(3653), [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3653), [anon_sym_begin] = ACTIONS(3655), [anon_sym_LPAREN2] = ACTIONS(3655), [anon_sym_or] = ACTIONS(3655), @@ -281237,7 +282561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3655), [sym_xint] = ACTIONS(3653), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -281246,7290 +282570,7106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3653), [sym__newline] = ACTIONS(3653), }, - [2182] = { - [sym_block_comment] = STATE(2182), - [sym_compiler_directive_decl] = STATE(2182), - [sym_fsi_directive_decl] = STATE(2182), - [sym_preproc_line] = STATE(2182), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), - }, - [2183] = { - [sym_block_comment] = STATE(2183), - [sym_compiler_directive_decl] = STATE(2183), - [sym_fsi_directive_decl] = STATE(2183), - [sym_preproc_line] = STATE(2183), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), - }, - [2184] = { - [sym_block_comment] = STATE(2184), - [sym_compiler_directive_decl] = STATE(2184), - [sym_fsi_directive_decl] = STATE(2184), - [sym_preproc_line] = STATE(2184), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_GT] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - }, - [2185] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5418), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym__pattern_param] = STATE(2589), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3412), - [sym_long_identifier] = STATE(3304), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_comment] = STATE(2185), - [sym_compiler_directive_decl] = STATE(2185), - [sym_fsi_directive_decl] = STATE(2185), - [sym_preproc_line] = STATE(2185), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4359), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2186] = { - [sym_block_comment] = STATE(2186), - [sym_compiler_directive_decl] = STATE(2186), - [sym_fsi_directive_decl] = STATE(2186), - [sym_preproc_line] = STATE(2186), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_DOT_DOT] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), - }, - [2187] = { - [sym_block_comment] = STATE(2187), - [sym_compiler_directive_decl] = STATE(2187), - [sym_fsi_directive_decl] = STATE(2187), - [sym_preproc_line] = STATE(2187), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_DOT_DOT] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), - }, - [2188] = { - [sym_block_comment] = STATE(2188), - [sym_compiler_directive_decl] = STATE(2188), - [sym_fsi_directive_decl] = STATE(2188), - [sym_preproc_line] = STATE(2188), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - }, - [2189] = { - [sym_block_comment] = STATE(2189), - [sym_compiler_directive_decl] = STATE(2189), - [sym_fsi_directive_decl] = STATE(2189), - [sym_preproc_line] = STATE(2189), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_AT_GT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - }, - [2190] = { - [sym_block_comment] = STATE(2190), - [sym_compiler_directive_decl] = STATE(2190), - [sym_fsi_directive_decl] = STATE(2190), - [sym_preproc_line] = STATE(2190), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), - }, - [2191] = { - [sym_block_comment] = STATE(2191), - [sym_compiler_directive_decl] = STATE(2191), - [sym_fsi_directive_decl] = STATE(2191), - [sym_preproc_line] = STATE(2191), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - }, [2192] = { [sym_block_comment] = STATE(2192), [sym_compiler_directive_decl] = STATE(2192), [sym_fsi_directive_decl] = STATE(2192), [sym_preproc_line] = STATE(2192), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_GT] = ACTIONS(3651), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [2193] = { [sym_block_comment] = STATE(2193), [sym_compiler_directive_decl] = STATE(2193), [sym_fsi_directive_decl] = STATE(2193), [sym_preproc_line] = STATE(2193), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_GT] = ACTIONS(3647), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [2194] = { [sym_block_comment] = STATE(2194), [sym_compiler_directive_decl] = STATE(2194), [sym_fsi_directive_decl] = STATE(2194), [sym_preproc_line] = STATE(2194), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4405), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3635), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2195] = { [sym_block_comment] = STATE(2195), [sym_compiler_directive_decl] = STATE(2195), [sym_fsi_directive_decl] = STATE(2195), [sym_preproc_line] = STATE(2195), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [anon_sym_POUNDendif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [2196] = { [sym_block_comment] = STATE(2196), [sym_compiler_directive_decl] = STATE(2196), [sym_fsi_directive_decl] = STATE(2196), [sym_preproc_line] = STATE(2196), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2197] = { [sym_block_comment] = STATE(2197), [sym_compiler_directive_decl] = STATE(2197), [sym_fsi_directive_decl] = STATE(2197), [sym_preproc_line] = STATE(2197), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_DOT_DOT] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2198] = { [sym_block_comment] = STATE(2198), [sym_compiler_directive_decl] = STATE(2198), [sym_fsi_directive_decl] = STATE(2198), [sym_preproc_line] = STATE(2198), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_AT_GT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [2199] = { [sym_block_comment] = STATE(2199), [sym_compiler_directive_decl] = STATE(2199), [sym_fsi_directive_decl] = STATE(2199), [sym_preproc_line] = STATE(2199), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_AT_GT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_AT_GT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [2200] = { [sym_block_comment] = STATE(2200), [sym_compiler_directive_decl] = STATE(2200), [sym_fsi_directive_decl] = STATE(2200), [sym_preproc_line] = STATE(2200), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_AT_AT_GT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [2201] = { [sym_block_comment] = STATE(2201), [sym_compiler_directive_decl] = STATE(2201), [sym_fsi_directive_decl] = STATE(2201), [sym_preproc_line] = STATE(2201), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [aux_sym_long_identifier_repeat1] = STATE(2201), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_and] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [aux_sym_access_modifier_token1] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_member] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_override] = ACTIONS(2964), + [anon_sym_val] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, [2202] = { [sym_block_comment] = STATE(2202), [sym_compiler_directive_decl] = STATE(2202), [sym_fsi_directive_decl] = STATE(2202), [sym_preproc_line] = STATE(2202), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_AT_GT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2203] = { [sym_block_comment] = STATE(2203), [sym_compiler_directive_decl] = STATE(2203), [sym_fsi_directive_decl] = STATE(2203), [sym_preproc_line] = STATE(2203), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_DOT_DOT] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, [2204] = { [sym_block_comment] = STATE(2204), [sym_compiler_directive_decl] = STATE(2204), [sym_fsi_directive_decl] = STATE(2204), [sym_preproc_line] = STATE(2204), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_AT_GT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_DOT_DOT] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [2205] = { [sym_block_comment] = STATE(2205), [sym_compiler_directive_decl] = STATE(2205), [sym_fsi_directive_decl] = STATE(2205), [sym_preproc_line] = STATE(2205), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [anon_sym_POUNDendif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_GT] = ACTIONS(3627), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2206] = { [sym_block_comment] = STATE(2206), [sym_compiler_directive_decl] = STATE(2206), [sym_fsi_directive_decl] = STATE(2206), [sym_preproc_line] = STATE(2206), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_AT_GT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_AT_GT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [2207] = { [sym_block_comment] = STATE(2207), [sym_compiler_directive_decl] = STATE(2207), [sym_fsi_directive_decl] = STATE(2207), [sym_preproc_line] = STATE(2207), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_DOT_DOT] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_AT_GT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [2208] = { [sym_block_comment] = STATE(2208), [sym_compiler_directive_decl] = STATE(2208), [sym_fsi_directive_decl] = STATE(2208), [sym_preproc_line] = STATE(2208), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_DOT_DOT] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_AT_GT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [2209] = { [sym_block_comment] = STATE(2209), [sym_compiler_directive_decl] = STATE(2209), [sym_fsi_directive_decl] = STATE(2209), [sym_preproc_line] = STATE(2209), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [anon_sym_POUNDendif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_AT_AT_GT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [2210] = { [sym_block_comment] = STATE(2210), [sym_compiler_directive_decl] = STATE(2210), [sym_fsi_directive_decl] = STATE(2210), [sym_preproc_line] = STATE(2210), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [anon_sym_POUNDendif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [2211] = { [sym_block_comment] = STATE(2211), [sym_compiler_directive_decl] = STATE(2211), [sym_fsi_directive_decl] = STATE(2211), [sym_preproc_line] = STATE(2211), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_AT_GT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2212] = { [sym_block_comment] = STATE(2212), [sym_compiler_directive_decl] = STATE(2212), [sym_fsi_directive_decl] = STATE(2212), [sym_preproc_line] = STATE(2212), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [anon_sym_POUNDendif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2213] = { [sym_block_comment] = STATE(2213), [sym_compiler_directive_decl] = STATE(2213), [sym_fsi_directive_decl] = STATE(2213), [sym_preproc_line] = STATE(2213), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [anon_sym_POUNDendif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_AT_GT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, [2214] = { [sym_block_comment] = STATE(2214), [sym_compiler_directive_decl] = STATE(2214), [sym_fsi_directive_decl] = STATE(2214), [sym_preproc_line] = STATE(2214), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_AT_GT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [2215] = { [sym_block_comment] = STATE(2215), [sym_compiler_directive_decl] = STATE(2215), [sym_fsi_directive_decl] = STATE(2215), [sym_preproc_line] = STATE(2215), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_AT_GT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_DOT_DOT] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [2216] = { [sym_block_comment] = STATE(2216), [sym_compiler_directive_decl] = STATE(2216), [sym_fsi_directive_decl] = STATE(2216), [sym_preproc_line] = STATE(2216), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3700), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2217] = { [sym_block_comment] = STATE(2217), [sym_compiler_directive_decl] = STATE(2217), [sym_fsi_directive_decl] = STATE(2217), [sym_preproc_line] = STATE(2217), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4407), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2218] = { [sym_block_comment] = STATE(2218), [sym_compiler_directive_decl] = STATE(2218), [sym_fsi_directive_decl] = STATE(2218), [sym_preproc_line] = STATE(2218), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [anon_sym_POUNDendif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2219] = { [sym_block_comment] = STATE(2219), [sym_compiler_directive_decl] = STATE(2219), [sym_fsi_directive_decl] = STATE(2219), [sym_preproc_line] = STATE(2219), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_GT] = ACTIONS(3683), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2220] = { [sym_block_comment] = STATE(2220), [sym_compiler_directive_decl] = STATE(2220), [sym_fsi_directive_decl] = STATE(2220), [sym_preproc_line] = STATE(2220), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [anon_sym_POUNDendif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_GT] = ACTIONS(3619), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [2221] = { [sym_block_comment] = STATE(2221), [sym_compiler_directive_decl] = STATE(2221), [sym_fsi_directive_decl] = STATE(2221), [sym_preproc_line] = STATE(2221), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2222] = { [sym_block_comment] = STATE(2222), [sym_compiler_directive_decl] = STATE(2222), [sym_fsi_directive_decl] = STATE(2222), [sym_preproc_line] = STATE(2222), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2223] = { [sym_block_comment] = STATE(2223), [sym_compiler_directive_decl] = STATE(2223), [sym_fsi_directive_decl] = STATE(2223), [sym_preproc_line] = STATE(2223), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_AT_GT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [2224] = { [sym_block_comment] = STATE(2224), [sym_compiler_directive_decl] = STATE(2224), [sym_fsi_directive_decl] = STATE(2224), [sym_preproc_line] = STATE(2224), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [anon_sym_POUNDendif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_AT_GT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [2225] = { [sym_block_comment] = STATE(2225), [sym_compiler_directive_decl] = STATE(2225), [sym_fsi_directive_decl] = STATE(2225), [sym_preproc_line] = STATE(2225), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_DOT_DOT] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [2226] = { [sym_block_comment] = STATE(2226), [sym_compiler_directive_decl] = STATE(2226), [sym_fsi_directive_decl] = STATE(2226), [sym_preproc_line] = STATE(2226), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [anon_sym_POUNDendif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_DOT_DOT] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [2227] = { [sym_block_comment] = STATE(2227), [sym_compiler_directive_decl] = STATE(2227), [sym_fsi_directive_decl] = STATE(2227), [sym_preproc_line] = STATE(2227), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [anon_sym_POUNDendif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_GT] = ACTIONS(3615), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [2228] = { + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5450), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym__pattern_param] = STATE(2575), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(3506), + [sym_format_string] = STATE(3497), + [sym__string_literal] = STATE(3497), + [sym_string] = STATE(3506), + [sym_verbatim_string] = STATE(3506), + [sym_bytearray] = STATE(3506), + [sym_verbatim_bytearray] = STATE(3506), + [sym_format_triple_quoted_string] = STATE(3489), + [sym_triple_quoted_string] = STATE(3506), + [sym_const] = STATE(3560), + [sym_long_identifier] = STATE(3433), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(3506), + [sym_byte] = STATE(3506), + [sym_int16] = STATE(3506), + [sym_uint16] = STATE(3506), + [sym_int32] = STATE(3506), + [sym_uint32] = STATE(3506), + [sym_nativeint] = STATE(3506), + [sym_unativeint] = STATE(3506), + [sym_int64] = STATE(3506), + [sym_uint64] = STATE(3506), + [sym_ieee32] = STATE(3506), + [sym_ieee64] = STATE(3506), + [sym_bignum] = STATE(3506), + [sym_decimal] = STATE(3506), + [sym_float] = STATE(3334), [sym_block_comment] = STATE(2228), [sym_compiler_directive_decl] = STATE(2228), [sym_fsi_directive_decl] = STATE(2228), [sym_preproc_line] = STATE(2228), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [anon_sym_POUNDendif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4414), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_AT_DQUOTE] = ACTIONS(4434), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4438), + [sym_bool] = ACTIONS(4440), + [sym_unit] = ACTIONS(4442), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4448), + [sym_xint] = ACTIONS(4450), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym__newline] = ACTIONS(4367), + [sym__dedent] = ACTIONS(4367), }, [2229] = { [sym_block_comment] = STATE(2229), [sym_compiler_directive_decl] = STATE(2229), [sym_fsi_directive_decl] = STATE(2229), [sym_preproc_line] = STATE(2229), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [anon_sym_POUNDendif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_GT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [2230] = { [sym_block_comment] = STATE(2230), [sym_compiler_directive_decl] = STATE(2230), [sym_fsi_directive_decl] = STATE(2230), [sym_preproc_line] = STATE(2230), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_DOT_DOT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [anon_sym_POUNDendif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [2231] = { [sym_block_comment] = STATE(2231), [sym_compiler_directive_decl] = STATE(2231), [sym_fsi_directive_decl] = STATE(2231), [sym_preproc_line] = STATE(2231), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_DOT_DOT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), - }, - [2232] = { - [sym_block_comment] = STATE(2232), - [sym_compiler_directive_decl] = STATE(2232), - [sym_fsi_directive_decl] = STATE(2232), - [sym_preproc_line] = STATE(2232), - [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), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_DOT_DOT] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + }, + [2232] = { + [sym_block_comment] = STATE(2232), + [sym_compiler_directive_decl] = STATE(2232), + [sym_fsi_directive_decl] = STATE(2232), + [sym_preproc_line] = STATE(2232), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [anon_sym_POUNDendif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2233] = { [sym_block_comment] = STATE(2233), [sym_compiler_directive_decl] = STATE(2233), [sym_fsi_directive_decl] = STATE(2233), [sym_preproc_line] = STATE(2233), - [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), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4452), }, [2234] = { [sym_block_comment] = STATE(2234), [sym_compiler_directive_decl] = STATE(2234), [sym_fsi_directive_decl] = STATE(2234), [sym_preproc_line] = STATE(2234), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [anon_sym_POUNDendif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [2235] = { [sym_block_comment] = STATE(2235), [sym_compiler_directive_decl] = STATE(2235), [sym_fsi_directive_decl] = STATE(2235), [sym_preproc_line] = STATE(2235), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [anon_sym_POUNDendif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2236] = { [sym_block_comment] = STATE(2236), [sym_compiler_directive_decl] = STATE(2236), [sym_fsi_directive_decl] = STATE(2236), [sym_preproc_line] = STATE(2236), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [anon_sym_POUNDendif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [2237] = { [sym_block_comment] = STATE(2237), [sym_compiler_directive_decl] = STATE(2237), [sym_fsi_directive_decl] = STATE(2237), [sym_preproc_line] = STATE(2237), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_GT] = ACTIONS(3611), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [2238] = { [sym_block_comment] = STATE(2238), [sym_compiler_directive_decl] = STATE(2238), [sym_fsi_directive_decl] = STATE(2238), [sym_preproc_line] = STATE(2238), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [anon_sym_POUNDendif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - }, - [2239] = { - [sym_block_comment] = STATE(2239), - [sym_compiler_directive_decl] = STATE(2239), - [sym_fsi_directive_decl] = STATE(2239), - [sym_preproc_line] = STATE(2239), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [anon_sym_POUNDendif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), + }, + [2239] = { + [sym_block_comment] = STATE(2239), + [sym_compiler_directive_decl] = STATE(2239), + [sym_fsi_directive_decl] = STATE(2239), + [sym_preproc_line] = STATE(2239), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [anon_sym_POUNDendif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [2240] = { [sym_block_comment] = STATE(2240), [sym_compiler_directive_decl] = STATE(2240), [sym_fsi_directive_decl] = STATE(2240), [sym_preproc_line] = STATE(2240), - [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_AMP] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [anon_sym_POUNDendif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [anon_sym_POUNDif] = ACTIONS(3673), + [anon_sym_POUNDendif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), }, [2241] = { [sym_block_comment] = STATE(2241), [sym_compiler_directive_decl] = STATE(2241), [sym_fsi_directive_decl] = STATE(2241), [sym_preproc_line] = STATE(2241), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_DOT_DOT] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [aux_sym_long_identifier_repeat1] = STATE(2201), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_open] = ACTIONS(2956), + [anon_sym_LBRACK_LT] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_and] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [aux_sym_access_modifier_token1] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(4454), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_member] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_exception] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_override] = ACTIONS(2956), + [anon_sym_val] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2954), + [anon_sym_POUNDload] = ACTIONS(2954), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), }, [2242] = { [sym_block_comment] = STATE(2242), [sym_compiler_directive_decl] = STATE(2242), [sym_fsi_directive_decl] = STATE(2242), [sym_preproc_line] = STATE(2242), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_GT] = ACTIONS(3509), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [anon_sym_POUNDendif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [2243] = { [sym_block_comment] = STATE(2243), [sym_compiler_directive_decl] = STATE(2243), [sym_fsi_directive_decl] = STATE(2243), [sym_preproc_line] = STATE(2243), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_AT_AT_GT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [2244] = { [sym_block_comment] = STATE(2244), [sym_compiler_directive_decl] = STATE(2244), [sym_fsi_directive_decl] = STATE(2244), [sym_preproc_line] = STATE(2244), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_AT_GT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [anon_sym_POUNDendif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [2245] = { [sym_block_comment] = STATE(2245), [sym_compiler_directive_decl] = STATE(2245), [sym_fsi_directive_decl] = STATE(2245), [sym_preproc_line] = STATE(2245), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_AT_AT_GT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_AT_GT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2246] = { [sym_block_comment] = STATE(2246), [sym_compiler_directive_decl] = STATE(2246), [sym_fsi_directive_decl] = STATE(2246), [sym_preproc_line] = STATE(2246), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [anon_sym_POUNDendif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4456), }, [2247] = { [sym_block_comment] = STATE(2247), [sym_compiler_directive_decl] = STATE(2247), [sym_fsi_directive_decl] = STATE(2247), [sym_preproc_line] = STATE(2247), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [anon_sym_POUNDendif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [anon_sym_POUNDendif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [2248] = { [sym_block_comment] = STATE(2248), [sym_compiler_directive_decl] = STATE(2248), [sym_fsi_directive_decl] = STATE(2248), [sym_preproc_line] = STATE(2248), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [anon_sym_POUNDendif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [anon_sym_POUNDendif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [2249] = { [sym_block_comment] = STATE(2249), [sym_compiler_directive_decl] = STATE(2249), [sym_fsi_directive_decl] = STATE(2249), [sym_preproc_line] = STATE(2249), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [anon_sym_POUNDendif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3653), + [anon_sym_POUNDendif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), }, [2250] = { [sym_block_comment] = STATE(2250), [sym_compiler_directive_decl] = STATE(2250), [sym_fsi_directive_decl] = STATE(2250), [sym_preproc_line] = STATE(2250), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [anon_sym_POUNDendif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [anon_sym_POUNDendif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [2251] = { [sym_block_comment] = STATE(2251), [sym_compiler_directive_decl] = STATE(2251), [sym_fsi_directive_decl] = STATE(2251), [sym_preproc_line] = STATE(2251), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [anon_sym_POUNDendif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [anon_sym_POUNDendif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), }, [2252] = { [sym_block_comment] = STATE(2252), [sym_compiler_directive_decl] = STATE(2252), [sym_fsi_directive_decl] = STATE(2252), [sym_preproc_line] = STATE(2252), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_AT_AT_GT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [2253] = { [sym_block_comment] = STATE(2253), [sym_compiler_directive_decl] = STATE(2253), [sym_fsi_directive_decl] = STATE(2253), [sym_preproc_line] = STATE(2253), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_AT_GT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [2254] = { [sym_block_comment] = STATE(2254), [sym_compiler_directive_decl] = STATE(2254), [sym_fsi_directive_decl] = STATE(2254), [sym_preproc_line] = STATE(2254), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [anon_sym_POUNDendif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_AT_GT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [2255] = { [sym_block_comment] = STATE(2255), [sym_compiler_directive_decl] = STATE(2255), [sym_fsi_directive_decl] = STATE(2255), [sym_preproc_line] = STATE(2255), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [anon_sym_POUNDendif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [anon_sym_POUNDendif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2256] = { [sym_block_comment] = STATE(2256), [sym_compiler_directive_decl] = STATE(2256), [sym_fsi_directive_decl] = STATE(2256), [sym_preproc_line] = STATE(2256), - [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), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_DOT_DOT] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), + }, + [2257] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), + [sym_block_comment] = STATE(2257), + [sym_compiler_directive_decl] = STATE(2257), + [sym_fsi_directive_decl] = STATE(2257), + [sym_preproc_line] = STATE(2257), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4458), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(4460), + [anon_sym_module] = ACTIONS(4460), + [anon_sym_open] = ACTIONS(4460), + [anon_sym_LBRACK_LT] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_type] = ACTIONS(4460), + [anon_sym_do] = ACTIONS(4460), + [anon_sym_and] = ACTIONS(4460), + [anon_sym_let] = ACTIONS(4460), + [anon_sym_let_BANG] = ACTIONS(4458), + [aux_sym_access_modifier_token1] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4460), + [anon_sym_null] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_LBRACK_PIPE] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [anon_sym_LT_AT] = ACTIONS(4460), + [anon_sym_LT_AT_AT] = ACTIONS(4458), + [anon_sym_LBRACE_PIPE] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4460), + [anon_sym_new] = ACTIONS(4460), + [anon_sym_return_BANG] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4460), + [anon_sym_yield_BANG] = ACTIONS(4458), + [anon_sym_lazy] = ACTIONS(4460), + [anon_sym_assert] = ACTIONS(4460), + [anon_sym_upcast] = ACTIONS(4460), + [anon_sym_downcast] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_fun] = ACTIONS(4460), + [anon_sym_DASH_GT] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_match] = ACTIONS(4460), + [anon_sym_match_BANG] = ACTIONS(4458), + [anon_sym_function] = ACTIONS(4460), + [anon_sym_use] = ACTIONS(4460), + [anon_sym_use_BANG] = ACTIONS(4458), + [anon_sym_do_BANG] = ACTIONS(4458), + [anon_sym_begin] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_member] = ACTIONS(4460), + [anon_sym_exception] = ACTIONS(4460), + [anon_sym_abstract] = ACTIONS(4460), + [anon_sym_override] = ACTIONS(4460), + [anon_sym_val] = ACTIONS(4460), + [aux_sym_char_token1] = ACTIONS(4458), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4460), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_AT_DQUOTE] = ACTIONS(4458), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4458), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4458), + [sym_bool] = ACTIONS(4460), + [sym_unit] = ACTIONS(4458), + [anon_sym_LPAREN_PIPE] = ACTIONS(4460), + [sym_op_identifier] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_PLUS_DOT] = ACTIONS(4458), + [anon_sym_DASH_DOT] = ACTIONS(4458), + [anon_sym_PERCENT] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [aux_sym_prefix_op_token1] = ACTIONS(4458), + [sym_int] = ACTIONS(4460), + [sym_xint] = ACTIONS(4458), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4458), + [anon_sym_POUNDload] = ACTIONS(4458), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4458), + }, + [2258] = { + [sym_block_comment] = STATE(2258), + [sym_compiler_directive_decl] = STATE(2258), + [sym_fsi_directive_decl] = STATE(2258), + [sym_preproc_line] = STATE(2258), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), + }, + [2259] = { + [sym_block_comment] = STATE(2259), + [sym_compiler_directive_decl] = STATE(2259), + [sym_fsi_directive_decl] = STATE(2259), + [sym_preproc_line] = STATE(2259), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_AT_AT_GT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), + }, + [2260] = { + [sym_block_comment] = STATE(2260), + [sym_compiler_directive_decl] = STATE(2260), + [sym_fsi_directive_decl] = STATE(2260), + [sym_preproc_line] = STATE(2260), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_AT_AT_GT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, - [2257] = { - [sym_block_comment] = STATE(2257), - [sym_compiler_directive_decl] = STATE(2257), - [sym_fsi_directive_decl] = STATE(2257), - [sym_preproc_line] = STATE(2257), - [sym_identifier] = ACTIONS(3611), + [2261] = { + [sym_block_comment] = STATE(2261), + [sym_compiler_directive_decl] = STATE(2261), + [sym_fsi_directive_decl] = STATE(2261), + [sym_preproc_line] = STATE(2261), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [anon_sym_POUNDendif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), + }, + [2262] = { + [sym_block_comment] = STATE(2262), + [sym_compiler_directive_decl] = STATE(2262), + [sym_fsi_directive_decl] = STATE(2262), + [sym_preproc_line] = STATE(2262), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [anon_sym_POUNDendif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), + }, + [2263] = { + [sym_block_comment] = STATE(2263), + [sym_compiler_directive_decl] = STATE(2263), + [sym_fsi_directive_decl] = STATE(2263), + [sym_preproc_line] = STATE(2263), + [sym_identifier] = ACTIONS(3615), [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3615), [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3615), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3615), [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), + [anon_sym_new] = ACTIONS(3615), [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield] = ACTIONS(3615), [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), [anon_sym_COLON_GT] = ACTIONS(3613), [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), [anon_sym_DOT_LBRACK] = ACTIONS(3613), [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), + [anon_sym_use] = ACTIONS(3615), [anon_sym_use_BANG] = ACTIONS(3613), [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_DOT_DOT] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), [anon_sym_AT_DQUOTE] = ACTIONS(3613), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), + [sym_bool] = ACTIONS(3615), [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_prefix_op_token1] = ACTIONS(3615), [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), [sym_xint] = ACTIONS(3613), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3613), + [anon_sym_POUNDendif] = ACTIONS(3613), [sym__newline] = ACTIONS(3613), }, - [2258] = { - [sym_block_comment] = STATE(2258), - [sym_compiler_directive_decl] = STATE(2258), - [sym_fsi_directive_decl] = STATE(2258), - [sym_preproc_line] = STATE(2258), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_AT_GT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), - }, - [2259] = { - [sym_block_comment] = STATE(2259), - [sym_compiler_directive_decl] = STATE(2259), - [sym_fsi_directive_decl] = STATE(2259), - [sym_preproc_line] = STATE(2259), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3690), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - }, - [2260] = { - [sym_block_comment] = STATE(2260), - [sym_compiler_directive_decl] = STATE(2260), - [sym_fsi_directive_decl] = STATE(2260), - [sym_preproc_line] = STATE(2260), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), + [2264] = { + [sym_block_comment] = STATE(2264), + [sym_compiler_directive_decl] = STATE(2264), + [sym_fsi_directive_decl] = STATE(2264), + [sym_preproc_line] = STATE(2264), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_AT_GT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [anon_sym_POUNDendif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, - [2261] = { - [sym_block_comment] = STATE(2261), - [sym_compiler_directive_decl] = STATE(2261), - [sym_fsi_directive_decl] = STATE(2261), - [sym_preproc_line] = STATE(2261), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), + [2265] = { + [sym_block_comment] = STATE(2265), + [sym_compiler_directive_decl] = STATE(2265), + [sym_fsi_directive_decl] = STATE(2265), + [sym_preproc_line] = STATE(2265), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_AT_GT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), + }, + [2266] = { + [sym_block_comment] = STATE(2266), + [sym_compiler_directive_decl] = STATE(2266), + [sym_fsi_directive_decl] = STATE(2266), + [sym_preproc_line] = STATE(2266), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_AT_GT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), + }, + [2267] = { + [sym_block_comment] = STATE(2267), + [sym_compiler_directive_decl] = STATE(2267), + [sym_fsi_directive_decl] = STATE(2267), + [sym_preproc_line] = STATE(2267), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_AT_GT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), + }, + [2268] = { + [sym_block_comment] = STATE(2268), + [sym_compiler_directive_decl] = STATE(2268), + [sym_fsi_directive_decl] = STATE(2268), + [sym_preproc_line] = STATE(2268), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + }, + [2269] = { + [sym_block_comment] = STATE(2269), + [sym_compiler_directive_decl] = STATE(2269), + [sym_fsi_directive_decl] = STATE(2269), + [sym_preproc_line] = STATE(2269), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), [anon_sym_COLON_QMARK] = ACTIONS(3669), [anon_sym_COLON_COLON] = ACTIONS(3671), [anon_sym_AMP] = ACTIONS(3669), @@ -288562,6 +289702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(3669), [anon_sym_DOT_LBRACK] = ACTIONS(3671), [anon_sym_LT] = ACTIONS(3671), + [anon_sym_GT] = ACTIONS(3669), [anon_sym_use] = ACTIONS(3669), [anon_sym_use_BANG] = ACTIONS(3671), [anon_sym_do_BANG] = ACTIONS(3671), @@ -288596,3115 +289737,2470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3669), [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3671), - [anon_sym_POUNDendif] = ACTIONS(3671), [sym__newline] = ACTIONS(3671), }, - [2262] = { - [sym_block_comment] = STATE(2262), - [sym_compiler_directive_decl] = STATE(2262), - [sym_fsi_directive_decl] = STATE(2262), - [sym_preproc_line] = STATE(2262), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_AT_GT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - }, - [2263] = { - [sym_block_comment] = STATE(2263), - [sym_compiler_directive_decl] = STATE(2263), - [sym_fsi_directive_decl] = STATE(2263), - [sym_preproc_line] = STATE(2263), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_AT_GT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), + [2270] = { + [sym_block_comment] = STATE(2270), + [sym_compiler_directive_decl] = STATE(2270), + [sym_fsi_directive_decl] = STATE(2270), + [sym_preproc_line] = STATE(2270), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), - }, - [2264] = { - [sym_block_comment] = STATE(2264), - [sym_compiler_directive_decl] = STATE(2264), - [sym_fsi_directive_decl] = STATE(2264), - [sym_preproc_line] = STATE(2264), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_AT_GT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), - }, - [2265] = { - [sym_block_comment] = STATE(2265), - [sym_compiler_directive_decl] = STATE(2265), - [sym_fsi_directive_decl] = STATE(2265), - [sym_preproc_line] = STATE(2265), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_DOT_DOT] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - }, - [2266] = { - [sym_block_comment] = STATE(2266), - [sym_compiler_directive_decl] = STATE(2266), - [sym_fsi_directive_decl] = STATE(2266), - [sym_preproc_line] = STATE(2266), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_DOT_DOT] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - }, - [2267] = { - [sym_block_comment] = STATE(2267), - [sym_compiler_directive_decl] = STATE(2267), - [sym_fsi_directive_decl] = STATE(2267), - [sym_preproc_line] = STATE(2267), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - }, - [2268] = { - [sym_block_comment] = STATE(2268), - [sym_compiler_directive_decl] = STATE(2268), - [sym_fsi_directive_decl] = STATE(2268), - [sym_preproc_line] = STATE(2268), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - }, - [2269] = { - [sym_block_comment] = STATE(2269), - [sym_compiler_directive_decl] = STATE(2269), - [sym_fsi_directive_decl] = STATE(2269), - [sym_preproc_line] = STATE(2269), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [anon_sym_POUNDendif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - }, - [2270] = { - [sym_block_comment] = STATE(2270), - [sym_compiler_directive_decl] = STATE(2270), - [sym_fsi_directive_decl] = STATE(2270), - [sym_preproc_line] = STATE(2270), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [anon_sym_POUNDendif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), + [anon_sym_POUNDif] = ACTIONS(3609), + [anon_sym_POUNDendif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [2271] = { [sym_block_comment] = STATE(2271), [sym_compiler_directive_decl] = STATE(2271), [sym_fsi_directive_decl] = STATE(2271), [sym_preproc_line] = STATE(2271), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [anon_sym_POUNDendif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [anon_sym_POUNDif] = ACTIONS(3601), + [anon_sym_POUNDendif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [2272] = { [sym_block_comment] = STATE(2272), [sym_compiler_directive_decl] = STATE(2272), [sym_fsi_directive_decl] = STATE(2272), [sym_preproc_line] = STATE(2272), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [anon_sym_POUNDendif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [anon_sym_POUNDendif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [2273] = { [sym_block_comment] = STATE(2273), [sym_compiler_directive_decl] = STATE(2273), [sym_fsi_directive_decl] = STATE(2273), [sym_preproc_line] = STATE(2273), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_GT] = ACTIONS(3733), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3239), }, [2274] = { [sym_block_comment] = STATE(2274), [sym_compiler_directive_decl] = STATE(2274), [sym_fsi_directive_decl] = STATE(2274), [sym_preproc_line] = STATE(2274), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_AT_AT_GT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), + [aux_sym_long_identifier_repeat1] = STATE(2241), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_and] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [aux_sym_access_modifier_token1] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(4454), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_member] = ACTIONS(2988), + [anon_sym_exception] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_val] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), }, [2275] = { [sym_block_comment] = STATE(2275), [sym_compiler_directive_decl] = STATE(2275), [sym_fsi_directive_decl] = STATE(2275), [sym_preproc_line] = STATE(2275), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_AT_AT_GT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [anon_sym_POUNDendif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2276] = { [sym_block_comment] = STATE(2276), [sym_compiler_directive_decl] = STATE(2276), [sym_fsi_directive_decl] = STATE(2276), [sym_preproc_line] = STATE(2276), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [anon_sym_POUNDendif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2277] = { [sym_block_comment] = STATE(2277), [sym_compiler_directive_decl] = STATE(2277), [sym_fsi_directive_decl] = STATE(2277), [sym_preproc_line] = STATE(2277), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_AT_AT_GT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2278] = { [sym_block_comment] = STATE(2278), [sym_compiler_directive_decl] = STATE(2278), [sym_fsi_directive_decl] = STATE(2278), [sym_preproc_line] = STATE(2278), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2279] = { [sym_block_comment] = STATE(2279), [sym_compiler_directive_decl] = STATE(2279), [sym_fsi_directive_decl] = STATE(2279), [sym_preproc_line] = STATE(2279), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_AT_GT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2280] = { [sym_block_comment] = STATE(2280), [sym_compiler_directive_decl] = STATE(2280), [sym_fsi_directive_decl] = STATE(2280), [sym_preproc_line] = STATE(2280), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2281] = { [sym_block_comment] = STATE(2281), [sym_compiler_directive_decl] = STATE(2281), [sym_fsi_directive_decl] = STATE(2281), [sym_preproc_line] = STATE(2281), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [anon_sym_POUNDendif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_AT_GT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2282] = { [sym_block_comment] = STATE(2282), [sym_compiler_directive_decl] = STATE(2282), [sym_fsi_directive_decl] = STATE(2282), [sym_preproc_line] = STATE(2282), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_AT_GT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_AT_GT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [2283] = { [sym_block_comment] = STATE(2283), [sym_compiler_directive_decl] = STATE(2283), [sym_fsi_directive_decl] = STATE(2283), [sym_preproc_line] = STATE(2283), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [anon_sym_POUNDendif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [2284] = { [sym_block_comment] = STATE(2284), [sym_compiler_directive_decl] = STATE(2284), [sym_fsi_directive_decl] = STATE(2284), [sym_preproc_line] = STATE(2284), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_AT_GT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [anon_sym_POUNDendif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2285] = { [sym_block_comment] = STATE(2285), [sym_compiler_directive_decl] = STATE(2285), [sym_fsi_directive_decl] = STATE(2285), [sym_preproc_line] = STATE(2285), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_GT] = ACTIONS(3539), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_AT_AT_GT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [2286] = { [sym_block_comment] = STATE(2286), [sym_compiler_directive_decl] = STATE(2286), [sym_fsi_directive_decl] = STATE(2286), [sym_preproc_line] = STATE(2286), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [anon_sym_POUNDendif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [anon_sym_POUNDendif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [2287] = { [sym_block_comment] = STATE(2287), [sym_compiler_directive_decl] = STATE(2287), [sym_fsi_directive_decl] = STATE(2287), [sym_preproc_line] = STATE(2287), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [anon_sym_POUNDendif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_AT_AT_GT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [2288] = { [sym_block_comment] = STATE(2288), [sym_compiler_directive_decl] = STATE(2288), [sym_fsi_directive_decl] = STATE(2288), [sym_preproc_line] = STATE(2288), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [anon_sym_POUNDendif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_AT_GT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2289] = { [sym_block_comment] = STATE(2289), [sym_compiler_directive_decl] = STATE(2289), [sym_fsi_directive_decl] = STATE(2289), [sym_preproc_line] = STATE(2289), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_GT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [2290] = { [sym_block_comment] = STATE(2290), [sym_compiler_directive_decl] = STATE(2290), [sym_fsi_directive_decl] = STATE(2290), [sym_preproc_line] = STATE(2290), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [anon_sym_POUNDendif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_AT_GT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2291] = { [sym_block_comment] = STATE(2291), [sym_compiler_directive_decl] = STATE(2291), [sym_fsi_directive_decl] = STATE(2291), [sym_preproc_line] = STATE(2291), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_AT_GT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [2292] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5500), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym__pattern_param] = STATE(2544), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3412), - [sym_long_identifier] = STATE(3304), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_comment] = STATE(2292), [sym_compiler_directive_decl] = STATE(2292), [sym_fsi_directive_decl] = STATE(2292), [sym_preproc_line] = STATE(2292), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4359), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_LT2] = ACTIONS(4359), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_AT_GT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [2293] = { [sym_block_comment] = STATE(2293), [sym_compiler_directive_decl] = STATE(2293), [sym_fsi_directive_decl] = STATE(2293), [sym_preproc_line] = STATE(2293), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_GT] = ACTIONS(3708), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_AT_GT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, [2294] = { [sym_block_comment] = STATE(2294), [sym_compiler_directive_decl] = STATE(2294), [sym_fsi_directive_decl] = STATE(2294), [sym_preproc_line] = STATE(2294), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_GT] = ACTIONS(3609), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_AT_GT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, [2295] = { [sym_block_comment] = STATE(2295), [sym_compiler_directive_decl] = STATE(2295), [sym_fsi_directive_decl] = STATE(2295), [sym_preproc_line] = STATE(2295), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_AT_GT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), + }, + [2296] = { + [sym_block_comment] = STATE(2296), + [sym_compiler_directive_decl] = STATE(2296), + [sym_fsi_directive_decl] = STATE(2296), + [sym_preproc_line] = STATE(2296), [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3607), [anon_sym_COLON] = ACTIONS(3605), [anon_sym_return] = ACTIONS(3605), [anon_sym_do] = ACTIONS(3605), [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3607), [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3607), [anon_sym_null] = ACTIONS(3605), [anon_sym_QMARK] = ACTIONS(3605), [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3607), [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), [anon_sym_LBRACE] = ACTIONS(3605), [anon_sym_LT_AT] = ACTIONS(3605), [anon_sym_LT_AT_AT] = ACTIONS(3605), [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3607), [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3607), [anon_sym_lazy] = ACTIONS(3605), [anon_sym_assert] = ACTIONS(3605), [anon_sym_upcast] = ACTIONS(3605), [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), [anon_sym_for] = ACTIONS(3605), [anon_sym_while] = ACTIONS(3605), [anon_sym_if] = ACTIONS(3605), [anon_sym_fun] = ACTIONS(3605), [anon_sym_try] = ACTIONS(3605), [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3607), [anon_sym_function] = ACTIONS(3605), [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), [anon_sym_GT] = ACTIONS(3605), [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), [anon_sym_begin] = ACTIONS(3605), [anon_sym_LPAREN2] = ACTIONS(3605), [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3607), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), + [sym_unit] = ACTIONS(3607), [anon_sym_LPAREN_PIPE] = ACTIONS(3605), [sym_op_identifier] = ACTIONS(3605), [anon_sym_PLUS] = ACTIONS(3605), @@ -291713,826 +292209,1838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3605), [anon_sym_PERCENT] = ACTIONS(3605), [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3607), [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3607), [aux_sym_infix_op_token2] = ACTIONS(3605), [anon_sym_PIPE_PIPE] = ACTIONS(3605), [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3607), [anon_sym_DOLLAR] = ACTIONS(3605), [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), - }, - [2296] = { - [sym_block_comment] = STATE(2296), - [sym_compiler_directive_decl] = STATE(2296), - [sym_fsi_directive_decl] = STATE(2296), - [sym_preproc_line] = STATE(2296), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_GT] = ACTIONS(3554), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), }, [2297] = { [sym_block_comment] = STATE(2297), [sym_compiler_directive_decl] = STATE(2297), [sym_fsi_directive_decl] = STATE(2297), [sym_preproc_line] = STATE(2297), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_AT_GT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), }, [2298] = { [sym_block_comment] = STATE(2298), [sym_compiler_directive_decl] = STATE(2298), [sym_fsi_directive_decl] = STATE(2298), [sym_preproc_line] = STATE(2298), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_AT_AT_GT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [anon_sym_POUNDendif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), }, [2299] = { [sym_block_comment] = STATE(2299), [sym_compiler_directive_decl] = STATE(2299), [sym_fsi_directive_decl] = STATE(2299), [sym_preproc_line] = STATE(2299), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - }, - [2300] = { - [sym_block_comment] = STATE(2300), - [sym_compiler_directive_decl] = STATE(2300), - [sym_fsi_directive_decl] = STATE(2300), - [sym_preproc_line] = STATE(2300), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_AT_AT_GT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), + }, + [2300] = { + [sym_block_comment] = STATE(2300), + [sym_compiler_directive_decl] = STATE(2300), + [sym_fsi_directive_decl] = STATE(2300), + [sym_preproc_line] = STATE(2300), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_AT_GT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2301] = { [sym_block_comment] = STATE(2301), [sym_compiler_directive_decl] = STATE(2301), [sym_fsi_directive_decl] = STATE(2301), [sym_preproc_line] = STATE(2301), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_AT_GT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2302] = { [sym_block_comment] = STATE(2302), [sym_compiler_directive_decl] = STATE(2302), [sym_fsi_directive_decl] = STATE(2302), [sym_preproc_line] = STATE(2302), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [anon_sym_POUNDendif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_AT_GT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2303] = { [sym_block_comment] = STATE(2303), [sym_compiler_directive_decl] = STATE(2303), [sym_fsi_directive_decl] = STATE(2303), [sym_preproc_line] = STATE(2303), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_AT_GT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [2304] = { [sym_block_comment] = STATE(2304), [sym_compiler_directive_decl] = STATE(2304), [sym_fsi_directive_decl] = STATE(2304), [sym_preproc_line] = STATE(2304), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_AT_GT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), + }, + [2305] = { + [sym_block_comment] = STATE(2305), + [sym_compiler_directive_decl] = STATE(2305), + [sym_fsi_directive_decl] = STATE(2305), + [sym_preproc_line] = STATE(2305), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + }, + [2306] = { + [sym_block_comment] = STATE(2306), + [sym_compiler_directive_decl] = STATE(2306), + [sym_fsi_directive_decl] = STATE(2306), + [sym_preproc_line] = STATE(2306), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_AT_GT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + }, + [2307] = { + [sym_block_comment] = STATE(2307), + [sym_compiler_directive_decl] = STATE(2307), + [sym_fsi_directive_decl] = STATE(2307), + [sym_preproc_line] = STATE(2307), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_AT_GT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), + }, + [2308] = { + [sym_block_comment] = STATE(2308), + [sym_compiler_directive_decl] = STATE(2308), + [sym_fsi_directive_decl] = STATE(2308), + [sym_preproc_line] = STATE(2308), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), + }, + [2309] = { + [sym_block_comment] = STATE(2309), + [sym_compiler_directive_decl] = STATE(2309), + [sym_fsi_directive_decl] = STATE(2309), + [sym_preproc_line] = STATE(2309), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_AT_AT_GT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), + }, + [2310] = { + [sym_block_comment] = STATE(2310), + [sym_compiler_directive_decl] = STATE(2310), + [sym_fsi_directive_decl] = STATE(2310), + [sym_preproc_line] = STATE(2310), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_AT_AT_GT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), + }, + [2311] = { + [sym_block_comment] = STATE(2311), + [sym_compiler_directive_decl] = STATE(2311), + [sym_fsi_directive_decl] = STATE(2311), + [sym_preproc_line] = STATE(2311), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_AT_GT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), + }, + [2312] = { + [sym_block_comment] = STATE(2312), + [sym_compiler_directive_decl] = STATE(2312), + [sym_fsi_directive_decl] = STATE(2312), + [sym_preproc_line] = STATE(2312), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_DOT_DOT] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), + }, + [2313] = { + [sym_block_comment] = STATE(2313), + [sym_compiler_directive_decl] = STATE(2313), + [sym_fsi_directive_decl] = STATE(2313), + [sym_preproc_line] = STATE(2313), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), + }, + [2314] = { + [sym_block_comment] = STATE(2314), + [sym_compiler_directive_decl] = STATE(2314), + [sym_fsi_directive_decl] = STATE(2314), + [sym_preproc_line] = STATE(2314), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_AT_GT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), + }, + [2315] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), + [sym_block_comment] = STATE(2315), + [sym_compiler_directive_decl] = STATE(2315), + [sym_fsi_directive_decl] = STATE(2315), + [sym_preproc_line] = STATE(2315), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_LBRACK_LT] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_let] = ACTIONS(4468), + [anon_sym_let_BANG] = ACTIONS(4466), + [aux_sym_access_modifier_token1] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_LBRACK_PIPE] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_LT_AT] = ACTIONS(4468), + [anon_sym_LT_AT_AT] = ACTIONS(4466), + [anon_sym_LBRACE_PIPE] = ACTIONS(4466), + [anon_sym_with] = ACTIONS(4468), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_return_BANG] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4468), + [anon_sym_yield_BANG] = ACTIONS(4466), + [anon_sym_lazy] = ACTIONS(4468), + [anon_sym_assert] = ACTIONS(4468), + [anon_sym_upcast] = ACTIONS(4468), + [anon_sym_downcast] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_match_BANG] = ACTIONS(4466), + [anon_sym_function] = ACTIONS(4468), + [anon_sym_use] = ACTIONS(4468), + [anon_sym_use_BANG] = ACTIONS(4466), + [anon_sym_do_BANG] = ACTIONS(4466), + [anon_sym_begin] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_member] = ACTIONS(4468), + [anon_sym_exception] = ACTIONS(4468), + [anon_sym_abstract] = ACTIONS(4468), + [anon_sym_override] = ACTIONS(4468), + [anon_sym_val] = ACTIONS(4468), + [aux_sym_char_token1] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [anon_sym_AT_DQUOTE] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [sym_bool] = ACTIONS(4468), + [sym_unit] = ACTIONS(4466), + [anon_sym_LPAREN_PIPE] = ACTIONS(4468), + [sym_op_identifier] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS_DOT] = ACTIONS(4466), + [anon_sym_DASH_DOT] = ACTIONS(4466), + [anon_sym_PERCENT] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [aux_sym_prefix_op_token1] = ACTIONS(4466), + [sym_int] = ACTIONS(4468), + [sym_xint] = ACTIONS(4466), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4466), + [anon_sym_POUNDload] = ACTIONS(4466), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4466), + }, + [2316] = { + [sym_block_comment] = STATE(2316), + [sym_compiler_directive_decl] = STATE(2316), + [sym_fsi_directive_decl] = STATE(2316), + [sym_preproc_line] = STATE(2316), [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3421), [anon_sym_COLON] = ACTIONS(3419), [anon_sym_return] = ACTIONS(3419), [anon_sym_do] = ACTIONS(3419), [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3421), [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3421), [anon_sym_null] = ACTIONS(3419), [anon_sym_QMARK] = ACTIONS(3419), [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3421), [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), [anon_sym_LBRACE] = ACTIONS(3419), [anon_sym_LT_AT] = ACTIONS(3419), [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_AT_AT_GT] = ACTIONS(3419), [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3421), [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3421), [anon_sym_lazy] = ACTIONS(3419), [anon_sym_assert] = ACTIONS(3419), [anon_sym_upcast] = ACTIONS(3419), [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), [anon_sym_for] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), [anon_sym_fun] = ACTIONS(3419), [anon_sym_try] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3421), [anon_sym_function] = ACTIONS(3419), [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), [anon_sym_begin] = ACTIONS(3419), [anon_sym_LPAREN2] = ACTIONS(3419), [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), + [sym_unit] = ACTIONS(3421), [anon_sym_LPAREN_PIPE] = ACTIONS(3419), [sym_op_identifier] = ACTIONS(3419), [anon_sym_PLUS] = ACTIONS(3419), @@ -292541,2390 +294049,1838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3419), [anon_sym_PERCENT] = ACTIONS(3419), [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3421), [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3421), [aux_sym_infix_op_token2] = ACTIONS(3419), [anon_sym_PIPE_PIPE] = ACTIONS(3419), [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3421), [anon_sym_DOLLAR] = ACTIONS(3419), [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, - [2305] = { - [sym_block_comment] = STATE(2305), - [sym_compiler_directive_decl] = STATE(2305), - [sym_fsi_directive_decl] = STATE(2305), - [sym_preproc_line] = STATE(2305), - [sym_identifier] = ACTIONS(3423), + [2317] = { + [sym_block_comment] = STATE(2317), + [sym_compiler_directive_decl] = STATE(2317), + [sym_fsi_directive_decl] = STATE(2317), + [sym_preproc_line] = STATE(2317), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + }, + [2318] = { + [sym_block_comment] = STATE(2318), + [sym_compiler_directive_decl] = STATE(2318), + [sym_fsi_directive_decl] = STATE(2318), + [sym_preproc_line] = STATE(2318), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_DOT_DOT] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + }, + [2319] = { + [sym_block_comment] = STATE(2319), + [sym_compiler_directive_decl] = STATE(2319), + [sym_fsi_directive_decl] = STATE(2319), + [sym_preproc_line] = STATE(2319), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_DOT_DOT] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), + }, + [2320] = { + [sym_block_comment] = STATE(2320), + [sym_compiler_directive_decl] = STATE(2320), + [sym_fsi_directive_decl] = STATE(2320), + [sym_preproc_line] = STATE(2320), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), + }, + [2321] = { + [sym_block_comment] = STATE(2321), + [sym_compiler_directive_decl] = STATE(2321), + [sym_fsi_directive_decl] = STATE(2321), + [sym_preproc_line] = STATE(2321), + [sym_identifier] = ACTIONS(3419), [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3419), [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3419), [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3419), [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3419), [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), [anon_sym_COLON_GT] = ACTIONS(3421), [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), [anon_sym_DOT_LBRACK] = ACTIONS(3421), [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3423), + [anon_sym_use] = ACTIONS(3419), [anon_sym_use_BANG] = ACTIONS(3421), [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), [anon_sym_AT_DQUOTE] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), + [sym_bool] = ACTIONS(3419), [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_prefix_op_token1] = ACTIONS(3419), [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3421), + [anon_sym_POUNDendif] = ACTIONS(3421), [sym__newline] = ACTIONS(3421), }, - [2306] = { - [sym_block_comment] = STATE(2306), - [sym_compiler_directive_decl] = STATE(2306), - [sym_fsi_directive_decl] = STATE(2306), - [sym_preproc_line] = STATE(2306), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), - }, - [2307] = { - [sym_block_comment] = STATE(2307), - [sym_compiler_directive_decl] = STATE(2307), - [sym_fsi_directive_decl] = STATE(2307), - [sym_preproc_line] = STATE(2307), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_AT_AT_GT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [2322] = { + [sym_block_comment] = STATE(2322), + [sym_compiler_directive_decl] = STATE(2322), + [sym_fsi_directive_decl] = STATE(2322), + [sym_preproc_line] = STATE(2322), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_AT_AT_GT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, - [2308] = { - [sym_block_comment] = STATE(2308), - [sym_compiler_directive_decl] = STATE(2308), - [sym_fsi_directive_decl] = STATE(2308), - [sym_preproc_line] = STATE(2308), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [2323] = { + [sym_block_comment] = STATE(2323), + [sym_compiler_directive_decl] = STATE(2323), + [sym_fsi_directive_decl] = STATE(2323), + [sym_preproc_line] = STATE(2323), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, - [2309] = { - [sym_block_comment] = STATE(2309), - [sym_compiler_directive_decl] = STATE(2309), - [sym_fsi_directive_decl] = STATE(2309), - [sym_preproc_line] = STATE(2309), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), + [2324] = { + [sym_block_comment] = STATE(2324), + [sym_compiler_directive_decl] = STATE(2324), + [sym_fsi_directive_decl] = STATE(2324), + [sym_preproc_line] = STATE(2324), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_AT_GT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - }, - [2310] = { - [sym_block_comment] = STATE(2310), - [sym_compiler_directive_decl] = STATE(2310), - [sym_fsi_directive_decl] = STATE(2310), - [sym_preproc_line] = STATE(2310), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_AT_GT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), }, - [2311] = { - [sym_block_comment] = STATE(2311), - [sym_compiler_directive_decl] = STATE(2311), - [sym_fsi_directive_decl] = STATE(2311), - [sym_preproc_line] = STATE(2311), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), + [2325] = { + [sym_block_comment] = STATE(2325), + [sym_compiler_directive_decl] = STATE(2325), + [sym_fsi_directive_decl] = STATE(2325), + [sym_preproc_line] = STATE(2325), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [2312] = { - [sym_block_comment] = STATE(2312), - [sym_compiler_directive_decl] = STATE(2312), - [sym_fsi_directive_decl] = STATE(2312), - [sym_preproc_line] = STATE(2312), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_GT] = ACTIONS(3454), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - }, - [2313] = { - [sym_block_comment] = STATE(2313), - [sym_compiler_directive_decl] = STATE(2313), - [sym_fsi_directive_decl] = STATE(2313), - [sym_preproc_line] = STATE(2313), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, - [2314] = { - [sym_block_comment] = STATE(2314), - [sym_compiler_directive_decl] = STATE(2314), - [sym_fsi_directive_decl] = STATE(2314), - [sym_preproc_line] = STATE(2314), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_GT] = ACTIONS(3458), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [2326] = { + [sym_block_comment] = STATE(2326), + [sym_compiler_directive_decl] = STATE(2326), + [sym_fsi_directive_decl] = STATE(2326), + [sym_preproc_line] = STATE(2326), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, - [2315] = { - [sym_block_comment] = STATE(2315), - [sym_compiler_directive_decl] = STATE(2315), - [sym_fsi_directive_decl] = STATE(2315), - [sym_preproc_line] = STATE(2315), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_AT_AT_GT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [2327] = { + [sym_block_comment] = STATE(2327), + [sym_compiler_directive_decl] = STATE(2327), + [sym_fsi_directive_decl] = STATE(2327), + [sym_preproc_line] = STATE(2327), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, - [2316] = { - [sym_block_comment] = STATE(2316), - [sym_compiler_directive_decl] = STATE(2316), - [sym_fsi_directive_decl] = STATE(2316), - [sym_preproc_line] = STATE(2316), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_AT_AT_GT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [2328] = { + [sym_block_comment] = STATE(2328), + [sym_compiler_directive_decl] = STATE(2328), + [sym_fsi_directive_decl] = STATE(2328), + [sym_preproc_line] = STATE(2328), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [anon_sym_POUNDendif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, - [2317] = { - [sym_block_comment] = STATE(2317), - [sym_compiler_directive_decl] = STATE(2317), - [sym_fsi_directive_decl] = STATE(2317), - [sym_preproc_line] = STATE(2317), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), + [2329] = { + [sym_block_comment] = STATE(2329), + [sym_compiler_directive_decl] = STATE(2329), + [sym_fsi_directive_decl] = STATE(2329), + [sym_preproc_line] = STATE(2329), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_AT_GT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [anon_sym_POUNDif] = ACTIONS(3397), + [anon_sym_POUNDendif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), }, - [2318] = { - [sym_block_comment] = STATE(2318), - [sym_compiler_directive_decl] = STATE(2318), - [sym_fsi_directive_decl] = STATE(2318), - [sym_preproc_line] = STATE(2318), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), + [2330] = { + [sym_block_comment] = STATE(2330), + [sym_compiler_directive_decl] = STATE(2330), + [sym_fsi_directive_decl] = STATE(2330), + [sym_preproc_line] = STATE(2330), + [sym_identifier] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_let_BANG] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_AT_GT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LBRACK_PIPE] = ACTIONS(3607), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_AT_GT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_LBRACE_PIPE] = ACTIONS(3607), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_return_BANG] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_yield_BANG] = ACTIONS(3607), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), + [anon_sym_COLON_GT] = ACTIONS(3607), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), + [anon_sym_match_BANG] = ACTIONS(3607), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), + [anon_sym_DOT_LBRACK] = ACTIONS(3607), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_use] = ACTIONS(3605), + [anon_sym_use_BANG] = ACTIONS(3607), + [anon_sym_do_BANG] = ACTIONS(3607), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), + [aux_sym_char_token1] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [anon_sym_AT_DQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), + [sym_bool] = ACTIONS(3605), + [sym_unit] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3607), + [aux_sym_prefix_op_token1] = ACTIONS(3605), + [aux_sym_infix_op_token1] = ACTIONS(3607), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), + [anon_sym_COLON_EQ] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), + [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3607), + [sym__newline] = ACTIONS(3607), }, - [2319] = { - [sym_block_comment] = STATE(2319), - [sym_compiler_directive_decl] = STATE(2319), - [sym_fsi_directive_decl] = STATE(2319), - [sym_preproc_line] = STATE(2319), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_GT] = ACTIONS(3462), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [2331] = { + [sym_block_comment] = STATE(2331), + [sym_compiler_directive_decl] = STATE(2331), + [sym_fsi_directive_decl] = STATE(2331), + [sym_preproc_line] = STATE(2331), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, - [2320] = { - [sym_block_comment] = STATE(2320), - [sym_compiler_directive_decl] = STATE(2320), - [sym_fsi_directive_decl] = STATE(2320), - [sym_preproc_line] = STATE(2320), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [2332] = { + [sym_block_comment] = STATE(2332), + [sym_compiler_directive_decl] = STATE(2332), + [sym_fsi_directive_decl] = STATE(2332), + [sym_preproc_line] = STATE(2332), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, - [2321] = { - [sym_block_comment] = STATE(2321), - [sym_compiler_directive_decl] = STATE(2321), - [sym_fsi_directive_decl] = STATE(2321), - [sym_preproc_line] = STATE(2321), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [2333] = { + [sym_block_comment] = STATE(2333), + [sym_compiler_directive_decl] = STATE(2333), + [sym_fsi_directive_decl] = STATE(2333), + [sym_preproc_line] = STATE(2333), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_AT_GT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - }, - [2322] = { - [sym_block_comment] = STATE(2322), - [sym_compiler_directive_decl] = STATE(2322), - [sym_fsi_directive_decl] = STATE(2322), - [sym_preproc_line] = STATE(2322), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_GT] = ACTIONS(3470), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), + [anon_sym_POUNDif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, - [2323] = { - [sym_block_comment] = STATE(2323), - [sym_compiler_directive_decl] = STATE(2323), - [sym_fsi_directive_decl] = STATE(2323), - [sym_preproc_line] = STATE(2323), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_AT_GT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [2334] = { + [sym_block_comment] = STATE(2334), + [sym_compiler_directive_decl] = STATE(2334), + [sym_fsi_directive_decl] = STATE(2334), + [sym_preproc_line] = STATE(2334), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [anon_sym_POUNDendif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, - [2324] = { - [sym_block_comment] = STATE(2324), - [sym_compiler_directive_decl] = STATE(2324), - [sym_fsi_directive_decl] = STATE(2324), - [sym_preproc_line] = STATE(2324), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [2335] = { + [sym_block_comment] = STATE(2335), + [sym_compiler_directive_decl] = STATE(2335), + [sym_fsi_directive_decl] = STATE(2335), + [sym_preproc_line] = STATE(2335), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), - }, - [2325] = { - [sym_block_comment] = STATE(2325), - [sym_compiler_directive_decl] = STATE(2325), - [sym_fsi_directive_decl] = STATE(2325), - [sym_preproc_line] = STATE(2325), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - }, - [2326] = { - [sym_block_comment] = STATE(2326), - [sym_compiler_directive_decl] = STATE(2326), - [sym_fsi_directive_decl] = STATE(2326), - [sym_preproc_line] = STATE(2326), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), - }, - [2327] = { - [sym_block_comment] = STATE(2327), - [sym_compiler_directive_decl] = STATE(2327), - [sym_fsi_directive_decl] = STATE(2327), - [sym_preproc_line] = STATE(2327), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - }, - [2328] = { - [sym_block_comment] = STATE(2328), - [sym_compiler_directive_decl] = STATE(2328), - [sym_fsi_directive_decl] = STATE(2328), - [sym_preproc_line] = STATE(2328), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_GT] = ACTIONS(3630), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), - }, - [2329] = { - [sym_block_comment] = STATE(2329), - [sym_compiler_directive_decl] = STATE(2329), - [sym_fsi_directive_decl] = STATE(2329), - [sym_preproc_line] = STATE(2329), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_GT] = ACTIONS(3626), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [anon_sym_POUNDif] = ACTIONS(3663), + [anon_sym_POUNDendif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, - [2330] = { - [sym_block_comment] = STATE(2330), - [sym_compiler_directive_decl] = STATE(2330), - [sym_fsi_directive_decl] = STATE(2330), - [sym_preproc_line] = STATE(2330), + [2336] = { + [sym_block_comment] = STATE(2336), + [sym_compiler_directive_decl] = STATE(2336), + [sym_fsi_directive_decl] = STATE(2336), + [sym_preproc_line] = STATE(2336), [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_EQ] = ACTIONS(3609), [anon_sym_COLON] = ACTIONS(3611), [anon_sym_return] = ACTIONS(3611), [anon_sym_do] = ACTIONS(3611), [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_let_BANG] = ACTIONS(3609), [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_COMMA] = ACTIONS(3609), [anon_sym_null] = ACTIONS(3611), [anon_sym_QMARK] = ACTIONS(3611), [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3609), [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), [anon_sym_LBRACE] = ACTIONS(3611), [anon_sym_LT_AT] = ACTIONS(3611), [anon_sym_LT_AT_AT] = ACTIONS(3611), [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_return_BANG] = ACTIONS(3609), [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_yield_BANG] = ACTIONS(3609), [anon_sym_lazy] = ACTIONS(3611), [anon_sym_assert] = ACTIONS(3611), [anon_sym_upcast] = ACTIONS(3611), [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), [anon_sym_for] = ACTIONS(3611), [anon_sym_while] = ACTIONS(3611), [anon_sym_if] = ACTIONS(3611), [anon_sym_fun] = ACTIONS(3611), [anon_sym_try] = ACTIONS(3611), [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_match_BANG] = ACTIONS(3609), [anon_sym_function] = ACTIONS(3611), [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_GT] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_DOT_DOT] = ACTIONS(3609), [anon_sym_begin] = ACTIONS(3611), [anon_sym_LPAREN2] = ACTIONS(3611), [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), + [aux_sym_char_token1] = ACTIONS(3609), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), + [sym_unit] = ACTIONS(3609), [anon_sym_LPAREN_PIPE] = ACTIONS(3611), [sym_op_identifier] = ACTIONS(3611), [anon_sym_PLUS] = ACTIONS(3611), @@ -294933,19 +295889,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3611), [anon_sym_PERCENT] = ACTIONS(3611), [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3609), [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token1] = ACTIONS(3609), [aux_sym_infix_op_token2] = ACTIONS(3611), [anon_sym_PIPE_PIPE] = ACTIONS(3611), [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_COLON_EQ] = ACTIONS(3609), [anon_sym_DOLLAR] = ACTIONS(3611), [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), + }, + [2337] = { + [sym_block_comment] = STATE(2337), + [sym_compiler_directive_decl] = STATE(2337), + [sym_fsi_directive_decl] = STATE(2337), + [sym_preproc_line] = STATE(2337), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_DOT_DOT] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), [sym_xint] = ACTIONS(3613), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -294954,1299 +296002,1759 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3613), [sym__newline] = ACTIONS(3613), }, - [2331] = { - [sym_block_comment] = STATE(2331), - [sym_compiler_directive_decl] = STATE(2331), - [sym_fsi_directive_decl] = STATE(2331), - [sym_preproc_line] = STATE(2331), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4411), - }, - [2332] = { - [sym_block_comment] = STATE(2332), - [sym_compiler_directive_decl] = STATE(2332), - [sym_fsi_directive_decl] = STATE(2332), - [sym_preproc_line] = STATE(2332), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3646), - [sym__dedent] = ACTIONS(3646), - }, - [2333] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5459), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym__pattern_param] = STATE(2555), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(3530), - [sym_format_string] = STATE(3483), - [sym__string_literal] = STATE(3483), - [sym_string] = STATE(3530), - [sym_verbatim_string] = STATE(3530), - [sym_bytearray] = STATE(3530), - [sym_verbatim_bytearray] = STATE(3530), - [sym_format_triple_quoted_string] = STATE(3475), - [sym_triple_quoted_string] = STATE(3530), - [sym_const] = STATE(3500), - [sym_long_identifier] = STATE(3363), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(3530), - [sym_byte] = STATE(3530), - [sym_int16] = STATE(3530), - [sym_uint16] = STATE(3530), - [sym_int32] = STATE(3530), - [sym_uint32] = STATE(3530), - [sym_nativeint] = STATE(3530), - [sym_unativeint] = STATE(3530), - [sym_int64] = STATE(3530), - [sym_uint64] = STATE(3530), - [sym_ieee32] = STATE(3530), - [sym_ieee64] = STATE(3530), - [sym_bignum] = STATE(3530), - [sym_decimal] = STATE(3530), - [sym_float] = STATE(3310), - [sym_block_comment] = STATE(2333), - [sym_compiler_directive_decl] = STATE(2333), - [sym_fsi_directive_decl] = STATE(2333), - [sym_preproc_line] = STATE(2333), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_DASH_GT] = ACTIONS(4359), - [anon_sym_when] = ACTIONS(4363), - [aux_sym_char_token1] = ACTIONS(4421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4425), - [anon_sym_AT_DQUOTE] = ACTIONS(4427), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4431), - [sym_bool] = ACTIONS(4433), - [sym_unit] = ACTIONS(4435), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4441), - [sym_xint] = ACTIONS(4443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2334] = { - [sym_block_comment] = STATE(2334), - [sym_compiler_directive_decl] = STATE(2334), - [sym_fsi_directive_decl] = STATE(2334), - [sym_preproc_line] = STATE(2334), - [sym_identifier] = ACTIONS(3683), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_do] = ACTIONS(3683), - [anon_sym_let] = ACTIONS(3683), - [anon_sym_let_BANG] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_null] = ACTIONS(3683), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_COLON_QMARK] = ACTIONS(3683), - [anon_sym_COLON_COLON] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3683), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3683), - [anon_sym_LBRACK_PIPE] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LT_AT] = ACTIONS(3683), - [anon_sym_LT_AT_AT] = ACTIONS(3683), - [anon_sym_AT_AT_GT] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3683), - [anon_sym_LBRACE_PIPE] = ACTIONS(3681), - [anon_sym_new] = ACTIONS(3683), - [anon_sym_return_BANG] = ACTIONS(3681), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_yield_BANG] = ACTIONS(3681), - [anon_sym_lazy] = ACTIONS(3683), - [anon_sym_assert] = ACTIONS(3683), - [anon_sym_upcast] = ACTIONS(3683), - [anon_sym_downcast] = ACTIONS(3683), - [anon_sym_COLON_GT] = ACTIONS(3681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3681), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_fun] = ACTIONS(3683), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_match_BANG] = ACTIONS(3681), - [anon_sym_function] = ACTIONS(3683), - [anon_sym_LT_DASH] = ACTIONS(3683), - [anon_sym_DOT_LBRACK] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3681), - [anon_sym_use] = ACTIONS(3683), - [anon_sym_use_BANG] = ACTIONS(3681), - [anon_sym_do_BANG] = ACTIONS(3681), - [anon_sym_begin] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_or] = ACTIONS(3683), - [aux_sym_char_token1] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3683), - [anon_sym_AT_DQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3681), - [sym_bool] = ACTIONS(3683), - [sym_unit] = ACTIONS(3681), - [anon_sym_LPAREN_PIPE] = ACTIONS(3683), - [sym_op_identifier] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3683), - [anon_sym_DASH] = ACTIONS(3683), - [anon_sym_PLUS_DOT] = ACTIONS(3683), - [anon_sym_DASH_DOT] = ACTIONS(3683), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3681), - [aux_sym_prefix_op_token1] = ACTIONS(3683), - [aux_sym_infix_op_token1] = ACTIONS(3681), - [aux_sym_infix_op_token2] = ACTIONS(3683), - [anon_sym_PIPE_PIPE] = ACTIONS(3683), - [anon_sym_BANG_EQ] = ACTIONS(3683), - [anon_sym_COLON_EQ] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3683), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3683), - [sym_int] = ACTIONS(3683), - [sym_xint] = ACTIONS(3681), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3681), - [sym__newline] = ACTIONS(3681), - }, - [2335] = { - [sym_block_comment] = STATE(2335), - [sym_compiler_directive_decl] = STATE(2335), - [sym_fsi_directive_decl] = STATE(2335), - [sym_preproc_line] = STATE(2335), - [sym_identifier] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_BANG] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3698), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LBRACK_PIPE] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_LT_AT] = ACTIONS(3700), - [anon_sym_LT_AT_AT] = ACTIONS(3700), - [anon_sym_AT_AT_GT] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_LBRACE_PIPE] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_return_BANG] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_yield_BANG] = ACTIONS(3698), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_assert] = ACTIONS(3700), - [anon_sym_upcast] = ACTIONS(3700), - [anon_sym_downcast] = ACTIONS(3700), - [anon_sym_COLON_GT] = ACTIONS(3698), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_fun] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_match_BANG] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_LT_DASH] = ACTIONS(3700), - [anon_sym_DOT_LBRACK] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_use_BANG] = ACTIONS(3698), - [anon_sym_do_BANG] = ACTIONS(3698), - [anon_sym_begin] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [aux_sym_char_token1] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_AT_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3698), - [sym_bool] = ACTIONS(3700), - [sym_unit] = ACTIONS(3698), - [anon_sym_LPAREN_PIPE] = ACTIONS(3700), - [sym_op_identifier] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS_DOT] = ACTIONS(3700), - [anon_sym_DASH_DOT] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_prefix_op_token1] = ACTIONS(3700), - [aux_sym_infix_op_token1] = ACTIONS(3698), - [aux_sym_infix_op_token2] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_COLON_EQ] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3700), - [sym_int] = ACTIONS(3700), - [sym_xint] = ACTIONS(3698), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3698), - [sym__newline] = ACTIONS(3698), - }, - [2336] = { - [sym_block_comment] = STATE(2336), - [sym_compiler_directive_decl] = STATE(2336), - [sym_fsi_directive_decl] = STATE(2336), - [sym_preproc_line] = STATE(2336), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_AT_AT_GT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - }, - [2337] = { - [sym_block_comment] = STATE(2337), - [sym_compiler_directive_decl] = STATE(2337), - [sym_fsi_directive_decl] = STATE(2337), - [sym_preproc_line] = STATE(2337), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), - }, [2338] = { [sym_block_comment] = STATE(2338), [sym_compiler_directive_decl] = STATE(2338), [sym_fsi_directive_decl] = STATE(2338), [sym_preproc_line] = STATE(2338), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_AT_GT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_DOT_DOT] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [2339] = { [sym_block_comment] = STATE(2339), [sym_compiler_directive_decl] = STATE(2339), [sym_fsi_directive_decl] = STATE(2339), [sym_preproc_line] = STATE(2339), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_AT_GT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [2340] = { [sym_block_comment] = STATE(2340), [sym_compiler_directive_decl] = STATE(2340), [sym_fsi_directive_decl] = STATE(2340), [sym_preproc_line] = STATE(2340), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [anon_sym_POUNDendif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_DOT_DOT] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2341] = { [sym_block_comment] = STATE(2341), [sym_compiler_directive_decl] = STATE(2341), [sym_fsi_directive_decl] = STATE(2341), [sym_preproc_line] = STATE(2341), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_AT_GT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_DOT_DOT] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, [2342] = { [sym_block_comment] = STATE(2342), [sym_compiler_directive_decl] = STATE(2342), [sym_fsi_directive_decl] = STATE(2342), [sym_preproc_line] = STATE(2342), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_AT_GT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_AT_GT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, [2343] = { [sym_block_comment] = STATE(2343), [sym_compiler_directive_decl] = STATE(2343), [sym_fsi_directive_decl] = STATE(2343), [sym_preproc_line] = STATE(2343), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2344] = { [sym_block_comment] = STATE(2344), [sym_compiler_directive_decl] = STATE(2344), [sym_fsi_directive_decl] = STATE(2344), [sym_preproc_line] = STATE(2344), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_AT_GT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), }, [2345] = { [sym_block_comment] = STATE(2345), [sym_compiler_directive_decl] = STATE(2345), [sym_fsi_directive_decl] = STATE(2345), [sym_preproc_line] = STATE(2345), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_DOT_DOT] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + }, + [2346] = { + [sym_block_comment] = STATE(2346), + [sym_compiler_directive_decl] = STATE(2346), + [sym_fsi_directive_decl] = STATE(2346), + [sym_preproc_line] = STATE(2346), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_DOT_DOT] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), + }, + [2347] = { + [sym_block_comment] = STATE(2347), + [sym_compiler_directive_decl] = STATE(2347), + [sym_fsi_directive_decl] = STATE(2347), + [sym_preproc_line] = STATE(2347), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_AT_GT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + }, + [2348] = { + [sym_block_comment] = STATE(2348), + [sym_compiler_directive_decl] = STATE(2348), + [sym_fsi_directive_decl] = STATE(2348), + [sym_preproc_line] = STATE(2348), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_AT_AT_GT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), + }, + [2349] = { + [sym_block_comment] = STATE(2349), + [sym_compiler_directive_decl] = STATE(2349), + [sym_fsi_directive_decl] = STATE(2349), + [sym_preproc_line] = STATE(2349), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), + }, + [2350] = { + [sym_block_comment] = STATE(2350), + [sym_compiler_directive_decl] = STATE(2350), + [sym_fsi_directive_decl] = STATE(2350), + [sym_preproc_line] = STATE(2350), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), + }, + [2351] = { + [sym_block_comment] = STATE(2351), + [sym_compiler_directive_decl] = STATE(2351), + [sym_fsi_directive_decl] = STATE(2351), + [sym_preproc_line] = STATE(2351), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), + }, + [2352] = { + [sym_block_comment] = STATE(2352), + [sym_compiler_directive_decl] = STATE(2352), + [sym_fsi_directive_decl] = STATE(2352), + [sym_preproc_line] = STATE(2352), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_AT_AT_GT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), + }, + [2353] = { + [sym_block_comment] = STATE(2353), + [sym_compiler_directive_decl] = STATE(2353), + [sym_fsi_directive_decl] = STATE(2353), + [sym_preproc_line] = STATE(2353), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_AT_AT_GT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), + }, + [2354] = { + [sym_block_comment] = STATE(2354), + [sym_compiler_directive_decl] = STATE(2354), + [sym_fsi_directive_decl] = STATE(2354), + [sym_preproc_line] = STATE(2354), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_AT_AT_GT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), + }, + [2355] = { + [sym_block_comment] = STATE(2355), + [sym_compiler_directive_decl] = STATE(2355), + [sym_fsi_directive_decl] = STATE(2355), + [sym_preproc_line] = STATE(2355), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3673), + [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(3673), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3673), + [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(3673), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3673), + [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(3673), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), + [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(3673), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3673), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3673), + [anon_sym_do_BANG] = ACTIONS(3673), + [anon_sym_DOT_DOT] = ACTIONS(3673), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3675), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3673), + [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(3673), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3673), + [aux_sym_infix_op_token2] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3673), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3673), + [sym__newline] = ACTIONS(3673), + }, + [2356] = { + [sym_block_comment] = STATE(2356), + [sym_compiler_directive_decl] = STATE(2356), + [sym_fsi_directive_decl] = STATE(2356), + [sym_preproc_line] = STATE(2356), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_AT_GT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), + }, + [2357] = { + [sym_block_comment] = STATE(2357), + [sym_compiler_directive_decl] = STATE(2357), + [sym_fsi_directive_decl] = STATE(2357), + [sym_preproc_line] = STATE(2357), [sym_identifier] = ACTIONS(3399), [anon_sym_EQ] = ACTIONS(3397), [anon_sym_COLON] = ACTIONS(3399), @@ -296325,7 +297833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3399), [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -296334,529 +297842,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3397), [sym__newline] = ACTIONS(3397), }, - [2346] = { - [sym_block_comment] = STATE(2346), - [sym_compiler_directive_decl] = STATE(2346), - [sym_fsi_directive_decl] = STATE(2346), - [sym_preproc_line] = STATE(2346), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_AT_GT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), + [2358] = { + [sym_block_comment] = STATE(2358), + [sym_compiler_directive_decl] = STATE(2358), + [sym_fsi_directive_decl] = STATE(2358), + [sym_preproc_line] = STATE(2358), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_AT_AT_GT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, - [2347] = { - [sym_block_comment] = STATE(2347), - [sym_compiler_directive_decl] = STATE(2347), - [sym_fsi_directive_decl] = STATE(2347), - [sym_preproc_line] = STATE(2347), - [sym_identifier] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_let_BANG] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3517), + [2359] = { + [sym_block_comment] = STATE(2359), + [sym_compiler_directive_decl] = STATE(2359), + [sym_fsi_directive_decl] = STATE(2359), + [sym_preproc_line] = STATE(2359), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LT_AT] = ACTIONS(3517), - [anon_sym_LT_AT_AT] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE_PIPE] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_return_BANG] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3517), - [anon_sym_yield_BANG] = ACTIONS(3515), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3517), - [anon_sym_upcast] = ACTIONS(3517), - [anon_sym_downcast] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3517), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_fun] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_match_BANG] = ACTIONS(3515), - [anon_sym_function] = ACTIONS(3517), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_DOT_LBRACK] = ACTIONS(3515), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_GT] = ACTIONS(3517), - [anon_sym_use] = ACTIONS(3517), - [anon_sym_use_BANG] = ACTIONS(3515), - [anon_sym_do_BANG] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [aux_sym_char_token1] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [anon_sym_AT_DQUOTE] = ACTIONS(3515), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), - [sym_bool] = ACTIONS(3517), - [sym_unit] = ACTIONS(3515), - [anon_sym_LPAREN_PIPE] = ACTIONS(3517), - [sym_op_identifier] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [anon_sym_PERCENT] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3515), - [aux_sym_prefix_op_token1] = ACTIONS(3517), - [aux_sym_infix_op_token1] = ACTIONS(3515), - [aux_sym_infix_op_token2] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), - [sym_int] = ACTIONS(3517), - [sym_xint] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_AT_AT_GT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3515), - [sym__newline] = ACTIONS(3515), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, - [2348] = { - [sym_block_comment] = STATE(2348), - [sym_compiler_directive_decl] = STATE(2348), - [sym_fsi_directive_decl] = STATE(2348), - [sym_preproc_line] = STATE(2348), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_AT_AT_GT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), + [2360] = { + [sym_block_comment] = STATE(2360), + [sym_compiler_directive_decl] = STATE(2360), + [sym_fsi_directive_decl] = STATE(2360), + [sym_preproc_line] = STATE(2360), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, - [2349] = { - [sym_block_comment] = STATE(2349), - [sym_compiler_directive_decl] = STATE(2349), - [sym_fsi_directive_decl] = STATE(2349), - [sym_preproc_line] = STATE(2349), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_AT_GT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [2361] = { + [sym_block_comment] = STATE(2361), + [sym_compiler_directive_decl] = STATE(2361), + [sym_fsi_directive_decl] = STATE(2361), + [sym_preproc_line] = STATE(2361), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_GT] = ACTIONS(3725), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, - [2350] = { - [sym_block_comment] = STATE(2350), - [sym_compiler_directive_decl] = STATE(2350), - [sym_fsi_directive_decl] = STATE(2350), - [sym_preproc_line] = STATE(2350), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_AT_GT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [2362] = { + [sym_block_comment] = STATE(2362), + [sym_compiler_directive_decl] = STATE(2362), + [sym_fsi_directive_decl] = STATE(2362), + [sym_preproc_line] = STATE(2362), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_AT_AT_GT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, - [2351] = { - [sym_block_comment] = STATE(2351), - [sym_compiler_directive_decl] = STATE(2351), - [sym_fsi_directive_decl] = STATE(2351), - [sym_preproc_line] = STATE(2351), + [2363] = { + [sym_block_comment] = STATE(2363), + [sym_compiler_directive_decl] = STATE(2363), + [sym_fsi_directive_decl] = STATE(2363), + [sym_preproc_line] = STATE(2363), [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_EQ] = ACTIONS(3541), [anon_sym_COLON] = ACTIONS(3539), [anon_sym_return] = ACTIONS(3539), [anon_sym_do] = ACTIONS(3539), [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_let_BANG] = ACTIONS(3541), [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_COMMA] = ACTIONS(3541), [anon_sym_null] = ACTIONS(3539), [anon_sym_QMARK] = ACTIONS(3539), [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), [anon_sym_LBRACE] = ACTIONS(3539), [anon_sym_LT_AT] = ACTIONS(3539), [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_AT_AT_GT] = ACTIONS(3539), [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_return_BANG] = ACTIONS(3541), [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_yield_BANG] = ACTIONS(3541), [anon_sym_lazy] = ACTIONS(3539), [anon_sym_assert] = ACTIONS(3539), [anon_sym_upcast] = ACTIONS(3539), [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), [anon_sym_for] = ACTIONS(3539), [anon_sym_while] = ACTIONS(3539), [anon_sym_if] = ACTIONS(3539), [anon_sym_fun] = ACTIONS(3539), [anon_sym_try] = ACTIONS(3539), [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_match_BANG] = ACTIONS(3541), [anon_sym_function] = ACTIONS(3539), [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), [anon_sym_begin] = ACTIONS(3539), [anon_sym_LPAREN2] = ACTIONS(3539), [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), + [aux_sym_char_token1] = ACTIONS(3541), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), + [sym_unit] = ACTIONS(3541), [anon_sym_LPAREN_PIPE] = ACTIONS(3539), [sym_op_identifier] = ACTIONS(3539), [anon_sym_PLUS] = ACTIONS(3539), @@ -296865,2437 +298372,1886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3539), [anon_sym_PERCENT] = ACTIONS(3539), [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3541), [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token1] = ACTIONS(3541), [aux_sym_infix_op_token2] = ACTIONS(3539), [anon_sym_PIPE_PIPE] = ACTIONS(3539), [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_COLON_EQ] = ACTIONS(3541), [anon_sym_DOLLAR] = ACTIONS(3539), [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - }, - [2352] = { - [sym_block_comment] = STATE(2352), - [sym_compiler_directive_decl] = STATE(2352), - [sym_fsi_directive_decl] = STATE(2352), - [sym_preproc_line] = STATE(2352), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_AT_GT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), - }, - [2353] = { - [sym_block_comment] = STATE(2353), - [sym_compiler_directive_decl] = STATE(2353), - [sym_fsi_directive_decl] = STATE(2353), - [sym_preproc_line] = STATE(2353), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_AT_GT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), - }, - [2354] = { - [sym_block_comment] = STATE(2354), - [sym_compiler_directive_decl] = STATE(2354), - [sym_fsi_directive_decl] = STATE(2354), - [sym_preproc_line] = STATE(2354), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_AT_GT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [2355] = { - [sym_block_comment] = STATE(2355), - [sym_compiler_directive_decl] = STATE(2355), - [sym_fsi_directive_decl] = STATE(2355), - [sym_preproc_line] = STATE(2355), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4445), - }, - [2356] = { - [sym_block_comment] = STATE(2356), - [sym_compiler_directive_decl] = STATE(2356), - [sym_fsi_directive_decl] = STATE(2356), - [sym_preproc_line] = STATE(2356), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_AT_AT_GT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3541), + [anon_sym_POUNDendif] = ACTIONS(3541), [sym__newline] = ACTIONS(3541), }, - [2357] = { - [sym_block_comment] = STATE(2357), - [sym_compiler_directive_decl] = STATE(2357), - [sym_fsi_directive_decl] = STATE(2357), - [sym_preproc_line] = STATE(2357), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_AT_GT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), - }, - [2358] = { - [sym_block_comment] = STATE(2358), - [sym_compiler_directive_decl] = STATE(2358), - [sym_fsi_directive_decl] = STATE(2358), - [sym_preproc_line] = STATE(2358), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_AT_GT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), - }, - [2359] = { - [sym_block_comment] = STATE(2359), - [sym_compiler_directive_decl] = STATE(2359), - [sym_fsi_directive_decl] = STATE(2359), - [sym_preproc_line] = STATE(2359), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_AT_GT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - }, - [2360] = { - [sym_block_comment] = STATE(2360), - [sym_compiler_directive_decl] = STATE(2360), - [sym_fsi_directive_decl] = STATE(2360), - [sym_preproc_line] = STATE(2360), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_AT_GT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - }, - [2361] = { - [sym_block_comment] = STATE(2361), - [sym_compiler_directive_decl] = STATE(2361), - [sym_fsi_directive_decl] = STATE(2361), - [sym_preproc_line] = STATE(2361), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), - }, - [2362] = { - [sym_block_comment] = STATE(2362), - [sym_compiler_directive_decl] = STATE(2362), - [sym_fsi_directive_decl] = STATE(2362), - [sym_preproc_line] = STATE(2362), - [sym_identifier] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_let_BANG] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_QMARK] = ACTIONS(3474), - [anon_sym_COLON_QMARK] = ACTIONS(3474), - [anon_sym_COLON_COLON] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LBRACK_PIPE] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_LT_AT] = ACTIONS(3474), - [anon_sym_LT_AT_AT] = ACTIONS(3474), - [anon_sym_AT_AT_GT] = ACTIONS(3474), - [anon_sym_DOT] = ACTIONS(3474), - [anon_sym_LBRACE_PIPE] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_return_BANG] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_yield_BANG] = ACTIONS(3472), - [anon_sym_lazy] = ACTIONS(3474), - [anon_sym_assert] = ACTIONS(3474), - [anon_sym_upcast] = ACTIONS(3474), - [anon_sym_downcast] = ACTIONS(3474), - [anon_sym_COLON_GT] = ACTIONS(3472), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_fun] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_match] = ACTIONS(3474), - [anon_sym_match_BANG] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_DOT_LBRACK] = ACTIONS(3472), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_use] = ACTIONS(3474), - [anon_sym_use_BANG] = ACTIONS(3472), - [anon_sym_do_BANG] = ACTIONS(3472), - [anon_sym_begin] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_or] = ACTIONS(3474), - [aux_sym_char_token1] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_AT_DQUOTE] = ACTIONS(3472), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3472), - [sym_bool] = ACTIONS(3474), - [sym_unit] = ACTIONS(3472), - [anon_sym_LPAREN_PIPE] = ACTIONS(3474), - [sym_op_identifier] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_PLUS_DOT] = ACTIONS(3474), - [anon_sym_DASH_DOT] = ACTIONS(3474), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3472), - [aux_sym_prefix_op_token1] = ACTIONS(3474), - [aux_sym_infix_op_token1] = ACTIONS(3472), - [aux_sym_infix_op_token2] = ACTIONS(3474), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_BANG_EQ] = ACTIONS(3474), - [anon_sym_COLON_EQ] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(3474), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3474), - [sym_int] = ACTIONS(3474), - [sym_xint] = ACTIONS(3472), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3472), - [sym__newline] = ACTIONS(3472), - }, - [2363] = { - [sym_block_comment] = STATE(2363), - [sym_compiler_directive_decl] = STATE(2363), - [sym_fsi_directive_decl] = STATE(2363), - [sym_preproc_line] = STATE(2363), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), - }, [2364] = { [sym_block_comment] = STATE(2364), [sym_compiler_directive_decl] = STATE(2364), [sym_fsi_directive_decl] = STATE(2364), [sym_preproc_line] = STATE(2364), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_AT_AT_GT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2365] = { [sym_block_comment] = STATE(2365), [sym_compiler_directive_decl] = STATE(2365), [sym_fsi_directive_decl] = STATE(2365), [sym_preproc_line] = STATE(2365), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3533), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [2366] = { [sym_block_comment] = STATE(2366), [sym_compiler_directive_decl] = STATE(2366), [sym_fsi_directive_decl] = STATE(2366), [sym_preproc_line] = STATE(2366), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_DOT_DOT] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_AT_AT_GT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2367] = { [sym_block_comment] = STATE(2367), [sym_compiler_directive_decl] = STATE(2367), [sym_fsi_directive_decl] = STATE(2367), [sym_preproc_line] = STATE(2367), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [2368] = { [sym_block_comment] = STATE(2368), [sym_compiler_directive_decl] = STATE(2368), [sym_fsi_directive_decl] = STATE(2368), [sym_preproc_line] = STATE(2368), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_GT] = ACTIONS(3716), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [anon_sym_POUNDendif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [2369] = { [sym_block_comment] = STATE(2369), [sym_compiler_directive_decl] = STATE(2369), [sym_fsi_directive_decl] = STATE(2369), [sym_preproc_line] = STATE(2369), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_COLON_QMARK] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3682), + [anon_sym_AT_AT_GT] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_COLON_GT] = ACTIONS(3680), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(3682), + [anon_sym_DOT_LBRACK] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_or] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3682), + [anon_sym_DASH_DOT] = ACTIONS(3682), + [anon_sym_PERCENT] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3682), + [aux_sym_infix_op_token1] = ACTIONS(3680), + [aux_sym_infix_op_token2] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3682), + [anon_sym_COLON_EQ] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3682), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3682), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), + [sym__newline] = ACTIONS(3680), }, [2370] = { [sym_block_comment] = STATE(2370), [sym_compiler_directive_decl] = STATE(2370), [sym_fsi_directive_decl] = STATE(2370), [sym_preproc_line] = STATE(2370), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_AT_AT_GT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_GT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [2371] = { [sym_block_comment] = STATE(2371), [sym_compiler_directive_decl] = STATE(2371), [sym_fsi_directive_decl] = STATE(2371), [sym_preproc_line] = STATE(2371), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [anon_sym_POUNDendif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3725), + [anon_sym_COLON_QMARK] = ACTIONS(3725), + [anon_sym_COLON_COLON] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3725), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_COLON_GT] = ACTIONS(3723), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_LT_DASH] = ACTIONS(3725), + [anon_sym_DOT_LBRACK] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3725), + [anon_sym_or] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3725), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3725), + [anon_sym_DASH_DOT] = ACTIONS(3725), + [anon_sym_PERCENT] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3725), + [aux_sym_infix_op_token1] = ACTIONS(3723), + [aux_sym_infix_op_token2] = ACTIONS(3725), + [anon_sym_PIPE_PIPE] = ACTIONS(3725), + [anon_sym_BANG_EQ] = ACTIONS(3725), + [anon_sym_COLON_EQ] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3725), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + [sym__newline] = ACTIONS(3723), }, [2372] = { [sym_block_comment] = STATE(2372), [sym_compiler_directive_decl] = STATE(2372), [sym_fsi_directive_decl] = STATE(2372), [sym_preproc_line] = STATE(2372), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3960), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [anon_sym_POUNDendif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), }, [2373] = { [sym_block_comment] = STATE(2373), [sym_compiler_directive_decl] = STATE(2373), [sym_fsi_directive_decl] = STATE(2373), [sym_preproc_line] = STATE(2373), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_GT] = ACTIONS(3503), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), }, [2374] = { [sym_block_comment] = STATE(2374), [sym_compiler_directive_decl] = STATE(2374), [sym_fsi_directive_decl] = STATE(2374), [sym_preproc_line] = STATE(2374), - [sym_identifier] = ACTIONS(3550), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_COLON] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_let_BANG] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_COMMA] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_QMARK] = ACTIONS(3550), - [anon_sym_COLON_QMARK] = ACTIONS(3550), - [anon_sym_COLON_COLON] = ACTIONS(3548), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LBRACK_PIPE] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_LT_AT] = ACTIONS(3550), - [anon_sym_LT_AT_AT] = ACTIONS(3550), - [anon_sym_DOT] = ACTIONS(3550), - [anon_sym_LBRACE_PIPE] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_return_BANG] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_yield_BANG] = ACTIONS(3548), - [anon_sym_lazy] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_upcast] = ACTIONS(3550), - [anon_sym_downcast] = ACTIONS(3550), - [anon_sym_COLON_GT] = ACTIONS(3548), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_fun] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_match_BANG] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_DOT_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_GT] = ACTIONS(3550), - [anon_sym_use] = ACTIONS(3550), - [anon_sym_use_BANG] = ACTIONS(3548), - [anon_sym_do_BANG] = ACTIONS(3548), - [anon_sym_begin] = ACTIONS(3550), - [anon_sym_LPAREN2] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3550), - [aux_sym_char_token1] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_AT_DQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3548), - [sym_bool] = ACTIONS(3550), - [sym_unit] = ACTIONS(3548), - [anon_sym_LPAREN_PIPE] = ACTIONS(3550), - [sym_op_identifier] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_PLUS_DOT] = ACTIONS(3550), - [anon_sym_DASH_DOT] = ACTIONS(3550), - [anon_sym_PERCENT] = ACTIONS(3550), - [anon_sym_AMP_AMP] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3548), - [aux_sym_prefix_op_token1] = ACTIONS(3550), - [aux_sym_infix_op_token1] = ACTIONS(3548), - [aux_sym_infix_op_token2] = ACTIONS(3550), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_BANG_EQ] = ACTIONS(3550), - [anon_sym_COLON_EQ] = ACTIONS(3548), - [anon_sym_DOLLAR] = ACTIONS(3550), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3550), - [sym_int] = ACTIONS(3550), - [sym_xint] = ACTIONS(3548), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3548), - [sym__newline] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [anon_sym_POUNDendif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [2375] = { [sym_block_comment] = STATE(2375), [sym_compiler_directive_decl] = STATE(2375), [sym_fsi_directive_decl] = STATE(2375), [sym_preproc_line] = STATE(2375), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [2376] = { [sym_block_comment] = STATE(2376), [sym_compiler_directive_decl] = STATE(2376), [sym_fsi_directive_decl] = STATE(2376), [sym_preproc_line] = STATE(2376), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - }, - [2377] = { - [sym_block_comment] = STATE(2377), - [sym_compiler_directive_decl] = STATE(2377), - [sym_fsi_directive_decl] = STATE(2377), - [sym_preproc_line] = STATE(2377), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, - [2378] = { - [sym_block_comment] = STATE(2378), - [sym_compiler_directive_decl] = STATE(2378), - [sym_fsi_directive_decl] = STATE(2378), - [sym_preproc_line] = STATE(2378), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), + [2377] = { + [sym_block_comment] = STATE(2377), + [sym_compiler_directive_decl] = STATE(2377), + [sym_fsi_directive_decl] = STATE(2377), + [sym_preproc_line] = STATE(2377), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), + }, + [2378] = { + [sym_block_comment] = STATE(2378), + [sym_compiler_directive_decl] = STATE(2378), + [sym_fsi_directive_decl] = STATE(2378), + [sym_preproc_line] = STATE(2378), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), + }, + [2379] = { + [sym_block_comment] = STATE(2379), + [sym_compiler_directive_decl] = STATE(2379), + [sym_fsi_directive_decl] = STATE(2379), + [sym_preproc_line] = STATE(2379), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_AT_AT_GT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), + }, + [2380] = { + [sym_block_comment] = STATE(2380), + [sym_compiler_directive_decl] = STATE(2380), + [sym_fsi_directive_decl] = STATE(2380), + [sym_preproc_line] = STATE(2380), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_DOT_DOT] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), + }, + [2381] = { + [sym_block_comment] = STATE(2381), + [sym_compiler_directive_decl] = STATE(2381), + [sym_fsi_directive_decl] = STATE(2381), + [sym_preproc_line] = STATE(2381), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), + }, + [2382] = { + [sym_block_comment] = STATE(2382), + [sym_compiler_directive_decl] = STATE(2382), + [sym_fsi_directive_decl] = STATE(2382), + [sym_preproc_line] = STATE(2382), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [2383] = { + [sym_block_comment] = STATE(2383), + [sym_compiler_directive_decl] = STATE(2383), + [sym_fsi_directive_decl] = STATE(2383), + [sym_preproc_line] = STATE(2383), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [2384] = { + [sym_block_comment] = STATE(2384), + [sym_compiler_directive_decl] = STATE(2384), + [sym_fsi_directive_decl] = STATE(2384), + [sym_preproc_line] = STATE(2384), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3399), @@ -299303,6 +300259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(3399), [anon_sym_LT_AT] = ACTIONS(3399), [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_AT_AT_GT] = ACTIONS(3399), [anon_sym_DOT] = ACTIONS(3399), [anon_sym_LBRACE_PIPE] = ACTIONS(3397), [anon_sym_new] = ACTIONS(3399), @@ -299329,7 +300286,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(3399), [anon_sym_use_BANG] = ACTIONS(3397), [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_DOT_DOT] = ACTIONS(3397), [anon_sym_begin] = ACTIONS(3399), [anon_sym_LPAREN2] = ACTIONS(3399), [anon_sym_or] = ACTIONS(3399), @@ -299361,7 +300317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3399), [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -299370,3507 +300326,2863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3397), [sym__newline] = ACTIONS(3397), }, - [2379] = { - [sym_block_comment] = STATE(2379), - [sym_compiler_directive_decl] = STATE(2379), - [sym_fsi_directive_decl] = STATE(2379), - [sym_preproc_line] = STATE(2379), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_DOT_DOT] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), - }, - [2380] = { - [sym_block_comment] = STATE(2380), - [sym_compiler_directive_decl] = STATE(2380), - [sym_fsi_directive_decl] = STATE(2380), - [sym_preproc_line] = STATE(2380), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [anon_sym_POUNDendif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - }, - [2381] = { - [sym_block_comment] = STATE(2381), - [sym_compiler_directive_decl] = STATE(2381), - [sym_fsi_directive_decl] = STATE(2381), - [sym_preproc_line] = STATE(2381), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4447), - }, - [2382] = { - [sym_block_comment] = STATE(2382), - [sym_compiler_directive_decl] = STATE(2382), - [sym_fsi_directive_decl] = STATE(2382), - [sym_preproc_line] = STATE(2382), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), - }, - [2383] = { - [sym_block_comment] = STATE(2383), - [sym_compiler_directive_decl] = STATE(2383), - [sym_fsi_directive_decl] = STATE(2383), - [sym_preproc_line] = STATE(2383), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [anon_sym_POUNDendif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - }, - [2384] = { - [sym_block_comment] = STATE(2384), - [sym_compiler_directive_decl] = STATE(2384), - [sym_fsi_directive_decl] = STATE(2384), - [sym_preproc_line] = STATE(2384), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [anon_sym_POUNDendif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), - }, [2385] = { [sym_block_comment] = STATE(2385), [sym_compiler_directive_decl] = STATE(2385), [sym_fsi_directive_decl] = STATE(2385), [sym_preproc_line] = STATE(2385), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [anon_sym_POUNDendif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [anon_sym_POUNDendif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [2386] = { [sym_block_comment] = STATE(2386), [sym_compiler_directive_decl] = STATE(2386), [sym_fsi_directive_decl] = STATE(2386), [sym_preproc_line] = STATE(2386), - [sym_identifier] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_do] = ACTIONS(3583), - [anon_sym_let] = ACTIONS(3583), - [anon_sym_let_BANG] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_COLON_QMARK] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LBRACK_PIPE] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_LT_AT] = ACTIONS(3583), - [anon_sym_LT_AT_AT] = ACTIONS(3583), - [anon_sym_AT_AT_GT] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_LBRACE_PIPE] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3583), - [anon_sym_return_BANG] = ACTIONS(3581), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_yield_BANG] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3583), - [anon_sym_assert] = ACTIONS(3583), - [anon_sym_upcast] = ACTIONS(3583), - [anon_sym_downcast] = ACTIONS(3583), - [anon_sym_COLON_GT] = ACTIONS(3581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_fun] = ACTIONS(3583), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_match_BANG] = ACTIONS(3581), - [anon_sym_function] = ACTIONS(3583), - [anon_sym_LT_DASH] = ACTIONS(3583), - [anon_sym_DOT_LBRACK] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), - [anon_sym_use] = ACTIONS(3583), - [anon_sym_use_BANG] = ACTIONS(3581), - [anon_sym_do_BANG] = ACTIONS(3581), - [anon_sym_begin] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_or] = ACTIONS(3583), - [aux_sym_char_token1] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_AT_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3581), - [sym_bool] = ACTIONS(3583), - [sym_unit] = ACTIONS(3581), - [anon_sym_LPAREN_PIPE] = ACTIONS(3583), - [sym_op_identifier] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [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(3581), - [aux_sym_prefix_op_token1] = ACTIONS(3583), - [aux_sym_infix_op_token1] = ACTIONS(3581), - [aux_sym_infix_op_token2] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_COLON_EQ] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3583), - [sym_int] = ACTIONS(3583), - [sym_xint] = ACTIONS(3581), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3581), - [sym__newline] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_AT_AT_GT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), }, [2387] = { [sym_block_comment] = STATE(2387), [sym_compiler_directive_decl] = STATE(2387), [sym_fsi_directive_decl] = STATE(2387), [sym_preproc_line] = STATE(2387), - [sym_identifier] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_let] = ACTIONS(3617), - [anon_sym_let_BANG] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_COLON_QMARK] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LBRACK_PIPE] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LT_AT] = ACTIONS(3617), - [anon_sym_LT_AT_AT] = ACTIONS(3617), - [anon_sym_AT_AT_GT] = ACTIONS(3617), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_LBRACE_PIPE] = ACTIONS(3615), - [anon_sym_new] = ACTIONS(3617), - [anon_sym_return_BANG] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3617), - [anon_sym_yield_BANG] = ACTIONS(3615), - [anon_sym_lazy] = ACTIONS(3617), - [anon_sym_assert] = ACTIONS(3617), - [anon_sym_upcast] = ACTIONS(3617), - [anon_sym_downcast] = ACTIONS(3617), - [anon_sym_COLON_GT] = ACTIONS(3615), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_fun] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3617), - [anon_sym_match] = ACTIONS(3617), - [anon_sym_match_BANG] = ACTIONS(3615), - [anon_sym_function] = ACTIONS(3617), - [anon_sym_LT_DASH] = ACTIONS(3617), - [anon_sym_DOT_LBRACK] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3615), - [anon_sym_use] = ACTIONS(3617), - [anon_sym_use_BANG] = ACTIONS(3615), - [anon_sym_do_BANG] = ACTIONS(3615), - [anon_sym_begin] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_or] = ACTIONS(3617), - [aux_sym_char_token1] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [anon_sym_AT_DQUOTE] = ACTIONS(3615), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3615), - [sym_bool] = ACTIONS(3617), - [sym_unit] = ACTIONS(3615), - [anon_sym_LPAREN_PIPE] = ACTIONS(3617), - [sym_op_identifier] = ACTIONS(3617), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_PLUS_DOT] = ACTIONS(3617), - [anon_sym_DASH_DOT] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3615), - [aux_sym_prefix_op_token1] = ACTIONS(3617), - [aux_sym_infix_op_token1] = ACTIONS(3615), - [aux_sym_infix_op_token2] = ACTIONS(3617), - [anon_sym_PIPE_PIPE] = ACTIONS(3617), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_COLON_EQ] = ACTIONS(3615), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3617), - [sym_int] = ACTIONS(3617), - [sym_xint] = ACTIONS(3615), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3615), - [sym__newline] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_AT_AT_GT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2388] = { [sym_block_comment] = STATE(2388), [sym_compiler_directive_decl] = STATE(2388), [sym_fsi_directive_decl] = STATE(2388), [sym_preproc_line] = STATE(2388), - [sym_identifier] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3622), - [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(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_COLON_QMARK] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LBRACK_PIPE] = ACTIONS(3622), - [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(3622), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_return_BANG] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_yield_BANG] = ACTIONS(3622), - [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(3622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), - [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(3622), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_LT_DASH] = ACTIONS(3624), - [anon_sym_DOT_LBRACK] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3624), - [anon_sym_use_BANG] = ACTIONS(3622), - [anon_sym_do_BANG] = ACTIONS(3622), - [anon_sym_begin] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_or] = ACTIONS(3624), - [aux_sym_char_token1] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_AT_DQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), - [sym_bool] = ACTIONS(3624), - [sym_unit] = ACTIONS(3622), - [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(3622), - [aux_sym_prefix_op_token1] = ACTIONS(3624), - [aux_sym_infix_op_token1] = ACTIONS(3622), - [aux_sym_infix_op_token2] = ACTIONS(3624), - [anon_sym_PIPE_PIPE] = ACTIONS(3624), - [anon_sym_BANG_EQ] = ACTIONS(3624), - [anon_sym_COLON_EQ] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), - [sym_int] = ACTIONS(3624), - [sym_xint] = ACTIONS(3622), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3622), - [sym__newline] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [anon_sym_POUNDendif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [2389] = { [sym_block_comment] = STATE(2389), [sym_compiler_directive_decl] = STATE(2389), [sym_fsi_directive_decl] = STATE(2389), [sym_preproc_line] = STATE(2389), - [sym_identifier] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_let_BANG] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_null] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_LT_AT] = ACTIONS(3636), - [anon_sym_LT_AT_AT] = ACTIONS(3636), - [anon_sym_AT_AT_GT] = ACTIONS(3636), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_LBRACE_PIPE] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_return_BANG] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_yield_BANG] = ACTIONS(3634), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_assert] = ACTIONS(3636), - [anon_sym_upcast] = ACTIONS(3636), - [anon_sym_downcast] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_fun] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_match] = ACTIONS(3636), - [anon_sym_match_BANG] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_LT_DASH] = ACTIONS(3636), - [anon_sym_DOT_LBRACK] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(3636), - [anon_sym_use_BANG] = ACTIONS(3634), - [anon_sym_do_BANG] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [aux_sym_char_token1] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_AT_DQUOTE] = ACTIONS(3634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3634), - [sym_bool] = ACTIONS(3636), - [sym_unit] = ACTIONS(3634), - [anon_sym_LPAREN_PIPE] = ACTIONS(3636), - [sym_op_identifier] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3634), - [aux_sym_prefix_op_token1] = ACTIONS(3636), - [aux_sym_infix_op_token1] = ACTIONS(3634), - [aux_sym_infix_op_token2] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_DOLLAR] = ACTIONS(3636), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3636), - [sym_int] = ACTIONS(3636), - [sym_xint] = ACTIONS(3634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3634), - [sym__newline] = ACTIONS(3634), - }, - [2390] = { - [sym_block_comment] = STATE(2390), - [sym_compiler_directive_decl] = STATE(2390), - [sym_fsi_directive_decl] = STATE(2390), - [sym_preproc_line] = STATE(2390), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_AT_GT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), + [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDendif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [2390] = { + [sym_block_comment] = STATE(2390), + [sym_compiler_directive_decl] = STATE(2390), + [sym_fsi_directive_decl] = STATE(2390), + [sym_preproc_line] = STATE(2390), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_AT_AT_GT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2391] = { [sym_block_comment] = STATE(2391), [sym_compiler_directive_decl] = STATE(2391), [sym_fsi_directive_decl] = STATE(2391), [sym_preproc_line] = STATE(2391), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_DOT] = 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_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_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(3405), - [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(3407), - [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(3407), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2392] = { [sym_block_comment] = STATE(2392), [sym_compiler_directive_decl] = STATE(2392), [sym_fsi_directive_decl] = STATE(2392), [sym_preproc_line] = STATE(2392), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2393] = { [sym_block_comment] = STATE(2393), [sym_compiler_directive_decl] = STATE(2393), [sym_fsi_directive_decl] = STATE(2393), [sym_preproc_line] = STATE(2393), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_AT_GT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, [2394] = { [sym_block_comment] = STATE(2394), [sym_compiler_directive_decl] = STATE(2394), [sym_fsi_directive_decl] = STATE(2394), [sym_preproc_line] = STATE(2394), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_AT_GT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [2395] = { [sym_block_comment] = STATE(2395), [sym_compiler_directive_decl] = STATE(2395), [sym_fsi_directive_decl] = STATE(2395), [sym_preproc_line] = STATE(2395), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_AT_GT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_DOT_DOT] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, [2396] = { [sym_block_comment] = STATE(2396), [sym_compiler_directive_decl] = STATE(2396), [sym_fsi_directive_decl] = STATE(2396), [sym_preproc_line] = STATE(2396), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_AT_GT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [2397] = { [sym_block_comment] = STATE(2397), [sym_compiler_directive_decl] = STATE(2397), [sym_fsi_directive_decl] = STATE(2397), [sym_preproc_line] = STATE(2397), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_AT_AT_GT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_COLON_QMARK] = ACTIONS(3717), + [anon_sym_COLON_COLON] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3717), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_COLON_GT] = ACTIONS(3715), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_LT_DASH] = ACTIONS(3717), + [anon_sym_DOT_LBRACK] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(3717), + [anon_sym_or] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3717), + [anon_sym_DASH_DOT] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3717), + [aux_sym_infix_op_token1] = ACTIONS(3715), + [aux_sym_infix_op_token2] = ACTIONS(3717), + [anon_sym_PIPE_PIPE] = ACTIONS(3717), + [anon_sym_BANG_EQ] = ACTIONS(3717), + [anon_sym_COLON_EQ] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3717), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + [sym__newline] = ACTIONS(3715), }, [2398] = { [sym_block_comment] = STATE(2398), [sym_compiler_directive_decl] = STATE(2398), [sym_fsi_directive_decl] = STATE(2398), [sym_preproc_line] = STATE(2398), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_AT_AT_GT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_AT_AT_GT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [2399] = { [sym_block_comment] = STATE(2399), [sym_compiler_directive_decl] = STATE(2399), [sym_fsi_directive_decl] = STATE(2399), [sym_preproc_line] = STATE(2399), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_AT_AT_GT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [2400] = { [sym_block_comment] = STATE(2400), [sym_compiler_directive_decl] = STATE(2400), [sym_fsi_directive_decl] = STATE(2400), [sym_preproc_line] = STATE(2400), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_AT_GT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_AT_AT_GT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [2401] = { [sym_block_comment] = STATE(2401), [sym_compiler_directive_decl] = STATE(2401), [sym_fsi_directive_decl] = STATE(2401), [sym_preproc_line] = STATE(2401), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_AT_AT_GT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_AT_AT_GT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [2402] = { [sym_block_comment] = STATE(2402), [sym_compiler_directive_decl] = STATE(2402), [sym_fsi_directive_decl] = STATE(2402), [sym_preproc_line] = STATE(2402), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_open] = ACTIONS(3066), - [anon_sym_LBRACK_LT] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_and] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [aux_sym_access_modifier_token1] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_member] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_exception] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_val] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3068), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3068), - [anon_sym_POUNDload] = ACTIONS(3068), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [anon_sym_POUNDendif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2403] = { [sym_block_comment] = STATE(2403), [sym_compiler_directive_decl] = STATE(2403), [sym_fsi_directive_decl] = STATE(2403), [sym_preproc_line] = STATE(2403), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_AT_AT_GT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [anon_sym_COLON] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_do] = ACTIONS(3719), + [anon_sym_let] = ACTIONS(3719), + [anon_sym_let_BANG] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_COMMA] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3719), + [anon_sym_QMARK] = ACTIONS(3719), + [anon_sym_COLON_QMARK] = ACTIONS(3719), + [anon_sym_COLON_COLON] = ACTIONS(3721), + [anon_sym_AMP] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LBRACK_PIPE] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3719), + [anon_sym_LT_AT] = ACTIONS(3719), + [anon_sym_LT_AT_AT] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3719), + [anon_sym_LBRACE_PIPE] = ACTIONS(3721), + [anon_sym_new] = ACTIONS(3719), + [anon_sym_return_BANG] = ACTIONS(3721), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_yield_BANG] = ACTIONS(3721), + [anon_sym_lazy] = ACTIONS(3719), + [anon_sym_assert] = ACTIONS(3719), + [anon_sym_upcast] = ACTIONS(3719), + [anon_sym_downcast] = ACTIONS(3719), + [anon_sym_COLON_GT] = ACTIONS(3721), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3719), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_match_BANG] = ACTIONS(3721), + [anon_sym_function] = ACTIONS(3719), + [anon_sym_LT_DASH] = ACTIONS(3719), + [anon_sym_DOT_LBRACK] = ACTIONS(3721), + [anon_sym_LT] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3719), + [anon_sym_use_BANG] = ACTIONS(3721), + [anon_sym_do_BANG] = ACTIONS(3721), + [anon_sym_begin] = ACTIONS(3719), + [anon_sym_LPAREN2] = ACTIONS(3719), + [anon_sym_or] = ACTIONS(3719), + [aux_sym_char_token1] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(3719), + [anon_sym_AT_DQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), + [sym_bool] = ACTIONS(3719), + [sym_unit] = ACTIONS(3721), + [anon_sym_LPAREN_PIPE] = ACTIONS(3719), + [sym_op_identifier] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(3719), + [anon_sym_DASH] = ACTIONS(3719), + [anon_sym_PLUS_DOT] = ACTIONS(3719), + [anon_sym_DASH_DOT] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3719), + [anon_sym_TILDE] = ACTIONS(3721), + [aux_sym_prefix_op_token1] = ACTIONS(3719), + [aux_sym_infix_op_token1] = ACTIONS(3721), + [aux_sym_infix_op_token2] = ACTIONS(3719), + [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_COLON_EQ] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3719), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3719), + [sym_int] = ACTIONS(3719), + [sym_xint] = ACTIONS(3721), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3721), + [anon_sym_POUNDendif] = ACTIONS(3721), + [sym__newline] = ACTIONS(3721), }, [2404] = { [sym_block_comment] = STATE(2404), [sym_compiler_directive_decl] = STATE(2404), [sym_fsi_directive_decl] = STATE(2404), [sym_preproc_line] = STATE(2404), - [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), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_AT_AT_GT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [2405] = { [sym_block_comment] = STATE(2405), [sym_compiler_directive_decl] = STATE(2405), [sym_fsi_directive_decl] = STATE(2405), [sym_preproc_line] = STATE(2405), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_AT_AT_GT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [anon_sym_POUNDendif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2406] = { [sym_block_comment] = STATE(2406), [sym_compiler_directive_decl] = STATE(2406), [sym_fsi_directive_decl] = STATE(2406), [sym_preproc_line] = STATE(2406), - [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_SEMI] = ACTIONS(3), - [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(3726), - [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(3728), - [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(3728), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3728), - [sym__newline] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [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(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_PIPE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_LT_AT] = ACTIONS(3461), + [anon_sym_LT_AT_AT] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_return_BANG] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_yield_BANG] = ACTIONS(3459), + [anon_sym_lazy] = ACTIONS(3461), + [anon_sym_assert] = ACTIONS(3461), + [anon_sym_upcast] = ACTIONS(3461), + [anon_sym_downcast] = ACTIONS(3461), + [anon_sym_COLON_GT] = ACTIONS(3459), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), + [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(3459), + [anon_sym_function] = ACTIONS(3461), + [anon_sym_LT_DASH] = ACTIONS(3461), + [anon_sym_DOT_LBRACK] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_use] = ACTIONS(3461), + [anon_sym_use_BANG] = ACTIONS(3459), + [anon_sym_do_BANG] = ACTIONS(3459), + [anon_sym_begin] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [aux_sym_char_token1] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [anon_sym_AT_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), + [sym_bool] = ACTIONS(3461), + [sym_unit] = ACTIONS(3459), + [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(3459), + [aux_sym_prefix_op_token1] = ACTIONS(3461), + [aux_sym_infix_op_token1] = ACTIONS(3459), + [aux_sym_infix_op_token2] = ACTIONS(3461), + [anon_sym_PIPE_PIPE] = ACTIONS(3461), + [anon_sym_BANG_EQ] = ACTIONS(3461), + [anon_sym_COLON_EQ] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), + [sym_int] = ACTIONS(3461), + [sym_xint] = ACTIONS(3459), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3459), + [anon_sym_POUNDendif] = ACTIONS(3459), + [sym__newline] = ACTIONS(3459), }, [2407] = { [sym_block_comment] = STATE(2407), [sym_compiler_directive_decl] = STATE(2407), [sym_fsi_directive_decl] = STATE(2407), [sym_preproc_line] = STATE(2407), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_GT] = ACTIONS(3545), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [2408] = { [sym_block_comment] = STATE(2408), [sym_compiler_directive_decl] = STATE(2408), [sym_fsi_directive_decl] = STATE(2408), [sym_preproc_line] = STATE(2408), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_DOT_DOT] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_let_BANG] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_COMMA] = ACTIONS(3447), + [anon_sym_null] = ACTIONS(3449), + [anon_sym_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LBRACK_PIPE] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LT_AT] = ACTIONS(3449), + [anon_sym_LT_AT_AT] = ACTIONS(3449), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_return_BANG] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_yield_BANG] = ACTIONS(3447), + [anon_sym_lazy] = ACTIONS(3449), + [anon_sym_assert] = ACTIONS(3449), + [anon_sym_upcast] = ACTIONS(3449), + [anon_sym_downcast] = ACTIONS(3449), + [anon_sym_COLON_GT] = ACTIONS(3447), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_fun] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_match] = ACTIONS(3449), + [anon_sym_match_BANG] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_LT_DASH] = ACTIONS(3449), + [anon_sym_DOT_LBRACK] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_use] = ACTIONS(3449), + [anon_sym_use_BANG] = ACTIONS(3447), + [anon_sym_do_BANG] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_or] = ACTIONS(3449), + [aux_sym_char_token1] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_AT_DQUOTE] = ACTIONS(3447), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), + [sym_bool] = ACTIONS(3449), + [sym_unit] = ACTIONS(3447), + [anon_sym_LPAREN_PIPE] = ACTIONS(3449), + [sym_op_identifier] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS_DOT] = ACTIONS(3449), + [anon_sym_DASH_DOT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3447), + [aux_sym_prefix_op_token1] = ACTIONS(3449), + [aux_sym_infix_op_token1] = ACTIONS(3447), + [aux_sym_infix_op_token2] = ACTIONS(3449), + [anon_sym_PIPE_PIPE] = ACTIONS(3449), + [anon_sym_BANG_EQ] = ACTIONS(3449), + [anon_sym_COLON_EQ] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3449), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(3447), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3447), + [anon_sym_POUNDendif] = ACTIONS(3447), + [sym__newline] = ACTIONS(3447), }, [2409] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2409), [sym_compiler_directive_decl] = STATE(2409), [sym_fsi_directive_decl] = STATE(2409), [sym_preproc_line] = STATE(2409), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4449), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(4451), - [anon_sym_module] = ACTIONS(4451), - [anon_sym_open] = ACTIONS(4451), - [anon_sym_LBRACK_LT] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4451), - [anon_sym_type] = ACTIONS(4451), - [anon_sym_do] = ACTIONS(4451), - [anon_sym_and] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4451), - [anon_sym_let_BANG] = ACTIONS(4449), - [aux_sym_access_modifier_token1] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_null] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(4451), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_LBRACK_PIPE] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_LT_AT] = ACTIONS(4451), - [anon_sym_LT_AT_AT] = ACTIONS(4449), - [anon_sym_LBRACE_PIPE] = ACTIONS(4449), - [anon_sym_with] = ACTIONS(4451), - [anon_sym_new] = ACTIONS(4451), - [anon_sym_return_BANG] = ACTIONS(4449), - [anon_sym_yield] = ACTIONS(4451), - [anon_sym_yield_BANG] = ACTIONS(4449), - [anon_sym_lazy] = ACTIONS(4451), - [anon_sym_assert] = ACTIONS(4451), - [anon_sym_upcast] = ACTIONS(4451), - [anon_sym_downcast] = ACTIONS(4451), - [anon_sym_for] = ACTIONS(4451), - [anon_sym_while] = ACTIONS(4451), - [anon_sym_if] = ACTIONS(4451), - [anon_sym_fun] = ACTIONS(4451), - [anon_sym_DASH_GT] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4451), - [anon_sym_match] = ACTIONS(4451), - [anon_sym_match_BANG] = ACTIONS(4449), - [anon_sym_function] = ACTIONS(4451), - [anon_sym_use] = ACTIONS(4451), - [anon_sym_use_BANG] = ACTIONS(4449), - [anon_sym_do_BANG] = ACTIONS(4449), - [anon_sym_begin] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4453), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4451), - [anon_sym_static] = ACTIONS(4451), - [anon_sym_member] = ACTIONS(4451), - [anon_sym_exception] = ACTIONS(4451), - [anon_sym_abstract] = ACTIONS(4451), - [anon_sym_override] = ACTIONS(4451), - [anon_sym_val] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(4451), - [anon_sym_AT_DQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4449), - [sym_bool] = ACTIONS(4451), - [sym_unit] = ACTIONS(4449), - [anon_sym_LPAREN_PIPE] = ACTIONS(4451), - [sym_op_identifier] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_PLUS_DOT] = ACTIONS(4449), - [anon_sym_DASH_DOT] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_AMP_AMP] = ACTIONS(4449), - [anon_sym_TILDE] = ACTIONS(4449), - [aux_sym_prefix_op_token1] = ACTIONS(4449), - [sym_int] = ACTIONS(4451), - [sym_xint] = ACTIONS(4449), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4449), - [anon_sym_POUNDload] = ACTIONS(4449), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4449), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [2410] = { [sym_block_comment] = STATE(2410), [sym_compiler_directive_decl] = STATE(2410), [sym_fsi_directive_decl] = STATE(2410), [sym_preproc_line] = STATE(2410), - [sym_identifier] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_return] = ACTIONS(3669), - [anon_sym_do] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_let_BANG] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3669), - [anon_sym_COLON_QMARK] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(3559), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_let_BANG] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_COMMA] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3561), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3561), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_LBRACK_PIPE] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LT_AT] = ACTIONS(3669), - [anon_sym_LT_AT_AT] = ACTIONS(3669), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_LBRACE_PIPE] = ACTIONS(3671), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3669), - [anon_sym_yield_BANG] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_assert] = ACTIONS(3669), - [anon_sym_upcast] = ACTIONS(3669), - [anon_sym_downcast] = ACTIONS(3669), - [anon_sym_COLON_GT] = ACTIONS(3671), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3669), - [anon_sym_while] = ACTIONS(3669), - [anon_sym_if] = ACTIONS(3669), - [anon_sym_fun] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3669), - [anon_sym_match] = ACTIONS(3669), - [anon_sym_match_BANG] = ACTIONS(3671), - [anon_sym_function] = ACTIONS(3669), - [anon_sym_LT_DASH] = ACTIONS(3669), - [anon_sym_DOT_LBRACK] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_use] = ACTIONS(3669), - [anon_sym_use_BANG] = ACTIONS(3671), - [anon_sym_do_BANG] = ACTIONS(3671), - [anon_sym_begin] = ACTIONS(3669), - [anon_sym_LPAREN2] = ACTIONS(3669), - [anon_sym_or] = ACTIONS(3669), - [aux_sym_char_token1] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [anon_sym_AT_DQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), - [sym_bool] = ACTIONS(3669), - [sym_unit] = ACTIONS(3671), - [anon_sym_LPAREN_PIPE] = ACTIONS(3669), - [sym_op_identifier] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_PLUS_DOT] = ACTIONS(3669), - [anon_sym_DASH_DOT] = ACTIONS(3669), - [anon_sym_PERCENT] = ACTIONS(3669), - [anon_sym_AMP_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3671), - [aux_sym_prefix_op_token1] = ACTIONS(3669), - [aux_sym_infix_op_token1] = ACTIONS(3671), - [aux_sym_infix_op_token2] = ACTIONS(3669), - [anon_sym_PIPE_PIPE] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3669), - [anon_sym_COLON_EQ] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), - [sym_int] = ACTIONS(3669), - [sym_xint] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LBRACK_PIPE] = ACTIONS(3559), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_LT_AT] = ACTIONS(3561), + [anon_sym_LT_AT_AT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_LBRACE_PIPE] = ACTIONS(3559), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_return_BANG] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_yield_BANG] = ACTIONS(3559), + [anon_sym_lazy] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(3561), + [anon_sym_upcast] = ACTIONS(3561), + [anon_sym_downcast] = ACTIONS(3561), + [anon_sym_COLON_GT] = ACTIONS(3559), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_fun] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_match] = ACTIONS(3561), + [anon_sym_match_BANG] = ACTIONS(3559), + [anon_sym_function] = ACTIONS(3561), + [anon_sym_LT_DASH] = ACTIONS(3561), + [anon_sym_DOT_LBRACK] = ACTIONS(3559), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_use] = ACTIONS(3561), + [anon_sym_use_BANG] = ACTIONS(3559), + [anon_sym_do_BANG] = ACTIONS(3559), + [anon_sym_begin] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3561), + [anon_sym_or] = ACTIONS(3561), + [aux_sym_char_token1] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [anon_sym_AT_DQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3559), + [sym_bool] = ACTIONS(3561), + [sym_unit] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(3561), + [sym_op_identifier] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS_DOT] = ACTIONS(3561), + [anon_sym_DASH_DOT] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_AMP_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3559), + [aux_sym_prefix_op_token1] = ACTIONS(3561), + [aux_sym_infix_op_token1] = ACTIONS(3559), + [aux_sym_infix_op_token2] = ACTIONS(3561), + [anon_sym_PIPE_PIPE] = ACTIONS(3561), + [anon_sym_BANG_EQ] = ACTIONS(3561), + [anon_sym_COLON_EQ] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), + [sym_int] = ACTIONS(3561), + [sym_xint] = ACTIONS(3559), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3671), - [sym__newline] = ACTIONS(3671), + [anon_sym_POUNDif] = ACTIONS(3559), + [anon_sym_POUNDendif] = ACTIONS(3559), + [sym__newline] = ACTIONS(3559), }, [2411] = { [sym_block_comment] = STATE(2411), [sym_compiler_directive_decl] = STATE(2411), [sym_fsi_directive_decl] = STATE(2411), [sym_preproc_line] = STATE(2411), - [aux_sym_long_identifier_repeat1] = STATE(2414), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_module] = ACTIONS(2973), - [anon_sym_open] = ACTIONS(2973), - [anon_sym_LBRACK_LT] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_and] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [aux_sym_access_modifier_token1] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(4455), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_member] = ACTIONS(2973), - [anon_sym_interface] = ACTIONS(2973), - [anon_sym_exception] = ACTIONS(2973), - [anon_sym_abstract] = ACTIONS(2973), - [anon_sym_override] = ACTIONS(2973), - [anon_sym_val] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_open] = ACTIONS(3046), + [anon_sym_LBRACK_LT] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_and] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [aux_sym_access_modifier_token1] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3044), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_member] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_exception] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_val] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3044), + [anon_sym_DASH_DOT] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3044), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2971), - [anon_sym_POUNDload] = ACTIONS(2971), + [anon_sym_POUNDr] = ACTIONS(3044), + [anon_sym_POUNDload] = ACTIONS(3044), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), + [anon_sym_POUNDif] = ACTIONS(3044), }, [2412] = { [sym_block_comment] = STATE(2412), [sym_compiler_directive_decl] = STATE(2412), [sym_fsi_directive_decl] = STATE(2412), [sym_preproc_line] = STATE(2412), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_AT_GT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [2413] = { [sym_block_comment] = STATE(2413), [sym_compiler_directive_decl] = STATE(2413), [sym_fsi_directive_decl] = STATE(2413), [sym_preproc_line] = STATE(2413), - [sym_identifier] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_return] = ACTIONS(3665), - [anon_sym_do] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_let_BANG] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_null] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_COLON_QMARK] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LBRACK_PIPE] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_LT_AT] = ACTIONS(3665), - [anon_sym_LT_AT_AT] = ACTIONS(3665), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_LBRACE_PIPE] = ACTIONS(3667), - [anon_sym_new] = ACTIONS(3665), - [anon_sym_return_BANG] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3665), - [anon_sym_yield_BANG] = ACTIONS(3667), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_assert] = ACTIONS(3665), - [anon_sym_upcast] = ACTIONS(3665), - [anon_sym_downcast] = ACTIONS(3665), - [anon_sym_COLON_GT] = ACTIONS(3667), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3665), - [anon_sym_while] = ACTIONS(3665), - [anon_sym_if] = ACTIONS(3665), - [anon_sym_fun] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3665), - [anon_sym_match] = ACTIONS(3665), - [anon_sym_match_BANG] = ACTIONS(3667), - [anon_sym_function] = ACTIONS(3665), - [anon_sym_LT_DASH] = ACTIONS(3665), - [anon_sym_DOT_LBRACK] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_GT] = ACTIONS(3665), - [anon_sym_use] = ACTIONS(3665), - [anon_sym_use_BANG] = ACTIONS(3667), - [anon_sym_do_BANG] = ACTIONS(3667), - [anon_sym_begin] = ACTIONS(3665), - [anon_sym_LPAREN2] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3665), - [aux_sym_char_token1] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [anon_sym_AT_DQUOTE] = ACTIONS(3667), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3667), - [sym_bool] = ACTIONS(3665), - [sym_unit] = ACTIONS(3667), - [anon_sym_LPAREN_PIPE] = ACTIONS(3665), - [sym_op_identifier] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_PLUS_DOT] = ACTIONS(3665), - [anon_sym_DASH_DOT] = ACTIONS(3665), - [anon_sym_PERCENT] = ACTIONS(3665), - [anon_sym_AMP_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3667), - [aux_sym_prefix_op_token1] = ACTIONS(3665), - [aux_sym_infix_op_token1] = ACTIONS(3667), - [aux_sym_infix_op_token2] = ACTIONS(3665), - [anon_sym_PIPE_PIPE] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3665), - [anon_sym_COLON_EQ] = ACTIONS(3667), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3665), - [sym_int] = ACTIONS(3665), - [sym_xint] = ACTIONS(3667), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3667), - [sym__newline] = ACTIONS(3667), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), }, [2414] = { [sym_block_comment] = STATE(2414), [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(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_and] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [aux_sym_access_modifier_token1] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_member] = ACTIONS(2988), - [anon_sym_interface] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [anon_sym_abstract] = ACTIONS(2988), - [anon_sym_override] = ACTIONS(2988), - [anon_sym_val] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4470), }, [2415] = { [sym_block_comment] = STATE(2415), [sym_compiler_directive_decl] = STATE(2415), [sym_fsi_directive_decl] = STATE(2415), [sym_preproc_line] = STATE(2415), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [anon_sym_POUNDendif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_GT] = ACTIONS(3549), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2416] = { [sym_block_comment] = STATE(2416), [sym_compiler_directive_decl] = STATE(2416), [sym_fsi_directive_decl] = STATE(2416), [sym_preproc_line] = STATE(2416), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), - }, - [2417] = { - [sym_block_comment] = STATE(2417), - [sym_compiler_directive_decl] = STATE(2417), - [sym_fsi_directive_decl] = STATE(2417), - [sym_preproc_line] = STATE(2417), [sym_identifier] = ACTIONS(2528), [anon_sym_EQ] = ACTIONS(2526), [anon_sym_COLON] = ACTIONS(2528), @@ -302917,6 +303229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_use_BANG] = ACTIONS(2526), [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), [anon_sym_begin] = ACTIONS(2528), [anon_sym_LPAREN2] = ACTIONS(2528), [anon_sym_or] = ACTIONS(2528), @@ -302948,198 +303261,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), - [anon_sym_POUNDendif] = ACTIONS(2526), [sym__newline] = ACTIONS(2526), }, + [2417] = { + [sym_block_comment] = STATE(2417), + [sym_compiler_directive_decl] = STATE(2417), + [sym_fsi_directive_decl] = STATE(2417), + [sym_preproc_line] = STATE(2417), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), + }, [2418] = { [sym_block_comment] = STATE(2418), [sym_compiler_directive_decl] = STATE(2418), [sym_fsi_directive_decl] = STATE(2418), [sym_preproc_line] = STATE(2418), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_do] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_let_BANG] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_COLON_QMARK] = ACTIONS(3669), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_AT_AT_GT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LBRACK_PIPE] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_LT_AT] = ACTIONS(3669), + [anon_sym_LT_AT_AT] = ACTIONS(3669), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3671), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_return_BANG] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_yield_BANG] = ACTIONS(3671), + [anon_sym_lazy] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_upcast] = ACTIONS(3669), + [anon_sym_downcast] = ACTIONS(3669), + [anon_sym_COLON_GT] = ACTIONS(3671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_match_BANG] = ACTIONS(3671), + [anon_sym_function] = ACTIONS(3669), + [anon_sym_LT_DASH] = ACTIONS(3669), + [anon_sym_DOT_LBRACK] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_use] = ACTIONS(3669), + [anon_sym_use_BANG] = ACTIONS(3671), + [anon_sym_do_BANG] = ACTIONS(3671), + [anon_sym_begin] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [aux_sym_char_token1] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [anon_sym_AT_DQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3671), + [sym_bool] = ACTIONS(3669), + [sym_unit] = ACTIONS(3671), + [anon_sym_LPAREN_PIPE] = ACTIONS(3669), + [sym_op_identifier] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_PLUS_DOT] = ACTIONS(3669), + [anon_sym_DASH_DOT] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3671), + [aux_sym_prefix_op_token1] = ACTIONS(3669), + [aux_sym_infix_op_token1] = ACTIONS(3671), + [aux_sym_infix_op_token2] = ACTIONS(3669), + [anon_sym_PIPE_PIPE] = ACTIONS(3669), + [anon_sym_BANG_EQ] = ACTIONS(3669), + [anon_sym_COLON_EQ] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3669), + [sym_int] = ACTIONS(3669), + [sym_xint] = ACTIONS(3671), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), + [anon_sym_POUNDif] = ACTIONS(3671), + [anon_sym_POUNDendif] = ACTIONS(3671), + [sym__newline] = ACTIONS(3671), }, [2419] = { [sym_block_comment] = STATE(2419), [sym_compiler_directive_decl] = STATE(2419), [sym_fsi_directive_decl] = STATE(2419), [sym_preproc_line] = STATE(2419), - [sym_identifier] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3605), [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3605), [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3605), [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3605), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3605), [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_LT_AT] = ACTIONS(3605), + [anon_sym_LT_AT_AT] = ACTIONS(3605), + [anon_sym_DOT] = ACTIONS(3605), [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3605), [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3605), [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3605), + [anon_sym_assert] = ACTIONS(3605), + [anon_sym_upcast] = ACTIONS(3605), + [anon_sym_downcast] = ACTIONS(3605), [anon_sym_COLON_GT] = ACTIONS(3607), [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_fun] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_match] = ACTIONS(3605), [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3605), + [anon_sym_LT_DASH] = ACTIONS(3605), [anon_sym_DOT_LBRACK] = ACTIONS(3607), [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3605), [anon_sym_use_BANG] = ACTIONS(3607), [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_DOT_DOT] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_or] = ACTIONS(3605), [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), [anon_sym_AT_DQUOTE] = ACTIONS(3607), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), + [sym_bool] = ACTIONS(3605), [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3605), + [sym_op_identifier] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS_DOT] = ACTIONS(3605), + [anon_sym_DASH_DOT] = ACTIONS(3605), + [anon_sym_PERCENT] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3605), [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3605), + [anon_sym_PIPE_PIPE] = ACTIONS(3605), + [anon_sym_BANG_EQ] = ACTIONS(3605), [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), + [sym_int] = ACTIONS(3605), [sym_xint] = ACTIONS(3607), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3607), + [anon_sym_POUNDendif] = ACTIONS(3607), [sym__newline] = ACTIONS(3607), }, [2420] = { @@ -303147,282 +303551,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2420), [sym_fsi_directive_decl] = STATE(2420), [sym_preproc_line] = STATE(2420), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [2421] = { [sym_block_comment] = STATE(2421), [sym_compiler_directive_decl] = STATE(2421), [sym_fsi_directive_decl] = STATE(2421), [sym_preproc_line] = STATE(2421), - [sym_identifier] = ACTIONS(3509), - [anon_sym_EQ] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_let_BANG] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_COLON_QMARK] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LT_AT] = ACTIONS(3509), - [anon_sym_LT_AT_AT] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LBRACE_PIPE] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_return_BANG] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3509), - [anon_sym_yield_BANG] = ACTIONS(3507), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_assert] = ACTIONS(3509), - [anon_sym_upcast] = ACTIONS(3509), - [anon_sym_downcast] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3509), - [anon_sym_while] = ACTIONS(3509), - [anon_sym_if] = ACTIONS(3509), - [anon_sym_fun] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3509), - [anon_sym_match] = ACTIONS(3509), - [anon_sym_match_BANG] = ACTIONS(3507), - [anon_sym_function] = ACTIONS(3509), - [anon_sym_LT_DASH] = ACTIONS(3509), - [anon_sym_DOT_LBRACK] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_use] = ACTIONS(3509), - [anon_sym_use_BANG] = ACTIONS(3507), - [anon_sym_do_BANG] = ACTIONS(3507), - [anon_sym_DOT_DOT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [aux_sym_char_token1] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [anon_sym_AT_DQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3507), - [sym_bool] = ACTIONS(3509), - [sym_unit] = ACTIONS(3507), - [anon_sym_LPAREN_PIPE] = ACTIONS(3509), - [sym_op_identifier] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3507), - [aux_sym_prefix_op_token1] = ACTIONS(3509), - [aux_sym_infix_op_token1] = ACTIONS(3507), - [aux_sym_infix_op_token2] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3509), - [sym_int] = ACTIONS(3509), - [sym_xint] = ACTIONS(3507), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), - }, - [2422] = { - [sym_block_comment] = STATE(2422), - [sym_compiler_directive_decl] = STATE(2422), - [sym_fsi_directive_decl] = STATE(2422), - [sym_preproc_line] = STATE(2422), - [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3539), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), - [aux_sym_infix_op_token2] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [anon_sym_POUNDendif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - }, - [2423] = { - [sym_block_comment] = STATE(2423), - [sym_compiler_directive_decl] = STATE(2423), - [sym_fsi_directive_decl] = STATE(2423), - [sym_preproc_line] = STATE(2423), [sym_identifier] = ACTIONS(3675), [anon_sym_EQ] = ACTIONS(3673), [anon_sym_COLON] = ACTIONS(3675), @@ -303501,7 +303721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3675), [sym_xint] = ACTIONS(3673), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -303510,1449 +303730,1265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3673), [sym__newline] = ACTIONS(3673), }, - [2424] = { - [sym_block_comment] = STATE(2424), - [sym_compiler_directive_decl] = STATE(2424), - [sym_fsi_directive_decl] = STATE(2424), - [sym_preproc_line] = STATE(2424), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), + [2422] = { + [sym_block_comment] = STATE(2422), + [sym_compiler_directive_decl] = STATE(2422), + [sym_fsi_directive_decl] = STATE(2422), + [sym_preproc_line] = STATE(2422), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [anon_sym_POUNDendif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4472), + }, + [2423] = { + [sym_block_comment] = STATE(2423), + [sym_compiler_directive_decl] = STATE(2423), + [sym_fsi_directive_decl] = STATE(2423), + [sym_preproc_line] = STATE(2423), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_GT] = ACTIONS(3475), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), + }, + [2424] = { + [sym_block_comment] = STATE(2424), + [sym_compiler_directive_decl] = STATE(2424), + [sym_fsi_directive_decl] = STATE(2424), + [sym_preproc_line] = STATE(2424), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_GT] = ACTIONS(3592), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2425] = { [sym_block_comment] = STATE(2425), [sym_compiler_directive_decl] = STATE(2425), [sym_fsi_directive_decl] = STATE(2425), [sym_preproc_line] = STATE(2425), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3453), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_let_BANG] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_COMMA] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3453), + [anon_sym_QMARK] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LT_AT] = ACTIONS(3453), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_return_BANG] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_yield_BANG] = ACTIONS(3451), + [anon_sym_lazy] = ACTIONS(3453), + [anon_sym_assert] = ACTIONS(3453), + [anon_sym_upcast] = ACTIONS(3453), + [anon_sym_downcast] = ACTIONS(3453), + [anon_sym_COLON_GT] = ACTIONS(3451), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_fun] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_match] = ACTIONS(3453), + [anon_sym_match_BANG] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_LT_DASH] = ACTIONS(3453), + [anon_sym_DOT_LBRACK] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3453), + [anon_sym_use_BANG] = ACTIONS(3451), + [anon_sym_do_BANG] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [anon_sym_begin] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3453), + [aux_sym_char_token1] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_AT_DQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3451), + [sym_bool] = ACTIONS(3453), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3453), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [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(3451), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token2] = ACTIONS(3453), + [anon_sym_PIPE_PIPE] = ACTIONS(3453), + [anon_sym_BANG_EQ] = ACTIONS(3453), + [anon_sym_COLON_EQ] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3453), + [sym_int] = ACTIONS(3453), + [sym_xint] = ACTIONS(3451), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3451), + [sym__newline] = ACTIONS(3451), }, [2426] = { [sym_block_comment] = STATE(2426), [sym_compiler_directive_decl] = STATE(2426), [sym_fsi_directive_decl] = STATE(2426), [sym_preproc_line] = STATE(2426), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [anon_sym_POUNDendif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_COLON_QMARK] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_lazy] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_upcast] = ACTIONS(3419), + [anon_sym_downcast] = ACTIONS(3419), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_fun] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_LT_DASH] = ACTIONS(3419), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_GT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3419), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_begin] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3419), + [aux_sym_char_token1] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [sym_bool] = ACTIONS(3419), + [sym_unit] = ACTIONS(3421), + [anon_sym_LPAREN_PIPE] = ACTIONS(3419), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [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(3421), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token2] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3419), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), + [sym_int] = ACTIONS(3419), + [sym_xint] = ACTIONS(3421), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, [2427] = { [sym_block_comment] = STATE(2427), [sym_compiler_directive_decl] = STATE(2427), [sym_fsi_directive_decl] = STATE(2427), [sym_preproc_line] = STATE(2427), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [anon_sym_POUNDendif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_QMARK] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3667), + [anon_sym_AT_AT_GT] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_COLON_GT] = ACTIONS(3665), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_LT_DASH] = ACTIONS(3667), + [anon_sym_DOT_LBRACK] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_or] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3667), + [anon_sym_DASH_DOT] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_AMP_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3667), + [aux_sym_infix_op_token1] = ACTIONS(3665), + [aux_sym_infix_op_token2] = ACTIONS(3667), + [anon_sym_PIPE_PIPE] = ACTIONS(3667), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_COLON_EQ] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3667), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3665), + [sym__newline] = ACTIONS(3665), }, [2428] = { [sym_block_comment] = STATE(2428), [sym_compiler_directive_decl] = STATE(2428), [sym_fsi_directive_decl] = STATE(2428), [sym_preproc_line] = STATE(2428), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [anon_sym_POUNDendif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3403), + [anon_sym_POUNDendif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [2429] = { [sym_block_comment] = STATE(2429), [sym_compiler_directive_decl] = STATE(2429), [sym_fsi_directive_decl] = STATE(2429), [sym_preproc_line] = STATE(2429), - [sym_identifier] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3543), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(3543), - [anon_sym_DOT_LBRACK] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_DOT_DOT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3543), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token2] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3543), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LBRACK_PIPE] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LT_AT] = ACTIONS(3405), + [anon_sym_LT_AT_AT] = ACTIONS(3405), + [anon_sym_DOT] = 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_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_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(3405), + [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(3407), + [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(3407), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3541), - [sym__newline] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3407), + [anon_sym_POUNDendif] = ACTIONS(3407), + [sym__newline] = ACTIONS(3407), }, [2430] = { [sym_block_comment] = STATE(2430), [sym_compiler_directive_decl] = STATE(2430), [sym_fsi_directive_decl] = STATE(2430), [sym_preproc_line] = STATE(2430), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3239), + [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(3239), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), + [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(3239), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3239), + [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(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), + [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(3239), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3533), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3239), + [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(3239), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3239), + [aux_sym_infix_op_token2] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [anon_sym_POUNDendif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [2431] = { [sym_block_comment] = STATE(2431), [sym_compiler_directive_decl] = STATE(2431), [sym_fsi_directive_decl] = STATE(2431), [sym_preproc_line] = STATE(2431), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [anon_sym_POUNDendif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_AT_GT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), }, [2432] = { [sym_block_comment] = STATE(2432), [sym_compiler_directive_decl] = STATE(2432), [sym_fsi_directive_decl] = STATE(2432), [sym_preproc_line] = STATE(2432), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3594), + [anon_sym_AT_AT_GT] = ACTIONS(3594), + [anon_sym_DOT] = 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_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_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(3594), + [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(3596), + [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(3596), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), + [sym__newline] = ACTIONS(3596), }, [2433] = { [sym_block_comment] = STATE(2433), [sym_compiler_directive_decl] = STATE(2433), [sym_fsi_directive_decl] = STATE(2433), [sym_preproc_line] = STATE(2433), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [anon_sym_POUNDendif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_AT_GT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), }, [2434] = { [sym_block_comment] = STATE(2434), [sym_compiler_directive_decl] = STATE(2434), [sym_fsi_directive_decl] = STATE(2434), [sym_preproc_line] = STATE(2434), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [anon_sym_POUNDendif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_COLON] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3659), + [anon_sym_AT_AT_GT] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_COLON_GT] = ACTIONS(3657), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_LT_DASH] = ACTIONS(3659), + [anon_sym_DOT_LBRACK] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3659), + [anon_sym_DASH_DOT] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3659), + [aux_sym_infix_op_token1] = ACTIONS(3657), + [aux_sym_infix_op_token2] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_COLON_EQ] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3659), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), + [sym__newline] = ACTIONS(3657), }, [2435] = { [sym_block_comment] = STATE(2435), [sym_compiler_directive_decl] = STATE(2435), [sym_fsi_directive_decl] = STATE(2435), [sym_preproc_line] = STATE(2435), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_AT_AT_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - }, - [2436] = { - [sym_block_comment] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_preproc_line] = STATE(2436), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_AT_AT_GT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), - }, - [2437] = { - [sym_block_comment] = STATE(2437), - [sym_compiler_directive_decl] = STATE(2437), - [sym_fsi_directive_decl] = STATE(2437), - [sym_preproc_line] = STATE(2437), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_AT_AT_GT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), - }, - [2438] = { - [sym_block_comment] = STATE(2438), - [sym_compiler_directive_decl] = STATE(2438), - [sym_fsi_directive_decl] = STATE(2438), - [sym_preproc_line] = STATE(2438), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [anon_sym_POUNDendif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), - }, - [2439] = { - [sym_block_comment] = STATE(2439), - [sym_compiler_directive_decl] = STATE(2439), - [sym_fsi_directive_decl] = STATE(2439), - [sym_preproc_line] = STATE(2439), [sym_identifier] = ACTIONS(3539), - [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_EQ] = ACTIONS(3541), [anon_sym_COLON] = ACTIONS(3539), [anon_sym_return] = ACTIONS(3539), [anon_sym_do] = ACTIONS(3539), [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_let_BANG] = ACTIONS(3541), [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_COMMA] = ACTIONS(3541), [anon_sym_null] = ACTIONS(3539), [anon_sym_QMARK] = ACTIONS(3539), [anon_sym_COLON_QMARK] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_COLON_COLON] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), [anon_sym_LBRACE] = ACTIONS(3539), [anon_sym_LT_AT] = ACTIONS(3539), [anon_sym_LT_AT_AT] = ACTIONS(3539), [anon_sym_DOT] = ACTIONS(3539), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_return_BANG] = ACTIONS(3541), [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_yield_BANG] = ACTIONS(3541), [anon_sym_lazy] = ACTIONS(3539), [anon_sym_assert] = ACTIONS(3539), [anon_sym_upcast] = ACTIONS(3539), [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), [anon_sym_for] = ACTIONS(3539), [anon_sym_while] = ACTIONS(3539), [anon_sym_if] = ACTIONS(3539), [anon_sym_fun] = ACTIONS(3539), [anon_sym_try] = ACTIONS(3539), [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_match_BANG] = ACTIONS(3541), [anon_sym_function] = ACTIONS(3539), [anon_sym_LT_DASH] = ACTIONS(3539), - [anon_sym_DOT_LBRACK] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3537), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_GT] = ACTIONS(3539), [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_DOT_DOT] = ACTIONS(3537), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), [anon_sym_begin] = ACTIONS(3539), [anon_sym_LPAREN2] = ACTIONS(3539), [anon_sym_or] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), + [aux_sym_char_token1] = ACTIONS(3541), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), + [sym_unit] = ACTIONS(3541), [anon_sym_LPAREN_PIPE] = ACTIONS(3539), [sym_op_identifier] = ACTIONS(3539), [anon_sym_PLUS] = ACTIONS(3539), @@ -304961,670 +304997,1038 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3539), [anon_sym_PERCENT] = ACTIONS(3539), [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3541), [aux_sym_prefix_op_token1] = ACTIONS(3539), - [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token1] = ACTIONS(3541), [aux_sym_infix_op_token2] = ACTIONS(3539), [anon_sym_PIPE_PIPE] = ACTIONS(3539), [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_COLON_EQ] = ACTIONS(3541), [anon_sym_DOLLAR] = ACTIONS(3539), [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), + }, + [2436] = { + [sym_block_comment] = STATE(2436), + [sym_compiler_directive_decl] = STATE(2436), + [sym_fsi_directive_decl] = STATE(2436), + [sym_preproc_line] = STATE(2436), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4474), + }, + [2437] = { + [sym_block_comment] = STATE(2437), + [sym_compiler_directive_decl] = STATE(2437), + [sym_fsi_directive_decl] = STATE(2437), + [sym_preproc_line] = STATE(2437), + [sym_identifier] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_let_BANG] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_COLON_QMARK] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LBRACK_PIPE] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_LT_AT] = ACTIONS(3655), + [anon_sym_LT_AT_AT] = ACTIONS(3655), + [anon_sym_AT_AT_GT] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_LBRACE_PIPE] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_return_BANG] = ACTIONS(3653), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_yield_BANG] = ACTIONS(3653), + [anon_sym_lazy] = ACTIONS(3655), + [anon_sym_assert] = ACTIONS(3655), + [anon_sym_upcast] = ACTIONS(3655), + [anon_sym_downcast] = ACTIONS(3655), + [anon_sym_COLON_GT] = ACTIONS(3653), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_fun] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_match_BANG] = ACTIONS(3653), + [anon_sym_function] = ACTIONS(3655), + [anon_sym_LT_DASH] = ACTIONS(3655), + [anon_sym_DOT_LBRACK] = ACTIONS(3653), + [anon_sym_LT] = ACTIONS(3653), + [anon_sym_use] = ACTIONS(3655), + [anon_sym_use_BANG] = ACTIONS(3653), + [anon_sym_do_BANG] = ACTIONS(3653), + [anon_sym_begin] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [aux_sym_char_token1] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [anon_sym_AT_DQUOTE] = ACTIONS(3653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), + [sym_bool] = ACTIONS(3655), + [sym_unit] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [sym_op_identifier] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS_DOT] = ACTIONS(3655), + [anon_sym_DASH_DOT] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3653), + [aux_sym_prefix_op_token1] = ACTIONS(3655), + [aux_sym_infix_op_token1] = ACTIONS(3653), + [aux_sym_infix_op_token2] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_COLON_EQ] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), + [sym_int] = ACTIONS(3655), + [sym_xint] = ACTIONS(3653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3653), + [sym__newline] = ACTIONS(3653), + }, + [2438] = { + [sym_block_comment] = STATE(2438), + [sym_compiler_directive_decl] = STATE(2438), + [sym_fsi_directive_decl] = STATE(2438), + [sym_preproc_line] = STATE(2438), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3411), + [anon_sym_POUNDendif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), + }, + [2439] = { + [sym_block_comment] = STATE(2439), + [sym_compiler_directive_decl] = STATE(2439), + [sym_fsi_directive_decl] = STATE(2439), + [sym_preproc_line] = STATE(2439), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [anon_sym_POUNDendif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), }, [2440] = { [sym_block_comment] = STATE(2440), [sym_compiler_directive_decl] = STATE(2440), [sym_fsi_directive_decl] = STATE(2440), [sym_preproc_line] = STATE(2440), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), - }, - [2441] = { - [sym_block_comment] = STATE(2441), - [sym_compiler_directive_decl] = STATE(2441), - [sym_fsi_directive_decl] = STATE(2441), - [sym_preproc_line] = STATE(2441), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_let_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_null] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3423), + [anon_sym_COLON_QMARK] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_LT_AT] = ACTIONS(3423), + [anon_sym_LT_AT_AT] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_return_BANG] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_yield_BANG] = ACTIONS(3425), + [anon_sym_lazy] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_upcast] = ACTIONS(3423), + [anon_sym_downcast] = ACTIONS(3423), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_fun] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_match_BANG] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_use] = ACTIONS(3423), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), + [anon_sym_begin] = ACTIONS(3423), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_or] = ACTIONS(3423), + [aux_sym_char_token1] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [sym_bool] = ACTIONS(3423), + [sym_unit] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(3423), + [sym_op_identifier] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [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(3425), + [aux_sym_prefix_op_token1] = ACTIONS(3423), + [aux_sym_infix_op_token1] = ACTIONS(3425), + [aux_sym_infix_op_token2] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_COLON_EQ] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), + [sym_int] = ACTIONS(3423), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3425), + [anon_sym_POUNDendif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), + }, + [2441] = { + [sym_block_comment] = STATE(2441), + [sym_compiler_directive_decl] = STATE(2441), + [sym_fsi_directive_decl] = STATE(2441), + [sym_preproc_line] = STATE(2441), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2442] = { [sym_block_comment] = STATE(2442), [sym_compiler_directive_decl] = STATE(2442), [sym_fsi_directive_decl] = STATE(2442), [sym_preproc_line] = STATE(2442), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_AT_AT_GT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_AT_AT_GT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [2443] = { [sym_block_comment] = STATE(2443), [sym_compiler_directive_decl] = STATE(2443), [sym_fsi_directive_decl] = STATE(2443), [sym_preproc_line] = STATE(2443), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3433), + [anon_sym_POUNDendif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [2444] = { [sym_block_comment] = STATE(2444), [sym_compiler_directive_decl] = STATE(2444), [sym_fsi_directive_decl] = STATE(2444), [sym_preproc_line] = STATE(2444), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_AT_AT_GT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [anon_sym_POUNDendif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [2445] = { [sym_block_comment] = STATE(2445), [sym_compiler_directive_decl] = STATE(2445), [sym_fsi_directive_decl] = STATE(2445), [sym_preproc_line] = STATE(2445), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_AT_AT_GT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_AT_AT_GT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [2446] = { [sym_block_comment] = STATE(2446), [sym_compiler_directive_decl] = STATE(2446), [sym_fsi_directive_decl] = STATE(2446), [sym_preproc_line] = STATE(2446), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [anon_sym_POUNDendif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_AT_AT_GT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [2447] = { [sym_block_comment] = STATE(2447), @@ -305632,62 +306036,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(2447), [sym_preproc_line] = STATE(2447), [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3421), [anon_sym_COLON] = ACTIONS(3419), [anon_sym_return] = ACTIONS(3419), [anon_sym_do] = ACTIONS(3419), [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3421), [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3421), [anon_sym_null] = ACTIONS(3419), [anon_sym_QMARK] = ACTIONS(3419), [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3421), [anon_sym_AMP] = ACTIONS(3419), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3421), [anon_sym_LBRACE] = ACTIONS(3419), [anon_sym_LT_AT] = ACTIONS(3419), + [anon_sym_AT_GT] = ACTIONS(3419), [anon_sym_LT_AT_AT] = ACTIONS(3419), [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3421), [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3421), [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3421), [anon_sym_lazy] = ACTIONS(3419), [anon_sym_assert] = ACTIONS(3419), [anon_sym_upcast] = ACTIONS(3419), [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3421), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), [anon_sym_for] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), [anon_sym_fun] = ACTIONS(3419), [anon_sym_try] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3421), [anon_sym_function] = ACTIONS(3419), [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3421), + [anon_sym_do_BANG] = ACTIONS(3421), [anon_sym_begin] = ACTIONS(3419), [anon_sym_LPAREN2] = ACTIONS(3419), [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3421), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3421), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), + [sym_unit] = ACTIONS(3421), [anon_sym_LPAREN_PIPE] = ACTIONS(3419), [sym_op_identifier] = ACTIONS(3419), [anon_sym_PLUS] = ACTIONS(3419), @@ -305696,2023 +306101,2482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3419), [anon_sym_PERCENT] = ACTIONS(3419), [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3421), [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3421), [aux_sym_infix_op_token2] = ACTIONS(3419), [anon_sym_PIPE_PIPE] = ACTIONS(3419), [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3421), [anon_sym_DOLLAR] = ACTIONS(3419), [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), + [sym_xint] = ACTIONS(3421), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [anon_sym_POUNDendif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [anon_sym_POUNDif] = ACTIONS(3421), + [sym__newline] = ACTIONS(3421), }, [2448] = { [sym_block_comment] = STATE(2448), [sym_compiler_directive_decl] = STATE(2448), [sym_fsi_directive_decl] = STATE(2448), [sym_preproc_line] = STATE(2448), - [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token2] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [anon_sym_POUNDendif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_AT_AT_GT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2449] = { [sym_block_comment] = STATE(2449), [sym_compiler_directive_decl] = STATE(2449), [sym_fsi_directive_decl] = STATE(2449), [sym_preproc_line] = STATE(2449), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_AT_AT_GT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [anon_sym_POUNDendif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [2450] = { [sym_block_comment] = STATE(2450), [sym_compiler_directive_decl] = STATE(2450), [sym_fsi_directive_decl] = STATE(2450), [sym_preproc_line] = STATE(2450), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_module] = ACTIONS(2977), - [anon_sym_open] = ACTIONS(2977), - [anon_sym_LBRACK_LT] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_and] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [aux_sym_access_modifier_token1] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_member] = ACTIONS(2977), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_exception] = ACTIONS(2977), - [anon_sym_abstract] = ACTIONS(2977), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_val] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2975), - [anon_sym_POUNDload] = ACTIONS(2975), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [anon_sym_POUNDendif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2451] = { [sym_block_comment] = STATE(2451), [sym_compiler_directive_decl] = STATE(2451), [sym_fsi_directive_decl] = STATE(2451), [sym_preproc_line] = STATE(2451), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_AT_AT_GT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [anon_sym_POUNDendif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2452] = { [sym_block_comment] = STATE(2452), [sym_compiler_directive_decl] = STATE(2452), [sym_fsi_directive_decl] = STATE(2452), [sym_preproc_line] = STATE(2452), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [anon_sym_POUNDendif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), + }, + [2453] = { + [sym_block_comment] = STATE(2453), + [sym_compiler_directive_decl] = STATE(2453), + [sym_fsi_directive_decl] = STATE(2453), + [sym_preproc_line] = STATE(2453), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [anon_sym_POUNDendif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), - }, - [2453] = { - [sym_block_comment] = STATE(2453), - [sym_compiler_directive_decl] = STATE(2453), - [sym_fsi_directive_decl] = STATE(2453), - [sym_preproc_line] = STATE(2453), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [anon_sym_POUNDendif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2454] = { [sym_block_comment] = STATE(2454), [sym_compiler_directive_decl] = STATE(2454), [sym_fsi_directive_decl] = STATE(2454), [sym_preproc_line] = STATE(2454), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [anon_sym_POUNDendif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [anon_sym_POUNDendif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2455] = { [sym_block_comment] = STATE(2455), [sym_compiler_directive_decl] = STATE(2455), [sym_fsi_directive_decl] = STATE(2455), [sym_preproc_line] = STATE(2455), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_AT_AT_GT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2456] = { [sym_block_comment] = STATE(2456), [sym_compiler_directive_decl] = STATE(2456), [sym_fsi_directive_decl] = STATE(2456), [sym_preproc_line] = STATE(2456), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [anon_sym_POUNDendif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [anon_sym_POUNDendif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2457] = { [sym_block_comment] = STATE(2457), [sym_compiler_directive_decl] = STATE(2457), [sym_fsi_directive_decl] = STATE(2457), [sym_preproc_line] = STATE(2457), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [anon_sym_POUNDendif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - }, - [2458] = { - [sym_block_comment] = STATE(2458), - [sym_compiler_directive_decl] = STATE(2458), - [sym_fsi_directive_decl] = STATE(2458), - [sym_preproc_line] = STATE(2458), - [sym_identifier] = ACTIONS(3655), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_do] = ACTIONS(3655), - [anon_sym_let] = ACTIONS(3655), - [anon_sym_let_BANG] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_COLON_QMARK] = ACTIONS(3655), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LT_AT] = ACTIONS(3655), - [anon_sym_LT_AT_AT] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_LBRACE_PIPE] = ACTIONS(3653), - [anon_sym_new] = ACTIONS(3655), - [anon_sym_return_BANG] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_yield_BANG] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3655), - [anon_sym_assert] = ACTIONS(3655), - [anon_sym_upcast] = ACTIONS(3655), - [anon_sym_downcast] = ACTIONS(3655), - [anon_sym_COLON_GT] = ACTIONS(3653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3653), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_fun] = ACTIONS(3655), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_match_BANG] = ACTIONS(3653), - [anon_sym_function] = ACTIONS(3655), - [anon_sym_LT_DASH] = ACTIONS(3655), - [anon_sym_DOT_LBRACK] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_use] = ACTIONS(3655), - [anon_sym_use_BANG] = ACTIONS(3653), - [anon_sym_do_BANG] = ACTIONS(3653), - [anon_sym_begin] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_or] = ACTIONS(3655), - [aux_sym_char_token1] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3655), - [sym_unit] = ACTIONS(3653), - [anon_sym_LPAREN_PIPE] = ACTIONS(3655), - [sym_op_identifier] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_PLUS_DOT] = ACTIONS(3655), - [anon_sym_DASH_DOT] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3653), - [aux_sym_prefix_op_token1] = ACTIONS(3655), - [aux_sym_infix_op_token1] = ACTIONS(3653), - [aux_sym_infix_op_token2] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_COLON_EQ] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3655), - [sym_int] = ACTIONS(3655), - [sym_xint] = ACTIONS(3653), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_AT_AT_GT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3653), - [anon_sym_POUNDendif] = ACTIONS(3653), - [sym__newline] = ACTIONS(3653), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), + }, + [2458] = { + [sym_block_comment] = STATE(2458), + [sym_compiler_directive_decl] = STATE(2458), + [sym_fsi_directive_decl] = STATE(2458), + [sym_preproc_line] = STATE(2458), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_AT_AT_GT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [2459] = { [sym_block_comment] = STATE(2459), [sym_compiler_directive_decl] = STATE(2459), [sym_fsi_directive_decl] = STATE(2459), [sym_preproc_line] = STATE(2459), - [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_SEMI] = ACTIONS(3), - [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(3642), - [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(3644), - [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(3644), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), - [anon_sym_POUNDendif] = ACTIONS(3644), - [sym__newline] = ACTIONS(3644), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = 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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2990), + [anon_sym_or] = ACTIONS(2990), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_member] = ACTIONS(2990), + [anon_sym_interface] = ACTIONS(2990), + [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2992), + [anon_sym_POUNDload] = ACTIONS(2992), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), }, [2460] = { [sym_block_comment] = STATE(2460), [sym_compiler_directive_decl] = STATE(2460), [sym_fsi_directive_decl] = STATE(2460), [sym_preproc_line] = STATE(2460), - [sym_identifier] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3632), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3630), - [anon_sym_DOT] = ACTIONS(3630), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_COLON_GT] = ACTIONS(3632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_LT_DASH] = ACTIONS(3630), - [anon_sym_DOT_LBRACK] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3630), - [anon_sym_or] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3630), - [anon_sym_DASH_DOT] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3630), - [aux_sym_infix_op_token1] = ACTIONS(3632), - [aux_sym_infix_op_token2] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3630), - [anon_sym_BANG_EQ] = ACTIONS(3630), - [anon_sym_COLON_EQ] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3630), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), - [anon_sym_POUNDendif] = ACTIONS(3632), - [sym__newline] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2461] = { [sym_block_comment] = STATE(2461), [sym_compiler_directive_decl] = STATE(2461), [sym_fsi_directive_decl] = STATE(2461), [sym_preproc_line] = STATE(2461), - [sym_identifier] = ACTIONS(3626), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3626), - [anon_sym_COLON_QMARK] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3626), - [anon_sym_DOT] = ACTIONS(3626), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_COLON_GT] = ACTIONS(3628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_LT_DASH] = ACTIONS(3626), - [anon_sym_DOT_LBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3626), - [anon_sym_or] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3626), - [anon_sym_DASH_DOT] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3626), - [anon_sym_AMP_AMP] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3626), - [aux_sym_infix_op_token1] = ACTIONS(3628), - [aux_sym_infix_op_token2] = ACTIONS(3626), - [anon_sym_PIPE_PIPE] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3626), - [anon_sym_COLON_EQ] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3626), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), - [anon_sym_POUNDendif] = ACTIONS(3628), - [sym__newline] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_AT_AT_GT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), }, [2462] = { [sym_block_comment] = STATE(2462), [sym_compiler_directive_decl] = STATE(2462), [sym_fsi_directive_decl] = STATE(2462), [sym_preproc_line] = STATE(2462), - [sym_identifier] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_COLON_QMARK] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3611), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_COLON_GT] = ACTIONS(3613), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_LT_DASH] = ACTIONS(3611), - [anon_sym_DOT_LBRACK] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_or] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3611), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3611), - [anon_sym_DASH_DOT] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3611), - [aux_sym_infix_op_token1] = ACTIONS(3613), - [aux_sym_infix_op_token2] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_COLON_EQ] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3611), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_AT_GT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), - [anon_sym_POUNDendif] = ACTIONS(3613), - [sym__newline] = ACTIONS(3613), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [2463] = { [sym_block_comment] = STATE(2463), [sym_compiler_directive_decl] = STATE(2463), [sym_fsi_directive_decl] = STATE(2463), [sym_preproc_line] = STATE(2463), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_let_BANG] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_COLON] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LBRACK_PIPE] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_LT_AT] = ACTIONS(3690), - [anon_sym_LT_AT_AT] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_LBRACE_PIPE] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_return_BANG] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_yield_BANG] = ACTIONS(3688), - [anon_sym_lazy] = ACTIONS(3690), - [anon_sym_assert] = ACTIONS(3690), - [anon_sym_upcast] = ACTIONS(3690), - [anon_sym_downcast] = ACTIONS(3690), - [anon_sym_COLON_GT] = ACTIONS(3688), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_fun] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_match] = ACTIONS(3690), - [anon_sym_match_BANG] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_LT_DASH] = ACTIONS(3690), - [anon_sym_DOT_LBRACK] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_use] = ACTIONS(3690), - [anon_sym_use_BANG] = ACTIONS(3688), - [anon_sym_do_BANG] = ACTIONS(3688), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_or] = ACTIONS(3690), - [aux_sym_char_token1] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_AT_DQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3688), - [sym_bool] = ACTIONS(3690), - [sym_unit] = ACTIONS(3688), - [anon_sym_LPAREN_PIPE] = ACTIONS(3690), - [sym_op_identifier] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_PLUS_DOT] = ACTIONS(3690), - [anon_sym_DASH_DOT] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3688), - [aux_sym_prefix_op_token1] = ACTIONS(3690), - [aux_sym_infix_op_token1] = ACTIONS(3688), - [aux_sym_infix_op_token2] = ACTIONS(3690), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_COLON_EQ] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3690), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3690), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3688), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_AT_AT_GT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2464] = { [sym_block_comment] = STATE(2464), [sym_compiler_directive_decl] = STATE(2464), [sym_fsi_directive_decl] = STATE(2464), [sym_preproc_line] = STATE(2464), - [sym_identifier] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_COLON_QMARK] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LT_AT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3692), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_upcast] = ACTIONS(3074), - [anon_sym_downcast] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_fun] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3074), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [aux_sym_char_token1] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3074), - [sym_unit] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_DOT] = ACTIONS(3074), - [anon_sym_DASH_DOT] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token2] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3074), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3074), - [sym_xint] = ACTIONS(3070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(4460), + [sym_identifier] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_COLON] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3592), + [anon_sym_COLON_QMARK] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3592), + [anon_sym_AT_AT_GT] = ACTIONS(3592), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_COLON_GT] = ACTIONS(3590), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_DOT_LBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_or] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS_DOT] = ACTIONS(3592), + [anon_sym_DASH_DOT] = ACTIONS(3592), + [anon_sym_PERCENT] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3592), + [aux_sym_infix_op_token1] = ACTIONS(3590), + [aux_sym_infix_op_token2] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_BANG_EQ] = ACTIONS(3592), + [anon_sym_COLON_EQ] = ACTIONS(3590), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3592), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), + [sym__newline] = ACTIONS(3590), }, [2465] = { [sym_block_comment] = STATE(2465), [sym_compiler_directive_decl] = STATE(2465), [sym_fsi_directive_decl] = STATE(2465), [sym_preproc_line] = STATE(2465), - [sym_identifier] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3677), - [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(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_COLON_QMARK] = ACTIONS(3679), - [anon_sym_COLON_COLON] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LBRACK_PIPE] = ACTIONS(3677), - [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(3677), - [anon_sym_new] = ACTIONS(3679), - [anon_sym_return_BANG] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_yield_BANG] = ACTIONS(3677), - [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(3677), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), - [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(3677), - [anon_sym_function] = ACTIONS(3679), - [anon_sym_LT_DASH] = ACTIONS(3679), - [anon_sym_DOT_LBRACK] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3677), - [anon_sym_use] = ACTIONS(3679), - [anon_sym_use_BANG] = ACTIONS(3677), - [anon_sym_do_BANG] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_begin] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [aux_sym_char_token1] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), - [anon_sym_DQUOTE] = ACTIONS(3679), - [anon_sym_AT_DQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym_bool] = ACTIONS(3679), - [sym_unit] = ACTIONS(3677), - [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(3677), - [aux_sym_prefix_op_token1] = ACTIONS(3679), - [aux_sym_infix_op_token1] = ACTIONS(3677), - [aux_sym_infix_op_token2] = ACTIONS(3679), - [anon_sym_PIPE_PIPE] = ACTIONS(3679), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_COLON_EQ] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3679), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), - [sym_int] = ACTIONS(3679), - [sym_xint] = ACTIONS(3677), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3677), - [sym__newline] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [anon_sym_POUNDendif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2466] = { [sym_block_comment] = STATE(2466), [sym_compiler_directive_decl] = STATE(2466), [sym_fsi_directive_decl] = STATE(2466), [sym_preproc_line] = STATE(2466), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), + [sym_identifier] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3547), + [anon_sym_COLON] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_QMARK] = ACTIONS(3549), + [anon_sym_COLON_QMARK] = ACTIONS(3549), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3549), + [anon_sym_AT_AT_GT] = ACTIONS(3549), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_COLON_GT] = ACTIONS(3547), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_LT_DASH] = ACTIONS(3549), + [anon_sym_DOT_LBRACK] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_or] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3549), + [anon_sym_DASH_DOT] = ACTIONS(3549), + [anon_sym_PERCENT] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3549), + [aux_sym_infix_op_token1] = ACTIONS(3547), + [aux_sym_infix_op_token2] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_COLON_EQ] = ACTIONS(3547), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3549), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), + [sym__newline] = ACTIONS(3547), }, [2467] = { [sym_block_comment] = STATE(2467), [sym_compiler_directive_decl] = STATE(2467), [sym_fsi_directive_decl] = STATE(2467), [sym_preproc_line] = STATE(2467), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LBRACK_PIPE] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LT_AT] = ACTIONS(3401), + [anon_sym_LT_AT_AT] = ACTIONS(3401), + [anon_sym_DOT] = 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_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_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(3401), + [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(3403), + [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(3403), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3403), + [sym__newline] = ACTIONS(3403), }, [2468] = { [sym_block_comment] = STATE(2468), [sym_compiler_directive_decl] = STATE(2468), [sym_fsi_directive_decl] = STATE(2468), [sym_preproc_line] = STATE(2468), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [anon_sym_POUNDendif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4476), }, [2469] = { [sym_block_comment] = STATE(2469), [sym_compiler_directive_decl] = STATE(2469), [sym_fsi_directive_decl] = STATE(2469), [sym_preproc_line] = STATE(2469), + [aux_sym_long_identifier_repeat1] = STATE(2241), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_and] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [aux_sym_access_modifier_token1] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(4454), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_member] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_exception] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_val] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + }, + [2470] = { + [sym_block_comment] = STATE(2470), + [sym_compiler_directive_decl] = STATE(2470), + [sym_fsi_directive_decl] = STATE(2470), + [sym_preproc_line] = STATE(2470), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + }, + [2471] = { + [sym_block_comment] = STATE(2471), + [sym_compiler_directive_decl] = STATE(2471), + [sym_fsi_directive_decl] = STATE(2471), + [sym_preproc_line] = STATE(2471), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_AT_AT_GT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), + }, + [2472] = { + [sym_block_comment] = STATE(2472), + [sym_compiler_directive_decl] = STATE(2472), + [sym_fsi_directive_decl] = STATE(2472), + [sym_preproc_line] = STATE(2472), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_AT_GT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), + }, + [2473] = { + [sym_block_comment] = STATE(2473), + [sym_compiler_directive_decl] = STATE(2473), + [sym_fsi_directive_decl] = STATE(2473), + [sym_preproc_line] = STATE(2473), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_AT_AT_GT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), + }, + [2474] = { + [sym_block_comment] = STATE(2474), + [sym_compiler_directive_decl] = STATE(2474), + [sym_fsi_directive_decl] = STATE(2474), + [sym_preproc_line] = STATE(2474), [sym_identifier] = ACTIONS(3533), - [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3239), [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_let_BANG] = ACTIONS(3239), [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3239), [anon_sym_null] = ACTIONS(3533), [anon_sym_QMARK] = ACTIONS(3533), [anon_sym_COLON_QMARK] = ACTIONS(3533), - [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3239), [anon_sym_AMP] = ACTIONS(3533), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3239), [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_LBRACE_PIPE] = ACTIONS(3239), [anon_sym_new] = ACTIONS(3533), - [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3239), [anon_sym_yield] = ACTIONS(3533), - [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3239), [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_COLON_GT] = ACTIONS(3239), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3239), [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_match_BANG] = ACTIONS(3239), [anon_sym_function] = ACTIONS(3533), [anon_sym_LT_DASH] = ACTIONS(3533), - [anon_sym_DOT_LBRACK] = ACTIONS(3535), - [anon_sym_LT] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), [anon_sym_use] = ACTIONS(3533), - [anon_sym_use_BANG] = ACTIONS(3535), - [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3239), + [anon_sym_do_BANG] = ACTIONS(3239), + [anon_sym_DOT_DOT] = ACTIONS(3239), [anon_sym_begin] = ACTIONS(3533), [anon_sym_LPAREN2] = ACTIONS(3533), [anon_sym_or] = ACTIONS(3533), - [aux_sym_char_token1] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3239), [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), + [anon_sym_AT_DQUOTE] = ACTIONS(3239), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3239), [sym_bool] = ACTIONS(3533), - [sym_unit] = ACTIONS(3535), + [sym_unit] = ACTIONS(3239), [anon_sym_LPAREN_PIPE] = ACTIONS(3533), [sym_op_identifier] = ACTIONS(3533), [anon_sym_PLUS] = ACTIONS(3533), @@ -307721,1780 +308585,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3533), [anon_sym_PERCENT] = ACTIONS(3533), [anon_sym_AMP_AMP] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3239), [aux_sym_prefix_op_token1] = ACTIONS(3533), - [aux_sym_infix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3239), [aux_sym_infix_op_token2] = ACTIONS(3533), [anon_sym_PIPE_PIPE] = ACTIONS(3533), [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3239), [anon_sym_DOLLAR] = ACTIONS(3533), [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), [sym_int] = ACTIONS(3533), - [sym_xint] = ACTIONS(3535), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), - }, - [2470] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), - [sym_block_comment] = STATE(2470), - [sym_compiler_directive_decl] = STATE(2470), - [sym_fsi_directive_decl] = STATE(2470), - [sym_preproc_line] = STATE(2470), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4462), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(4464), - [anon_sym_module] = ACTIONS(4464), - [anon_sym_open] = ACTIONS(4464), - [anon_sym_LBRACK_LT] = ACTIONS(4462), - [anon_sym_return] = ACTIONS(4464), - [anon_sym_type] = ACTIONS(4464), - [anon_sym_do] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_let] = ACTIONS(4464), - [anon_sym_let_BANG] = ACTIONS(4462), - [aux_sym_access_modifier_token1] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_null] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_LBRACK_PIPE] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_LT_AT] = ACTIONS(4464), - [anon_sym_LT_AT_AT] = ACTIONS(4462), - [anon_sym_LBRACE_PIPE] = ACTIONS(4462), - [anon_sym_with] = ACTIONS(4464), - [anon_sym_new] = ACTIONS(4464), - [anon_sym_return_BANG] = ACTIONS(4462), - [anon_sym_yield] = ACTIONS(4464), - [anon_sym_yield_BANG] = ACTIONS(4462), - [anon_sym_lazy] = ACTIONS(4464), - [anon_sym_assert] = ACTIONS(4464), - [anon_sym_upcast] = ACTIONS(4464), - [anon_sym_downcast] = ACTIONS(4464), - [anon_sym_for] = ACTIONS(4464), - [anon_sym_while] = ACTIONS(4464), - [anon_sym_if] = ACTIONS(4464), - [anon_sym_fun] = ACTIONS(4464), - [anon_sym_DASH_GT] = ACTIONS(4453), - [anon_sym_try] = ACTIONS(4464), - [anon_sym_match] = ACTIONS(4464), - [anon_sym_match_BANG] = ACTIONS(4462), - [anon_sym_function] = ACTIONS(4464), - [anon_sym_use] = ACTIONS(4464), - [anon_sym_use_BANG] = ACTIONS(4462), - [anon_sym_do_BANG] = ACTIONS(4462), - [anon_sym_begin] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4453), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4464), - [anon_sym_static] = ACTIONS(4464), - [anon_sym_member] = ACTIONS(4464), - [anon_sym_exception] = ACTIONS(4464), - [anon_sym_abstract] = ACTIONS(4464), - [anon_sym_override] = ACTIONS(4464), - [anon_sym_val] = ACTIONS(4464), - [aux_sym_char_token1] = ACTIONS(4462), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4464), - [anon_sym_DQUOTE] = ACTIONS(4464), - [anon_sym_AT_DQUOTE] = ACTIONS(4462), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), - [sym_bool] = ACTIONS(4464), - [sym_unit] = ACTIONS(4462), - [anon_sym_LPAREN_PIPE] = ACTIONS(4464), - [sym_op_identifier] = ACTIONS(4462), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_PLUS_DOT] = ACTIONS(4462), - [anon_sym_DASH_DOT] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4462), - [anon_sym_TILDE] = ACTIONS(4462), - [aux_sym_prefix_op_token1] = ACTIONS(4462), - [sym_int] = ACTIONS(4464), - [sym_xint] = ACTIONS(4462), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4462), - [anon_sym_POUNDload] = ACTIONS(4462), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4462), - }, - [2471] = { - [sym_block_comment] = STATE(2471), - [sym_compiler_directive_decl] = STATE(2471), - [sym_fsi_directive_decl] = STATE(2471), - [sym_preproc_line] = STATE(2471), - [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_SEMI] = ACTIONS(3), - [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(3638), - [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(3640), - [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(3640), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), - [anon_sym_POUNDendif] = ACTIONS(3640), - [sym__newline] = ACTIONS(3640), - }, - [2472] = { - [sym_block_comment] = STATE(2472), - [sym_compiler_directive_decl] = STATE(2472), - [sym_fsi_directive_decl] = STATE(2472), - [sym_preproc_line] = STATE(2472), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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), + [sym_xint] = ACTIONS(3239), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), - }, - [2473] = { - [sym_block_comment] = STATE(2473), - [sym_compiler_directive_decl] = STATE(2473), - [sym_fsi_directive_decl] = STATE(2473), - [sym_preproc_line] = STATE(2473), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), - }, - [2474] = { - [sym_block_comment] = STATE(2474), - [sym_compiler_directive_decl] = STATE(2474), - [sym_fsi_directive_decl] = STATE(2474), - [sym_preproc_line] = STATE(2474), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_AT_AT_GT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [anon_sym_POUNDif] = ACTIONS(3239), + [sym__newline] = ACTIONS(3239), }, [2475] = { [sym_block_comment] = STATE(2475), [sym_compiler_directive_decl] = STATE(2475), [sym_fsi_directive_decl] = STATE(2475), [sym_preproc_line] = STATE(2475), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_AT_AT_GT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(3519), + [anon_sym_POUNDendif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [2476] = { [sym_block_comment] = STATE(2476), [sym_compiler_directive_decl] = STATE(2476), [sym_fsi_directive_decl] = STATE(2476), [sym_preproc_line] = STATE(2476), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), - }, - [2477] = { - [sym_block_comment] = STATE(2477), - [sym_compiler_directive_decl] = STATE(2477), - [sym_fsi_directive_decl] = STATE(2477), - [sym_preproc_line] = STATE(2477), - [sym_identifier] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(3735), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_let_BANG] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3735), - [anon_sym_null] = ACTIONS(3733), - [anon_sym_QMARK] = ACTIONS(3733), - [anon_sym_COLON_QMARK] = ACTIONS(3733), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LBRACK_PIPE] = ACTIONS(3735), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LT_AT] = ACTIONS(3733), - [anon_sym_AT_GT] = ACTIONS(3733), - [anon_sym_LT_AT_AT] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_LBRACE_PIPE] = ACTIONS(3735), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_return_BANG] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_yield_BANG] = ACTIONS(3735), - [anon_sym_lazy] = ACTIONS(3733), - [anon_sym_assert] = ACTIONS(3733), - [anon_sym_upcast] = ACTIONS(3733), - [anon_sym_downcast] = ACTIONS(3733), - [anon_sym_COLON_GT] = ACTIONS(3735), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_fun] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_match] = ACTIONS(3733), - [anon_sym_match_BANG] = ACTIONS(3735), - [anon_sym_function] = ACTIONS(3733), - [anon_sym_LT_DASH] = ACTIONS(3733), - [anon_sym_DOT_LBRACK] = ACTIONS(3735), - [anon_sym_LT] = ACTIONS(3735), - [anon_sym_use] = ACTIONS(3733), - [anon_sym_use_BANG] = ACTIONS(3735), - [anon_sym_do_BANG] = ACTIONS(3735), - [anon_sym_begin] = ACTIONS(3733), - [anon_sym_LPAREN2] = ACTIONS(3733), - [anon_sym_or] = ACTIONS(3733), - [aux_sym_char_token1] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [anon_sym_AT_DQUOTE] = ACTIONS(3735), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3735), - [sym_bool] = ACTIONS(3733), - [sym_unit] = ACTIONS(3735), - [anon_sym_LPAREN_PIPE] = ACTIONS(3733), - [sym_op_identifier] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_PLUS_DOT] = ACTIONS(3733), - [anon_sym_DASH_DOT] = ACTIONS(3733), - [anon_sym_PERCENT] = ACTIONS(3733), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3735), - [aux_sym_prefix_op_token1] = ACTIONS(3733), - [aux_sym_infix_op_token1] = ACTIONS(3735), - [aux_sym_infix_op_token2] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_COLON_EQ] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3733), - [sym_int] = ACTIONS(3733), - [sym_xint] = ACTIONS(3735), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3735), - [sym__newline] = ACTIONS(3735), - }, - [2478] = { - [sym_block_comment] = STATE(2478), - [sym_compiler_directive_decl] = STATE(2478), - [sym_fsi_directive_decl] = STATE(2478), - [sym_preproc_line] = STATE(2478), - [aux_sym_long_identifier_repeat1] = STATE(2411), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_and] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [aux_sym_access_modifier_token1] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(4455), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_member] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_val] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2479] = { - [sym_block_comment] = STATE(2479), - [sym_compiler_directive_decl] = STATE(2479), - [sym_fsi_directive_decl] = STATE(2479), - [sym_preproc_line] = STATE(2479), - [aux_sym_long_identifier_repeat1] = STATE(2411), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_and] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [aux_sym_access_modifier_token1] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(4455), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_member] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_val] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2480] = { - [sym_block_comment] = STATE(2480), - [sym_compiler_directive_decl] = STATE(2480), - [sym_fsi_directive_decl] = STATE(2480), - [sym_preproc_line] = STATE(2480), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_AT_AT_GT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), - }, - [2481] = { - [sym_block_comment] = STATE(2481), - [sym_compiler_directive_decl] = STATE(2481), - [sym_fsi_directive_decl] = STATE(2481), - [sym_preproc_line] = STATE(2481), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_AT_AT_GT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), - }, - [2482] = { - [sym_block_comment] = STATE(2482), - [sym_compiler_directive_decl] = STATE(2482), - [sym_fsi_directive_decl] = STATE(2482), - [sym_preproc_line] = STATE(2482), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_AT_AT_GT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), - }, - [2483] = { - [sym_block_comment] = STATE(2483), - [sym_compiler_directive_decl] = STATE(2483), - [sym_fsi_directive_decl] = STATE(2483), - [sym_preproc_line] = STATE(2483), - [sym_identifier] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_COLON_QMARK] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_COLON_GT] = ACTIONS(2526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_LT_DASH] = ACTIONS(2528), - [anon_sym_DOT_LBRACK] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_or] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2528), - [anon_sym_DASH_DOT] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2528), - [aux_sym_infix_op_token1] = ACTIONS(2526), - [aux_sym_infix_op_token2] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_COLON_EQ] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), - [sym__newline] = ACTIONS(2526), - }, - [2484] = { - [sym_block_comment] = STATE(2484), - [sym_compiler_directive_decl] = STATE(2484), - [sym_fsi_directive_decl] = STATE(2484), - [sym_preproc_line] = STATE(2484), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_AT_AT_GT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), - }, - [2485] = { - [sym_block_comment] = STATE(2485), - [sym_compiler_directive_decl] = STATE(2485), - [sym_fsi_directive_decl] = STATE(2485), - [sym_preproc_line] = STATE(2485), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token2] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2988), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [2486] = { - [sym_block_comment] = STATE(2486), - [sym_compiler_directive_decl] = STATE(2486), - [sym_fsi_directive_decl] = STATE(2486), - [sym_preproc_line] = STATE(2486), - [sym_identifier] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_let_BANG] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_null] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_COLON_QMARK] = ACTIONS(3486), - [anon_sym_COLON_COLON] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LBRACK_PIPE] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_LT_AT] = ACTIONS(3486), - [anon_sym_LT_AT_AT] = ACTIONS(3486), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LBRACE_PIPE] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_return_BANG] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_yield_BANG] = ACTIONS(3484), - [anon_sym_lazy] = ACTIONS(3486), - [anon_sym_assert] = ACTIONS(3486), - [anon_sym_upcast] = ACTIONS(3486), - [anon_sym_downcast] = ACTIONS(3486), - [anon_sym_COLON_GT] = ACTIONS(3484), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_fun] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_match] = ACTIONS(3486), - [anon_sym_match_BANG] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_DOT_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_GT] = ACTIONS(3486), - [anon_sym_use] = ACTIONS(3486), - [anon_sym_use_BANG] = ACTIONS(3484), - [anon_sym_do_BANG] = ACTIONS(3484), - [anon_sym_begin] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(3486), - [anon_sym_or] = ACTIONS(3486), - [aux_sym_char_token1] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_AT_DQUOTE] = ACTIONS(3484), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3484), - [sym_bool] = ACTIONS(3486), - [sym_unit] = ACTIONS(3484), - [anon_sym_LPAREN_PIPE] = ACTIONS(3486), - [sym_op_identifier] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_PLUS_DOT] = ACTIONS(3486), - [anon_sym_DASH_DOT] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP_AMP] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3484), - [aux_sym_prefix_op_token1] = ACTIONS(3486), - [aux_sym_infix_op_token1] = ACTIONS(3484), - [aux_sym_infix_op_token2] = ACTIONS(3486), - [anon_sym_PIPE_PIPE] = ACTIONS(3486), - [anon_sym_BANG_EQ] = ACTIONS(3486), - [anon_sym_COLON_EQ] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3486), - [sym_int] = ACTIONS(3486), - [sym_xint] = ACTIONS(3484), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3484), - [sym__newline] = ACTIONS(3484), - }, - [2487] = { - [sym_block_comment] = STATE(2487), - [sym_compiler_directive_decl] = STATE(2487), - [sym_fsi_directive_decl] = STATE(2487), - [sym_preproc_line] = STATE(2487), - [sym_identifier] = ACTIONS(3716), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3716), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_COLON_GT] = ACTIONS(3714), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_LT_DASH] = ACTIONS(3716), - [anon_sym_DOT_LBRACK] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3716), - [anon_sym_DASH_DOT] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3716), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3716), - [aux_sym_infix_op_token1] = ACTIONS(3714), - [aux_sym_infix_op_token2] = ACTIONS(3716), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_COLON_EQ] = ACTIONS(3714), - [anon_sym_DOLLAR] = ACTIONS(3716), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3716), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), - [anon_sym_POUNDendif] = ACTIONS(3714), - [sym__newline] = ACTIONS(3714), - }, - [2488] = { - [sym_block_comment] = STATE(2488), - [sym_compiler_directive_decl] = STATE(2488), - [sym_fsi_directive_decl] = STATE(2488), - [sym_preproc_line] = STATE(2488), - [sym_identifier] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3673), - [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(3673), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_COLON_COLON] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3675), - [anon_sym_LBRACK_PIPE] = ACTIONS(3673), - [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(3673), - [anon_sym_new] = ACTIONS(3675), - [anon_sym_return_BANG] = ACTIONS(3673), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_yield_BANG] = ACTIONS(3673), - [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(3673), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3673), - [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(3673), - [anon_sym_function] = ACTIONS(3675), - [anon_sym_LT_DASH] = ACTIONS(3675), - [anon_sym_DOT_LBRACK] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3673), - [anon_sym_use] = ACTIONS(3675), - [anon_sym_use_BANG] = ACTIONS(3673), - [anon_sym_do_BANG] = ACTIONS(3673), - [anon_sym_begin] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [aux_sym_char_token1] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_AT_DQUOTE] = ACTIONS(3673), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym_bool] = ACTIONS(3675), - [sym_unit] = ACTIONS(3673), - [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(3673), - [aux_sym_prefix_op_token1] = ACTIONS(3675), - [aux_sym_infix_op_token1] = ACTIONS(3673), - [aux_sym_infix_op_token2] = ACTIONS(3675), - [anon_sym_PIPE_PIPE] = ACTIONS(3675), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_COLON_EQ] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), - [sym_int] = ACTIONS(3675), - [sym_xint] = ACTIONS(3673), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3673), - [anon_sym_POUNDendif] = ACTIONS(3673), - [sym__newline] = ACTIONS(3673), - }, - [2489] = { - [sym_block_comment] = STATE(2489), - [sym_compiler_directive_decl] = STATE(2489), - [sym_fsi_directive_decl] = STATE(2489), - [sym_preproc_line] = STATE(2489), [sym_identifier] = ACTIONS(3405), [anon_sym_EQ] = ACTIONS(3407), [anon_sym_COLON] = ACTIONS(3405), @@ -309573,7 +308781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int] = ACTIONS(3405), [sym_xint] = ACTIONS(3407), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -309582,621 +308790,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(3407), [sym__newline] = ACTIONS(3407), }, - [2490] = { - [sym_block_comment] = STATE(2490), - [sym_compiler_directive_decl] = STATE(2490), - [sym_fsi_directive_decl] = STATE(2490), - [sym_preproc_line] = STATE(2490), - [sym_identifier] = ACTIONS(3470), - [anon_sym_EQ] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_COLON_COLON] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3470), - [anon_sym_AT_AT_GT] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_COLON_GT] = ACTIONS(3468), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(3470), - [anon_sym_DOT_LBRACK] = ACTIONS(3468), - [anon_sym_LT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(3470), - [anon_sym_or] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3470), - [anon_sym_DASH_DOT] = ACTIONS(3470), - [anon_sym_PERCENT] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3470), - [aux_sym_infix_op_token1] = ACTIONS(3468), - [aux_sym_infix_op_token2] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BANG_EQ] = ACTIONS(3470), - [anon_sym_COLON_EQ] = ACTIONS(3468), - [anon_sym_DOLLAR] = ACTIONS(3470), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3470), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), - [sym__newline] = ACTIONS(3468), - }, - [2491] = { - [sym_block_comment] = STATE(2491), - [sym_compiler_directive_decl] = STATE(2491), - [sym_fsi_directive_decl] = STATE(2491), - [sym_preproc_line] = STATE(2491), - [sym_identifier] = ACTIONS(3462), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_QMARK] = ACTIONS(3462), - [anon_sym_COLON_QMARK] = ACTIONS(3462), - [anon_sym_COLON_COLON] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3462), - [anon_sym_AT_AT_GT] = ACTIONS(3462), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_COLON_GT] = ACTIONS(3460), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(3462), - [anon_sym_DOT_LBRACK] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(3462), - [anon_sym_or] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3462), - [anon_sym_DASH_DOT] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3462), - [aux_sym_infix_op_token1] = ACTIONS(3460), - [aux_sym_infix_op_token2] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_COLON_EQ] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(3462), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3462), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), - [sym__newline] = ACTIONS(3460), - }, - [2492] = { - [sym_block_comment] = STATE(2492), - [sym_compiler_directive_decl] = STATE(2492), - [sym_fsi_directive_decl] = STATE(2492), - [sym_preproc_line] = STATE(2492), - [sym_identifier] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_COLON_QMARK] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3458), - [anon_sym_AT_AT_GT] = ACTIONS(3458), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_COLON_GT] = ACTIONS(3456), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_LT_DASH] = ACTIONS(3458), - [anon_sym_DOT_LBRACK] = ACTIONS(3456), - [anon_sym_LT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_or] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3458), - [anon_sym_DASH_DOT] = ACTIONS(3458), - [anon_sym_PERCENT] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3458), - [aux_sym_infix_op_token1] = ACTIONS(3456), - [aux_sym_infix_op_token2] = ACTIONS(3458), - [anon_sym_PIPE_PIPE] = ACTIONS(3458), - [anon_sym_BANG_EQ] = ACTIONS(3458), - [anon_sym_COLON_EQ] = ACTIONS(3456), - [anon_sym_DOLLAR] = ACTIONS(3458), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3458), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), - [sym__newline] = ACTIONS(3456), + [2477] = { + [sym_block_comment] = STATE(2477), + [sym_compiler_directive_decl] = STATE(2477), + [sym_fsi_directive_decl] = STATE(2477), + [sym_preproc_line] = STATE(2477), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [anon_sym_POUNDendif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, - [2493] = { - [sym_block_comment] = STATE(2493), - [sym_compiler_directive_decl] = STATE(2493), - [sym_fsi_directive_decl] = STATE(2493), - [sym_preproc_line] = STATE(2493), - [sym_identifier] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_QMARK] = ACTIONS(3454), - [anon_sym_COLON_QMARK] = ACTIONS(3454), - [anon_sym_COLON_COLON] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3454), - [anon_sym_AT_AT_GT] = ACTIONS(3454), - [anon_sym_DOT] = ACTIONS(3454), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_COLON_GT] = ACTIONS(3452), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_LT_DASH] = ACTIONS(3454), - [anon_sym_DOT_LBRACK] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_or] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3454), - [anon_sym_DASH_DOT] = ACTIONS(3454), - [anon_sym_PERCENT] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3454), - [aux_sym_infix_op_token1] = ACTIONS(3452), - [aux_sym_infix_op_token2] = ACTIONS(3454), - [anon_sym_PIPE_PIPE] = ACTIONS(3454), - [anon_sym_BANG_EQ] = ACTIONS(3454), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3454), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), - [sym__newline] = ACTIONS(3452), + [2478] = { + [sym_block_comment] = STATE(2478), + [sym_compiler_directive_decl] = STATE(2478), + [sym_fsi_directive_decl] = STATE(2478), + [sym_preproc_line] = STATE(2478), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [anon_sym_POUNDendif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, - [2494] = { - [sym_block_comment] = STATE(2494), - [sym_compiler_directive_decl] = STATE(2494), - [sym_fsi_directive_decl] = STATE(2494), - [sym_preproc_line] = STATE(2494), - [sym_identifier] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_COLON_QMARK] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), + [2479] = { + [sym_block_comment] = STATE(2479), + [sym_compiler_directive_decl] = STATE(2479), + [sym_fsi_directive_decl] = STATE(2479), + [sym_preproc_line] = STATE(2479), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3431), - [anon_sym_AT_AT_GT] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_COLON_GT] = ACTIONS(3429), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_DOT_LBRACK] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3431), - [anon_sym_DASH_DOT] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3431), - [aux_sym_infix_op_token1] = ACTIONS(3429), - [aux_sym_infix_op_token2] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3431), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), - [sym__newline] = ACTIONS(3429), + [anon_sym_POUNDif] = ACTIONS(3537), + [anon_sym_POUNDendif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, - [2495] = { - [sym_block_comment] = STATE(2495), - [sym_compiler_directive_decl] = STATE(2495), - [sym_fsi_directive_decl] = STATE(2495), - [sym_preproc_line] = STATE(2495), - [sym_identifier] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), + [2480] = { + [sym_block_comment] = STATE(2480), + [sym_compiler_directive_decl] = STATE(2480), + [sym_fsi_directive_decl] = STATE(2480), + [sym_preproc_line] = STATE(2480), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3427), - [anon_sym_AT_AT_GT] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_COLON_GT] = ACTIONS(3425), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_DOT_LBRACK] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3427), - [anon_sym_DASH_DOT] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3427), - [aux_sym_infix_op_token1] = ACTIONS(3425), - [aux_sym_infix_op_token2] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3427), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3427), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LBRACK_PIPE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_LT_AT] = ACTIONS(3409), + [anon_sym_LT_AT_AT] = ACTIONS(3409), + [anon_sym_DOT] = 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_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_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(3409), + [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(3411), + [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(3411), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), - [sym__newline] = ACTIONS(3425), + [anon_sym_POUNDif] = ACTIONS(3411), + [sym__newline] = ACTIONS(3411), }, - [2496] = { - [sym_block_comment] = STATE(2496), - [sym_compiler_directive_decl] = STATE(2496), - [sym_fsi_directive_decl] = STATE(2496), - [sym_preproc_line] = STATE(2496), + [2481] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5472), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym__pattern_param] = STATE(2600), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3395), + [sym_long_identifier] = STATE(3331), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4480), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_LT2] = ACTIONS(4367), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2482] = { + [sym_block_comment] = STATE(2482), + [sym_compiler_directive_decl] = STATE(2482), + [sym_fsi_directive_decl] = STATE(2482), + [sym_preproc_line] = STATE(2482), + [sym_identifier] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_do] = ACTIONS(3495), + [anon_sym_let] = ACTIONS(3495), + [anon_sym_let_BANG] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LT_AT] = ACTIONS(3495), + [anon_sym_LT_AT_AT] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_return_BANG] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_yield_BANG] = ACTIONS(3497), + [anon_sym_lazy] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_upcast] = ACTIONS(3495), + [anon_sym_downcast] = ACTIONS(3495), + [anon_sym_COLON_GT] = ACTIONS(3497), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_fun] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_match_BANG] = ACTIONS(3497), + [anon_sym_function] = ACTIONS(3495), + [anon_sym_LT_DASH] = ACTIONS(3495), + [anon_sym_DOT_LBRACK] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_use] = ACTIONS(3495), + [anon_sym_use_BANG] = ACTIONS(3497), + [anon_sym_do_BANG] = ACTIONS(3497), + [anon_sym_DOT_DOT] = ACTIONS(3497), + [anon_sym_begin] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3495), + [aux_sym_char_token1] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [anon_sym_AT_DQUOTE] = ACTIONS(3497), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3497), + [sym_bool] = ACTIONS(3495), + [sym_unit] = ACTIONS(3497), + [anon_sym_LPAREN_PIPE] = ACTIONS(3495), + [sym_op_identifier] = ACTIONS(3495), + [anon_sym_PLUS] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_PLUS_DOT] = ACTIONS(3495), + [anon_sym_DASH_DOT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3497), + [aux_sym_prefix_op_token1] = ACTIONS(3495), + [aux_sym_infix_op_token1] = ACTIONS(3497), + [aux_sym_infix_op_token2] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_COLON_EQ] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3495), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3495), + [sym_int] = ACTIONS(3495), + [sym_xint] = ACTIONS(3497), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3497), + [sym__newline] = ACTIONS(3497), + }, + [2483] = { + [sym_block_comment] = STATE(2483), + [sym_compiler_directive_decl] = STATE(2483), + [sym_fsi_directive_decl] = STATE(2483), + [sym_preproc_line] = STATE(2483), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [anon_sym_POUNDendif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), + }, + [2484] = { + [sym_block_comment] = STATE(2484), + [sym_compiler_directive_decl] = STATE(2484), + [sym_fsi_directive_decl] = STATE(2484), + [sym_preproc_line] = STATE(2484), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [anon_sym_POUNDendif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), + }, + [2485] = { + [sym_block_comment] = STATE(2485), + [sym_compiler_directive_decl] = STATE(2485), + [sym_fsi_directive_decl] = STATE(2485), + [sym_preproc_line] = STATE(2485), + [sym_identifier] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_let] = ACTIONS(3503), + [anon_sym_let_BANG] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3503), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_COLON_QMARK] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LBRACK_PIPE] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LT_AT] = ACTIONS(3503), + [anon_sym_LT_AT_AT] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3503), + [anon_sym_LBRACE_PIPE] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_return_BANG] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_yield_BANG] = ACTIONS(3505), + [anon_sym_lazy] = ACTIONS(3503), + [anon_sym_assert] = ACTIONS(3503), + [anon_sym_upcast] = ACTIONS(3503), + [anon_sym_downcast] = ACTIONS(3503), + [anon_sym_COLON_GT] = ACTIONS(3505), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_fun] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_match_BANG] = ACTIONS(3505), + [anon_sym_function] = ACTIONS(3503), + [anon_sym_LT_DASH] = ACTIONS(3503), + [anon_sym_DOT_LBRACK] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_use] = ACTIONS(3503), + [anon_sym_use_BANG] = ACTIONS(3505), + [anon_sym_do_BANG] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [anon_sym_begin] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3503), + [aux_sym_char_token1] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [anon_sym_AT_DQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3505), + [sym_bool] = ACTIONS(3503), + [sym_unit] = ACTIONS(3505), + [anon_sym_LPAREN_PIPE] = ACTIONS(3503), + [sym_op_identifier] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS_DOT] = ACTIONS(3503), + [anon_sym_DASH_DOT] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3505), + [aux_sym_prefix_op_token1] = ACTIONS(3503), + [aux_sym_infix_op_token1] = ACTIONS(3505), + [aux_sym_infix_op_token2] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_COLON_EQ] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3503), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3503), + [sym_int] = ACTIONS(3503), + [sym_xint] = ACTIONS(3505), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3505), + [sym__newline] = ACTIONS(3505), + }, + [2486] = { + [sym_block_comment] = STATE(2486), + [sym_compiler_directive_decl] = STATE(2486), + [sym_fsi_directive_decl] = STATE(2486), + [sym_preproc_line] = STATE(2486), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [anon_sym_POUNDendif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), + }, + [2487] = { + [sym_block_comment] = STATE(2487), + [sym_compiler_directive_decl] = STATE(2487), + [sym_fsi_directive_decl] = STATE(2487), + [sym_preproc_line] = STATE(2487), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3427), + [anon_sym_POUNDendif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), + }, + [2488] = { + [sym_block_comment] = STATE(2488), + [sym_compiler_directive_decl] = STATE(2488), + [sym_fsi_directive_decl] = STATE(2488), + [sym_preproc_line] = STATE(2488), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LBRACK_PIPE] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_LT_AT] = ACTIONS(3413), + [anon_sym_LT_AT_AT] = ACTIONS(3413), + [anon_sym_DOT] = 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_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_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(3413), + [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(3415), + [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(3415), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3415), + [sym__newline] = ACTIONS(3415), + }, + [2489] = { + [sym_block_comment] = STATE(2489), + [sym_compiler_directive_decl] = STATE(2489), + [sym_fsi_directive_decl] = STATE(2489), + [sym_preproc_line] = STATE(2489), [sym_identifier] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_EQ] = ACTIONS(3425), [anon_sym_COLON] = ACTIONS(3423), [anon_sym_return] = ACTIONS(3423), [anon_sym_do] = ACTIONS(3423), [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), + [anon_sym_let_BANG] = ACTIONS(3425), [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(3425), [anon_sym_null] = ACTIONS(3423), [anon_sym_QMARK] = ACTIONS(3423), [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_COLON_COLON] = ACTIONS(3425), [anon_sym_AMP] = ACTIONS(3423), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), + [anon_sym_LBRACK_PIPE] = ACTIONS(3425), [anon_sym_LBRACE] = ACTIONS(3423), [anon_sym_LT_AT] = ACTIONS(3423), [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_AT_AT_GT] = ACTIONS(3423), [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), + [anon_sym_LBRACE_PIPE] = ACTIONS(3425), [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), + [anon_sym_return_BANG] = ACTIONS(3425), [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), + [anon_sym_yield_BANG] = ACTIONS(3425), [anon_sym_lazy] = ACTIONS(3423), [anon_sym_assert] = ACTIONS(3423), [anon_sym_upcast] = ACTIONS(3423), [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_COLON_GT] = ACTIONS(3421), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3421), + [anon_sym_COLON_GT] = ACTIONS(3425), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3425), [anon_sym_for] = ACTIONS(3423), [anon_sym_while] = ACTIONS(3423), [anon_sym_if] = ACTIONS(3423), [anon_sym_fun] = ACTIONS(3423), [anon_sym_try] = ACTIONS(3423), [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), + [anon_sym_match_BANG] = ACTIONS(3425), [anon_sym_function] = ACTIONS(3423), [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_DOT_LBRACK] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), + [anon_sym_DOT_LBRACK] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_GT] = ACTIONS(3423), [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), + [anon_sym_use_BANG] = ACTIONS(3425), + [anon_sym_do_BANG] = ACTIONS(3425), [anon_sym_begin] = ACTIONS(3423), [anon_sym_LPAREN2] = ACTIONS(3423), [anon_sym_or] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), + [aux_sym_char_token1] = ACTIONS(3425), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), + [anon_sym_AT_DQUOTE] = ACTIONS(3425), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), + [sym_unit] = ACTIONS(3425), [anon_sym_LPAREN_PIPE] = ACTIONS(3423), [sym_op_identifier] = ACTIONS(3423), [anon_sym_PLUS] = ACTIONS(3423), @@ -310205,4976 +309965,5722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3423), [anon_sym_PERCENT] = ACTIONS(3423), [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3425), [aux_sym_prefix_op_token1] = ACTIONS(3423), - [aux_sym_infix_op_token1] = ACTIONS(3421), + [aux_sym_infix_op_token1] = ACTIONS(3425), [aux_sym_infix_op_token2] = ACTIONS(3423), [anon_sym_PIPE_PIPE] = ACTIONS(3423), [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3421), + [anon_sym_COLON_EQ] = ACTIONS(3425), [anon_sym_DOLLAR] = ACTIONS(3423), [anon_sym_QMARK_LT_DASH] = ACTIONS(3423), [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), + [sym_xint] = ACTIONS(3425), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), - [sym__newline] = ACTIONS(3421), + [anon_sym_POUNDif] = ACTIONS(3425), + [sym__newline] = ACTIONS(3425), }, - [2497] = { - [sym_block_comment] = STATE(2497), - [sym_compiler_directive_decl] = STATE(2497), - [sym_fsi_directive_decl] = STATE(2497), - [sym_preproc_line] = STATE(2497), - [sym_identifier] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), + [2490] = { + [sym_block_comment] = STATE(2490), + [sym_compiler_directive_decl] = STATE(2490), + [sym_fsi_directive_decl] = STATE(2490), + [sym_preproc_line] = STATE(2490), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_GT] = ACTIONS(3555), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), + }, + [2491] = { + [sym_block_comment] = STATE(2491), + [sym_compiler_directive_decl] = STATE(2491), + [sym_fsi_directive_decl] = STATE(2491), + [sym_preproc_line] = STATE(2491), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [anon_sym_POUNDendif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), + }, + [2492] = { + [sym_block_comment] = STATE(2492), + [sym_compiler_directive_decl] = STATE(2492), + [sym_fsi_directive_decl] = STATE(2492), + [sym_preproc_line] = STATE(2492), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [anon_sym_POUNDendif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), + }, + [2493] = { + [sym_block_comment] = STATE(2493), + [sym_compiler_directive_decl] = STATE(2493), + [sym_fsi_directive_decl] = STATE(2493), + [sym_preproc_line] = STATE(2493), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_AT_AT_GT] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_COLON_GT] = ACTIONS(3417), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_DOT_LBRACK] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token2] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3419), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3419), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_GT] = ACTIONS(3515), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), + }, + [2494] = { + [sym_block_comment] = STATE(2494), + [sym_compiler_directive_decl] = STATE(2494), + [sym_fsi_directive_decl] = STATE(2494), + [sym_preproc_line] = STATE(2494), + [sym_identifier] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3745), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3743), + [anon_sym_COLON_QMARK] = ACTIONS(3743), + [anon_sym_COLON_COLON] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_COLON_GT] = ACTIONS(3745), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_LT_DASH] = ACTIONS(3743), + [anon_sym_DOT_LBRACK] = ACTIONS(3745), + [anon_sym_LT] = ACTIONS(3745), + [anon_sym_GT] = ACTIONS(3743), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [anon_sym_LPAREN2] = ACTIONS(3743), + [anon_sym_or] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3743), + [anon_sym_DASH_DOT] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3743), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3743), + [aux_sym_infix_op_token1] = ACTIONS(3745), + [aux_sym_infix_op_token2] = ACTIONS(3743), + [anon_sym_PIPE_PIPE] = ACTIONS(3743), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_COLON_EQ] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3743), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3743), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), + [sym__newline] = ACTIONS(3745), + }, + [2495] = { + [sym_block_comment] = STATE(2495), + [sym_compiler_directive_decl] = STATE(2495), + [sym_fsi_directive_decl] = STATE(2495), + [sym_preproc_line] = STATE(2495), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), - [sym__newline] = ACTIONS(3417), + [anon_sym_POUNDif] = ACTIONS(3513), + [anon_sym_POUNDendif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), + }, + [2496] = { + [sym_block_comment] = STATE(2496), + [sym_compiler_directive_decl] = STATE(2496), + [sym_fsi_directive_decl] = STATE(2496), + [sym_preproc_line] = STATE(2496), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [anon_sym_POUNDendif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), + }, + [2497] = { + [sym_block_comment] = STATE(2497), + [sym_compiler_directive_decl] = STATE(2497), + [sym_fsi_directive_decl] = STATE(2497), + [sym_preproc_line] = STATE(2497), + [sym_identifier] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_COLON_QMARK] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2966), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_DOT_LBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_PLUS_DOT] = ACTIONS(2964), + [anon_sym_DASH_DOT] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [aux_sym_infix_op_token2] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2498] = { [sym_block_comment] = STATE(2498), [sym_compiler_directive_decl] = STATE(2498), [sym_fsi_directive_decl] = STATE(2498), [sym_preproc_line] = STATE(2498), - [sym_identifier] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_AT_AT_GT] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_COLON_GT] = ACTIONS(3413), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_DOT_LBRACK] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token2] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3415), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), - [sym__newline] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_do] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(3539), + [anon_sym_let_BANG] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3541), + [anon_sym_null] = ACTIONS(3539), + [anon_sym_QMARK] = ACTIONS(3539), + [anon_sym_COLON_QMARK] = ACTIONS(3539), + [anon_sym_COLON_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LBRACK_PIPE] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_LT_AT] = ACTIONS(3539), + [anon_sym_LT_AT_AT] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_LBRACE_PIPE] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3539), + [anon_sym_return_BANG] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_yield_BANG] = ACTIONS(3541), + [anon_sym_lazy] = ACTIONS(3539), + [anon_sym_assert] = ACTIONS(3539), + [anon_sym_upcast] = ACTIONS(3539), + [anon_sym_downcast] = ACTIONS(3539), + [anon_sym_COLON_GT] = ACTIONS(3541), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_fun] = ACTIONS(3539), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_match_BANG] = ACTIONS(3541), + [anon_sym_function] = ACTIONS(3539), + [anon_sym_LT_DASH] = ACTIONS(3539), + [anon_sym_DOT_LBRACK] = ACTIONS(3541), + [anon_sym_LT] = ACTIONS(3541), + [anon_sym_use] = ACTIONS(3539), + [anon_sym_use_BANG] = ACTIONS(3541), + [anon_sym_do_BANG] = ACTIONS(3541), + [anon_sym_DOT_DOT] = ACTIONS(3541), + [anon_sym_begin] = ACTIONS(3539), + [anon_sym_LPAREN2] = ACTIONS(3539), + [anon_sym_or] = ACTIONS(3539), + [aux_sym_char_token1] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [anon_sym_AT_DQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), + [sym_bool] = ACTIONS(3539), + [sym_unit] = ACTIONS(3541), + [anon_sym_LPAREN_PIPE] = ACTIONS(3539), + [sym_op_identifier] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_PLUS_DOT] = ACTIONS(3539), + [anon_sym_DASH_DOT] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3541), + [aux_sym_prefix_op_token1] = ACTIONS(3539), + [aux_sym_infix_op_token1] = ACTIONS(3541), + [aux_sym_infix_op_token2] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_COLON_EQ] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3539), + [sym_int] = ACTIONS(3539), + [sym_xint] = ACTIONS(3541), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3541), + [sym__newline] = ACTIONS(3541), }, [2499] = { [sym_block_comment] = STATE(2499), [sym_compiler_directive_decl] = STATE(2499), [sym_fsi_directive_decl] = STATE(2499), [sym_preproc_line] = STATE(2499), - [sym_identifier] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_COLON_QMARK] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3403), - [anon_sym_AT_AT_GT] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_COLON_GT] = ACTIONS(3401), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_DOT_LBRACK] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3403), - [anon_sym_DASH_DOT] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3403), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token2] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3403), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), - [sym__newline] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2500] = { [sym_block_comment] = STATE(2500), [sym_compiler_directive_decl] = STATE(2500), [sym_fsi_directive_decl] = STATE(2500), [sym_preproc_line] = STATE(2500), - [sym_identifier] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_COLON_QMARK] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3399), - [anon_sym_AT_AT_GT] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_COLON_GT] = ACTIONS(3397), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_DOT_LBRACK] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3399), - [anon_sym_DASH_DOT] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3399), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token2] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3399), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3397), - [sym__newline] = ACTIONS(3397), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2501] = { [sym_block_comment] = STATE(2501), [sym_compiler_directive_decl] = STATE(2501), [sym_fsi_directive_decl] = STATE(2501), [sym_preproc_line] = STATE(2501), - [sym_identifier] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_COLON_QMARK] = ACTIONS(3663), - [anon_sym_COLON_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3663), - [anon_sym_AT_AT_GT] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3663), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_COLON_GT] = ACTIONS(3661), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3661), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_LT_DASH] = ACTIONS(3663), - [anon_sym_DOT_LBRACK] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_or] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3663), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3663), - [anon_sym_DASH_DOT] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3663), - [aux_sym_infix_op_token1] = ACTIONS(3661), - [aux_sym_infix_op_token2] = ACTIONS(3663), - [anon_sym_PIPE_PIPE] = ACTIONS(3663), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_COLON_EQ] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3663), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3661), - [sym__newline] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_let] = ACTIONS(3555), + [anon_sym_let_BANG] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_COMMA] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_QMARK] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LBRACK_PIPE] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LT_AT] = ACTIONS(3555), + [anon_sym_LT_AT_AT] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3555), + [anon_sym_LBRACE_PIPE] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_return_BANG] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_yield_BANG] = ACTIONS(3557), + [anon_sym_lazy] = ACTIONS(3555), + [anon_sym_assert] = ACTIONS(3555), + [anon_sym_upcast] = ACTIONS(3555), + [anon_sym_downcast] = ACTIONS(3555), + [anon_sym_COLON_GT] = ACTIONS(3557), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_fun] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_match_BANG] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3555), + [anon_sym_LT_DASH] = ACTIONS(3555), + [anon_sym_DOT_LBRACK] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_use] = ACTIONS(3555), + [anon_sym_use_BANG] = ACTIONS(3557), + [anon_sym_do_BANG] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3557), + [anon_sym_begin] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3555), + [anon_sym_or] = ACTIONS(3555), + [aux_sym_char_token1] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [anon_sym_AT_DQUOTE] = ACTIONS(3557), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3557), + [sym_bool] = ACTIONS(3555), + [sym_unit] = ACTIONS(3557), + [anon_sym_LPAREN_PIPE] = ACTIONS(3555), + [sym_op_identifier] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS_DOT] = ACTIONS(3555), + [anon_sym_DASH_DOT] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_AMP_AMP] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3557), + [aux_sym_prefix_op_token1] = ACTIONS(3555), + [aux_sym_infix_op_token1] = ACTIONS(3557), + [aux_sym_infix_op_token2] = ACTIONS(3555), + [anon_sym_PIPE_PIPE] = ACTIONS(3555), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_COLON_EQ] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3555), + [sym_int] = ACTIONS(3555), + [sym_xint] = ACTIONS(3557), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3557), + [sym__newline] = ACTIONS(3557), }, [2502] = { [sym_block_comment] = STATE(2502), [sym_compiler_directive_decl] = STATE(2502), [sym_fsi_directive_decl] = STATE(2502), [sym_preproc_line] = STATE(2502), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_DOT] = 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_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_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(3409), - [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(3411), - [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(3411), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3475), + [anon_sym_EQ] = ACTIONS(3477), + [anon_sym_COLON] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_QMARK] = ACTIONS(3475), + [anon_sym_COLON_QMARK] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_COLON_GT] = ACTIONS(3477), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_LT_DASH] = ACTIONS(3475), + [anon_sym_DOT_LBRACK] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_or] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS_DOT] = ACTIONS(3475), + [anon_sym_DASH_DOT] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3475), + [aux_sym_infix_op_token1] = ACTIONS(3477), + [aux_sym_infix_op_token2] = ACTIONS(3475), + [anon_sym_PIPE_PIPE] = ACTIONS(3475), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_COLON_EQ] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3475), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3475), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), + [anon_sym_POUNDendif] = ACTIONS(3477), + [sym__newline] = ACTIONS(3477), }, [2503] = { [sym_block_comment] = STATE(2503), [sym_compiler_directive_decl] = STATE(2503), [sym_fsi_directive_decl] = STATE(2503), [sym_preproc_line] = STATE(2503), - [sym_identifier] = ACTIONS(3554), - [anon_sym_EQ] = ACTIONS(3552), - [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(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_QMARK] = ACTIONS(3554), - [anon_sym_COLON_QMARK] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [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(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [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(3552), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_DOT_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3554), - [anon_sym_or] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [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(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3554), - [aux_sym_infix_op_token1] = ACTIONS(3552), - [aux_sym_infix_op_token2] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BANG_EQ] = ACTIONS(3554), - [anon_sym_COLON_EQ] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3554), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - [sym__newline] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3732), + [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(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [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(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3734), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [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(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3732), + [aux_sym_infix_op_token2] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2504] = { [sym_block_comment] = STATE(2504), [sym_compiler_directive_decl] = STATE(2504), [sym_fsi_directive_decl] = STATE(2504), [sym_preproc_line] = STATE(2504), - [sym_identifier] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3605), - [anon_sym_COLON_QMARK] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3605), - [anon_sym_AT_AT_GT] = ACTIONS(3605), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_COLON_GT] = ACTIONS(3603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_LT_DASH] = ACTIONS(3605), - [anon_sym_DOT_LBRACK] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_or] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3605), - [anon_sym_DASH_DOT] = ACTIONS(3605), - [anon_sym_PERCENT] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3605), - [aux_sym_infix_op_token1] = ACTIONS(3603), - [aux_sym_infix_op_token2] = ACTIONS(3605), - [anon_sym_PIPE_PIPE] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3605), - [anon_sym_COLON_EQ] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3605), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3603), - [sym__newline] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_COLON_QMARK] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3568), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_COLON_GT] = ACTIONS(3566), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_DOT_LBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_GT] = ACTIONS(3568), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS_DOT] = ACTIONS(3568), + [anon_sym_DASH_DOT] = ACTIONS(3568), + [anon_sym_PERCENT] = ACTIONS(3568), + [anon_sym_AMP_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3568), + [aux_sym_infix_op_token1] = ACTIONS(3566), + [aux_sym_infix_op_token2] = ACTIONS(3568), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_BANG_EQ] = ACTIONS(3568), + [anon_sym_COLON_EQ] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3568), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), + [sym__newline] = ACTIONS(3566), }, [2505] = { [sym_block_comment] = STATE(2505), [sym_compiler_directive_decl] = STATE(2505), [sym_fsi_directive_decl] = STATE(2505), [sym_preproc_line] = STATE(2505), - [sym_identifier] = ACTIONS(3609), - [anon_sym_EQ] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3609), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [anon_sym_COLON_COLON] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_let_BANG] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3433), + [anon_sym_null] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_COLON_QMARK] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3431), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3609), - [anon_sym_AT_AT_GT] = ACTIONS(3609), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_COLON_GT] = ACTIONS(3607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_LT_DASH] = ACTIONS(3609), - [anon_sym_DOT_LBRACK] = ACTIONS(3607), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_or] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3609), - [anon_sym_DASH_DOT] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3609), - [aux_sym_infix_op_token1] = ACTIONS(3607), - [aux_sym_infix_op_token2] = ACTIONS(3609), - [anon_sym_PIPE_PIPE] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3609), - [anon_sym_COLON_EQ] = ACTIONS(3607), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3609), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LBRACK_PIPE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LT_AT] = ACTIONS(3431), + [anon_sym_LT_AT_AT] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_LBRACE_PIPE] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_return_BANG] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_yield_BANG] = ACTIONS(3433), + [anon_sym_lazy] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_upcast] = ACTIONS(3431), + [anon_sym_downcast] = ACTIONS(3431), + [anon_sym_COLON_GT] = ACTIONS(3433), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_fun] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_match_BANG] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_LT_DASH] = ACTIONS(3431), + [anon_sym_DOT_LBRACK] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_use] = ACTIONS(3431), + [anon_sym_use_BANG] = ACTIONS(3433), + [anon_sym_do_BANG] = ACTIONS(3433), + [anon_sym_begin] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [aux_sym_char_token1] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_AT_DQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3433), + [sym_bool] = ACTIONS(3431), + [sym_unit] = ACTIONS(3433), + [anon_sym_LPAREN_PIPE] = ACTIONS(3431), + [sym_op_identifier] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_PLUS_DOT] = ACTIONS(3431), + [anon_sym_DASH_DOT] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [aux_sym_prefix_op_token1] = ACTIONS(3431), + [aux_sym_infix_op_token1] = ACTIONS(3433), + [aux_sym_infix_op_token2] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_COLON_EQ] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3431), + [sym_int] = ACTIONS(3431), + [sym_xint] = ACTIONS(3433), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3607), - [sym__newline] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), }, [2506] = { [sym_block_comment] = STATE(2506), [sym_compiler_directive_decl] = STATE(2506), [sym_fsi_directive_decl] = STATE(2506), [sym_preproc_line] = STATE(2506), - [sym_identifier] = ACTIONS(3704), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3704), - [anon_sym_AT_AT_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_COLON_GT] = ACTIONS(3702), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_LT_DASH] = ACTIONS(3704), - [anon_sym_DOT_LBRACK] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3704), - [anon_sym_DASH_DOT] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3704), - [aux_sym_infix_op_token1] = ACTIONS(3702), - [aux_sym_infix_op_token2] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_COLON_EQ] = ACTIONS(3702), - [anon_sym_DOLLAR] = ACTIONS(3704), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3704), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3702), - [sym__newline] = ACTIONS(3702), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LBRACK_PIPE] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LT_AT] = ACTIONS(3435), + [anon_sym_LT_AT_AT] = ACTIONS(3435), + [anon_sym_DOT] = 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_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_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(3435), + [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(3437), + [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(3437), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3437), + [sym__newline] = ACTIONS(3437), }, [2507] = { [sym_block_comment] = STATE(2507), [sym_compiler_directive_decl] = STATE(2507), [sym_fsi_directive_decl] = STATE(2507), [sym_preproc_line] = STATE(2507), - [sym_identifier] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3708), - [anon_sym_AT_AT_GT] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_COLON_GT] = ACTIONS(3706), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_LT_DASH] = ACTIONS(3708), - [anon_sym_DOT_LBRACK] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3708), - [anon_sym_DASH_DOT] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3708), - [aux_sym_infix_op_token1] = ACTIONS(3706), - [aux_sym_infix_op_token2] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_COLON_EQ] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3708), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3708), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), - [sym__newline] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_let_BANG] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3661), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_LBRACK_PIPE] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_LT_AT] = ACTIONS(3661), + [anon_sym_LT_AT_AT] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_LBRACE_PIPE] = ACTIONS(3663), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_return_BANG] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3661), + [anon_sym_yield_BANG] = ACTIONS(3663), + [anon_sym_lazy] = ACTIONS(3661), + [anon_sym_assert] = ACTIONS(3661), + [anon_sym_upcast] = ACTIONS(3661), + [anon_sym_downcast] = ACTIONS(3661), + [anon_sym_COLON_GT] = ACTIONS(3663), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_fun] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_match] = ACTIONS(3661), + [anon_sym_match_BANG] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(3661), + [anon_sym_LT_DASH] = ACTIONS(3661), + [anon_sym_DOT_LBRACK] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3661), + [anon_sym_use] = ACTIONS(3661), + [anon_sym_use_BANG] = ACTIONS(3663), + [anon_sym_do_BANG] = ACTIONS(3663), + [anon_sym_begin] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [aux_sym_char_token1] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_AT_DQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3663), + [sym_bool] = ACTIONS(3661), + [sym_unit] = ACTIONS(3663), + [anon_sym_LPAREN_PIPE] = ACTIONS(3661), + [sym_op_identifier] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS_DOT] = ACTIONS(3661), + [anon_sym_DASH_DOT] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3663), + [aux_sym_prefix_op_token1] = ACTIONS(3661), + [aux_sym_infix_op_token1] = ACTIONS(3663), + [aux_sym_infix_op_token2] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_COLON_EQ] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3661), + [sym_int] = ACTIONS(3661), + [sym_xint] = ACTIONS(3663), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3663), + [sym__newline] = ACTIONS(3663), }, [2508] = { [sym_block_comment] = STATE(2508), [sym_compiler_directive_decl] = STATE(2508), [sym_fsi_directive_decl] = STATE(2508), [sym_preproc_line] = STATE(2508), - [sym_identifier] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(3710), - [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(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [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(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [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(3710), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3710), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_LT_DASH] = ACTIONS(3712), - [anon_sym_DOT_LBRACK] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3712), - [anon_sym_or] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [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(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3712), - [aux_sym_infix_op_token1] = ACTIONS(3710), - [aux_sym_infix_op_token2] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3712), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_COLON_EQ] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3712), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), - [sym__newline] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_return] = ACTIONS(3641), + [anon_sym_do] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(3641), + [anon_sym_let_BANG] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_COMMA] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3641), + [anon_sym_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LBRACK_PIPE] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_LT_AT] = ACTIONS(3641), + [anon_sym_LT_AT_AT] = ACTIONS(3641), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3643), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_return_BANG] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3641), + [anon_sym_yield_BANG] = ACTIONS(3643), + [anon_sym_lazy] = ACTIONS(3641), + [anon_sym_assert] = ACTIONS(3641), + [anon_sym_upcast] = ACTIONS(3641), + [anon_sym_downcast] = ACTIONS(3641), + [anon_sym_COLON_GT] = ACTIONS(3643), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3641), + [anon_sym_while] = ACTIONS(3641), + [anon_sym_if] = ACTIONS(3641), + [anon_sym_fun] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3641), + [anon_sym_match] = ACTIONS(3641), + [anon_sym_match_BANG] = ACTIONS(3643), + [anon_sym_function] = ACTIONS(3641), + [anon_sym_LT_DASH] = ACTIONS(3641), + [anon_sym_DOT_LBRACK] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_GT] = ACTIONS(3641), + [anon_sym_use] = ACTIONS(3641), + [anon_sym_use_BANG] = ACTIONS(3643), + [anon_sym_do_BANG] = ACTIONS(3643), + [anon_sym_begin] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(3641), + [anon_sym_or] = ACTIONS(3641), + [aux_sym_char_token1] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [anon_sym_AT_DQUOTE] = ACTIONS(3643), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3643), + [sym_bool] = ACTIONS(3641), + [sym_unit] = ACTIONS(3643), + [anon_sym_LPAREN_PIPE] = ACTIONS(3641), + [sym_op_identifier] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_PLUS_DOT] = ACTIONS(3641), + [anon_sym_DASH_DOT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3643), + [aux_sym_prefix_op_token1] = ACTIONS(3641), + [aux_sym_infix_op_token1] = ACTIONS(3643), + [aux_sym_infix_op_token2] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BANG_EQ] = ACTIONS(3641), + [anon_sym_COLON_EQ] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3641), + [sym_int] = ACTIONS(3641), + [sym_xint] = ACTIONS(3643), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3643), + [sym__newline] = ACTIONS(3643), }, [2509] = { [sym_block_comment] = STATE(2509), [sym_compiler_directive_decl] = STATE(2509), [sym_fsi_directive_decl] = STATE(2509), [sym_preproc_line] = STATE(2509), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3651), + [anon_sym_EQ] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3651), + [anon_sym_COLON_QMARK] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3651), + [anon_sym_AT_AT_GT] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_COLON_GT] = ACTIONS(3649), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_LT_DASH] = ACTIONS(3651), + [anon_sym_DOT_LBRACK] = ACTIONS(3649), + [anon_sym_LT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_or] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3651), + [anon_sym_DASH_DOT] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3651), + [aux_sym_infix_op_token1] = ACTIONS(3649), + [aux_sym_infix_op_token2] = ACTIONS(3651), + [anon_sym_PIPE_PIPE] = ACTIONS(3651), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_COLON_EQ] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3651), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + [sym__newline] = ACTIONS(3649), }, [2510] = { [sym_block_comment] = STATE(2510), [sym_compiler_directive_decl] = STATE(2510), [sym_fsi_directive_decl] = STATE(2510), [sym_preproc_line] = STATE(2510), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [anon_sym_COLON] = ACTIONS(3637), + [anon_sym_return] = ACTIONS(3637), + [anon_sym_do] = ACTIONS(3637), + [anon_sym_let] = ACTIONS(3637), + [anon_sym_let_BANG] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(3639), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_COLON_QMARK] = ACTIONS(3637), + [anon_sym_COLON_COLON] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LBRACK_PIPE] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_LT_AT] = ACTIONS(3637), + [anon_sym_LT_AT_AT] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_LBRACE_PIPE] = ACTIONS(3639), + [anon_sym_new] = ACTIONS(3637), + [anon_sym_return_BANG] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3637), + [anon_sym_yield_BANG] = ACTIONS(3639), + [anon_sym_lazy] = ACTIONS(3637), + [anon_sym_assert] = ACTIONS(3637), + [anon_sym_upcast] = ACTIONS(3637), + [anon_sym_downcast] = ACTIONS(3637), + [anon_sym_COLON_GT] = ACTIONS(3639), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3637), + [anon_sym_while] = ACTIONS(3637), + [anon_sym_if] = ACTIONS(3637), + [anon_sym_fun] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3637), + [anon_sym_match] = ACTIONS(3637), + [anon_sym_match_BANG] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(3637), + [anon_sym_LT_DASH] = ACTIONS(3637), + [anon_sym_DOT_LBRACK] = ACTIONS(3639), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_GT] = ACTIONS(3637), + [anon_sym_use] = ACTIONS(3637), + [anon_sym_use_BANG] = ACTIONS(3639), + [anon_sym_do_BANG] = ACTIONS(3639), + [anon_sym_begin] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_or] = ACTIONS(3637), + [aux_sym_char_token1] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [anon_sym_AT_DQUOTE] = ACTIONS(3639), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3639), + [sym_bool] = ACTIONS(3637), + [sym_unit] = ACTIONS(3639), + [anon_sym_LPAREN_PIPE] = ACTIONS(3637), + [sym_op_identifier] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS_DOT] = ACTIONS(3637), + [anon_sym_DASH_DOT] = ACTIONS(3637), + [anon_sym_PERCENT] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [aux_sym_prefix_op_token1] = ACTIONS(3637), + [aux_sym_infix_op_token1] = ACTIONS(3639), + [aux_sym_infix_op_token2] = ACTIONS(3637), + [anon_sym_PIPE_PIPE] = ACTIONS(3637), + [anon_sym_BANG_EQ] = ACTIONS(3637), + [anon_sym_COLON_EQ] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3637), + [sym_int] = ACTIONS(3637), + [sym_xint] = ACTIONS(3639), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3639), + [sym__newline] = ACTIONS(3639), }, [2511] = { [sym_block_comment] = STATE(2511), [sym_compiler_directive_decl] = STATE(2511), [sym_fsi_directive_decl] = STATE(2511), [sym_preproc_line] = STATE(2511), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LBRACK_PIPE] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_LT_AT] = ACTIONS(3439), + [anon_sym_LT_AT_AT] = ACTIONS(3439), + [anon_sym_DOT] = 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_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_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(3439), + [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(3441), + [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(3441), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3441), + [sym__newline] = ACTIONS(3441), }, [2512] = { [sym_block_comment] = STATE(2512), [sym_compiler_directive_decl] = STATE(2512), [sym_fsi_directive_decl] = STATE(2512), [sym_preproc_line] = STATE(2512), - [sym_identifier] = ACTIONS(3441), - [anon_sym_EQ] = ACTIONS(3443), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_let_BANG] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_COLON_QMARK] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_LT_AT] = ACTIONS(3441), - [anon_sym_LT_AT_AT] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_return_BANG] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_yield_BANG] = ACTIONS(3443), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_assert] = ACTIONS(3441), - [anon_sym_upcast] = ACTIONS(3441), - [anon_sym_downcast] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_fun] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_match] = ACTIONS(3441), - [anon_sym_match_BANG] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_LT_DASH] = ACTIONS(3441), - [anon_sym_DOT_LBRACK] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_GT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3441), - [anon_sym_use_BANG] = ACTIONS(3443), - [anon_sym_do_BANG] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [aux_sym_char_token1] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_AT_DQUOTE] = ACTIONS(3443), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3443), - [sym_bool] = ACTIONS(3441), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3441), - [sym_op_identifier] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [anon_sym_PERCENT] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3443), - [aux_sym_prefix_op_token1] = ACTIONS(3441), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token2] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3441), - [sym_int] = ACTIONS(3441), - [sym_xint] = ACTIONS(3443), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3443), - [sym__newline] = ACTIONS(3443), - }, - [2513] = { - [sym_block_comment] = STATE(2513), - [sym_compiler_directive_decl] = STATE(2513), - [sym_fsi_directive_decl] = STATE(2513), - [sym_preproc_line] = STATE(2513), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_do] = ACTIONS(3515), + [anon_sym_let] = ACTIONS(3515), + [anon_sym_let_BANG] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3515), + [anon_sym_COLON_QMARK] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3513), + [anon_sym_AMP] = ACTIONS(3515), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LBRACK_PIPE] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LT_AT] = ACTIONS(3515), + [anon_sym_LT_AT_AT] = ACTIONS(3515), + [anon_sym_AT_AT_GT] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_LBRACE_PIPE] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_return_BANG] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_yield_BANG] = ACTIONS(3513), + [anon_sym_lazy] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_upcast] = ACTIONS(3515), + [anon_sym_downcast] = ACTIONS(3515), + [anon_sym_COLON_GT] = ACTIONS(3513), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_fun] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_match_BANG] = ACTIONS(3513), + [anon_sym_function] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_DOT_LBRACK] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_use] = ACTIONS(3515), + [anon_sym_use_BANG] = ACTIONS(3513), + [anon_sym_do_BANG] = ACTIONS(3513), + [anon_sym_begin] = ACTIONS(3515), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [aux_sym_char_token1] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_AT_DQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), + [sym_bool] = ACTIONS(3515), + [sym_unit] = ACTIONS(3513), + [anon_sym_LPAREN_PIPE] = ACTIONS(3515), + [sym_op_identifier] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_PLUS_DOT] = ACTIONS(3515), + [anon_sym_DASH_DOT] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3513), + [aux_sym_prefix_op_token1] = ACTIONS(3515), + [aux_sym_infix_op_token1] = ACTIONS(3513), + [aux_sym_infix_op_token2] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_COLON_EQ] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3515), + [sym_int] = ACTIONS(3515), + [sym_xint] = ACTIONS(3513), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), - }, - [2514] = { - [sym_block_comment] = STATE(2514), - [sym_compiler_directive_decl] = STATE(2514), - [sym_fsi_directive_decl] = STATE(2514), - [sym_preproc_line] = STATE(2514), - [sym_identifier] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_COLON] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_let_BANG] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3476), - [anon_sym_QMARK] = ACTIONS(3476), - [anon_sym_COLON_QMARK] = ACTIONS(3476), - [anon_sym_COLON_COLON] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LBRACK_PIPE] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LT_AT] = ACTIONS(3476), - [anon_sym_LT_AT_AT] = ACTIONS(3476), - [anon_sym_DOT] = ACTIONS(3476), - [anon_sym_LBRACE_PIPE] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_return_BANG] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_yield_BANG] = ACTIONS(3478), - [anon_sym_lazy] = ACTIONS(3476), - [anon_sym_assert] = ACTIONS(3476), - [anon_sym_upcast] = ACTIONS(3476), - [anon_sym_downcast] = ACTIONS(3476), - [anon_sym_COLON_GT] = ACTIONS(3478), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_fun] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3476), - [anon_sym_match_BANG] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_LT_DASH] = ACTIONS(3476), - [anon_sym_DOT_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_GT] = ACTIONS(3476), - [anon_sym_use] = ACTIONS(3476), - [anon_sym_use_BANG] = ACTIONS(3478), - [anon_sym_do_BANG] = ACTIONS(3478), - [anon_sym_begin] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_or] = ACTIONS(3476), - [aux_sym_char_token1] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [anon_sym_AT_DQUOTE] = ACTIONS(3478), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3478), - [sym_bool] = ACTIONS(3476), - [sym_unit] = ACTIONS(3478), - [anon_sym_LPAREN_PIPE] = ACTIONS(3476), - [sym_op_identifier] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_PLUS_DOT] = ACTIONS(3476), - [anon_sym_DASH_DOT] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3478), - [aux_sym_prefix_op_token1] = ACTIONS(3476), - [aux_sym_infix_op_token1] = ACTIONS(3478), - [aux_sym_infix_op_token2] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_COLON_EQ] = ACTIONS(3478), - [anon_sym_DOLLAR] = ACTIONS(3476), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3476), - [sym_int] = ACTIONS(3476), - [sym_xint] = ACTIONS(3478), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3478), - [sym__newline] = ACTIONS(3478), - }, - [2515] = { - [sym_block_comment] = STATE(2515), - [sym_compiler_directive_decl] = STATE(2515), - [sym_fsi_directive_decl] = STATE(2515), - [sym_preproc_line] = STATE(2515), - [sym_identifier] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_let_BANG] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_COLON] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LBRACK_PIPE] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_LT_AT] = ACTIONS(3480), - [anon_sym_LT_AT_AT] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_LBRACE_PIPE] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_return_BANG] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_yield_BANG] = ACTIONS(3482), - [anon_sym_lazy] = ACTIONS(3480), - [anon_sym_assert] = ACTIONS(3480), - [anon_sym_upcast] = ACTIONS(3480), - [anon_sym_downcast] = ACTIONS(3480), - [anon_sym_COLON_GT] = ACTIONS(3482), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_fun] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3480), - [anon_sym_match_BANG] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_LT_DASH] = ACTIONS(3480), - [anon_sym_DOT_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_GT] = ACTIONS(3480), - [anon_sym_use] = ACTIONS(3480), - [anon_sym_use_BANG] = ACTIONS(3482), - [anon_sym_do_BANG] = ACTIONS(3482), - [anon_sym_begin] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(3480), - [anon_sym_or] = ACTIONS(3480), - [aux_sym_char_token1] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_AT_DQUOTE] = ACTIONS(3482), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3482), - [sym_bool] = ACTIONS(3480), - [sym_unit] = ACTIONS(3482), - [anon_sym_LPAREN_PIPE] = ACTIONS(3480), - [sym_op_identifier] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_PLUS_DOT] = ACTIONS(3480), - [anon_sym_DASH_DOT] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_AMP_AMP] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3482), - [aux_sym_prefix_op_token1] = ACTIONS(3480), - [aux_sym_infix_op_token1] = ACTIONS(3482), - [aux_sym_infix_op_token2] = ACTIONS(3480), - [anon_sym_PIPE_PIPE] = ACTIONS(3480), - [anon_sym_BANG_EQ] = ACTIONS(3480), - [anon_sym_COLON_EQ] = ACTIONS(3482), - [anon_sym_DOLLAR] = ACTIONS(3480), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3480), - [sym_int] = ACTIONS(3480), - [sym_xint] = ACTIONS(3482), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3482), - [sym__newline] = ACTIONS(3482), + [anon_sym_POUNDif] = ACTIONS(3513), + [sym__newline] = ACTIONS(3513), }, - [2516] = { + [2513] = { + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5599), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym__pattern_param] = STATE(2593), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3395), + [sym_long_identifier] = STATE(3331), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4480), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2514] = { + [sym_block_comment] = STATE(2514), + [sym_compiler_directive_decl] = STATE(2514), + [sym_fsi_directive_decl] = STATE(2514), + [sym_preproc_line] = STATE(2514), + [sym_identifier] = ACTIONS(3647), + [anon_sym_EQ] = ACTIONS(3645), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_QMARK] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3647), + [anon_sym_AT_AT_GT] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3647), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_COLON_GT] = ACTIONS(3645), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_LT_DASH] = ACTIONS(3647), + [anon_sym_DOT_LBRACK] = ACTIONS(3645), + [anon_sym_LT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(3647), + [anon_sym_or] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3647), + [anon_sym_DASH_DOT] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3647), + [aux_sym_infix_op_token1] = ACTIONS(3645), + [aux_sym_infix_op_token2] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_COLON_EQ] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3647), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3647), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), + [sym__newline] = ACTIONS(3645), + }, + [2515] = { + [sym_block_comment] = STATE(2515), + [sym_compiler_directive_decl] = STATE(2515), + [sym_fsi_directive_decl] = STATE(2515), + [sym_preproc_line] = STATE(2515), + [sym_identifier] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3633), + [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(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3635), + [anon_sym_AT_AT_GT] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3635), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [anon_sym_COLON_GT] = ACTIONS(3633), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_LT_DASH] = ACTIONS(3635), + [anon_sym_DOT_LBRACK] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_or] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [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(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3635), + [aux_sym_infix_op_token1] = ACTIONS(3633), + [aux_sym_infix_op_token2] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_COLON_EQ] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), + [sym__newline] = ACTIONS(3633), + }, + [2516] = { [sym_block_comment] = STATE(2516), [sym_compiler_directive_decl] = STATE(2516), [sym_fsi_directive_decl] = STATE(2516), [sym_preproc_line] = STATE(2516), - [sym_identifier] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_let_BANG] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_null] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_COLON_QMARK] = ACTIONS(3488), - [anon_sym_COLON_COLON] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LBRACK_PIPE] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_LT_AT] = ACTIONS(3488), - [anon_sym_LT_AT_AT] = ACTIONS(3488), - [anon_sym_DOT] = ACTIONS(3488), - [anon_sym_LBRACE_PIPE] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_return_BANG] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_yield_BANG] = ACTIONS(3490), - [anon_sym_lazy] = ACTIONS(3488), - [anon_sym_assert] = ACTIONS(3488), - [anon_sym_upcast] = ACTIONS(3488), - [anon_sym_downcast] = ACTIONS(3488), - [anon_sym_COLON_GT] = ACTIONS(3490), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_fun] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_match] = ACTIONS(3488), - [anon_sym_match_BANG] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_LT_DASH] = ACTIONS(3488), - [anon_sym_DOT_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_GT] = ACTIONS(3488), - [anon_sym_use] = ACTIONS(3488), - [anon_sym_use_BANG] = ACTIONS(3490), - [anon_sym_do_BANG] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(3488), - [anon_sym_or] = ACTIONS(3488), - [aux_sym_char_token1] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_AT_DQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3490), - [sym_bool] = ACTIONS(3488), - [sym_unit] = ACTIONS(3490), - [anon_sym_LPAREN_PIPE] = ACTIONS(3488), - [sym_op_identifier] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_PLUS_DOT] = ACTIONS(3488), - [anon_sym_DASH_DOT] = ACTIONS(3488), - [anon_sym_PERCENT] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3490), - [aux_sym_prefix_op_token1] = ACTIONS(3488), - [aux_sym_infix_op_token1] = ACTIONS(3490), - [aux_sym_infix_op_token2] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_BANG_EQ] = ACTIONS(3488), - [anon_sym_COLON_EQ] = ACTIONS(3490), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3488), - [sym_int] = ACTIONS(3488), - [sym_xint] = ACTIONS(3490), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3490), - [sym__newline] = ACTIONS(3490), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LBRACK_PIPE] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_LT_AT] = ACTIONS(3443), + [anon_sym_LT_AT_AT] = ACTIONS(3443), + [anon_sym_DOT] = 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_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_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(3443), + [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(3445), + [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(3445), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3445), + [sym__newline] = ACTIONS(3445), }, [2517] = { [sym_block_comment] = STATE(2517), [sym_compiler_directive_decl] = STATE(2517), [sym_fsi_directive_decl] = STATE(2517), [sym_preproc_line] = STATE(2517), - [sym_identifier] = ACTIONS(3492), - [anon_sym_EQ] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_let_BANG] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LBRACK_PIPE] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_LT_AT] = ACTIONS(3492), - [anon_sym_LT_AT_AT] = ACTIONS(3492), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_LBRACE_PIPE] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_return_BANG] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_yield_BANG] = ACTIONS(3494), - [anon_sym_lazy] = ACTIONS(3492), - [anon_sym_assert] = ACTIONS(3492), - [anon_sym_upcast] = ACTIONS(3492), - [anon_sym_downcast] = ACTIONS(3492), - [anon_sym_COLON_GT] = ACTIONS(3494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_fun] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_match] = ACTIONS(3492), - [anon_sym_match_BANG] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(3492), - [anon_sym_DOT_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_use] = ACTIONS(3492), - [anon_sym_use_BANG] = ACTIONS(3494), - [anon_sym_do_BANG] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(3492), - [anon_sym_or] = ACTIONS(3492), - [aux_sym_char_token1] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_AT_DQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3494), - [sym_bool] = ACTIONS(3492), - [sym_unit] = ACTIONS(3494), - [anon_sym_LPAREN_PIPE] = ACTIONS(3492), - [sym_op_identifier] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_PLUS_DOT] = ACTIONS(3492), - [anon_sym_DASH_DOT] = ACTIONS(3492), - [anon_sym_PERCENT] = ACTIONS(3492), - [anon_sym_AMP_AMP] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3494), - [aux_sym_prefix_op_token1] = ACTIONS(3492), - [aux_sym_infix_op_token1] = ACTIONS(3494), - [aux_sym_infix_op_token2] = ACTIONS(3492), - [anon_sym_PIPE_PIPE] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_COLON_EQ] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3492), - [sym_int] = ACTIONS(3492), - [sym_xint] = ACTIONS(3494), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3494), - [sym__newline] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3455), + [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(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_COLON_QMARK] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3457), + [anon_sym_AT_AT_GT] = ACTIONS(3457), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [anon_sym_COLON_GT] = ACTIONS(3455), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3455), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_DOT_LBRACK] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3457), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token2] = ACTIONS(3457), + [anon_sym_PIPE_PIPE] = ACTIONS(3457), + [anon_sym_BANG_EQ] = ACTIONS(3457), + [anon_sym_COLON_EQ] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + [sym__newline] = ACTIONS(3455), }, [2518] = { [sym_block_comment] = STATE(2518), [sym_compiler_directive_decl] = STATE(2518), [sym_fsi_directive_decl] = STATE(2518), [sym_preproc_line] = STATE(2518), - [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_SEMI] = ACTIONS(3), - [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(3718), - [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(3720), - [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(3720), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), - [sym__newline] = ACTIONS(3720), - }, - [2519] = { - [sym_block_comment] = STATE(2519), - [sym_compiler_directive_decl] = STATE(2519), - [sym_fsi_directive_decl] = STATE(2519), - [sym_preproc_line] = STATE(2519), - [sym_identifier] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3599), - [anon_sym_let] = ACTIONS(3599), - [anon_sym_let_BANG] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_COLON_QMARK] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), + [sym_identifier] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_QMARK] = ACTIONS(2528), + [anon_sym_COLON_QMARK] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_LBRACK_PIPE] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_LT_AT] = ACTIONS(3599), - [anon_sym_LT_AT_AT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3599), - [anon_sym_LBRACE_PIPE] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3599), - [anon_sym_return_BANG] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_yield_BANG] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3599), - [anon_sym_assert] = ACTIONS(3599), - [anon_sym_upcast] = ACTIONS(3599), - [anon_sym_downcast] = ACTIONS(3599), - [anon_sym_COLON_GT] = ACTIONS(3601), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_fun] = ACTIONS(3599), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_match_BANG] = ACTIONS(3601), - [anon_sym_function] = ACTIONS(3599), - [anon_sym_LT_DASH] = ACTIONS(3599), - [anon_sym_DOT_LBRACK] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_use] = ACTIONS(3599), - [anon_sym_use_BANG] = ACTIONS(3601), - [anon_sym_do_BANG] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_or] = ACTIONS(3599), - [aux_sym_char_token1] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [anon_sym_AT_DQUOTE] = ACTIONS(3601), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), - [sym_bool] = ACTIONS(3599), - [sym_unit] = ACTIONS(3601), - [anon_sym_LPAREN_PIPE] = ACTIONS(3599), - [sym_op_identifier] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_PLUS_DOT] = ACTIONS(3599), - [anon_sym_DASH_DOT] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3601), - [aux_sym_prefix_op_token1] = ACTIONS(3599), - [aux_sym_infix_op_token1] = ACTIONS(3601), - [aux_sym_infix_op_token2] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_COLON_EQ] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3599), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3599), - [sym_int] = ACTIONS(3599), - [sym_xint] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2528), + [anon_sym_AT_AT_GT] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_COLON_GT] = ACTIONS(2526), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_LT_DASH] = ACTIONS(2528), + [anon_sym_DOT_LBRACK] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [anon_sym_LPAREN2] = ACTIONS(2528), + [anon_sym_or] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2528), + [anon_sym_DASH_DOT] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2528), + [aux_sym_infix_op_token1] = ACTIONS(2526), + [aux_sym_infix_op_token2] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_BANG_EQ] = ACTIONS(2528), + [anon_sym_COLON_EQ] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2528), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), + [anon_sym_POUNDif] = ACTIONS(2526), + [sym__newline] = ACTIONS(2526), + }, + [2519] = { + [sym_block_comment] = STATE(2519), + [sym_compiler_directive_decl] = STATE(2519), + [sym_fsi_directive_decl] = STATE(2519), + [sym_preproc_line] = STATE(2519), + [sym_identifier] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_QMARK] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_COLON] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3741), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_COLON_GT] = ACTIONS(3739), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_LT_DASH] = ACTIONS(3741), + [anon_sym_DOT_LBRACK] = ACTIONS(3739), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_GT] = ACTIONS(3741), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [anon_sym_LPAREN2] = ACTIONS(3741), + [anon_sym_or] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3741), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3741), + [anon_sym_DASH_DOT] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_AMP_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3741), + [aux_sym_infix_op_token1] = ACTIONS(3739), + [aux_sym_infix_op_token2] = ACTIONS(3741), + [anon_sym_PIPE_PIPE] = ACTIONS(3741), + [anon_sym_BANG_EQ] = ACTIONS(3741), + [anon_sym_COLON_EQ] = ACTIONS(3739), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3741), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), + [sym__newline] = ACTIONS(3739), }, [2520] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5516), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym__pattern_param] = STATE(2547), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(3424), - [sym_format_string] = STATE(3422), - [sym__string_literal] = STATE(3422), - [sym_string] = STATE(3424), - [sym_verbatim_string] = STATE(3424), - [sym_bytearray] = STATE(3424), - [sym_verbatim_bytearray] = STATE(3424), - [sym_format_triple_quoted_string] = STATE(3421), - [sym_triple_quoted_string] = STATE(3424), - [sym_const] = STATE(3482), - [sym_long_identifier] = STATE(3414), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(3424), - [sym_byte] = STATE(3424), - [sym_int16] = STATE(3424), - [sym_uint16] = STATE(3424), - [sym_int32] = STATE(3424), - [sym_uint32] = STATE(3424), - [sym_nativeint] = STATE(3424), - [sym_unativeint] = STATE(3424), - [sym_int64] = STATE(3424), - [sym_uint64] = STATE(3424), - [sym_ieee32] = STATE(3424), - [sym_ieee64] = STATE(3424), - [sym_bignum] = STATE(3424), - [sym_decimal] = STATE(3424), - [sym_float] = STATE(3320), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4468), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4472), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), - [anon_sym_DQUOTE] = ACTIONS(4490), - [anon_sym_AT_DQUOTE] = ACTIONS(4492), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), - [sym_bool] = ACTIONS(4498), - [sym_unit] = ACTIONS(4500), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4506), - [sym_xint] = ACTIONS(4508), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [sym__newline] = ACTIONS(4359), - [sym__dedent] = ACTIONS(4359), + [sym_identifier] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3543), + [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(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_LBRACK_PIPE] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LT_AT] = ACTIONS(3545), + [anon_sym_LT_AT_AT] = ACTIONS(3545), + [anon_sym_AT_AT_GT] = ACTIONS(3545), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_LBRACE_PIPE] = ACTIONS(3543), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_return_BANG] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_yield_BANG] = ACTIONS(3543), + [anon_sym_lazy] = ACTIONS(3545), + [anon_sym_assert] = ACTIONS(3545), + [anon_sym_upcast] = ACTIONS(3545), + [anon_sym_downcast] = ACTIONS(3545), + [anon_sym_COLON_GT] = ACTIONS(3543), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), + [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(3543), + [anon_sym_function] = ACTIONS(3545), + [anon_sym_LT_DASH] = ACTIONS(3545), + [anon_sym_DOT_LBRACK] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_use] = ACTIONS(3545), + [anon_sym_use_BANG] = ACTIONS(3543), + [anon_sym_do_BANG] = ACTIONS(3543), + [anon_sym_begin] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3545), + [anon_sym_or] = ACTIONS(3545), + [aux_sym_char_token1] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [anon_sym_AT_DQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), + [sym_bool] = ACTIONS(3545), + [sym_unit] = ACTIONS(3543), + [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(3543), + [aux_sym_prefix_op_token1] = ACTIONS(3545), + [aux_sym_infix_op_token1] = ACTIONS(3543), + [aux_sym_infix_op_token2] = ACTIONS(3545), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_BANG_EQ] = ACTIONS(3545), + [anon_sym_COLON_EQ] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), + [sym_int] = ACTIONS(3545), + [sym_xint] = ACTIONS(3543), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3543), + [sym__newline] = ACTIONS(3543), }, [2521] = { [sym_block_comment] = STATE(2521), [sym_compiler_directive_decl] = STATE(2521), [sym_fsi_directive_decl] = STATE(2521), [sym_preproc_line] = STATE(2521), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_DOT] = 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_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_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(3501), - [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(3503), - [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(3503), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_do] = ACTIONS(3499), + [anon_sym_let] = ACTIONS(3499), + [anon_sym_let_BANG] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_COLON_QMARK] = ACTIONS(3499), + [anon_sym_COLON_COLON] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LBRACK_PIPE] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LT_AT] = ACTIONS(3499), + [anon_sym_LT_AT_AT] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3499), + [anon_sym_LBRACE_PIPE] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_return_BANG] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_yield_BANG] = ACTIONS(3501), + [anon_sym_lazy] = ACTIONS(3499), + [anon_sym_assert] = ACTIONS(3499), + [anon_sym_upcast] = ACTIONS(3499), + [anon_sym_downcast] = ACTIONS(3499), + [anon_sym_COLON_GT] = ACTIONS(3501), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_fun] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_match_BANG] = ACTIONS(3501), + [anon_sym_function] = ACTIONS(3499), + [anon_sym_LT_DASH] = ACTIONS(3499), + [anon_sym_DOT_LBRACK] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_GT] = ACTIONS(3499), + [anon_sym_use] = ACTIONS(3499), + [anon_sym_use_BANG] = ACTIONS(3501), + [anon_sym_do_BANG] = ACTIONS(3501), + [anon_sym_begin] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [aux_sym_char_token1] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [anon_sym_AT_DQUOTE] = ACTIONS(3501), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3501), + [sym_bool] = ACTIONS(3499), + [sym_unit] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(3499), + [sym_op_identifier] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_DOT] = ACTIONS(3499), + [anon_sym_DASH_DOT] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3501), + [aux_sym_prefix_op_token1] = ACTIONS(3499), + [aux_sym_infix_op_token1] = ACTIONS(3501), + [aux_sym_infix_op_token2] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_COLON_EQ] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3499), + [sym_int] = ACTIONS(3499), + [sym_xint] = ACTIONS(3501), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3501), + [sym__newline] = ACTIONS(3501), }, [2522] = { [sym_block_comment] = STATE(2522), [sym_compiler_directive_decl] = STATE(2522), [sym_fsi_directive_decl] = STATE(2522), [sym_preproc_line] = STATE(2522), - [sym_identifier] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_let_BANG] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_null] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_LT_AT] = ACTIONS(3445), - [anon_sym_LT_AT_AT] = ACTIONS(3445), - [anon_sym_AT_AT_GT] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_return_BANG] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_yield_BANG] = ACTIONS(3447), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_assert] = ACTIONS(3445), - [anon_sym_upcast] = ACTIONS(3445), - [anon_sym_downcast] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_fun] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_match] = ACTIONS(3445), - [anon_sym_match_BANG] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_LT_DASH] = ACTIONS(3445), - [anon_sym_DOT_LBRACK] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3445), - [anon_sym_use_BANG] = ACTIONS(3447), - [anon_sym_do_BANG] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [aux_sym_char_token1] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_AT_DQUOTE] = ACTIONS(3447), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3447), - [sym_bool] = ACTIONS(3445), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3445), - [sym_op_identifier] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3447), - [aux_sym_prefix_op_token1] = ACTIONS(3445), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token2] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3445), - [sym_int] = ACTIONS(3445), - [sym_xint] = ACTIONS(3447), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3447), - [sym__newline] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3631), + [anon_sym_EQ] = ACTIONS(3629), + [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(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_COLON_QMARK] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3631), + [anon_sym_AT_AT_GT] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [anon_sym_COLON_GT] = ACTIONS(3629), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3629), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_LT_DASH] = ACTIONS(3631), + [anon_sym_DOT_LBRACK] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3631), + [anon_sym_or] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [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(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3631), + [aux_sym_infix_op_token1] = ACTIONS(3629), + [aux_sym_infix_op_token2] = ACTIONS(3631), + [anon_sym_PIPE_PIPE] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_COLON_EQ] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3631), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), + [sym__newline] = ACTIONS(3629), }, [2523] = { [sym_block_comment] = STATE(2523), [sym_compiler_directive_decl] = STATE(2523), [sym_fsi_directive_decl] = STATE(2523), [sym_preproc_line] = STATE(2523), - [sym_identifier] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_let_BANG] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_null] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_LT_AT] = ACTIONS(3511), - [anon_sym_LT_AT_AT] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE_PIPE] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_return_BANG] = ACTIONS(3513), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_yield_BANG] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3511), - [anon_sym_assert] = ACTIONS(3511), - [anon_sym_upcast] = ACTIONS(3511), - [anon_sym_downcast] = ACTIONS(3511), - [anon_sym_COLON_GT] = ACTIONS(3513), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3513), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_fun] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_match_BANG] = ACTIONS(3513), - [anon_sym_function] = ACTIONS(3511), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_DOT_LBRACK] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3513), - [anon_sym_GT] = ACTIONS(3511), - [anon_sym_use] = ACTIONS(3511), - [anon_sym_use_BANG] = ACTIONS(3513), - [anon_sym_do_BANG] = ACTIONS(3513), - [anon_sym_begin] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3511), - [anon_sym_or] = ACTIONS(3511), - [aux_sym_char_token1] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [anon_sym_AT_DQUOTE] = ACTIONS(3513), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3513), - [sym_bool] = ACTIONS(3511), - [sym_unit] = ACTIONS(3513), - [anon_sym_LPAREN_PIPE] = ACTIONS(3511), - [sym_op_identifier] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3511), - [anon_sym_DASH_DOT] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3513), - [aux_sym_prefix_op_token1] = ACTIONS(3511), - [aux_sym_infix_op_token1] = ACTIONS(3513), - [aux_sym_infix_op_token2] = ACTIONS(3511), - [anon_sym_PIPE_PIPE] = ACTIONS(3511), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_COLON_EQ] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3511), - [sym_int] = ACTIONS(3511), - [sym_xint] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_let_BANG] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LBRACK_PIPE] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_LT_AT] = ACTIONS(3429), + [anon_sym_LT_AT_AT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_LBRACE_PIPE] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_return_BANG] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_yield_BANG] = ACTIONS(3427), + [anon_sym_lazy] = ACTIONS(3429), + [anon_sym_assert] = ACTIONS(3429), + [anon_sym_upcast] = ACTIONS(3429), + [anon_sym_downcast] = ACTIONS(3429), + [anon_sym_COLON_GT] = ACTIONS(3427), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_fun] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3429), + [anon_sym_match_BANG] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_LT_DASH] = ACTIONS(3429), + [anon_sym_DOT_LBRACK] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_GT] = ACTIONS(3429), + [anon_sym_use] = ACTIONS(3429), + [anon_sym_use_BANG] = ACTIONS(3427), + [anon_sym_do_BANG] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [aux_sym_char_token1] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_AT_DQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3427), + [sym_bool] = ACTIONS(3429), + [sym_unit] = ACTIONS(3427), + [anon_sym_LPAREN_PIPE] = ACTIONS(3429), + [sym_op_identifier] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS_DOT] = ACTIONS(3429), + [anon_sym_DASH_DOT] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3427), + [aux_sym_prefix_op_token1] = ACTIONS(3429), + [aux_sym_infix_op_token1] = ACTIONS(3427), + [aux_sym_infix_op_token2] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_COLON_EQ] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3429), + [sym_int] = ACTIONS(3429), + [sym_xint] = ACTIONS(3427), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3513), - [sym__newline] = ACTIONS(3513), + [anon_sym_POUNDif] = ACTIONS(3427), + [sym__newline] = ACTIONS(3427), }, [2524] = { [sym_block_comment] = STATE(2524), [sym_compiler_directive_decl] = STATE(2524), [sym_fsi_directive_decl] = STATE(2524), [sym_preproc_line] = STATE(2524), - [sym_identifier] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_let_BANG] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [anon_sym_COLON_COLON] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LT_AT] = ACTIONS(3519), - [anon_sym_LT_AT_AT] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE_PIPE] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_return_BANG] = ACTIONS(3521), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_yield_BANG] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3519), - [anon_sym_assert] = ACTIONS(3519), - [anon_sym_upcast] = ACTIONS(3519), - [anon_sym_downcast] = ACTIONS(3519), - [anon_sym_COLON_GT] = ACTIONS(3521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3521), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_fun] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_match_BANG] = ACTIONS(3521), - [anon_sym_function] = ACTIONS(3519), - [anon_sym_LT_DASH] = ACTIONS(3519), - [anon_sym_DOT_LBRACK] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_GT] = ACTIONS(3519), - [anon_sym_use] = ACTIONS(3519), - [anon_sym_use_BANG] = ACTIONS(3521), - [anon_sym_do_BANG] = ACTIONS(3521), - [anon_sym_begin] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(3519), - [anon_sym_or] = ACTIONS(3519), - [aux_sym_char_token1] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [anon_sym_AT_DQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3521), - [sym_bool] = ACTIONS(3519), - [sym_unit] = ACTIONS(3521), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [sym_op_identifier] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3519), - [anon_sym_DASH_DOT] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3521), - [aux_sym_prefix_op_token1] = ACTIONS(3519), - [aux_sym_infix_op_token1] = ACTIONS(3521), - [aux_sym_infix_op_token2] = ACTIONS(3519), - [anon_sym_PIPE_PIPE] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_COLON_EQ] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3519), - [sym_int] = ACTIONS(3519), - [sym_xint] = ACTIONS(3521), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3521), - [sym__newline] = ACTIONS(3521), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LBRACK_PIPE] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_LT_AT] = ACTIONS(3586), + [anon_sym_LT_AT_AT] = ACTIONS(3586), + [anon_sym_DOT] = 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_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_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(3586), + [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(3588), + [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(3588), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3588), + [sym__newline] = ACTIONS(3588), }, [2525] = { [sym_block_comment] = STATE(2525), [sym_compiler_directive_decl] = STATE(2525), [sym_fsi_directive_decl] = STATE(2525), [sym_preproc_line] = STATE(2525), - [sym_identifier] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_let] = ACTIONS(3595), - [anon_sym_let_BANG] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_COLON_QMARK] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LBRACK_PIPE] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_LT_AT] = ACTIONS(3595), - [anon_sym_LT_AT_AT] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3595), - [anon_sym_LBRACE_PIPE] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3595), - [anon_sym_return_BANG] = ACTIONS(3597), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_yield_BANG] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3595), - [anon_sym_assert] = ACTIONS(3595), - [anon_sym_upcast] = ACTIONS(3595), - [anon_sym_downcast] = ACTIONS(3595), - [anon_sym_COLON_GT] = ACTIONS(3597), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_fun] = ACTIONS(3595), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_match_BANG] = ACTIONS(3597), - [anon_sym_function] = ACTIONS(3595), - [anon_sym_LT_DASH] = ACTIONS(3595), - [anon_sym_DOT_LBRACK] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3595), - [anon_sym_use] = ACTIONS(3595), - [anon_sym_use_BANG] = ACTIONS(3597), - [anon_sym_do_BANG] = ACTIONS(3597), - [anon_sym_begin] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_or] = ACTIONS(3595), - [aux_sym_char_token1] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [anon_sym_AT_DQUOTE] = ACTIONS(3597), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3597), - [sym_bool] = ACTIONS(3595), - [sym_unit] = ACTIONS(3597), - [anon_sym_LPAREN_PIPE] = ACTIONS(3595), - [sym_op_identifier] = ACTIONS(3595), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_PLUS_DOT] = ACTIONS(3595), - [anon_sym_DASH_DOT] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3597), - [aux_sym_prefix_op_token1] = ACTIONS(3595), - [aux_sym_infix_op_token1] = ACTIONS(3597), - [aux_sym_infix_op_token2] = ACTIONS(3595), - [anon_sym_PIPE_PIPE] = ACTIONS(3595), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_COLON_EQ] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3595), - [sym_int] = ACTIONS(3595), - [sym_xint] = ACTIONS(3597), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3597), - [sym__newline] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_QMARK] = ACTIONS(3627), + [anon_sym_COLON_QMARK] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3627), + [anon_sym_AT_AT_GT] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_COLON_GT] = ACTIONS(3625), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_LT_DASH] = ACTIONS(3627), + [anon_sym_DOT_LBRACK] = ACTIONS(3625), + [anon_sym_LT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3627), + [anon_sym_or] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3627), + [anon_sym_DASH_DOT] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3627), + [aux_sym_infix_op_token1] = ACTIONS(3625), + [aux_sym_infix_op_token2] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_COLON_EQ] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3627), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), + [sym__newline] = ACTIONS(3625), }, [2526] = { [sym_block_comment] = STATE(2526), [sym_compiler_directive_decl] = STATE(2526), [sym_fsi_directive_decl] = STATE(2526), [sym_preproc_line] = STATE(2526), - [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_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3), - [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(3523), - [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(3525), - [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(3525), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3525), - [sym__newline] = ACTIONS(3525), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LBRACK_PIPE] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LT_AT] = ACTIONS(3582), + [anon_sym_LT_AT_AT] = ACTIONS(3582), + [anon_sym_DOT] = 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_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_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(3582), + [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(3584), + [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(3584), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3584), + [sym__newline] = ACTIONS(3584), }, [2527] = { [sym_block_comment] = STATE(2527), [sym_compiler_directive_decl] = STATE(2527), [sym_fsi_directive_decl] = STATE(2527), [sym_preproc_line] = STATE(2527), - [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_SEMI] = ACTIONS(3), - [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_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(3527), - [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(3529), - [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(3529), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3529), - [sym__newline] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3580), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_let_BANG] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3578), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_COLON_COLON] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LBRACK_PIPE] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_LT_AT] = ACTIONS(3578), + [anon_sym_LT_AT_AT] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_LBRACE_PIPE] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_return_BANG] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_yield_BANG] = ACTIONS(3580), + [anon_sym_lazy] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_upcast] = ACTIONS(3578), + [anon_sym_downcast] = ACTIONS(3578), + [anon_sym_COLON_GT] = ACTIONS(3580), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_fun] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_match_BANG] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_DOT_LBRACK] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_use] = ACTIONS(3578), + [anon_sym_use_BANG] = ACTIONS(3580), + [anon_sym_do_BANG] = ACTIONS(3580), + [anon_sym_begin] = ACTIONS(3578), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_or] = ACTIONS(3578), + [aux_sym_char_token1] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_AT_DQUOTE] = ACTIONS(3580), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), + [sym_bool] = ACTIONS(3578), + [sym_unit] = ACTIONS(3580), + [anon_sym_LPAREN_PIPE] = ACTIONS(3578), + [sym_op_identifier] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PLUS_DOT] = ACTIONS(3578), + [anon_sym_DASH_DOT] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3580), + [aux_sym_prefix_op_token1] = ACTIONS(3578), + [aux_sym_infix_op_token1] = ACTIONS(3580), + [aux_sym_infix_op_token2] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3578), + [anon_sym_BANG_EQ] = ACTIONS(3578), + [anon_sym_COLON_EQ] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3578), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3578), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(3580), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), }, [2528] = { [sym_block_comment] = STATE(2528), [sym_compiler_directive_decl] = STATE(2528), [sym_fsi_directive_decl] = STATE(2528), [sym_preproc_line] = STATE(2528), - [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_AMP] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3), - [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(3533), - [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(3535), - [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(3535), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3535), - [sym__newline] = ACTIONS(3535), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_LBRACK_PIPE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_LT_AT] = ACTIONS(3621), + [anon_sym_LT_AT_AT] = ACTIONS(3621), + [anon_sym_DOT] = 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_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_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(3621), + [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(3623), + [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(3623), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3623), + [sym__newline] = ACTIONS(3623), }, [2529] = { [sym_block_comment] = STATE(2529), [sym_compiler_directive_decl] = STATE(2529), [sym_fsi_directive_decl] = STATE(2529), [sym_preproc_line] = STATE(2529), - [sym_identifier] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_let_BANG] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_COLON_QMARK] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_LT_AT] = ACTIONS(3393), - [anon_sym_AT_GT] = ACTIONS(3393), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_return_BANG] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_yield_BANG] = ACTIONS(3395), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_assert] = ACTIONS(3393), - [anon_sym_upcast] = ACTIONS(3393), - [anon_sym_downcast] = ACTIONS(3393), - [anon_sym_COLON_GT] = ACTIONS(3395), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_fun] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3393), - [anon_sym_match_BANG] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_DOT_LBRACK] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_use] = ACTIONS(3393), - [anon_sym_use_BANG] = ACTIONS(3395), - [anon_sym_do_BANG] = ACTIONS(3395), - [anon_sym_begin] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [aux_sym_char_token1] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_AT_DQUOTE] = ACTIONS(3395), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3395), - [sym_bool] = ACTIONS(3393), - [sym_unit] = ACTIONS(3395), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [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(3395), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [aux_sym_infix_op_token1] = ACTIONS(3395), - [aux_sym_infix_op_token2] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3393), - [sym_int] = ACTIONS(3393), - [sym_xint] = ACTIONS(3395), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3395), - [sym__newline] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3696), + [anon_sym_AT_AT_GT] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_COLON_GT] = ACTIONS(3694), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3696), + [anon_sym_DOT_LBRACK] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3696), + [anon_sym_DASH_DOT] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3696), + [aux_sym_infix_op_token1] = ACTIONS(3694), + [aux_sym_infix_op_token2] = ACTIONS(3696), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_COLON_EQ] = ACTIONS(3694), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3696), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), + [sym__newline] = ACTIONS(3694), }, [2530] = { [sym_block_comment] = STATE(2530), [sym_compiler_directive_decl] = STATE(2530), [sym_fsi_directive_decl] = STATE(2530), [sym_preproc_line] = STATE(2530), - [sym_identifier] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3439), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_let_BANG] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_LT_AT] = ACTIONS(3437), - [anon_sym_LT_AT_AT] = ACTIONS(3437), - [anon_sym_AT_AT_GT] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_return_BANG] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_yield_BANG] = ACTIONS(3439), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_upcast] = ACTIONS(3437), - [anon_sym_downcast] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_fun] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_match_BANG] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_DOT_LBRACK] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3437), - [anon_sym_use_BANG] = ACTIONS(3439), - [anon_sym_do_BANG] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [aux_sym_char_token1] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_AT_DQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3439), - [sym_bool] = ACTIONS(3437), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3437), - [sym_op_identifier] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3439), - [aux_sym_prefix_op_token1] = ACTIONS(3437), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token2] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3437), - [sym_int] = ACTIONS(3437), - [sym_xint] = ACTIONS(3439), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3439), - [sym__newline] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3702), + [anon_sym_AT_AT_GT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_COLON_GT] = ACTIONS(3700), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3702), + [anon_sym_DOT_LBRACK] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3702), + [anon_sym_DASH_DOT] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3702), + [aux_sym_infix_op_token1] = ACTIONS(3700), + [aux_sym_infix_op_token2] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_COLON_EQ] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3702), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3700), + [sym__newline] = ACTIONS(3700), }, [2531] = { [sym_block_comment] = STATE(2531), [sym_compiler_directive_decl] = STATE(2531), [sym_fsi_directive_decl] = STATE(2531), [sym_preproc_line] = STATE(2531), - [sym_identifier] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_return] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_let_BANG] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_let] = ACTIONS(3467), + [anon_sym_let_BANG] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_null] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_LBRACK_PIPE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_LT_AT] = ACTIONS(3467), + [anon_sym_LT_AT_AT] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_LBRACE_PIPE] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_return_BANG] = ACTIONS(3469), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_yield_BANG] = ACTIONS(3469), + [anon_sym_lazy] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_upcast] = ACTIONS(3467), + [anon_sym_downcast] = ACTIONS(3467), + [anon_sym_COLON_GT] = ACTIONS(3469), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_fun] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_match_BANG] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3467), + [anon_sym_LT_DASH] = ACTIONS(3467), + [anon_sym_DOT_LBRACK] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_use] = ACTIONS(3467), + [anon_sym_use_BANG] = ACTIONS(3469), + [anon_sym_do_BANG] = ACTIONS(3469), + [anon_sym_begin] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_or] = ACTIONS(3467), + [aux_sym_char_token1] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_AT_DQUOTE] = ACTIONS(3469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3469), + [sym_bool] = ACTIONS(3467), + [sym_unit] = ACTIONS(3469), + [anon_sym_LPAREN_PIPE] = ACTIONS(3467), + [sym_op_identifier] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3467), + [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(3469), + [aux_sym_prefix_op_token1] = ACTIONS(3467), + [aux_sym_infix_op_token1] = ACTIONS(3469), + [aux_sym_infix_op_token2] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_COLON_EQ] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3467), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3467), + [sym_int] = ACTIONS(3467), + [sym_xint] = ACTIONS(3469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3469), + [sym__newline] = ACTIONS(3469), + }, + [2532] = { + [sym_block_comment] = STATE(2532), + [sym_compiler_directive_decl] = STATE(2532), + [sym_fsi_directive_decl] = STATE(2532), + [sym_preproc_line] = STATE(2532), + [sym_identifier] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_let_BANG] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3397), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3399), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LT_AT] = ACTIONS(3561), - [anon_sym_LT_AT_AT] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_LBRACE_PIPE] = ACTIONS(3563), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_return_BANG] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3561), - [anon_sym_yield_BANG] = ACTIONS(3563), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_assert] = ACTIONS(3561), - [anon_sym_upcast] = ACTIONS(3561), - [anon_sym_downcast] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3561), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_if] = ACTIONS(3561), - [anon_sym_fun] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3561), - [anon_sym_match] = ACTIONS(3561), - [anon_sym_match_BANG] = ACTIONS(3563), - [anon_sym_function] = ACTIONS(3561), - [anon_sym_LT_DASH] = ACTIONS(3561), - [anon_sym_DOT_LBRACK] = ACTIONS(3563), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_GT] = ACTIONS(3561), - [anon_sym_use] = ACTIONS(3561), - [anon_sym_use_BANG] = ACTIONS(3563), - [anon_sym_do_BANG] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [aux_sym_char_token1] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_AT_DQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3563), - [sym_bool] = ACTIONS(3561), - [sym_unit] = ACTIONS(3563), - [anon_sym_LPAREN_PIPE] = ACTIONS(3561), - [sym_op_identifier] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3563), - [aux_sym_prefix_op_token1] = ACTIONS(3561), - [aux_sym_infix_op_token1] = ACTIONS(3563), - [aux_sym_infix_op_token2] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3561), - [sym_int] = ACTIONS(3561), - [sym_xint] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LBRACK_PIPE] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_LT_AT] = ACTIONS(3399), + [anon_sym_LT_AT_AT] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_LBRACE_PIPE] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_return_BANG] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_yield_BANG] = ACTIONS(3397), + [anon_sym_lazy] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_upcast] = ACTIONS(3399), + [anon_sym_downcast] = ACTIONS(3399), + [anon_sym_COLON_GT] = ACTIONS(3397), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_fun] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_match_BANG] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_LT_DASH] = ACTIONS(3399), + [anon_sym_DOT_LBRACK] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_GT] = ACTIONS(3399), + [anon_sym_use] = ACTIONS(3399), + [anon_sym_use_BANG] = ACTIONS(3397), + [anon_sym_do_BANG] = ACTIONS(3397), + [anon_sym_begin] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3399), + [aux_sym_char_token1] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_AT_DQUOTE] = ACTIONS(3397), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), + [sym_bool] = ACTIONS(3399), + [sym_unit] = ACTIONS(3397), + [anon_sym_LPAREN_PIPE] = ACTIONS(3399), + [sym_op_identifier] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS_DOT] = ACTIONS(3399), + [anon_sym_DASH_DOT] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3397), + [aux_sym_prefix_op_token1] = ACTIONS(3399), + [aux_sym_infix_op_token1] = ACTIONS(3397), + [aux_sym_infix_op_token2] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_COLON_EQ] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3399), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3399), + [sym_int] = ACTIONS(3399), + [sym_xint] = ACTIONS(3397), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3563), - [sym__newline] = ACTIONS(3563), - }, - [2532] = { - [sym_block_comment] = STATE(2532), - [sym_compiler_directive_decl] = STATE(2532), - [sym_fsi_directive_decl] = STATE(2532), - [sym_preproc_line] = STATE(2532), - [sym_identifier] = ACTIONS(3505), - [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_BANG] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LBRACK_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LT_AT] = ACTIONS(3505), - [anon_sym_LT_AT_AT] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_return_BANG] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3505), - [anon_sym_yield_BANG] = ACTIONS(3144), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_assert] = ACTIONS(3505), - [anon_sym_upcast] = ACTIONS(3505), - [anon_sym_downcast] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3144), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_fun] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_match_BANG] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3505), - [anon_sym_LT_DASH] = ACTIONS(3505), - [anon_sym_DOT_LBRACK] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_use_BANG] = ACTIONS(3144), - [anon_sym_do_BANG] = ACTIONS(3144), - [anon_sym_begin] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [aux_sym_char_token1] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [anon_sym_AT_DQUOTE] = ACTIONS(3144), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3144), - [sym_bool] = ACTIONS(3505), - [sym_unit] = ACTIONS(3144), - [anon_sym_LPAREN_PIPE] = ACTIONS(3505), - [sym_op_identifier] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3144), - [aux_sym_prefix_op_token1] = ACTIONS(3505), - [aux_sym_infix_op_token1] = ACTIONS(3144), - [aux_sym_infix_op_token2] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3505), - [sym_int] = ACTIONS(3505), - [sym_xint] = ACTIONS(3144), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3144), - [anon_sym_POUNDendif] = ACTIONS(3646), - [sym__newline] = ACTIONS(3144), + [anon_sym_POUNDif] = ACTIONS(3397), + [sym__newline] = ACTIONS(3397), }, [2533] = { [sym_block_comment] = STATE(2533), [sym_compiler_directive_decl] = STATE(2533), [sym_fsi_directive_decl] = STATE(2533), [sym_preproc_line] = STATE(2533), - [sym_identifier] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_let_BANG] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_COLON_QMARK] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LT_AT] = ACTIONS(3565), - [anon_sym_LT_AT_AT] = ACTIONS(3565), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_assert] = ACTIONS(3565), - [anon_sym_upcast] = ACTIONS(3565), - [anon_sym_downcast] = ACTIONS(3565), - [anon_sym_COLON_GT] = ACTIONS(3567), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_fun] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_match] = ACTIONS(3565), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3565), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_DOT_LBRACK] = ACTIONS(3567), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_use] = ACTIONS(3565), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [aux_sym_char_token1] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3565), - [sym_unit] = ACTIONS(3567), - [anon_sym_LPAREN_PIPE] = ACTIONS(3565), - [sym_op_identifier] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_PLUS_DOT] = ACTIONS(3565), - [anon_sym_DASH_DOT] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3565), - [aux_sym_infix_op_token1] = ACTIONS(3567), - [aux_sym_infix_op_token2] = ACTIONS(3565), - [anon_sym_PIPE_PIPE] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3565), - [anon_sym_COLON_EQ] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3565), - [sym_int] = ACTIONS(3565), - [sym_xint] = ACTIONS(3567), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__newline] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3904), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2534] = { [sym_block_comment] = STATE(2534), [sym_compiler_directive_decl] = STATE(2534), [sym_fsi_directive_decl] = STATE(2534), [sym_preproc_line] = STATE(2534), - [sym_identifier] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3569), - [anon_sym_COLON_QMARK] = ACTIONS(3569), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3569), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_COLON_GT] = ACTIONS(3571), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_DOT_LBRACK] = ACTIONS(3571), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_GT] = ACTIONS(3569), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_or] = ACTIONS(3569), - [aux_sym_char_token1] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3571), - [anon_sym_LPAREN_PIPE] = ACTIONS(3569), - [sym_op_identifier] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3569), - [anon_sym_DASH_DOT] = ACTIONS(3569), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3569), - [aux_sym_infix_op_token1] = ACTIONS(3571), - [aux_sym_infix_op_token2] = ACTIONS(3569), - [anon_sym_PIPE_PIPE] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3569), - [anon_sym_COLON_EQ] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3569), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3571), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__newline] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3572), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3572), + [anon_sym_AT_AT_GT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_COLON_GT] = ACTIONS(3570), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_LT_DASH] = ACTIONS(3572), + [anon_sym_DOT_LBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS_DOT] = ACTIONS(3572), + [anon_sym_DASH_DOT] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3572), + [aux_sym_infix_op_token1] = ACTIONS(3570), + [aux_sym_infix_op_token2] = ACTIONS(3572), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_COLON_EQ] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3572), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), + [sym__newline] = ACTIONS(3570), }, [2535] = { [sym_block_comment] = STATE(2535), [sym_compiler_directive_decl] = STATE(2535), [sym_fsi_directive_decl] = STATE(2535), [sym_preproc_line] = STATE(2535), - [sym_identifier] = ACTIONS(3573), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3573), - [anon_sym_COLON_QMARK] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3575), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_COLON_GT] = ACTIONS(3575), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_DOT_LBRACK] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_GT] = ACTIONS(3573), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3575), - [anon_sym_do_BANG] = ACTIONS(3575), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_or] = ACTIONS(3573), - [aux_sym_char_token1] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3575), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3575), - [anon_sym_LPAREN_PIPE] = ACTIONS(3573), - [sym_op_identifier] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3573), - [anon_sym_DASH_DOT] = ACTIONS(3573), - [anon_sym_PERCENT] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3575), - [aux_sym_prefix_op_token1] = ACTIONS(3573), - [aux_sym_infix_op_token1] = ACTIONS(3575), - [aux_sym_infix_op_token2] = ACTIONS(3573), - [anon_sym_PIPE_PIPE] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3573), - [anon_sym_COLON_EQ] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3573), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3575), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3575), - [sym__newline] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3619), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_QMARK] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3619), + [anon_sym_AT_AT_GT] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_COLON_GT] = ACTIONS(3617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_LT_DASH] = ACTIONS(3619), + [anon_sym_DOT_LBRACK] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_or] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3619), + [anon_sym_DASH_DOT] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3619), + [aux_sym_infix_op_token1] = ACTIONS(3617), + [aux_sym_infix_op_token2] = ACTIONS(3619), + [anon_sym_PIPE_PIPE] = ACTIONS(3619), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_COLON_EQ] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3619), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), + [sym__newline] = ACTIONS(3617), }, [2536] = { [sym_block_comment] = STATE(2536), [sym_compiler_directive_decl] = STATE(2536), [sym_fsi_directive_decl] = STATE(2536), [sym_preproc_line] = STATE(2536), - [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_SEMI] = ACTIONS(3), - [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(3577), - [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(3579), - [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(3579), - [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_COLON_GT] = ACTIONS(3684), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3686), + [anon_sym_DOT_LBRACK] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3686), + [anon_sym_DASH_DOT] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3686), + [aux_sym_infix_op_token1] = ACTIONS(3684), + [aux_sym_infix_op_token2] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_COLON_EQ] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3686), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3686), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), + [sym__newline] = ACTIONS(3684), }, [2537] = { [sym_block_comment] = STATE(2537), [sym_compiler_directive_decl] = STATE(2537), [sym_fsi_directive_decl] = STATE(2537), [sym_preproc_line] = STATE(2537), - [sym_identifier] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_do] = ACTIONS(3587), - [anon_sym_let] = ACTIONS(3587), - [anon_sym_let_BANG] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [anon_sym_COLON_COLON] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LBRACK_PIPE] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_LT_AT] = ACTIONS(3587), - [anon_sym_LT_AT_AT] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3587), - [anon_sym_LBRACE_PIPE] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3587), - [anon_sym_return_BANG] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_yield_BANG] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3587), - [anon_sym_assert] = ACTIONS(3587), - [anon_sym_upcast] = ACTIONS(3587), - [anon_sym_downcast] = ACTIONS(3587), - [anon_sym_COLON_GT] = ACTIONS(3589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_fun] = ACTIONS(3587), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_match_BANG] = ACTIONS(3589), - [anon_sym_function] = ACTIONS(3587), - [anon_sym_LT_DASH] = ACTIONS(3587), - [anon_sym_DOT_LBRACK] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), - [anon_sym_GT] = ACTIONS(3587), - [anon_sym_use] = ACTIONS(3587), - [anon_sym_use_BANG] = ACTIONS(3589), - [anon_sym_do_BANG] = ACTIONS(3589), - [anon_sym_begin] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_or] = ACTIONS(3587), - [aux_sym_char_token1] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [anon_sym_AT_DQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3589), - [sym_bool] = ACTIONS(3587), - [sym_unit] = ACTIONS(3589), - [anon_sym_LPAREN_PIPE] = ACTIONS(3587), - [sym_op_identifier] = ACTIONS(3587), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [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(3589), - [aux_sym_prefix_op_token1] = ACTIONS(3587), - [aux_sym_infix_op_token1] = ACTIONS(3589), - [aux_sym_infix_op_token2] = ACTIONS(3587), - [anon_sym_PIPE_PIPE] = ACTIONS(3587), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_COLON_EQ] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3587), - [sym_int] = ACTIONS(3587), - [sym_xint] = ACTIONS(3589), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3589), - [sym__newline] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3603), + [anon_sym_AT_AT_GT] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_COLON_GT] = ACTIONS(3601), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_LT_DASH] = ACTIONS(3603), + [anon_sym_DOT_LBRACK] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3603), + [anon_sym_DASH_DOT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3603), + [aux_sym_infix_op_token1] = ACTIONS(3601), + [aux_sym_infix_op_token2] = ACTIONS(3603), + [anon_sym_PIPE_PIPE] = ACTIONS(3603), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_COLON_EQ] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3603), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), }, [2538] = { [sym_block_comment] = STATE(2538), [sym_compiler_directive_decl] = STATE(2538), [sym_fsi_directive_decl] = STATE(2538), [sym_preproc_line] = STATE(2538), - [sym_identifier] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_let_BANG] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_null] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_COLON_QMARK] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_LT_AT] = ACTIONS(3433), - [anon_sym_LT_AT_AT] = ACTIONS(3433), - [anon_sym_AT_AT_GT] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_LBRACE_PIPE] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_return_BANG] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_yield_BANG] = ACTIONS(3435), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_upcast] = ACTIONS(3433), - [anon_sym_downcast] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_fun] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_match_BANG] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_DOT_LBRACK] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3433), - [anon_sym_use_BANG] = ACTIONS(3435), - [anon_sym_do_BANG] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [aux_sym_char_token1] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_AT_DQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3435), - [sym_bool] = ACTIONS(3433), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3433), - [sym_op_identifier] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3435), - [aux_sym_prefix_op_token1] = ACTIONS(3433), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token2] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3433), - [sym_int] = ACTIONS(3433), - [sym_xint] = ACTIONS(3435), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3435), - [sym__newline] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_do] = ACTIONS(3535), + [anon_sym_let] = ACTIONS(3535), + [anon_sym_let_BANG] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3535), + [anon_sym_QMARK] = ACTIONS(3535), + [anon_sym_COLON_QMARK] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3537), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_LT_AT] = ACTIONS(3535), + [anon_sym_LT_AT_AT] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3535), + [anon_sym_return_BANG] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_yield_BANG] = ACTIONS(3537), + [anon_sym_lazy] = ACTIONS(3535), + [anon_sym_assert] = ACTIONS(3535), + [anon_sym_upcast] = ACTIONS(3535), + [anon_sym_downcast] = ACTIONS(3535), + [anon_sym_COLON_GT] = ACTIONS(3537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_fun] = ACTIONS(3535), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_match_BANG] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(3535), + [anon_sym_DOT_LBRACK] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_GT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3535), + [anon_sym_use_BANG] = ACTIONS(3537), + [anon_sym_do_BANG] = ACTIONS(3537), + [anon_sym_begin] = ACTIONS(3535), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3535), + [aux_sym_char_token1] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [anon_sym_AT_DQUOTE] = ACTIONS(3537), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), + [sym_bool] = ACTIONS(3535), + [sym_unit] = ACTIONS(3537), + [anon_sym_LPAREN_PIPE] = ACTIONS(3535), + [sym_op_identifier] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3535), + [anon_sym_PLUS_DOT] = ACTIONS(3535), + [anon_sym_DASH_DOT] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3537), + [aux_sym_prefix_op_token1] = ACTIONS(3535), + [aux_sym_infix_op_token1] = ACTIONS(3537), + [aux_sym_infix_op_token2] = ACTIONS(3535), + [anon_sym_PIPE_PIPE] = ACTIONS(3535), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_COLON_EQ] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3535), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3535), + [sym_int] = ACTIONS(3535), + [sym_xint] = ACTIONS(3537), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), }, [2539] = { [sym_block_comment] = STATE(2539), [sym_compiler_directive_decl] = STATE(2539), [sym_fsi_directive_decl] = STATE(2539), [sym_preproc_line] = STATE(2539), - [sym_identifier] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_let] = ACTIONS(3591), - [anon_sym_let_BANG] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_COLON_QMARK] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LBRACK_PIPE] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_LT_AT] = ACTIONS(3591), - [anon_sym_LT_AT_AT] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_LBRACE_PIPE] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3591), - [anon_sym_return_BANG] = ACTIONS(3593), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_yield_BANG] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3591), - [anon_sym_assert] = ACTIONS(3591), - [anon_sym_upcast] = ACTIONS(3591), - [anon_sym_downcast] = ACTIONS(3591), - [anon_sym_COLON_GT] = ACTIONS(3593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_fun] = ACTIONS(3591), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_match_BANG] = ACTIONS(3593), - [anon_sym_function] = ACTIONS(3591), - [anon_sym_LT_DASH] = ACTIONS(3591), - [anon_sym_DOT_LBRACK] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), - [anon_sym_GT] = ACTIONS(3591), - [anon_sym_use] = ACTIONS(3591), - [anon_sym_use_BANG] = ACTIONS(3593), - [anon_sym_do_BANG] = ACTIONS(3593), - [anon_sym_begin] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_or] = ACTIONS(3591), - [aux_sym_char_token1] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [anon_sym_AT_DQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3593), - [sym_bool] = ACTIONS(3591), - [sym_unit] = ACTIONS(3593), - [anon_sym_LPAREN_PIPE] = ACTIONS(3591), - [sym_op_identifier] = ACTIONS(3591), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_PLUS_DOT] = ACTIONS(3591), - [anon_sym_DASH_DOT] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3593), - [aux_sym_prefix_op_token1] = ACTIONS(3591), - [aux_sym_infix_op_token1] = ACTIONS(3593), - [aux_sym_infix_op_token2] = ACTIONS(3591), - [anon_sym_PIPE_PIPE] = ACTIONS(3591), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_COLON_EQ] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3591), - [sym_int] = ACTIONS(3591), - [sym_xint] = ACTIONS(3593), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(135), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3593), - [sym__newline] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_let_BANG] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_COLON_QMARK] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_LT_AT] = ACTIONS(3525), + [anon_sym_LT_AT_AT] = ACTIONS(3525), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_return_BANG] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_yield_BANG] = ACTIONS(3527), + [anon_sym_lazy] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3525), + [anon_sym_upcast] = ACTIONS(3525), + [anon_sym_downcast] = ACTIONS(3525), + [anon_sym_COLON_GT] = ACTIONS(3527), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_fun] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_match] = ACTIONS(3525), + [anon_sym_match_BANG] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(3525), + [anon_sym_LT_DASH] = ACTIONS(3525), + [anon_sym_DOT_LBRACK] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_GT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3525), + [anon_sym_use_BANG] = ACTIONS(3527), + [anon_sym_do_BANG] = ACTIONS(3527), + [anon_sym_begin] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3525), + [aux_sym_char_token1] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [anon_sym_AT_DQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3527), + [sym_bool] = ACTIONS(3525), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3525), + [sym_op_identifier] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS_DOT] = ACTIONS(3525), + [anon_sym_DASH_DOT] = ACTIONS(3525), + [anon_sym_PERCENT] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3527), + [aux_sym_prefix_op_token1] = ACTIONS(3525), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token2] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3525), + [anon_sym_BANG_EQ] = ACTIONS(3525), + [anon_sym_COLON_EQ] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3525), + [sym_int] = ACTIONS(3525), + [sym_xint] = ACTIONS(3527), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3527), + [sym__newline] = ACTIONS(3527), }, [2540] = { - [sym_attributes] = STATE(5375), - [sym__attribute_set] = STATE(3962), - [sym_access_modifier] = STATE(7836), - [sym_member_defn] = STATE(2787), - [sym_additional_constr_defn] = STATE(2770), [sym_block_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(3804), - [aux_sym__member_defns_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(4510), - [sym_identifier] = ACTIONS(4512), - [anon_sym_namespace] = ACTIONS(4512), - [anon_sym_module] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_LBRACK_LT] = ACTIONS(4510), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_type] = ACTIONS(4512), - [anon_sym_do] = ACTIONS(4512), - [anon_sym_and] = ACTIONS(4512), - [anon_sym_let] = ACTIONS(4512), - [anon_sym_let_BANG] = ACTIONS(4510), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4512), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_AMP] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4512), - [anon_sym_LBRACK_PIPE] = ACTIONS(4510), - [anon_sym_LBRACE] = ACTIONS(4512), - [anon_sym_LT_AT] = ACTIONS(4512), - [anon_sym_LT_AT_AT] = ACTIONS(4510), - [anon_sym_LBRACE_PIPE] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4512), - [anon_sym_return_BANG] = ACTIONS(4510), - [anon_sym_yield] = ACTIONS(4512), - [anon_sym_yield_BANG] = ACTIONS(4510), - [anon_sym_lazy] = ACTIONS(4512), - [anon_sym_assert] = ACTIONS(4512), - [anon_sym_upcast] = ACTIONS(4512), - [anon_sym_downcast] = ACTIONS(4512), - [anon_sym_for] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_match] = ACTIONS(4512), - [anon_sym_match_BANG] = ACTIONS(4510), - [anon_sym_function] = ACTIONS(4512), - [anon_sym_use] = ACTIONS(4512), - [anon_sym_use_BANG] = ACTIONS(4510), - [anon_sym_do_BANG] = ACTIONS(4510), - [anon_sym_begin] = ACTIONS(4512), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_static] = ACTIONS(4518), - [anon_sym_member] = ACTIONS(4520), - [anon_sym_exception] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4522), - [anon_sym_override] = ACTIONS(4516), - [anon_sym_val] = ACTIONS(4524), - [aux_sym_char_token1] = ACTIONS(4510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4512), - [anon_sym_DQUOTE] = ACTIONS(4512), - [anon_sym_AT_DQUOTE] = ACTIONS(4510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), - [sym_bool] = ACTIONS(4512), - [sym_unit] = ACTIONS(4510), - [anon_sym_LPAREN_PIPE] = ACTIONS(4512), - [sym_op_identifier] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_PLUS_DOT] = ACTIONS(4510), - [anon_sym_DASH_DOT] = ACTIONS(4510), - [anon_sym_PERCENT] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_TILDE] = ACTIONS(4510), - [aux_sym_prefix_op_token1] = ACTIONS(4510), - [sym_int] = ACTIONS(4512), - [sym_xint] = ACTIONS(4510), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4510), - [anon_sym_POUNDload] = ACTIONS(4510), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4510), + [sym_identifier] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3523), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_let_BANG] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3521), + [anon_sym_QMARK] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LBRACK_PIPE] = ACTIONS(3523), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_LT_AT] = ACTIONS(3521), + [anon_sym_LT_AT_AT] = ACTIONS(3521), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_LBRACE_PIPE] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_return_BANG] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_yield_BANG] = ACTIONS(3523), + [anon_sym_lazy] = ACTIONS(3521), + [anon_sym_assert] = ACTIONS(3521), + [anon_sym_upcast] = ACTIONS(3521), + [anon_sym_downcast] = ACTIONS(3521), + [anon_sym_COLON_GT] = ACTIONS(3523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_fun] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_match] = ACTIONS(3521), + [anon_sym_match_BANG] = ACTIONS(3523), + [anon_sym_function] = ACTIONS(3521), + [anon_sym_LT_DASH] = ACTIONS(3521), + [anon_sym_DOT_LBRACK] = ACTIONS(3523), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_use] = ACTIONS(3521), + [anon_sym_use_BANG] = ACTIONS(3523), + [anon_sym_do_BANG] = ACTIONS(3523), + [anon_sym_begin] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3521), + [aux_sym_char_token1] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_AT_DQUOTE] = ACTIONS(3523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), + [sym_bool] = ACTIONS(3521), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3521), + [sym_op_identifier] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_PLUS_DOT] = ACTIONS(3521), + [anon_sym_DASH_DOT] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3523), + [aux_sym_prefix_op_token1] = ACTIONS(3521), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token2] = ACTIONS(3521), + [anon_sym_PIPE_PIPE] = ACTIONS(3521), + [anon_sym_BANG_EQ] = ACTIONS(3521), + [anon_sym_COLON_EQ] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3521), + [sym_int] = ACTIONS(3521), + [sym_xint] = ACTIONS(3523), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3523), + [sym__newline] = ACTIONS(3523), }, [2541] = { - [sym_attributes] = STATE(5375), - [sym__attribute_set] = STATE(3962), - [sym_access_modifier] = STATE(7836), - [sym_member_defn] = STATE(2787), - [sym_additional_constr_defn] = STATE(2770), [sym_block_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(3804), - [aux_sym__member_defns_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(4526), - [sym_identifier] = ACTIONS(4528), - [anon_sym_namespace] = ACTIONS(4528), - [anon_sym_module] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_LBRACK_LT] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_type] = ACTIONS(4528), - [anon_sym_do] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_let] = ACTIONS(4528), - [anon_sym_let_BANG] = ACTIONS(4526), - [aux_sym_access_modifier_token1] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_LBRACK_PIPE] = ACTIONS(4526), - [anon_sym_LBRACE] = ACTIONS(4528), - [anon_sym_LT_AT] = ACTIONS(4528), - [anon_sym_LT_AT_AT] = ACTIONS(4526), - [anon_sym_LBRACE_PIPE] = ACTIONS(4526), - [anon_sym_new] = ACTIONS(4536), - [anon_sym_return_BANG] = ACTIONS(4526), - [anon_sym_yield] = ACTIONS(4528), - [anon_sym_yield_BANG] = ACTIONS(4526), - [anon_sym_lazy] = ACTIONS(4528), - [anon_sym_assert] = ACTIONS(4528), - [anon_sym_upcast] = ACTIONS(4528), - [anon_sym_downcast] = ACTIONS(4528), - [anon_sym_for] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_match] = ACTIONS(4528), - [anon_sym_match_BANG] = ACTIONS(4526), - [anon_sym_function] = ACTIONS(4528), - [anon_sym_use] = ACTIONS(4528), - [anon_sym_use_BANG] = ACTIONS(4526), - [anon_sym_do_BANG] = ACTIONS(4526), - [anon_sym_begin] = ACTIONS(4528), - [anon_sym_default] = ACTIONS(4539), - [anon_sym_static] = ACTIONS(4542), - [anon_sym_member] = ACTIONS(4545), - [anon_sym_exception] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4548), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_val] = ACTIONS(4551), - [aux_sym_char_token1] = ACTIONS(4526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4528), - [anon_sym_DQUOTE] = ACTIONS(4528), - [anon_sym_AT_DQUOTE] = ACTIONS(4526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), - [sym_bool] = ACTIONS(4528), - [sym_unit] = ACTIONS(4526), - [anon_sym_LPAREN_PIPE] = ACTIONS(4528), - [sym_op_identifier] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_PLUS_DOT] = ACTIONS(4526), - [anon_sym_DASH_DOT] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_AMP_AMP] = ACTIONS(4526), - [anon_sym_TILDE] = ACTIONS(4526), - [aux_sym_prefix_op_token1] = ACTIONS(4526), - [sym_int] = ACTIONS(4528), - [sym_xint] = ACTIONS(4526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4526), - [anon_sym_POUNDload] = ACTIONS(4526), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4526), - }, - [2542] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2750), - [sym__method_defn] = STATE(2752), - [sym__property_defn] = STATE(2753), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4574), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(4512), + }, + [2542] = { + [sym_block_comment] = STATE(2542), + [sym_compiler_directive_decl] = STATE(2542), + [sym_fsi_directive_decl] = STATE(2542), + [sym_preproc_line] = STATE(2542), + [sym_identifier] = ACTIONS(3479), + [anon_sym_EQ] = ACTIONS(3481), + [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_let] = ACTIONS(3479), + [anon_sym_let_BANG] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(3481), + [anon_sym_null] = ACTIONS(3479), + [anon_sym_QMARK] = ACTIONS(3479), + [anon_sym_COLON_QMARK] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LBRACK_PIPE] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_LT_AT] = ACTIONS(3479), + [anon_sym_LT_AT_AT] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3479), + [anon_sym_LBRACE_PIPE] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_return_BANG] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_yield_BANG] = ACTIONS(3481), + [anon_sym_lazy] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_upcast] = ACTIONS(3479), + [anon_sym_downcast] = ACTIONS(3479), + [anon_sym_COLON_GT] = ACTIONS(3481), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_fun] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_match_BANG] = ACTIONS(3481), + [anon_sym_function] = ACTIONS(3479), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_DOT_LBRACK] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_GT] = ACTIONS(3479), + [anon_sym_use] = ACTIONS(3479), + [anon_sym_use_BANG] = ACTIONS(3481), + [anon_sym_do_BANG] = ACTIONS(3481), + [anon_sym_begin] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3479), + [anon_sym_or] = ACTIONS(3479), + [aux_sym_char_token1] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [anon_sym_AT_DQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3481), + [sym_bool] = ACTIONS(3479), + [sym_unit] = ACTIONS(3481), + [anon_sym_LPAREN_PIPE] = ACTIONS(3479), + [sym_op_identifier] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS_DOT] = ACTIONS(3479), + [anon_sym_DASH_DOT] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_AMP_AMP] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3481), + [aux_sym_prefix_op_token1] = ACTIONS(3479), + [aux_sym_infix_op_token1] = ACTIONS(3481), + [aux_sym_infix_op_token2] = ACTIONS(3479), + [anon_sym_PIPE_PIPE] = ACTIONS(3479), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_COLON_EQ] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3479), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3479), + [sym_int] = ACTIONS(3479), + [sym_xint] = ACTIONS(3481), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3481), + [sym__newline] = ACTIONS(3481), }, [2543] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(7352), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [sym_identifier] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_QMARK] = ACTIONS(3611), + [anon_sym_COLON_QMARK] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3611), + [anon_sym_AT_AT_GT] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_COLON_GT] = ACTIONS(3609), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_LT_DASH] = ACTIONS(3611), + [anon_sym_DOT_LBRACK] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_or] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3611), + [anon_sym_DASH_DOT] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3611), + [aux_sym_infix_op_token1] = ACTIONS(3609), + [aux_sym_infix_op_token2] = ACTIONS(3611), + [anon_sym_PIPE_PIPE] = ACTIONS(3611), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_COLON_EQ] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3611), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3611), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3609), + [sym__newline] = ACTIONS(3609), }, [2544] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5552), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4606), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), + [sym_identifier] = ACTIONS(3517), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_COLON] = ACTIONS(3517), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_let_BANG] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3519), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_QMARK] = ACTIONS(3517), + [anon_sym_COLON_QMARK] = ACTIONS(3517), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_LT2] = ACTIONS(4606), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LBRACK_PIPE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_LT_AT] = ACTIONS(3517), + [anon_sym_LT_AT_AT] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_LBRACE_PIPE] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_return_BANG] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_yield_BANG] = ACTIONS(3519), + [anon_sym_lazy] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3517), + [anon_sym_upcast] = ACTIONS(3517), + [anon_sym_downcast] = ACTIONS(3517), + [anon_sym_COLON_GT] = ACTIONS(3519), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_fun] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_match_BANG] = ACTIONS(3519), + [anon_sym_function] = ACTIONS(3517), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_DOT_LBRACK] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_GT] = ACTIONS(3517), + [anon_sym_use] = ACTIONS(3517), + [anon_sym_use_BANG] = ACTIONS(3519), + [anon_sym_do_BANG] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(3517), + [anon_sym_or] = ACTIONS(3517), + [aux_sym_char_token1] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [anon_sym_AT_DQUOTE] = ACTIONS(3519), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [sym_bool] = ACTIONS(3517), + [sym_unit] = ACTIONS(3519), + [anon_sym_LPAREN_PIPE] = ACTIONS(3517), + [sym_op_identifier] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_PLUS_DOT] = ACTIONS(3517), + [anon_sym_DASH_DOT] = ACTIONS(3517), + [anon_sym_PERCENT] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3519), + [aux_sym_prefix_op_token1] = ACTIONS(3517), + [aux_sym_infix_op_token1] = ACTIONS(3519), + [aux_sym_infix_op_token2] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BANG_EQ] = ACTIONS(3517), + [anon_sym_COLON_EQ] = ACTIONS(3519), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3517), + [sym_int] = ACTIONS(3517), + [sym_xint] = ACTIONS(3519), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3519), + [sym__newline] = ACTIONS(3519), }, [2545] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3186), - [sym_function_declaration_left] = STATE(6920), - [sym_value_declaration_left] = STATE(6920), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4610), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [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_SEMI] = ACTIONS(3), + [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_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(3507), + [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(3509), + [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(3509), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2546] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), [sym_block_comment] = STATE(2546), [sym_compiler_directive_decl] = STATE(2546), [sym_fsi_directive_decl] = STATE(2546), [sym_preproc_line] = STATE(2546), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4612), - [sym_identifier] = ACTIONS(4614), - [anon_sym_namespace] = ACTIONS(4614), - [anon_sym_module] = ACTIONS(4614), - [anon_sym_open] = ACTIONS(4614), - [anon_sym_LBRACK_LT] = ACTIONS(4612), - [anon_sym_return] = ACTIONS(4614), - [anon_sym_type] = ACTIONS(4614), - [anon_sym_do] = ACTIONS(4614), - [anon_sym_and] = ACTIONS(4614), - [anon_sym_let] = ACTIONS(4614), - [anon_sym_let_BANG] = ACTIONS(4612), - [aux_sym_access_modifier_token1] = ACTIONS(4612), - [anon_sym_LPAREN] = ACTIONS(4614), - [anon_sym_null] = ACTIONS(4614), - [anon_sym_AMP] = ACTIONS(4614), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4614), - [anon_sym_LBRACK_PIPE] = ACTIONS(4612), - [anon_sym_LBRACE] = ACTIONS(4614), - [anon_sym_LT_AT] = ACTIONS(4614), - [anon_sym_LT_AT_AT] = ACTIONS(4612), - [anon_sym_LBRACE_PIPE] = ACTIONS(4612), - [anon_sym_new] = ACTIONS(4614), - [anon_sym_return_BANG] = ACTIONS(4612), - [anon_sym_yield] = ACTIONS(4614), - [anon_sym_yield_BANG] = ACTIONS(4612), - [anon_sym_lazy] = ACTIONS(4614), - [anon_sym_assert] = ACTIONS(4614), - [anon_sym_upcast] = ACTIONS(4614), - [anon_sym_downcast] = ACTIONS(4614), - [anon_sym_for] = ACTIONS(4614), - [anon_sym_while] = ACTIONS(4614), - [anon_sym_if] = ACTIONS(4614), - [anon_sym_fun] = ACTIONS(4614), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4614), - [anon_sym_match] = ACTIONS(4614), - [anon_sym_match_BANG] = ACTIONS(4612), - [anon_sym_function] = ACTIONS(4614), - [anon_sym_use] = ACTIONS(4614), - [anon_sym_use_BANG] = ACTIONS(4612), - [anon_sym_do_BANG] = ACTIONS(4612), - [anon_sym_begin] = ACTIONS(4614), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4614), - [anon_sym_static] = ACTIONS(4614), - [anon_sym_member] = ACTIONS(4614), - [anon_sym_exception] = ACTIONS(4614), - [anon_sym_abstract] = ACTIONS(4614), - [anon_sym_override] = ACTIONS(4614), - [anon_sym_val] = ACTIONS(4614), - [aux_sym_char_token1] = ACTIONS(4612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(4614), - [anon_sym_AT_DQUOTE] = ACTIONS(4612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4612), - [sym_bool] = ACTIONS(4614), - [sym_unit] = ACTIONS(4612), - [anon_sym_LPAREN_PIPE] = ACTIONS(4614), - [sym_op_identifier] = ACTIONS(4612), - [anon_sym_PLUS] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(4614), - [anon_sym_PLUS_DOT] = ACTIONS(4612), - [anon_sym_DASH_DOT] = ACTIONS(4612), - [anon_sym_PERCENT] = ACTIONS(4612), - [anon_sym_AMP_AMP] = ACTIONS(4612), - [anon_sym_TILDE] = ACTIONS(4612), - [aux_sym_prefix_op_token1] = ACTIONS(4612), - [sym_int] = ACTIONS(4614), - [sym_xint] = ACTIONS(4612), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4612), - [anon_sym_POUNDload] = ACTIONS(4612), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4612), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3491), + [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(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3491), + [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(3491), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3491), + [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(3491), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), + [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(3491), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3491), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3491), + [anon_sym_do_BANG] = ACTIONS(3491), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3493), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3491), + [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(3491), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3491), + [aux_sym_infix_op_token2] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3491), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3491), + [sym__newline] = ACTIONS(3491), }, [2547] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5562), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4468), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), - [anon_sym_SEMI] = ACTIONS(4606), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3050), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3052), + [aux_sym_infix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token2] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3052), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [sym__newline] = ACTIONS(4606), - [sym__dedent] = ACTIONS(4606), + [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDendif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [2548] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(3187), - [sym__function_or_value_defn_body] = STATE(3158), - [sym_function_declaration_left] = STATE(6920), - [sym_value_declaration_left] = STATE(6920), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [sym_identifier] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3613), + [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3615), + [anon_sym_AT_AT_GT] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3615), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_COLON_GT] = ACTIONS(3613), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_LT_DASH] = ACTIONS(3615), + [anon_sym_DOT_LBRACK] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_or] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3615), + [anon_sym_DASH_DOT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3615), + [aux_sym_infix_op_token1] = ACTIONS(3613), + [aux_sym_infix_op_token2] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_COLON_EQ] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3615), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(125), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), + [sym__newline] = ACTIONS(3613), }, [2549] = { [sym_block_comment] = STATE(2549), [sym_compiler_directive_decl] = STATE(2549), [sym_fsi_directive_decl] = STATE(2549), [sym_preproc_line] = STATE(2549), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_and] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [aux_sym_access_modifier_token1] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_member] = ACTIONS(2988), - [anon_sym_interface] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [anon_sym_abstract] = ACTIONS(2988), - [anon_sym_override] = ACTIONS(2988), - [anon_sym_val] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_let] = ACTIONS(3487), + [anon_sym_let_BANG] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3487), + [anon_sym_COLON_QMARK] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACK_PIPE] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_LT_AT] = ACTIONS(3487), + [anon_sym_LT_AT_AT] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3489), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_return_BANG] = ACTIONS(3489), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_yield_BANG] = ACTIONS(3489), + [anon_sym_lazy] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_upcast] = ACTIONS(3487), + [anon_sym_downcast] = ACTIONS(3487), + [anon_sym_COLON_GT] = ACTIONS(3489), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_fun] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_match_BANG] = ACTIONS(3489), + [anon_sym_function] = ACTIONS(3487), + [anon_sym_LT_DASH] = ACTIONS(3487), + [anon_sym_DOT_LBRACK] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_use] = ACTIONS(3487), + [anon_sym_use_BANG] = ACTIONS(3489), + [anon_sym_do_BANG] = ACTIONS(3489), + [anon_sym_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3487), + [anon_sym_or] = ACTIONS(3487), + [aux_sym_char_token1] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3487), + [anon_sym_AT_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3489), + [sym_bool] = ACTIONS(3487), + [sym_unit] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(3487), + [sym_op_identifier] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS_DOT] = ACTIONS(3487), + [anon_sym_DASH_DOT] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_TILDE] = ACTIONS(3489), + [aux_sym_prefix_op_token1] = ACTIONS(3487), + [aux_sym_infix_op_token1] = ACTIONS(3489), + [aux_sym_infix_op_token2] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_COLON_EQ] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3487), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3487), + [sym_int] = ACTIONS(3487), + [sym_xint] = ACTIONS(3489), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3489), + [sym__newline] = ACTIONS(3489), }, [2550] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(6987), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [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_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3), + [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(3483), + [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(3485), + [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(3485), + [aux_sym_infix_op_token2] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(125), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + }, + [2551] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(3171), + [sym__function_or_value_defn_body] = STATE(3131), + [sym_function_declaration_left] = STATE(6963), + [sym_value_declaration_left] = STATE(6963), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -315183,453 +315689,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2551] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), - [sym_block_comment] = STATE(2551), - [sym_compiler_directive_decl] = STATE(2551), - [sym_fsi_directive_decl] = STATE(2551), - [sym_preproc_line] = STATE(2551), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4638), - [sym_identifier] = ACTIONS(4640), - [anon_sym_namespace] = ACTIONS(4640), - [anon_sym_module] = ACTIONS(4640), - [anon_sym_open] = ACTIONS(4640), - [anon_sym_LBRACK_LT] = ACTIONS(4638), - [anon_sym_return] = ACTIONS(4640), - [anon_sym_type] = ACTIONS(4640), - [anon_sym_do] = ACTIONS(4640), - [anon_sym_and] = ACTIONS(4640), - [anon_sym_let] = ACTIONS(4640), - [anon_sym_let_BANG] = ACTIONS(4638), - [aux_sym_access_modifier_token1] = ACTIONS(4638), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4640), - [anon_sym_AMP] = ACTIONS(4640), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_LBRACK_PIPE] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_LT_AT] = ACTIONS(4640), - [anon_sym_LT_AT_AT] = ACTIONS(4638), - [anon_sym_LBRACE_PIPE] = ACTIONS(4638), - [anon_sym_new] = ACTIONS(4640), - [anon_sym_return_BANG] = ACTIONS(4638), - [anon_sym_yield] = ACTIONS(4640), - [anon_sym_yield_BANG] = ACTIONS(4638), - [anon_sym_lazy] = ACTIONS(4640), - [anon_sym_assert] = ACTIONS(4640), - [anon_sym_upcast] = ACTIONS(4640), - [anon_sym_downcast] = ACTIONS(4640), - [anon_sym_for] = ACTIONS(4640), - [anon_sym_while] = ACTIONS(4640), - [anon_sym_if] = ACTIONS(4640), - [anon_sym_fun] = ACTIONS(4640), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4640), - [anon_sym_match] = ACTIONS(4640), - [anon_sym_match_BANG] = ACTIONS(4638), - [anon_sym_function] = ACTIONS(4640), - [anon_sym_use] = ACTIONS(4640), - [anon_sym_use_BANG] = ACTIONS(4638), - [anon_sym_do_BANG] = ACTIONS(4638), - [anon_sym_begin] = ACTIONS(4640), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4640), - [anon_sym_static] = ACTIONS(4640), - [anon_sym_member] = ACTIONS(4640), - [anon_sym_exception] = ACTIONS(4640), - [anon_sym_abstract] = ACTIONS(4640), - [anon_sym_override] = ACTIONS(4640), - [anon_sym_val] = ACTIONS(4640), - [aux_sym_char_token1] = ACTIONS(4638), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4640), - [anon_sym_DQUOTE] = ACTIONS(4640), - [anon_sym_AT_DQUOTE] = ACTIONS(4638), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4638), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4638), - [sym_bool] = ACTIONS(4640), - [sym_unit] = ACTIONS(4638), - [anon_sym_LPAREN_PIPE] = ACTIONS(4640), - [sym_op_identifier] = ACTIONS(4638), - [anon_sym_PLUS] = ACTIONS(4640), - [anon_sym_DASH] = ACTIONS(4640), - [anon_sym_PLUS_DOT] = ACTIONS(4638), - [anon_sym_DASH_DOT] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_AMP_AMP] = ACTIONS(4638), - [anon_sym_TILDE] = ACTIONS(4638), - [aux_sym_prefix_op_token1] = ACTIONS(4638), - [sym_int] = ACTIONS(4640), - [sym_xint] = ACTIONS(4638), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4638), - [anon_sym_POUNDload] = ACTIONS(4638), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4638), - }, [2552] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(4503), - [sym__function_or_value_defn_body] = STATE(4328), - [sym_function_declaration_left] = STATE(6702), - [sym_value_declaration_left] = STATE(6702), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [aux_sym_compound_type_repeat1] = STATE(2552), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_open] = ACTIONS(2886), + [anon_sym_LBRACK_LT] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_and] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [aux_sym_access_modifier_token1] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(4542), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_member] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_exception] = ACTIONS(2886), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_override] = ACTIONS(2886), + [anon_sym_val] = ACTIONS(2886), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), }, [2553] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4492), - [sym_function_declaration_left] = STATE(6702), - [sym_value_declaration_left] = STATE(6702), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4642), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4545), + [sym_identifier] = ACTIONS(4547), + [anon_sym_namespace] = ACTIONS(4547), + [anon_sym_module] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_LBRACK_LT] = ACTIONS(4545), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_type] = ACTIONS(4547), + [anon_sym_do] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4547), + [anon_sym_let_BANG] = ACTIONS(4545), + [aux_sym_access_modifier_token1] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4547), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LBRACK_PIPE] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4547), + [anon_sym_LT_AT] = ACTIONS(4547), + [anon_sym_LT_AT_AT] = ACTIONS(4545), + [anon_sym_LBRACE_PIPE] = ACTIONS(4545), + [anon_sym_new] = ACTIONS(4547), + [anon_sym_return_BANG] = ACTIONS(4545), + [anon_sym_yield] = ACTIONS(4547), + [anon_sym_yield_BANG] = ACTIONS(4545), + [anon_sym_lazy] = ACTIONS(4547), + [anon_sym_assert] = ACTIONS(4547), + [anon_sym_upcast] = ACTIONS(4547), + [anon_sym_downcast] = ACTIONS(4547), + [anon_sym_for] = ACTIONS(4547), + [anon_sym_while] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_match] = ACTIONS(4547), + [anon_sym_match_BANG] = ACTIONS(4545), + [anon_sym_function] = ACTIONS(4547), + [anon_sym_use] = ACTIONS(4547), + [anon_sym_use_BANG] = ACTIONS(4545), + [anon_sym_do_BANG] = ACTIONS(4545), + [anon_sym_begin] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_member] = ACTIONS(4547), + [anon_sym_exception] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_val] = ACTIONS(4547), + [aux_sym_char_token1] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(4547), + [anon_sym_AT_DQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4545), + [sym_bool] = ACTIONS(4547), + [sym_unit] = ACTIONS(4545), + [anon_sym_LPAREN_PIPE] = ACTIONS(4547), + [sym_op_identifier] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS_DOT] = ACTIONS(4545), + [anon_sym_DASH_DOT] = ACTIONS(4545), + [anon_sym_PERCENT] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [aux_sym_prefix_op_token1] = ACTIONS(4545), + [sym_int] = ACTIONS(4547), + [sym_xint] = ACTIONS(4545), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4545), + [anon_sym_POUNDload] = ACTIONS(4545), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4545), }, [2554] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(7208), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4549), + [sym_identifier] = ACTIONS(4551), + [anon_sym_namespace] = ACTIONS(4551), + [anon_sym_module] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_LBRACK_LT] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_type] = ACTIONS(4551), + [anon_sym_do] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_let] = ACTIONS(4551), + [anon_sym_let_BANG] = ACTIONS(4549), + [aux_sym_access_modifier_token1] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_PIPE] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_LT_AT] = ACTIONS(4551), + [anon_sym_LT_AT_AT] = ACTIONS(4549), + [anon_sym_LBRACE_PIPE] = ACTIONS(4549), + [anon_sym_new] = ACTIONS(4551), + [anon_sym_return_BANG] = ACTIONS(4549), + [anon_sym_yield] = ACTIONS(4551), + [anon_sym_yield_BANG] = ACTIONS(4549), + [anon_sym_lazy] = ACTIONS(4551), + [anon_sym_assert] = ACTIONS(4551), + [anon_sym_upcast] = ACTIONS(4551), + [anon_sym_downcast] = ACTIONS(4551), + [anon_sym_for] = ACTIONS(4551), + [anon_sym_while] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_match] = ACTIONS(4551), + [anon_sym_match_BANG] = ACTIONS(4549), + [anon_sym_function] = ACTIONS(4551), + [anon_sym_use] = ACTIONS(4551), + [anon_sym_use_BANG] = ACTIONS(4549), + [anon_sym_do_BANG] = ACTIONS(4549), + [anon_sym_begin] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_member] = ACTIONS(4551), + [anon_sym_exception] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_val] = ACTIONS(4551), + [aux_sym_char_token1] = ACTIONS(4549), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_AT_DQUOTE] = ACTIONS(4549), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [sym_bool] = ACTIONS(4551), + [sym_unit] = ACTIONS(4549), + [anon_sym_LPAREN_PIPE] = ACTIONS(4551), + [sym_op_identifier] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS_DOT] = ACTIONS(4549), + [anon_sym_DASH_DOT] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [aux_sym_prefix_op_token1] = ACTIONS(4549), + [sym_int] = ACTIONS(4551), + [sym_xint] = ACTIONS(4549), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4549), + [anon_sym_POUNDload] = ACTIONS(4549), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4549), }, [2555] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5402), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(3202), + [sym__function_or_value_defn_body] = STATE(3173), + [sym_function_declaration_left] = STATE(6989), + [sym_value_declaration_left] = STATE(6989), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_DASH_GT] = ACTIONS(4606), - [anon_sym_when] = ACTIONS(4608), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -315639,179 +316054,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2556] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(5228), + [sym__function_or_value_defn_body] = STATE(4967), + [sym_function_declaration_left] = STATE(6814), + [sym_value_declaration_left] = STATE(6814), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2556), [sym_compiler_directive_decl] = STATE(2556), [sym_fsi_directive_decl] = STATE(2556), [sym_preproc_line] = STATE(2556), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4644), - [sym_identifier] = ACTIONS(4646), - [anon_sym_namespace] = ACTIONS(4646), - [anon_sym_module] = ACTIONS(4646), - [anon_sym_open] = ACTIONS(4646), - [anon_sym_LBRACK_LT] = ACTIONS(4644), - [anon_sym_return] = ACTIONS(4646), - [anon_sym_type] = ACTIONS(4646), - [anon_sym_do] = ACTIONS(4646), - [anon_sym_and] = ACTIONS(4646), - [anon_sym_let] = ACTIONS(4646), - [anon_sym_let_BANG] = ACTIONS(4644), - [aux_sym_access_modifier_token1] = ACTIONS(4644), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_null] = ACTIONS(4646), - [anon_sym_AMP] = ACTIONS(4646), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_LBRACK_PIPE] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(4646), - [anon_sym_LT_AT] = ACTIONS(4646), - [anon_sym_LT_AT_AT] = ACTIONS(4644), - [anon_sym_LBRACE_PIPE] = ACTIONS(4644), - [anon_sym_new] = ACTIONS(4646), - [anon_sym_return_BANG] = ACTIONS(4644), - [anon_sym_yield] = ACTIONS(4646), - [anon_sym_yield_BANG] = ACTIONS(4644), - [anon_sym_lazy] = ACTIONS(4646), - [anon_sym_assert] = ACTIONS(4646), - [anon_sym_upcast] = ACTIONS(4646), - [anon_sym_downcast] = ACTIONS(4646), - [anon_sym_for] = ACTIONS(4646), - [anon_sym_while] = ACTIONS(4646), - [anon_sym_if] = ACTIONS(4646), - [anon_sym_fun] = ACTIONS(4646), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4646), - [anon_sym_match] = ACTIONS(4646), - [anon_sym_match_BANG] = ACTIONS(4644), - [anon_sym_function] = ACTIONS(4646), - [anon_sym_use] = ACTIONS(4646), - [anon_sym_use_BANG] = ACTIONS(4644), - [anon_sym_do_BANG] = ACTIONS(4644), - [anon_sym_begin] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4646), - [anon_sym_static] = ACTIONS(4646), - [anon_sym_member] = ACTIONS(4646), - [anon_sym_exception] = ACTIONS(4646), - [anon_sym_abstract] = ACTIONS(4646), - [anon_sym_override] = ACTIONS(4646), - [anon_sym_val] = ACTIONS(4646), - [aux_sym_char_token1] = ACTIONS(4644), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(4646), - [anon_sym_AT_DQUOTE] = ACTIONS(4644), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4644), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4644), - [sym_bool] = ACTIONS(4646), - [sym_unit] = ACTIONS(4644), - [anon_sym_LPAREN_PIPE] = ACTIONS(4646), - [sym_op_identifier] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_PLUS_DOT] = ACTIONS(4644), - [anon_sym_DASH_DOT] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_AMP_AMP] = ACTIONS(4644), - [anon_sym_TILDE] = ACTIONS(4644), - [aux_sym_prefix_op_token1] = ACTIONS(4644), - [sym_int] = ACTIONS(4646), - [sym_xint] = ACTIONS(4644), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4644), - [anon_sym_POUNDload] = ACTIONS(4644), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4644), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2557] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2802), - [sym__method_defn] = STATE(5118), - [sym__property_defn] = STATE(4995), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3201), + [sym_function_declaration_left] = STATE(6989), + [sym_value_declaration_left] = STATE(6989), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2736), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4648), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4553), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4652), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -315821,88 +316236,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2558] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(7656), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2784), + [sym__method_defn] = STATE(2783), + [sym__property_defn] = STATE(2782), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2734), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4555), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4575), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -315912,179 +316327,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2559] = { - [sym_attributes] = STATE(5375), - [sym__attribute_set] = STATE(3962), - [sym_access_modifier] = STATE(7836), - [sym_member_defn] = STATE(2787), - [sym_additional_constr_defn] = STATE(2770), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(3177), + [sym__function_or_value_defn_body] = STATE(3123), + [sym_function_declaration_left] = STATE(7003), + [sym_value_declaration_left] = STATE(7003), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3804), - [aux_sym__member_defns_repeat1] = STATE(2540), - [ts_builtin_sym_end] = ACTIONS(4654), - [sym_identifier] = ACTIONS(4656), - [anon_sym_namespace] = ACTIONS(4656), - [anon_sym_module] = ACTIONS(4656), - [anon_sym_open] = ACTIONS(4656), - [anon_sym_LBRACK_LT] = ACTIONS(4654), - [anon_sym_return] = ACTIONS(4656), - [anon_sym_type] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_and] = ACTIONS(4656), - [anon_sym_let] = ACTIONS(4656), - [anon_sym_let_BANG] = ACTIONS(4654), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4656), - [anon_sym_null] = ACTIONS(4656), - [anon_sym_AMP] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_LBRACK_PIPE] = ACTIONS(4654), - [anon_sym_LBRACE] = ACTIONS(4656), - [anon_sym_LT_AT] = ACTIONS(4656), - [anon_sym_LT_AT_AT] = ACTIONS(4654), - [anon_sym_LBRACE_PIPE] = ACTIONS(4654), - [anon_sym_new] = ACTIONS(4656), - [anon_sym_return_BANG] = ACTIONS(4654), - [anon_sym_yield] = ACTIONS(4656), - [anon_sym_yield_BANG] = ACTIONS(4654), - [anon_sym_lazy] = ACTIONS(4656), - [anon_sym_assert] = ACTIONS(4656), - [anon_sym_upcast] = ACTIONS(4656), - [anon_sym_downcast] = ACTIONS(4656), - [anon_sym_for] = ACTIONS(4656), - [anon_sym_while] = ACTIONS(4656), - [anon_sym_if] = ACTIONS(4656), - [anon_sym_fun] = ACTIONS(4656), - [anon_sym_try] = ACTIONS(4656), - [anon_sym_match] = ACTIONS(4656), - [anon_sym_match_BANG] = ACTIONS(4654), - [anon_sym_function] = ACTIONS(4656), - [anon_sym_use] = ACTIONS(4656), - [anon_sym_use_BANG] = ACTIONS(4654), - [anon_sym_do_BANG] = ACTIONS(4654), - [anon_sym_begin] = ACTIONS(4656), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_static] = ACTIONS(4518), - [anon_sym_member] = ACTIONS(4520), - [anon_sym_exception] = ACTIONS(4656), - [anon_sym_abstract] = ACTIONS(4522), - [anon_sym_override] = ACTIONS(4516), - [anon_sym_val] = ACTIONS(4524), - [aux_sym_char_token1] = ACTIONS(4654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4656), - [anon_sym_DQUOTE] = ACTIONS(4656), - [anon_sym_AT_DQUOTE] = ACTIONS(4654), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4654), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4654), - [sym_bool] = ACTIONS(4656), - [sym_unit] = ACTIONS(4654), - [anon_sym_LPAREN_PIPE] = ACTIONS(4656), - [sym_op_identifier] = ACTIONS(4654), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_PLUS_DOT] = ACTIONS(4654), - [anon_sym_DASH_DOT] = ACTIONS(4654), - [anon_sym_PERCENT] = ACTIONS(4654), - [anon_sym_AMP_AMP] = ACTIONS(4654), - [anon_sym_TILDE] = ACTIONS(4654), - [aux_sym_prefix_op_token1] = ACTIONS(4654), - [sym_int] = ACTIONS(4656), - [sym_xint] = ACTIONS(4654), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4654), - [anon_sym_POUNDload] = ACTIONS(4654), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4654), - }, - [2560] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(4461), - [sym__function_or_value_defn_body] = STATE(4254), - [sym_function_declaration_left] = STATE(6719), - [sym_value_declaration_left] = STATE(6719), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316093,271 +316417,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, + [2560] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), + [sym_block_comment] = STATE(2560), + [sym_compiler_directive_decl] = STATE(2560), + [sym_fsi_directive_decl] = STATE(2560), + [sym_preproc_line] = STATE(2560), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4579), + [sym_identifier] = ACTIONS(4581), + [anon_sym_namespace] = ACTIONS(4581), + [anon_sym_module] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_LBRACK_LT] = ACTIONS(4579), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_type] = ACTIONS(4581), + [anon_sym_do] = ACTIONS(4581), + [anon_sym_and] = ACTIONS(4581), + [anon_sym_let] = ACTIONS(4581), + [anon_sym_let_BANG] = ACTIONS(4579), + [aux_sym_access_modifier_token1] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(4581), + [anon_sym_AMP] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4581), + [anon_sym_LBRACK_PIPE] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(4581), + [anon_sym_LT_AT] = ACTIONS(4581), + [anon_sym_LT_AT_AT] = ACTIONS(4579), + [anon_sym_LBRACE_PIPE] = ACTIONS(4579), + [anon_sym_new] = ACTIONS(4581), + [anon_sym_return_BANG] = ACTIONS(4579), + [anon_sym_yield] = ACTIONS(4581), + [anon_sym_yield_BANG] = ACTIONS(4579), + [anon_sym_lazy] = ACTIONS(4581), + [anon_sym_assert] = ACTIONS(4581), + [anon_sym_upcast] = ACTIONS(4581), + [anon_sym_downcast] = ACTIONS(4581), + [anon_sym_for] = ACTIONS(4581), + [anon_sym_while] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_fun] = ACTIONS(4581), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4581), + [anon_sym_match] = ACTIONS(4581), + [anon_sym_match_BANG] = ACTIONS(4579), + [anon_sym_function] = ACTIONS(4581), + [anon_sym_use] = ACTIONS(4581), + [anon_sym_use_BANG] = ACTIONS(4579), + [anon_sym_do_BANG] = ACTIONS(4579), + [anon_sym_begin] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4581), + [anon_sym_static] = ACTIONS(4581), + [anon_sym_member] = ACTIONS(4581), + [anon_sym_exception] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_val] = ACTIONS(4581), + [aux_sym_char_token1] = ACTIONS(4579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(4581), + [anon_sym_AT_DQUOTE] = ACTIONS(4579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4579), + [sym_bool] = ACTIONS(4581), + [sym_unit] = ACTIONS(4579), + [anon_sym_LPAREN_PIPE] = ACTIONS(4581), + [sym_op_identifier] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_PLUS_DOT] = ACTIONS(4579), + [anon_sym_DASH_DOT] = ACTIONS(4579), + [anon_sym_PERCENT] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4579), + [aux_sym_prefix_op_token1] = ACTIONS(4579), + [sym_int] = ACTIONS(4581), + [sym_xint] = ACTIONS(4579), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4579), + [anon_sym_POUNDload] = ACTIONS(4579), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4579), + }, [2561] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4428), - [sym_function_declaration_left] = STATE(6719), - [sym_value_declaration_left] = STATE(6719), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4658), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_open] = ACTIONS(3060), + [anon_sym_LBRACK_LT] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [aux_sym_access_modifier_token1] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(4583), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_member] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_exception] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_val] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3058), + [anon_sym_POUNDload] = ACTIONS(3058), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), }, [2562] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2763), + [sym__method_defn] = STATE(4487), + [sym__property_defn] = STATE(4483), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2562), [sym_compiler_directive_decl] = STATE(2562), [sym_fsi_directive_decl] = STATE(2562), [sym_preproc_line] = STATE(2562), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4660), - [sym_identifier] = ACTIONS(4662), - [anon_sym_namespace] = ACTIONS(4662), - [anon_sym_module] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_LBRACK_LT] = ACTIONS(4660), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_type] = ACTIONS(4662), - [anon_sym_do] = ACTIONS(4662), - [anon_sym_and] = ACTIONS(4662), - [anon_sym_let] = ACTIONS(4662), - [anon_sym_let_BANG] = ACTIONS(4660), - [aux_sym_access_modifier_token1] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4662), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_AMP] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4662), - [anon_sym_LBRACK_PIPE] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_LT_AT] = ACTIONS(4662), - [anon_sym_LT_AT_AT] = ACTIONS(4660), - [anon_sym_LBRACE_PIPE] = ACTIONS(4660), - [anon_sym_new] = ACTIONS(4662), - [anon_sym_return_BANG] = ACTIONS(4660), - [anon_sym_yield] = ACTIONS(4662), - [anon_sym_yield_BANG] = ACTIONS(4660), - [anon_sym_lazy] = ACTIONS(4662), - [anon_sym_assert] = ACTIONS(4662), - [anon_sym_upcast] = ACTIONS(4662), - [anon_sym_downcast] = ACTIONS(4662), - [anon_sym_for] = ACTIONS(4662), - [anon_sym_while] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_match] = ACTIONS(4662), - [anon_sym_match_BANG] = ACTIONS(4660), - [anon_sym_function] = ACTIONS(4662), - [anon_sym_use] = ACTIONS(4662), - [anon_sym_use_BANG] = ACTIONS(4660), - [anon_sym_do_BANG] = ACTIONS(4660), - [anon_sym_begin] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4662), - [anon_sym_static] = ACTIONS(4662), - [anon_sym_member] = ACTIONS(4662), - [anon_sym_exception] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_val] = ACTIONS(4662), - [aux_sym_char_token1] = ACTIONS(4660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4662), - [anon_sym_DQUOTE] = ACTIONS(4662), - [anon_sym_AT_DQUOTE] = ACTIONS(4660), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4660), - [sym_bool] = ACTIONS(4662), - [sym_unit] = ACTIONS(4660), - [anon_sym_LPAREN_PIPE] = ACTIONS(4662), - [sym_op_identifier] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_PLUS_DOT] = ACTIONS(4660), - [anon_sym_DASH_DOT] = ACTIONS(4660), - [anon_sym_PERCENT] = ACTIONS(4660), - [anon_sym_AMP_AMP] = ACTIONS(4660), - [anon_sym_TILDE] = ACTIONS(4660), - [aux_sym_prefix_op_token1] = ACTIONS(4660), - [sym_int] = ACTIONS(4662), - [sym_xint] = ACTIONS(4660), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4660), - [anon_sym_POUNDload] = ACTIONS(4660), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4660), - }, - [2563] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(8036), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2726), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4585), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4589), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316366,89 +316690,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, + [2563] = { + [sym_attributes] = STATE(5322), + [sym__attribute_set] = STATE(4224), + [sym_access_modifier] = STATE(8072), + [sym_member_defn] = STATE(2807), + [sym_additional_constr_defn] = STATE(2759), + [sym_block_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(3858), + [aux_sym__member_defns_repeat1] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(4591), + [sym_identifier] = ACTIONS(4593), + [anon_sym_namespace] = ACTIONS(4593), + [anon_sym_module] = ACTIONS(4593), + [anon_sym_open] = ACTIONS(4593), + [anon_sym_LBRACK_LT] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4593), + [anon_sym_type] = ACTIONS(4593), + [anon_sym_do] = ACTIONS(4593), + [anon_sym_and] = ACTIONS(4593), + [anon_sym_let] = ACTIONS(4593), + [anon_sym_let_BANG] = ACTIONS(4591), + [aux_sym_access_modifier_token1] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_null] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_LBRACK_PIPE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4593), + [anon_sym_LT_AT] = ACTIONS(4593), + [anon_sym_LT_AT_AT] = ACTIONS(4591), + [anon_sym_LBRACE_PIPE] = ACTIONS(4591), + [anon_sym_new] = ACTIONS(4601), + [anon_sym_return_BANG] = ACTIONS(4591), + [anon_sym_yield] = ACTIONS(4593), + [anon_sym_yield_BANG] = ACTIONS(4591), + [anon_sym_lazy] = ACTIONS(4593), + [anon_sym_assert] = ACTIONS(4593), + [anon_sym_upcast] = ACTIONS(4593), + [anon_sym_downcast] = ACTIONS(4593), + [anon_sym_for] = ACTIONS(4593), + [anon_sym_while] = ACTIONS(4593), + [anon_sym_if] = ACTIONS(4593), + [anon_sym_fun] = ACTIONS(4593), + [anon_sym_try] = ACTIONS(4593), + [anon_sym_match] = ACTIONS(4593), + [anon_sym_match_BANG] = ACTIONS(4591), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_use] = ACTIONS(4593), + [anon_sym_use_BANG] = ACTIONS(4591), + [anon_sym_do_BANG] = ACTIONS(4591), + [anon_sym_begin] = ACTIONS(4593), + [anon_sym_default] = ACTIONS(4604), + [anon_sym_static] = ACTIONS(4607), + [anon_sym_member] = ACTIONS(4610), + [anon_sym_exception] = ACTIONS(4593), + [anon_sym_abstract] = ACTIONS(4613), + [anon_sym_override] = ACTIONS(4604), + [anon_sym_val] = ACTIONS(4616), + [aux_sym_char_token1] = ACTIONS(4591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4593), + [anon_sym_DQUOTE] = ACTIONS(4593), + [anon_sym_AT_DQUOTE] = ACTIONS(4591), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4591), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4591), + [sym_bool] = ACTIONS(4593), + [sym_unit] = ACTIONS(4591), + [anon_sym_LPAREN_PIPE] = ACTIONS(4593), + [sym_op_identifier] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_PLUS_DOT] = ACTIONS(4591), + [anon_sym_DASH_DOT] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [aux_sym_prefix_op_token1] = ACTIONS(4591), + [sym_int] = ACTIONS(4593), + [sym_xint] = ACTIONS(4591), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4591), + [anon_sym_POUNDload] = ACTIONS(4591), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4591), + }, [2564] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5621), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym__pattern_param] = STATE(2619), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(3612), - [sym_format_string] = STATE(3632), - [sym__string_literal] = STATE(3632), - [sym_string] = STATE(3612), - [sym_verbatim_string] = STATE(3612), - [sym_bytearray] = STATE(3612), - [sym_verbatim_bytearray] = STATE(3612), - [sym_format_triple_quoted_string] = STATE(3538), - [sym_triple_quoted_string] = STATE(3612), - [sym_const] = STATE(3536), - [sym_long_identifier] = STATE(3507), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(3612), - [sym_byte] = STATE(3612), - [sym_int16] = STATE(3612), - [sym_uint16] = STATE(3612), - [sym_int32] = STATE(3612), - [sym_uint32] = STATE(3612), - [sym_nativeint] = STATE(3612), - [sym_unativeint] = STATE(3612), - [sym_int64] = STATE(3612), - [sym_uint64] = STATE(3612), - [sym_ieee32] = STATE(3612), - [sym_ieee64] = STATE(3612), - [sym_bignum] = STATE(3612), - [sym_decimal] = STATE(3612), - [sym_float] = STATE(3379), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(2757), + [sym__function_or_value_defn_body] = STATE(2746), + [sym_function_declaration_left] = STATE(6469), + [sym_value_declaration_left] = STATE(6469), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4668), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [anon_sym_RBRACE] = ACTIONS(4359), - [aux_sym_char_token1] = ACTIONS(4682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4684), - [anon_sym_DQUOTE] = ACTIONS(4686), - [anon_sym_AT_DQUOTE] = ACTIONS(4688), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4690), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4692), - [sym_bool] = ACTIONS(4694), - [sym_unit] = ACTIONS(4696), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4702), - [sym_xint] = ACTIONS(4704), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316458,270 +316873,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2565] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5071), + [sym_function_declaration_left] = STATE(6892), + [sym_value_declaration_left] = STATE(6892), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2565), [sym_compiler_directive_decl] = STATE(2565), [sym_fsi_directive_decl] = STATE(2565), [sym_preproc_line] = STATE(2565), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_and] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [aux_sym_access_modifier_token1] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_default] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_member] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_exception] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_val] = ACTIONS(3026), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4619), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2566] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(5114), + [sym__function_or_value_defn_body] = STATE(4828), + [sym_function_declaration_left] = STATE(6892), + [sym_value_declaration_left] = STATE(6892), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2566), [sym_compiler_directive_decl] = STATE(2566), [sym_fsi_directive_decl] = STATE(2566), [sym_preproc_line] = STATE(2566), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4706), - [sym_identifier] = ACTIONS(4708), - [anon_sym_namespace] = ACTIONS(4708), - [anon_sym_module] = ACTIONS(4708), - [anon_sym_open] = ACTIONS(4708), - [anon_sym_LBRACK_LT] = ACTIONS(4706), - [anon_sym_return] = ACTIONS(4708), - [anon_sym_type] = ACTIONS(4708), - [anon_sym_do] = ACTIONS(4708), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_let_BANG] = ACTIONS(4706), - [aux_sym_access_modifier_token1] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4708), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_AMP] = ACTIONS(4708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4708), - [anon_sym_LBRACK_PIPE] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(4708), - [anon_sym_LT_AT] = ACTIONS(4708), - [anon_sym_LT_AT_AT] = ACTIONS(4706), - [anon_sym_LBRACE_PIPE] = ACTIONS(4706), - [anon_sym_new] = ACTIONS(4708), - [anon_sym_return_BANG] = ACTIONS(4706), - [anon_sym_yield] = ACTIONS(4708), - [anon_sym_yield_BANG] = ACTIONS(4706), - [anon_sym_lazy] = ACTIONS(4708), - [anon_sym_assert] = ACTIONS(4708), - [anon_sym_upcast] = ACTIONS(4708), - [anon_sym_downcast] = ACTIONS(4708), - [anon_sym_for] = ACTIONS(4708), - [anon_sym_while] = ACTIONS(4708), - [anon_sym_if] = ACTIONS(4708), - [anon_sym_fun] = ACTIONS(4708), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4708), - [anon_sym_match] = ACTIONS(4708), - [anon_sym_match_BANG] = ACTIONS(4706), - [anon_sym_function] = ACTIONS(4708), - [anon_sym_use] = ACTIONS(4708), - [anon_sym_use_BANG] = ACTIONS(4706), - [anon_sym_do_BANG] = ACTIONS(4706), - [anon_sym_begin] = ACTIONS(4708), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_default] = ACTIONS(4708), - [anon_sym_static] = ACTIONS(4708), - [anon_sym_member] = ACTIONS(4708), - [anon_sym_exception] = ACTIONS(4708), - [anon_sym_abstract] = ACTIONS(4708), - [anon_sym_override] = ACTIONS(4708), - [anon_sym_val] = ACTIONS(4708), - [aux_sym_char_token1] = ACTIONS(4706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4708), - [anon_sym_DQUOTE] = ACTIONS(4708), - [anon_sym_AT_DQUOTE] = ACTIONS(4706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4706), - [sym_bool] = ACTIONS(4708), - [sym_unit] = ACTIONS(4706), - [anon_sym_LPAREN_PIPE] = ACTIONS(4708), - [sym_op_identifier] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4708), - [anon_sym_DASH] = ACTIONS(4708), - [anon_sym_PLUS_DOT] = ACTIONS(4706), - [anon_sym_DASH_DOT] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_TILDE] = ACTIONS(4706), - [aux_sym_prefix_op_token1] = ACTIONS(4706), - [sym_int] = ACTIONS(4708), - [sym_xint] = ACTIONS(4706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4706), - [anon_sym_POUNDload] = ACTIONS(4706), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4706), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2567] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(5195), - [sym__function_or_value_defn_body] = STATE(5005), - [sym_function_declaration_left] = STATE(6740), - [sym_value_declaration_left] = STATE(6740), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(5016), + [sym__function_or_value_defn_body] = STATE(4890), + [sym_function_declaration_left] = STATE(6926), + [sym_value_declaration_left] = STATE(6926), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316731,88 +317146,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2568] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5148), - [sym_function_declaration_left] = STATE(6740), - [sym_value_declaration_left] = STATE(6740), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5091), + [sym_function_declaration_left] = STATE(6926), + [sym_value_declaration_left] = STATE(6926), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4710), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4621), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316822,88 +317237,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2569] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(3178), - [sym__function_or_value_defn_body] = STATE(3122), - [sym_function_declaration_left] = STATE(6764), - [sym_value_declaration_left] = STATE(6764), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2820), + [sym__method_defn] = STATE(5165), + [sym__property_defn] = STATE(5167), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2727), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4623), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4627), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -316913,88 +317328,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2570] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3176), - [sym_function_declaration_left] = STATE(6764), - [sym_value_declaration_left] = STATE(6764), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(7068), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4712), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317004,179 +317419,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2571] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2771), - [sym__method_defn] = STATE(4476), - [sym__property_defn] = STATE(4469), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2711), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4718), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4629), + [sym_identifier] = ACTIONS(4631), + [anon_sym_namespace] = ACTIONS(4631), + [anon_sym_module] = ACTIONS(4631), + [anon_sym_open] = ACTIONS(4631), + [anon_sym_LBRACK_LT] = ACTIONS(4629), + [anon_sym_return] = ACTIONS(4631), + [anon_sym_type] = ACTIONS(4631), + [anon_sym_do] = ACTIONS(4631), + [anon_sym_and] = ACTIONS(4631), + [anon_sym_let] = ACTIONS(4631), + [anon_sym_let_BANG] = ACTIONS(4629), + [aux_sym_access_modifier_token1] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4631), + [anon_sym_null] = ACTIONS(4631), + [anon_sym_AMP] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4631), + [anon_sym_LBRACK_PIPE] = ACTIONS(4629), + [anon_sym_LBRACE] = ACTIONS(4631), + [anon_sym_LT_AT] = ACTIONS(4631), + [anon_sym_LT_AT_AT] = ACTIONS(4629), + [anon_sym_LBRACE_PIPE] = ACTIONS(4629), + [anon_sym_new] = ACTIONS(4631), + [anon_sym_return_BANG] = ACTIONS(4629), + [anon_sym_yield] = ACTIONS(4631), + [anon_sym_yield_BANG] = ACTIONS(4629), + [anon_sym_lazy] = ACTIONS(4631), + [anon_sym_assert] = ACTIONS(4631), + [anon_sym_upcast] = ACTIONS(4631), + [anon_sym_downcast] = ACTIONS(4631), + [anon_sym_for] = ACTIONS(4631), + [anon_sym_while] = ACTIONS(4631), + [anon_sym_if] = ACTIONS(4631), + [anon_sym_fun] = ACTIONS(4631), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4631), + [anon_sym_match] = ACTIONS(4631), + [anon_sym_match_BANG] = ACTIONS(4629), + [anon_sym_function] = ACTIONS(4631), + [anon_sym_use] = ACTIONS(4631), + [anon_sym_use_BANG] = ACTIONS(4629), + [anon_sym_do_BANG] = ACTIONS(4629), + [anon_sym_begin] = ACTIONS(4631), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4631), + [anon_sym_static] = ACTIONS(4631), + [anon_sym_member] = ACTIONS(4631), + [anon_sym_exception] = ACTIONS(4631), + [anon_sym_abstract] = ACTIONS(4631), + [anon_sym_override] = ACTIONS(4631), + [anon_sym_val] = ACTIONS(4631), + [aux_sym_char_token1] = ACTIONS(4629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_AT_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4629), + [sym_bool] = ACTIONS(4631), + [sym_unit] = ACTIONS(4629), + [anon_sym_LPAREN_PIPE] = ACTIONS(4631), + [sym_op_identifier] = ACTIONS(4629), + [anon_sym_PLUS] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4631), + [anon_sym_PLUS_DOT] = ACTIONS(4629), + [anon_sym_DASH_DOT] = ACTIONS(4629), + [anon_sym_PERCENT] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_TILDE] = ACTIONS(4629), + [aux_sym_prefix_op_token1] = ACTIONS(4629), + [sym_int] = ACTIONS(4631), + [sym_xint] = ACTIONS(4629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4629), + [anon_sym_POUNDload] = ACTIONS(4629), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4629), }, [2572] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(2755), - [sym__function_or_value_defn_body] = STATE(2735), - [sym_function_declaration_left] = STATE(6429), - [sym_value_declaration_left] = STATE(6429), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(2800), + [sym_function_declaration_left] = STATE(6469), + [sym_value_declaration_left] = STATE(6469), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4633), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317186,88 +317601,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2573] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3132), - [sym_function_declaration_left] = STATE(6924), - [sym_value_declaration_left] = STATE(6924), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3159), + [sym_function_declaration_left] = STATE(7003), + [sym_value_declaration_left] = STATE(7003), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4720), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4635), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317277,88 +317692,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2574] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(3154), - [sym__function_or_value_defn_body] = STATE(3108), - [sym_function_declaration_left] = STATE(6924), - [sym_value_declaration_left] = STATE(6924), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2828), + [sym__method_defn] = STATE(5155), + [sym__property_defn] = STATE(5157), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2743), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4637), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4641), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317368,179 +317783,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2575] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(5136), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5611), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym__newline] = ACTIONS(4645), + [sym__dedent] = ACTIONS(4645), }, [2576] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5157), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3535), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym__pattern_param] = STATE(2611), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3395), + [sym_long_identifier] = STATE(3331), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4722), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_LBRACK_LT] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4363), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4363), + [anon_sym__] = ACTIONS(4363), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_COLON_QMARK] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_LBRACK_PIPE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [aux_sym_char_token1] = ACTIONS(4367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4363), + [anon_sym_DQUOTE] = ACTIONS(4363), + [anon_sym_AT_DQUOTE] = ACTIONS(4367), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4367), + [sym_bool] = ACTIONS(4363), + [sym_unit] = ACTIONS(4367), + [anon_sym_LPAREN_PIPE] = ACTIONS(4363), + [sym_op_identifier] = ACTIONS(4367), + [sym_int] = ACTIONS(4363), + [sym_xint] = ACTIONS(4367), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317550,88 +317965,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2577] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5658), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym__pattern_param] = STATE(2614), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(3555), - [sym_format_string] = STATE(3560), - [sym__string_literal] = STATE(3560), - [sym_string] = STATE(3555), - [sym_verbatim_string] = STATE(3555), - [sym_bytearray] = STATE(3555), - [sym_verbatim_bytearray] = STATE(3555), - [sym_format_triple_quoted_string] = STATE(3571), - [sym_triple_quoted_string] = STATE(3555), - [sym_const] = STATE(3537), - [sym_long_identifier] = STATE(3527), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(3555), - [sym_byte] = STATE(3555), - [sym_int16] = STATE(3555), - [sym_uint16] = STATE(3555), - [sym_int32] = STATE(3555), - [sym_uint32] = STATE(3555), - [sym_nativeint] = STATE(3555), - [sym_unativeint] = STATE(3555), - [sym_int64] = STATE(3555), - [sym_uint64] = STATE(3555), - [sym_ieee32] = STATE(3555), - [sym_ieee64] = STATE(3555), - [sym_bignum] = STATE(3555), - [sym_decimal] = STATE(3555), - [sym_float] = STATE(3353), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(4505), + [sym__function_or_value_defn_body] = STATE(4342), + [sym_function_declaration_left] = STATE(6768), + [sym_value_declaration_left] = STATE(6768), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4726), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4363), - [aux_sym_char_token1] = ACTIONS(4732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_AT_DQUOTE] = ACTIONS(4738), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4740), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4742), - [sym_bool] = ACTIONS(4744), - [sym_unit] = ACTIONS(4746), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4752), - [sym_xint] = ACTIONS(4754), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317641,88 +318056,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2578] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(7012), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(4528), + [sym_function_declaration_left] = STATE(6768), + [sym_value_declaration_left] = STATE(6768), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2578), [sym_compiler_directive_decl] = STATE(2578), [sym_fsi_directive_decl] = STATE(2578), [sym_preproc_line] = STATE(2578), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4669), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317732,88 +318147,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2579] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(7866), - [sym__function_or_value_defn_body] = STATE(4817), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5740), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym__pattern_param] = STATE(2631), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(3565), + [sym_format_string] = STATE(3563), + [sym__string_literal] = STATE(3563), + [sym_string] = STATE(3565), + [sym_verbatim_string] = STATE(3565), + [sym_bytearray] = STATE(3565), + [sym_verbatim_bytearray] = STATE(3565), + [sym_format_triple_quoted_string] = STATE(3620), + [sym_triple_quoted_string] = STATE(3565), + [sym_const] = STATE(3574), + [sym_long_identifier] = STATE(3555), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(3565), + [sym_byte] = STATE(3565), + [sym_int16] = STATE(3565), + [sym_uint16] = STATE(3565), + [sym_int32] = STATE(3565), + [sym_uint32] = STATE(3565), + [sym_nativeint] = STATE(3565), + [sym_unativeint] = STATE(3565), + [sym_int64] = STATE(3565), + [sym_uint64] = STATE(3565), + [sym_ieee32] = STATE(3565), + [sym_ieee64] = STATE(3565), + [sym_bignum] = STATE(3565), + [sym_decimal] = STATE(3565), + [sym_float] = STATE(3439), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4673), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4363), + [aux_sym_char_token1] = ACTIONS(4679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4681), + [anon_sym_DQUOTE] = ACTIONS(4683), + [anon_sym_AT_DQUOTE] = ACTIONS(4685), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4689), + [sym_bool] = ACTIONS(4691), + [sym_unit] = ACTIONS(4693), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4699), + [sym_xint] = ACTIONS(4701), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317823,88 +318238,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2580] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2807), - [sym__method_defn] = STATE(5168), - [sym__property_defn] = STATE(5153), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5184), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2725), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4756), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4703), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4760), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -317914,88 +318329,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2581] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2804), - [sym__method_defn] = STATE(5165), - [sym__property_defn] = STATE(5163), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(5177), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2581), [sym_compiler_directive_decl] = STATE(2581), [sym_fsi_directive_decl] = STATE(2581), [sym_preproc_line] = STATE(2581), - [aux_sym_attributes_repeat1] = STATE(3724), - [aux_sym__method_defn_repeat1] = STATE(2718), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4762), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4766), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -318005,179 +318420,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2582] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(8406), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2582), [sym_compiler_directive_decl] = STATE(2582), [sym_fsi_directive_decl] = STATE(2582), [sym_preproc_line] = STATE(2582), - [aux_sym_compound_type_repeat1] = STATE(2582), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_namespace] = ACTIONS(2916), - [anon_sym_module] = ACTIONS(2916), - [anon_sym_open] = ACTIONS(2916), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_and] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [aux_sym_access_modifier_token1] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_member] = ACTIONS(2916), - [anon_sym_interface] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2916), - [anon_sym_abstract] = ACTIONS(2916), - [anon_sym_override] = ACTIONS(2916), - [anon_sym_val] = ACTIONS(2916), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2583] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(5011), - [sym__function_or_value_defn_body] = STATE(4871), - [sym_function_declaration_left] = STATE(6819), - [sym_value_declaration_left] = STATE(6819), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(7353), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -318187,88 +318602,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2584] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4925), - [sym_function_declaration_left] = STATE(6819), - [sym_value_declaration_left] = STATE(6819), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2786), + [sym__method_defn] = STATE(4507), + [sym__property_defn] = STATE(4504), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4771), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2724), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4705), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4709), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -318278,179 +318693,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2585] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2795), - [sym__method_defn] = STATE(4376), - [sym__property_defn] = STATE(4442), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(5322), + [sym__attribute_set] = STATE(4224), + [sym_access_modifier] = STATE(8072), + [sym_member_defn] = STATE(2807), + [sym_additional_constr_defn] = STATE(2759), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2723), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4773), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4777), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym__member_defns_repeat1] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(4711), + [sym_identifier] = ACTIONS(4713), + [anon_sym_namespace] = ACTIONS(4713), + [anon_sym_module] = ACTIONS(4713), + [anon_sym_open] = ACTIONS(4713), + [anon_sym_LBRACK_LT] = ACTIONS(4711), + [anon_sym_return] = ACTIONS(4713), + [anon_sym_type] = ACTIONS(4713), + [anon_sym_do] = ACTIONS(4713), + [anon_sym_and] = ACTIONS(4713), + [anon_sym_let] = ACTIONS(4713), + [anon_sym_let_BANG] = ACTIONS(4711), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(4713), + [anon_sym_null] = ACTIONS(4713), + [anon_sym_AMP] = ACTIONS(4713), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4713), + [anon_sym_LBRACK_PIPE] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LT_AT] = ACTIONS(4713), + [anon_sym_LT_AT_AT] = ACTIONS(4711), + [anon_sym_LBRACE_PIPE] = ACTIONS(4711), + [anon_sym_new] = ACTIONS(4713), + [anon_sym_return_BANG] = ACTIONS(4711), + [anon_sym_yield] = ACTIONS(4713), + [anon_sym_yield_BANG] = ACTIONS(4711), + [anon_sym_lazy] = ACTIONS(4713), + [anon_sym_assert] = ACTIONS(4713), + [anon_sym_upcast] = ACTIONS(4713), + [anon_sym_downcast] = ACTIONS(4713), + [anon_sym_for] = ACTIONS(4713), + [anon_sym_while] = ACTIONS(4713), + [anon_sym_if] = ACTIONS(4713), + [anon_sym_fun] = ACTIONS(4713), + [anon_sym_try] = ACTIONS(4713), + [anon_sym_match] = ACTIONS(4713), + [anon_sym_match_BANG] = ACTIONS(4711), + [anon_sym_function] = ACTIONS(4713), + [anon_sym_use] = ACTIONS(4713), + [anon_sym_use_BANG] = ACTIONS(4711), + [anon_sym_do_BANG] = ACTIONS(4711), + [anon_sym_begin] = ACTIONS(4713), + [anon_sym_default] = ACTIONS(4717), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_member] = ACTIONS(4721), + [anon_sym_exception] = ACTIONS(4713), + [anon_sym_abstract] = ACTIONS(4723), + [anon_sym_override] = ACTIONS(4717), + [anon_sym_val] = ACTIONS(4725), + [aux_sym_char_token1] = ACTIONS(4711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4713), + [anon_sym_DQUOTE] = ACTIONS(4713), + [anon_sym_AT_DQUOTE] = ACTIONS(4711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4711), + [sym_bool] = ACTIONS(4713), + [sym_unit] = ACTIONS(4711), + [anon_sym_LPAREN_PIPE] = ACTIONS(4713), + [sym_op_identifier] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4713), + [anon_sym_DASH] = ACTIONS(4713), + [anon_sym_PLUS_DOT] = ACTIONS(4711), + [anon_sym_DASH_DOT] = ACTIONS(4711), + [anon_sym_PERCENT] = ACTIONS(4711), + [anon_sym_AMP_AMP] = ACTIONS(4711), + [anon_sym_TILDE] = ACTIONS(4711), + [aux_sym_prefix_op_token1] = ACTIONS(4711), + [sym_int] = ACTIONS(4713), + [sym_xint] = ACTIONS(4711), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4711), + [anon_sym_POUNDload] = ACTIONS(4711), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4711), }, [2586] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(4982), - [sym__function_or_value_defn_body] = STATE(4910), - [sym_function_declaration_left] = STATE(6848), - [sym_value_declaration_left] = STATE(6848), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2771), + [sym__method_defn] = STATE(5058), + [sym__property_defn] = STATE(5069), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2730), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4727), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4729), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4731), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -318460,361 +318875,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2587] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4965), - [sym_function_declaration_left] = STATE(6848), - [sym_value_declaration_left] = STATE(6848), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4779), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [aux_sym_compound_type_repeat1] = STATE(2552), + [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = 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_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(4332), + [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_exception] = 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_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3015), + [anon_sym_POUNDload] = ACTIONS(3015), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), }, [2588] = { + [sym_attributes] = STATE(5322), + [sym__attribute_set] = STATE(4224), + [sym_access_modifier] = STATE(8072), + [sym_member_defn] = STATE(2807), + [sym_additional_constr_defn] = STATE(2759), [sym_block_comment] = STATE(2588), [sym_compiler_directive_decl] = STATE(2588), [sym_fsi_directive_decl] = STATE(2588), [sym_preproc_line] = STATE(2588), - [aux_sym_compound_type_repeat1] = STATE(2582), - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2984), - [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(2984), - [aux_sym_access_modifier_token1] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [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(2984), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_member] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_exception] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_val] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2984), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2984), - [anon_sym_POUNDload] = ACTIONS(2984), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym__member_defns_repeat1] = STATE(2585), + [ts_builtin_sym_end] = ACTIONS(4733), + [sym_identifier] = ACTIONS(4735), + [anon_sym_namespace] = ACTIONS(4735), + [anon_sym_module] = ACTIONS(4735), + [anon_sym_open] = ACTIONS(4735), + [anon_sym_LBRACK_LT] = ACTIONS(4733), + [anon_sym_return] = ACTIONS(4735), + [anon_sym_type] = ACTIONS(4735), + [anon_sym_do] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_let] = ACTIONS(4735), + [anon_sym_let_BANG] = ACTIONS(4733), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(4735), + [anon_sym_null] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_LBRACK_PIPE] = ACTIONS(4733), + [anon_sym_LBRACE] = ACTIONS(4735), + [anon_sym_LT_AT] = ACTIONS(4735), + [anon_sym_LT_AT_AT] = ACTIONS(4733), + [anon_sym_LBRACE_PIPE] = ACTIONS(4733), + [anon_sym_new] = ACTIONS(4735), + [anon_sym_return_BANG] = ACTIONS(4733), + [anon_sym_yield] = ACTIONS(4735), + [anon_sym_yield_BANG] = ACTIONS(4733), + [anon_sym_lazy] = ACTIONS(4735), + [anon_sym_assert] = ACTIONS(4735), + [anon_sym_upcast] = ACTIONS(4735), + [anon_sym_downcast] = ACTIONS(4735), + [anon_sym_for] = ACTIONS(4735), + [anon_sym_while] = ACTIONS(4735), + [anon_sym_if] = ACTIONS(4735), + [anon_sym_fun] = ACTIONS(4735), + [anon_sym_try] = ACTIONS(4735), + [anon_sym_match] = ACTIONS(4735), + [anon_sym_match_BANG] = ACTIONS(4733), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_use] = ACTIONS(4735), + [anon_sym_use_BANG] = ACTIONS(4733), + [anon_sym_do_BANG] = ACTIONS(4733), + [anon_sym_begin] = ACTIONS(4735), + [anon_sym_default] = ACTIONS(4717), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_member] = ACTIONS(4721), + [anon_sym_exception] = ACTIONS(4735), + [anon_sym_abstract] = ACTIONS(4723), + [anon_sym_override] = ACTIONS(4717), + [anon_sym_val] = ACTIONS(4725), + [aux_sym_char_token1] = ACTIONS(4733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4735), + [anon_sym_DQUOTE] = ACTIONS(4735), + [anon_sym_AT_DQUOTE] = ACTIONS(4733), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4733), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4733), + [sym_bool] = ACTIONS(4735), + [sym_unit] = ACTIONS(4733), + [anon_sym_LPAREN_PIPE] = ACTIONS(4735), + [sym_op_identifier] = ACTIONS(4733), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS_DOT] = ACTIONS(4733), + [anon_sym_DASH_DOT] = ACTIONS(4733), + [anon_sym_PERCENT] = ACTIONS(4733), + [anon_sym_AMP_AMP] = ACTIONS(4733), + [anon_sym_TILDE] = ACTIONS(4733), + [aux_sym_prefix_op_token1] = ACTIONS(4733), + [sym_int] = ACTIONS(4735), + [sym_xint] = ACTIONS(4733), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4733), + [anon_sym_POUNDload] = ACTIONS(4733), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4733), }, [2589] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5401), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4606), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(4606), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_and] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [aux_sym_access_modifier_token1] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_member] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_override] = ACTIONS(2964), + [anon_sym_val] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, [2590] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3501), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym__pattern_param] = STATE(2617), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3412), - [sym_long_identifier] = STATE(3304), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3165), + [sym_function_declaration_left] = STATE(6963), + [sym_value_declaration_left] = STATE(6963), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4359), - [anon_sym_LBRACK_LT] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_null] = ACTIONS(4363), - [anon_sym__] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4359), - [anon_sym_COLON_QMARK] = ACTIONS(4359), - [anon_sym_COLON_COLON] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_LBRACK_PIPE] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [aux_sym_char_token1] = ACTIONS(4359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4363), - [anon_sym_AT_DQUOTE] = ACTIONS(4359), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4359), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4359), - [sym_bool] = ACTIONS(4363), - [sym_unit] = ACTIONS(4359), - [anon_sym_LPAREN_PIPE] = ACTIONS(4363), - [sym_op_identifier] = ACTIONS(4359), - [sym_int] = ACTIONS(4363), - [sym_xint] = ACTIONS(4359), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4737), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -318824,179 +319239,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2591] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5227), + [sym_function_declaration_left] = STATE(6814), + [sym_value_declaration_left] = STATE(6814), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2591), [sym_compiler_directive_decl] = STATE(2591), [sym_fsi_directive_decl] = STATE(2591), [sym_preproc_line] = STATE(2591), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_and] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [aux_sym_access_modifier_token1] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(4781), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_default] = ACTIONS(3064), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_member] = ACTIONS(3064), - [anon_sym_interface] = ACTIONS(3064), - [anon_sym_exception] = ACTIONS(3064), - [anon_sym_abstract] = ACTIONS(3064), - [anon_sym_override] = ACTIONS(3064), - [anon_sym_val] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4739), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), }, [2592] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(2792), - [sym_function_declaration_left] = STATE(6429), - [sym_value_declaration_left] = STATE(6429), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5680), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym__pattern_param] = STATE(2625), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(3652), + [sym_format_string] = STATE(3649), + [sym__string_literal] = STATE(3649), + [sym_string] = STATE(3652), + [sym_verbatim_string] = STATE(3652), + [sym_bytearray] = STATE(3652), + [sym_verbatim_bytearray] = STATE(3652), + [sym_format_triple_quoted_string] = STATE(3648), + [sym_triple_quoted_string] = STATE(3652), + [sym_const] = STATE(3633), + [sym_long_identifier] = STATE(3528), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(3652), + [sym_byte] = STATE(3652), + [sym_int16] = STATE(3652), + [sym_uint16] = STATE(3652), + [sym_int32] = STATE(3652), + [sym_uint32] = STATE(3652), + [sym_nativeint] = STATE(3652), + [sym_unativeint] = STATE(3652), + [sym_int64] = STATE(3652), + [sym_uint64] = STATE(3652), + [sym_ieee32] = STATE(3652), + [sym_ieee64] = STATE(3652), + [sym_bignum] = STATE(3652), + [sym_decimal] = STATE(3652), + [sym_float] = STATE(3394), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4783), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_null] = ACTIONS(4745), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_COLON_COLON] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [anon_sym_RBRACE] = ACTIONS(4367), + [aux_sym_char_token1] = ACTIONS(4759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4761), + [anon_sym_DQUOTE] = ACTIONS(4763), + [anon_sym_AT_DQUOTE] = ACTIONS(4765), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4767), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4769), + [sym_bool] = ACTIONS(4771), + [sym_unit] = ACTIONS(4773), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4779), + [sym_xint] = ACTIONS(4781), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319006,88 +319421,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2593] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3151), - [sym_function_declaration_left] = STATE(6887), - [sym_value_declaration_left] = STATE(6887), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5622), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_rec] = ACTIONS(4785), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4645), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319097,88 +319512,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2594] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defns] = STATE(3157), - [sym__function_or_value_defn_body] = STATE(3101), - [sym_function_declaration_left] = STATE(6887), - [sym_value_declaration_left] = STATE(6887), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_type_arguments] = STATE(2808), + [sym__method_defn] = STATE(4992), + [sym__property_defn] = STATE(4990), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2719), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4783), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_with] = ACTIONS(4787), + [anon_sym_LT2] = ACTIONS(4577), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319188,88 +319603,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2595] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_type_arguments] = STATE(2761), - [sym__method_defn] = STATE(5084), - [sym__property_defn] = STATE(5085), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3192), + [sym_function_declaration_left] = STATE(6833), + [sym_value_declaration_left] = STATE(6833), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2714), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4787), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4789), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [anon_sym_with] = ACTIONS(4791), - [anon_sym_LT2] = ACTIONS(4576), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319283,443 +319698,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2596), [sym_fsi_directive_decl] = STATE(2596), [sym_preproc_line] = STATE(2596), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3048), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_LBRACK_LT] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_and] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [aux_sym_access_modifier_token1] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [anon_sym_default] = ACTIONS(3048), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_member] = ACTIONS(3048), - [anon_sym_interface] = ACTIONS(3048), - [anon_sym_exception] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_val] = ACTIONS(3048), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3050), - [anon_sym_DASH_DOT] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3050), - [anon_sym_POUNDload] = ACTIONS(3050), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_open] = ACTIONS(2979), + [anon_sym_LBRACK_LT] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [aux_sym_access_modifier_token1] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_member] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_exception] = ACTIONS(2979), + [anon_sym_abstract] = ACTIONS(2979), + [anon_sym_override] = ACTIONS(2979), + [anon_sym_val] = ACTIONS(2979), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2981), + [anon_sym_POUNDload] = ACTIONS(2981), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), }, [2597] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(7609), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2597), [sym_compiler_directive_decl] = STATE(2597), [sym_fsi_directive_decl] = STATE(2597), [sym_preproc_line] = STATE(2597), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_and] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [aux_sym_access_modifier_token1] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [anon_sym_default] = ACTIONS(3064), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_member] = ACTIONS(3064), - [anon_sym_interface] = ACTIONS(3064), - [anon_sym_exception] = ACTIONS(3064), - [anon_sym_abstract] = ACTIONS(3064), - [anon_sym_override] = ACTIONS(3064), - [anon_sym_val] = ACTIONS(3064), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), }, [2598] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(4423), + [sym_function_declaration_left] = STATE(6786), + [sym_value_declaration_left] = STATE(6786), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2598), [sym_compiler_directive_decl] = STATE(2598), [sym_fsi_directive_decl] = STATE(2598), [sym_preproc_line] = STATE(2598), - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_module] = ACTIONS(3054), - [anon_sym_open] = ACTIONS(3054), - [anon_sym_LBRACK_LT] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [aux_sym_access_modifier_token1] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_member] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_exception] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3054), - [anon_sym_val] = ACTIONS(3054), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3052), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_rec] = ACTIONS(4791), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3052), - [anon_sym_POUNDload] = ACTIONS(3052), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), }, [2599] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(3195), + [sym__function_or_value_defn_body] = STATE(3142), + [sym_function_declaration_left] = STATE(6833), + [sym_value_declaration_left] = STATE(6833), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2599), [sym_compiler_directive_decl] = STATE(2599), [sym_fsi_directive_decl] = STATE(2599), [sym_preproc_line] = STATE(2599), - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3099), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_LBRACK_LT] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_and] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [aux_sym_access_modifier_token1] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_member] = ACTIONS(3099), - [anon_sym_interface] = ACTIONS(3099), - [anon_sym_exception] = ACTIONS(3099), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_val] = ACTIONS(3099), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3097), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3097), - [anon_sym_POUNDload] = ACTIONS(3097), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2600] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3129), - [sym_function_declaration_left] = STATE(6887), - [sym_value_declaration_left] = STATE(6887), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5584), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4645), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_LT2] = ACTIONS(4645), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319729,177 +320149,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2601] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(7902), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2601), [sym_compiler_directive_decl] = STATE(2601), [sym_fsi_directive_decl] = STATE(2601), [sym_preproc_line] = STATE(2601), - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_namespace] = ACTIONS(3042), - [anon_sym_module] = ACTIONS(3042), - [anon_sym_open] = ACTIONS(3042), - [anon_sym_LBRACK_LT] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_and] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [aux_sym_access_modifier_token1] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [anon_sym_default] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_member] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_exception] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_override] = ACTIONS(3042), - [anon_sym_val] = ACTIONS(3042), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3040), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3040), - [anon_sym_POUNDload] = ACTIONS(3040), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3040), }, [2602] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5000), - [sym_function_declaration_left] = STATE(6819), - [sym_value_declaration_left] = STATE(6819), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(7891), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319909,87 +320331,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2603] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4319), - [sym_function_declaration_left] = STATE(6719), - [sym_value_declaration_left] = STATE(6719), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(4422), + [sym__function_or_value_defn_body] = STATE(4255), + [sym_function_declaration_left] = STATE(6786), + [sym_value_declaration_left] = STATE(6786), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -319999,87 +320422,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2604] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3149), - [sym_function_declaration_left] = STATE(6764), - [sym_value_declaration_left] = STATE(6764), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5633), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DASH_GT] = ACTIONS(4645), + [anon_sym_when] = ACTIONS(4643), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -320089,177 +320513,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2605] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defns] = STATE(8272), + [sym__function_or_value_defn_body] = STATE(4844), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2605), [sym_compiler_directive_decl] = STATE(2605), [sym_fsi_directive_decl] = STATE(2605), [sym_preproc_line] = STATE(2605), - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_module] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_LBRACK_LT] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_and] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [aux_sym_access_modifier_token1] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_member] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_exception] = ACTIONS(3101), - [anon_sym_abstract] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3101), - [anon_sym_val] = ACTIONS(3101), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3103), - [anon_sym_DASH_DOT] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3103), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3103), - [anon_sym_POUNDload] = ACTIONS(3103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - }, - [2606] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5129), - [sym_function_declaration_left] = STATE(6740), - [sym_value_declaration_left] = STATE(6740), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -320268,88 +320603,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, + [2606] = { + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), + [sym_block_comment] = STATE(2606), + [sym_compiler_directive_decl] = STATE(2606), + [sym_fsi_directive_decl] = STATE(2606), + [sym_preproc_line] = STATE(2606), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4793), + [sym_identifier] = ACTIONS(4795), + [anon_sym_namespace] = ACTIONS(4795), + [anon_sym_module] = ACTIONS(4795), + [anon_sym_open] = ACTIONS(4795), + [anon_sym_LBRACK_LT] = ACTIONS(4793), + [anon_sym_return] = ACTIONS(4795), + [anon_sym_type] = ACTIONS(4795), + [anon_sym_do] = ACTIONS(4795), + [anon_sym_and] = ACTIONS(4795), + [anon_sym_let] = ACTIONS(4795), + [anon_sym_let_BANG] = ACTIONS(4793), + [aux_sym_access_modifier_token1] = ACTIONS(4793), + [anon_sym_LPAREN] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(4795), + [anon_sym_AMP] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4795), + [anon_sym_LBRACK_PIPE] = ACTIONS(4793), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_LT_AT] = ACTIONS(4795), + [anon_sym_LT_AT_AT] = ACTIONS(4793), + [anon_sym_LBRACE_PIPE] = ACTIONS(4793), + [anon_sym_new] = ACTIONS(4795), + [anon_sym_return_BANG] = ACTIONS(4793), + [anon_sym_yield] = ACTIONS(4795), + [anon_sym_yield_BANG] = ACTIONS(4793), + [anon_sym_lazy] = ACTIONS(4795), + [anon_sym_assert] = ACTIONS(4795), + [anon_sym_upcast] = ACTIONS(4795), + [anon_sym_downcast] = ACTIONS(4795), + [anon_sym_for] = ACTIONS(4795), + [anon_sym_while] = ACTIONS(4795), + [anon_sym_if] = ACTIONS(4795), + [anon_sym_fun] = ACTIONS(4795), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4795), + [anon_sym_match] = ACTIONS(4795), + [anon_sym_match_BANG] = ACTIONS(4793), + [anon_sym_function] = ACTIONS(4795), + [anon_sym_use] = ACTIONS(4795), + [anon_sym_use_BANG] = ACTIONS(4793), + [anon_sym_do_BANG] = ACTIONS(4793), + [anon_sym_begin] = ACTIONS(4795), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_default] = ACTIONS(4795), + [anon_sym_static] = ACTIONS(4795), + [anon_sym_member] = ACTIONS(4795), + [anon_sym_exception] = ACTIONS(4795), + [anon_sym_abstract] = ACTIONS(4795), + [anon_sym_override] = ACTIONS(4795), + [anon_sym_val] = ACTIONS(4795), + [aux_sym_char_token1] = ACTIONS(4793), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4795), + [anon_sym_DQUOTE] = ACTIONS(4795), + [anon_sym_AT_DQUOTE] = ACTIONS(4793), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4793), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4793), + [sym_bool] = ACTIONS(4795), + [sym_unit] = ACTIONS(4793), + [anon_sym_LPAREN_PIPE] = ACTIONS(4795), + [sym_op_identifier] = ACTIONS(4793), + [anon_sym_PLUS] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4795), + [anon_sym_PLUS_DOT] = ACTIONS(4793), + [anon_sym_DASH_DOT] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4793), + [anon_sym_AMP_AMP] = ACTIONS(4793), + [anon_sym_TILDE] = ACTIONS(4793), + [aux_sym_prefix_op_token1] = ACTIONS(4793), + [sym_int] = ACTIONS(4795), + [sym_xint] = ACTIONS(4793), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4793), + [anon_sym_POUNDload] = ACTIONS(4793), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4793), + }, [2607] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5090), - [sym_function_declaration_left] = STATE(6791), - [sym_value_declaration_left] = STATE(6791), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(4969), + [sym_function_declaration_left] = STATE(6926), + [sym_value_declaration_left] = STATE(6926), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -320359,357 +320785,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2608] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3121), - [sym_function_declaration_left] = STATE(6924), - [sym_value_declaration_left] = STATE(6924), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3088), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_LBRACK_LT] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_and] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [aux_sym_access_modifier_token1] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3088), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_member] = ACTIONS(3088), + [anon_sym_interface] = ACTIONS(3088), + [anon_sym_exception] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_val] = ACTIONS(3088), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [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(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = 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(15), + [anon_sym_POUNDif] = ACTIONS(3090), }, [2609] = { [sym_block_comment] = STATE(2609), [sym_compiler_directive_decl] = STATE(2609), [sym_fsi_directive_decl] = STATE(2609), [sym_preproc_line] = STATE(2609), - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_LBRACK_LT] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_and] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [aux_sym_access_modifier_token1] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3084), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_member] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_exception] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_val] = ACTIONS(3082), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3084), - [anon_sym_DASH_DOT] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3084), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3084), - [anon_sym_POUNDload] = ACTIONS(3084), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3096), + [anon_sym_namespace] = ACTIONS(3096), + [anon_sym_module] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_LBRACK_LT] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [aux_sym_access_modifier_token1] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3098), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_member] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_exception] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_val] = ACTIONS(3096), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3098), + [anon_sym_DASH_DOT] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3098), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3098), + [anon_sym_POUNDload] = ACTIONS(3098), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), }, [2610] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(2762), + [sym_function_declaration_left] = STATE(6469), + [sym_value_declaration_left] = STATE(6469), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2610), [sym_compiler_directive_decl] = STATE(2610), [sym_fsi_directive_decl] = STATE(2610), [sym_preproc_line] = STATE(2610), - [ts_builtin_sym_end] = ACTIONS(3046), - [sym_identifier] = ACTIONS(3044), - [anon_sym_namespace] = ACTIONS(3044), - [anon_sym_module] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_LBRACK_LT] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_and] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [aux_sym_access_modifier_token1] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3044), - [anon_sym_static] = ACTIONS(3044), - [anon_sym_member] = ACTIONS(3044), - [anon_sym_interface] = ACTIONS(3044), - [anon_sym_exception] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_val] = ACTIONS(3044), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3046), - [anon_sym_DASH_DOT] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3046), - [anon_sym_POUNDload] = ACTIONS(3046), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), }, [2611] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(4378), - [sym_function_declaration_left] = STATE(6702), - [sym_value_declaration_left] = STATE(6702), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3550), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4645), + [anon_sym_LBRACK_LT] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4643), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4643), + [anon_sym__] = ACTIONS(4643), + [anon_sym_QMARK] = ACTIONS(4645), + [anon_sym_COLON_QMARK] = ACTIONS(4645), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4643), + [anon_sym_LBRACK_PIPE] = ACTIONS(4645), + [anon_sym_LBRACE] = ACTIONS(4645), + [aux_sym_char_token1] = ACTIONS(4645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4643), + [anon_sym_DQUOTE] = ACTIONS(4643), + [anon_sym_AT_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4645), + [sym_bool] = ACTIONS(4643), + [sym_unit] = ACTIONS(4645), + [anon_sym_LPAREN_PIPE] = ACTIONS(4643), + [sym_op_identifier] = ACTIONS(4645), + [sym_int] = ACTIONS(4643), + [sym_xint] = ACTIONS(4645), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -320719,447 +321145,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2612] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(2758), - [sym_function_declaration_left] = STATE(6429), - [sym_value_declaration_left] = STATE(6429), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_module] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_LBRACK_LT] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_type] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_and] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [aux_sym_access_modifier_token1] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_member] = ACTIONS(3078), + [anon_sym_interface] = ACTIONS(3078), + [anon_sym_exception] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_val] = ACTIONS(3078), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3080), + [anon_sym_DASH_DOT] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3080), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3080), + [anon_sym_POUNDload] = ACTIONS(3080), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), }, [2613] = { [sym_block_comment] = STATE(2613), [sym_compiler_directive_decl] = STATE(2613), [sym_fsi_directive_decl] = STATE(2613), [sym_preproc_line] = STATE(2613), - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_module] = ACTIONS(3058), - [anon_sym_open] = ACTIONS(3058), - [anon_sym_LBRACK_LT] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [aux_sym_access_modifier_token1] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_LT2] = ACTIONS(4793), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_member] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_exception] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3058), - [anon_sym_val] = ACTIONS(3058), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3056), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3056), - [anon_sym_POUNDload] = ACTIONS(3056), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3092), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_LBRACK_LT] = ACTIONS(3094), + [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(3094), + [aux_sym_access_modifier_token1] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = 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_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3094), + [anon_sym_function] = 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_STAR] = ACTIONS(3094), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_member] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_exception] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_val] = 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(3094), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3094), + [anon_sym_DASH_DOT] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_prefix_op_token1] = ACTIONS(3094), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3094), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3094), + [anon_sym_POUNDload] = ACTIONS(3094), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), }, [2614] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5631), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_comment] = STATE(2614), [sym_compiler_directive_decl] = STATE(2614), [sym_fsi_directive_decl] = STATE(2614), [sym_preproc_line] = STATE(2614), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_module] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_LBRACK_LT] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_and] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [aux_sym_access_modifier_token1] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4608), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_member] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_exception] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_val] = ACTIONS(3048), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3054), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3054), + [anon_sym_POUNDload] = ACTIONS(3054), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3054), }, [2615] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(5120), - [sym_function_declaration_left] = STATE(6848), - [sym_value_declaration_left] = STATE(6848), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_namespace] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_LBRACK_LT] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_and] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [aux_sym_access_modifier_token1] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3074), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(3076), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_member] = ACTIONS(3076), + [anon_sym_interface] = ACTIONS(3076), + [anon_sym_exception] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_val] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3074), + [anon_sym_DASH_DOT] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3074), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3074), + [anon_sym_POUNDload] = ACTIONS(3074), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), }, [2616] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym__function_or_value_defn_body] = STATE(3173), - [sym_function_declaration_left] = STATE(6920), - [sym_value_declaration_left] = STATE(6920), - [sym_access_modifier] = STATE(2895), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5270), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2944), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(4347), + [sym_function_declaration_left] = STATE(6786), + [sym_value_declaration_left] = STATE(6786), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2616), [sym_compiler_directive_decl] = STATE(2616), [sym_fsi_directive_decl] = STATE(2616), [sym_preproc_line] = STATE(2616), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_inline] = ACTIONS(4578), - [anon_sym_mutable] = ACTIONS(4580), - [aux_sym_access_modifier_token1] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -321169,87 +321595,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2617] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3525), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5231), + [sym_function_declaration_left] = STATE(6814), + [sym_value_declaration_left] = STATE(6814), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4606), - [anon_sym_LBRACK_LT] = ACTIONS(4606), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4608), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4608), - [anon_sym__] = ACTIONS(4608), - [anon_sym_QMARK] = ACTIONS(4606), - [anon_sym_COLON_QMARK] = ACTIONS(4606), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4608), - [anon_sym_LBRACK_PIPE] = ACTIONS(4606), - [anon_sym_LBRACE] = ACTIONS(4606), - [aux_sym_char_token1] = ACTIONS(4606), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_AT_DQUOTE] = ACTIONS(4606), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4606), - [sym_bool] = ACTIONS(4608), - [sym_unit] = ACTIONS(4606), - [anon_sym_LPAREN_PIPE] = ACTIONS(4608), - [sym_op_identifier] = ACTIONS(4606), - [sym_int] = ACTIONS(4608), - [sym_xint] = ACTIONS(4606), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -321259,177 +321685,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2618] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3191), + [sym_function_declaration_left] = STATE(6989), + [sym_value_declaration_left] = STATE(6989), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2618), [sym_compiler_directive_decl] = STATE(2618), [sym_fsi_directive_decl] = STATE(2618), [sym_preproc_line] = STATE(2618), - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_open] = ACTIONS(3093), - [anon_sym_LBRACK_LT] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_and] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [aux_sym_access_modifier_token1] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_member] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_exception] = ACTIONS(3093), - [anon_sym_abstract] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3093), - [anon_sym_val] = ACTIONS(3093), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3095), - [anon_sym_DASH_DOT] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3095), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3095), - [anon_sym_POUNDload] = ACTIONS(3095), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2619] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5629), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3185), + [sym_function_declaration_left] = STATE(6833), + [sym_value_declaration_left] = STATE(6833), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_COLON] = ACTIONS(4608), - [anon_sym_as] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_COMMA] = ACTIONS(4606), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_COLON_COLON] = ACTIONS(4606), - [anon_sym_PIPE] = ACTIONS(4606), - [anon_sym_AMP] = ACTIONS(4606), - [anon_sym_SEMI] = ACTIONS(4606), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [anon_sym_RBRACE] = ACTIONS(4606), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -321439,38 +321865,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2620] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3141), + [sym_function_declaration_left] = STATE(6963), + [sym_value_declaration_left] = STATE(6963), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2620), [sym_compiler_directive_decl] = STATE(2620), [sym_fsi_directive_decl] = STATE(2620), [sym_preproc_line] = STATE(2620), - [ts_builtin_sym_end] = ACTIONS(3076), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2621] = { + [sym_block_comment] = STATE(2621), + [sym_compiler_directive_decl] = STATE(2621), + [sym_fsi_directive_decl] = STATE(2621), + [sym_preproc_line] = STATE(2621), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_namespace] = ACTIONS(3042), + [anon_sym_module] = ACTIONS(3042), + [anon_sym_open] = ACTIONS(3042), + [anon_sym_LBRACK_LT] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_and] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [aux_sym_access_modifier_token1] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3040), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3042), + [anon_sym_static] = ACTIONS(3042), + [anon_sym_member] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_exception] = ACTIONS(3042), + [anon_sym_abstract] = ACTIONS(3042), + [anon_sym_override] = ACTIONS(3042), + [anon_sym_val] = ACTIONS(3042), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3040), + [anon_sym_DASH_DOT] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3040), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3040), + [anon_sym_POUNDload] = ACTIONS(3040), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3040), + }, + [2622] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5100), + [sym_function_declaration_left] = STATE(6892), + [sym_value_declaration_left] = STATE(6892), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2622), + [sym_compiler_directive_decl] = STATE(2622), + [sym_fsi_directive_decl] = STATE(2622), + [sym_preproc_line] = STATE(2622), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2623] = { + [sym_block_comment] = STATE(2623), + [sym_compiler_directive_decl] = STATE(2623), + [sym_fsi_directive_decl] = STATE(2623), + [sym_preproc_line] = STATE(2623), + [ts_builtin_sym_end] = ACTIONS(3070), [sym_identifier] = ACTIONS(3072), [anon_sym_namespace] = ACTIONS(3072), [anon_sym_module] = ACTIONS(3072), [anon_sym_open] = ACTIONS(3072), - [anon_sym_LBRACK_LT] = ACTIONS(3076), + [anon_sym_LBRACK_LT] = ACTIONS(3070), [anon_sym_return] = ACTIONS(3072), [anon_sym_type] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_and] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [aux_sym_access_modifier_token1] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), + [aux_sym_access_modifier_token1] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_null] = ACTIONS(3072), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_with] = ACTIONS(3072), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -321479,18 +322175,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3070), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3070), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), [anon_sym_default] = ACTIONS(3072), [anon_sym_static] = ACTIONS(3072), [anon_sym_member] = ACTIONS(3072), @@ -321499,458 +322195,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3072), [anon_sym_override] = ACTIONS(3072), [anon_sym_val] = ACTIONS(3072), - [aux_sym_char_token1] = ACTIONS(3076), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3070), [anon_sym_PLUS] = ACTIONS(3072), [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3070), + [anon_sym_DASH_DOT] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3070), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3076), - [anon_sym_POUNDload] = ACTIONS(3076), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), - }, - [2621] = { - [sym_type_arguments] = STATE(2609), - [sym__object_members] = STATE(2926), - [sym_long_identifier] = STATE(2620), - [sym_block_comment] = STATE(2621), - [sym_compiler_directive_decl] = STATE(2621), - [sym_fsi_directive_decl] = STATE(2621), - [sym_preproc_line] = STATE(2621), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(4817), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(4819), - [anon_sym_module] = ACTIONS(4819), - [anon_sym_open] = ACTIONS(4819), - [anon_sym_LBRACK_LT] = ACTIONS(4817), - [anon_sym_return] = ACTIONS(4819), - [anon_sym_type] = ACTIONS(4819), - [anon_sym_do] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_let] = ACTIONS(4819), - [anon_sym_let_BANG] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_null] = ACTIONS(4819), - [anon_sym_AMP] = ACTIONS(4819), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_LBRACK_PIPE] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4819), - [anon_sym_LT_AT] = ACTIONS(4819), - [anon_sym_LT_AT_AT] = ACTIONS(4817), - [anon_sym_LBRACE_PIPE] = ACTIONS(4817), - [anon_sym_with] = ACTIONS(4821), - [anon_sym_new] = ACTIONS(4819), - [anon_sym_return_BANG] = ACTIONS(4817), - [anon_sym_yield] = ACTIONS(4819), - [anon_sym_yield_BANG] = ACTIONS(4817), - [anon_sym_lazy] = ACTIONS(4819), - [anon_sym_assert] = ACTIONS(4819), - [anon_sym_upcast] = ACTIONS(4819), - [anon_sym_downcast] = ACTIONS(4819), - [anon_sym_for] = ACTIONS(4819), - [anon_sym_while] = ACTIONS(4819), - [anon_sym_if] = ACTIONS(4819), - [anon_sym_fun] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(4819), - [anon_sym_match] = ACTIONS(4819), - [anon_sym_match_BANG] = ACTIONS(4817), - [anon_sym_function] = ACTIONS(4819), - [anon_sym_use] = ACTIONS(4819), - [anon_sym_use_BANG] = ACTIONS(4817), - [anon_sym_do_BANG] = ACTIONS(4817), - [anon_sym_begin] = ACTIONS(4819), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_interface] = ACTIONS(4819), - [anon_sym_exception] = ACTIONS(4819), - [aux_sym_char_token1] = ACTIONS(4817), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4819), - [anon_sym_DQUOTE] = ACTIONS(4819), - [anon_sym_AT_DQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4817), - [sym_bool] = ACTIONS(4819), - [sym_unit] = ACTIONS(4817), - [anon_sym_LPAREN_PIPE] = ACTIONS(4819), - [sym_op_identifier] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(4819), - [anon_sym_DASH] = ACTIONS(4819), - [anon_sym_PLUS_DOT] = ACTIONS(4817), - [anon_sym_DASH_DOT] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4817), - [anon_sym_TILDE] = ACTIONS(4817), - [aux_sym_prefix_op_token1] = ACTIONS(4817), - [sym_int] = ACTIONS(4819), - [sym_xint] = ACTIONS(4817), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4817), - [anon_sym_POUNDload] = ACTIONS(4817), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4817), - }, - [2622] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(918), - [sym_rules] = STATE(1203), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2622), - [sym_compiler_directive_decl] = STATE(2622), - [sym_fsi_directive_decl] = STATE(2622), - [sym_preproc_line] = STATE(2622), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2623] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7406), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3070), + [anon_sym_POUNDload] = ACTIONS(3070), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3070), }, [2624] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(6990), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_namespace] = ACTIONS(3068), + [anon_sym_module] = ACTIONS(3068), + [anon_sym_open] = ACTIONS(3068), + [anon_sym_LBRACK_LT] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_and] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [aux_sym_access_modifier_token1] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3068), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_member] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_exception] = ACTIONS(3068), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_override] = ACTIONS(3068), + [anon_sym_val] = ACTIONS(3068), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3066), + [anon_sym_DASH_DOT] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3066), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3066), + [anon_sym_POUNDload] = ACTIONS(3066), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), }, [2625] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8013), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5707), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [anon_sym_RBRACE] = ACTIONS(4645), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -321960,83 +322405,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2626] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8030), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(4391), + [sym_function_declaration_left] = STATE(6768), + [sym_value_declaration_left] = STATE(6768), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322046,83 +322495,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2627] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7229), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(3144), + [sym_function_declaration_left] = STATE(7003), + [sym_value_declaration_left] = STATE(7003), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2627), [sym_compiler_directive_decl] = STATE(2627), [sym_fsi_directive_decl] = STATE(2627), [sym_preproc_line] = STATE(2627), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322132,169 +322585,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2628] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8119), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_namespace] = ACTIONS(3084), + [anon_sym_module] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_LBRACK_LT] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_and] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [aux_sym_access_modifier_token1] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LT2] = ACTIONS(4819), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3084), + [anon_sym_static] = ACTIONS(3084), + [anon_sym_member] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_exception] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_val] = ACTIONS(3084), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3082), + [anon_sym_DASH_DOT] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3082), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3082), + [anon_sym_POUNDload] = ACTIONS(3082), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), }, [2629] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1525), - [sym_rules] = STATE(1999), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym__function_or_value_defn_body] = STATE(5151), + [sym_function_declaration_left] = STATE(6865), + [sym_value_declaration_left] = STATE(6865), + [sym_access_modifier] = STATE(2869), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5279), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3005), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4516), + [aux_sym_access_modifier_token1] = ACTIONS(4518), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322304,169 +322765,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2630] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7932), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_open] = ACTIONS(3060), + [anon_sym_LBRACK_LT] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_and] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [aux_sym_access_modifier_token1] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_member] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_exception] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_val] = ACTIONS(3060), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3058), + [anon_sym_POUNDload] = ACTIONS(3058), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), }, [2631] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8252), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5714), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4645), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4643), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322476,255 +322945,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2632] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1603), - [sym_rules] = STATE(2235), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3062), + [anon_sym_namespace] = ACTIONS(3062), + [anon_sym_module] = ACTIONS(3062), + [anon_sym_open] = ACTIONS(3062), + [anon_sym_LBRACK_LT] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_and] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [aux_sym_access_modifier_token1] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3062), + [anon_sym_member] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_exception] = ACTIONS(3062), + [anon_sym_abstract] = ACTIONS(3062), + [anon_sym_override] = ACTIONS(3062), + [anon_sym_val] = ACTIONS(3062), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3064), + [anon_sym_DASH_DOT] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3064), + [anon_sym_POUNDload] = ACTIONS(3064), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), }, [2633] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7134), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_type_arguments] = STATE(2623), + [sym__object_members] = STATE(2933), + [sym_long_identifier] = STATE(2614), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(4821), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(4823), + [anon_sym_module] = ACTIONS(4823), + [anon_sym_open] = ACTIONS(4823), + [anon_sym_LBRACK_LT] = ACTIONS(4821), + [anon_sym_return] = ACTIONS(4823), + [anon_sym_type] = ACTIONS(4823), + [anon_sym_do] = ACTIONS(4823), + [anon_sym_and] = ACTIONS(4823), + [anon_sym_let] = ACTIONS(4823), + [anon_sym_let_BANG] = ACTIONS(4821), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_null] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_LBRACK_PIPE] = ACTIONS(4821), + [anon_sym_LBRACE] = ACTIONS(4823), + [anon_sym_LT_AT] = ACTIONS(4823), + [anon_sym_LT_AT_AT] = ACTIONS(4821), + [anon_sym_LBRACE_PIPE] = ACTIONS(4821), + [anon_sym_with] = ACTIONS(4825), + [anon_sym_new] = ACTIONS(4823), + [anon_sym_return_BANG] = ACTIONS(4821), + [anon_sym_yield] = ACTIONS(4823), + [anon_sym_yield_BANG] = ACTIONS(4821), + [anon_sym_lazy] = ACTIONS(4823), + [anon_sym_assert] = ACTIONS(4823), + [anon_sym_upcast] = ACTIONS(4823), + [anon_sym_downcast] = ACTIONS(4823), + [anon_sym_for] = ACTIONS(4823), + [anon_sym_while] = ACTIONS(4823), + [anon_sym_if] = ACTIONS(4823), + [anon_sym_fun] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4823), + [anon_sym_match] = ACTIONS(4823), + [anon_sym_match_BANG] = ACTIONS(4821), + [anon_sym_function] = ACTIONS(4823), + [anon_sym_use] = ACTIONS(4823), + [anon_sym_use_BANG] = ACTIONS(4821), + [anon_sym_do_BANG] = ACTIONS(4821), + [anon_sym_begin] = ACTIONS(4823), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_interface] = ACTIONS(4823), + [anon_sym_exception] = ACTIONS(4823), + [aux_sym_char_token1] = ACTIONS(4821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_AT_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4821), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4821), + [sym_bool] = ACTIONS(4823), + [sym_unit] = ACTIONS(4821), + [anon_sym_LPAREN_PIPE] = ACTIONS(4823), + [sym_op_identifier] = ACTIONS(4821), + [anon_sym_PLUS] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4823), + [anon_sym_PLUS_DOT] = ACTIONS(4821), + [anon_sym_DASH_DOT] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_TILDE] = ACTIONS(4821), + [aux_sym_prefix_op_token1] = ACTIONS(4821), + [sym_int] = ACTIONS(4823), + [sym_xint] = ACTIONS(4821), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4821), + [anon_sym_POUNDload] = ACTIONS(4821), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4821), }, [2634] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1603), - [sym_rules] = STATE(2234), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7631), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322734,83 +323208,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2635] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(934), - [sym_rules] = STATE(1103), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1522), + [sym_rules] = STATE(1881), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2635), [sym_compiler_directive_decl] = STATE(2635), [sym_fsi_directive_decl] = STATE(2635), [sym_preproc_line] = STATE(2635), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4831), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4829), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322820,83 +323294,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2636] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1347), - [sym_rules] = STATE(1595), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8339), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322906,83 +323380,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2637] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8250), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8176), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -322992,83 +323466,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2638] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1603), - [sym_rules] = STATE(2220), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1499), + [sym_rules] = STATE(1981), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4831), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323078,83 +323552,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2639] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1347), - [sym_rules] = STATE(1628), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8205), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323164,83 +323638,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2640] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7399), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1824), + [sym_rules] = STATE(2527), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4833), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323250,83 +323724,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2641] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1347), - [sym_rules] = STATE(1633), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8254), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323336,83 +323810,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2642] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1751), - [sym_rules] = STATE(2195), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1593), + [sym_rules] = STATE(2254), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4835), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323422,83 +323896,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2643] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(934), - [sym_rules] = STATE(1074), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1499), + [sym_rules] = STATE(2026), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4831), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323508,83 +323982,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2644] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1525), - [sym_rules] = STATE(2065), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1824), + [sym_rules] = STATE(2546), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4833), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323594,83 +324068,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2645] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7802), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1499), + [sym_rules] = STATE(2027), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4831), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323680,83 +324154,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2646] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7680), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1824), + [sym_rules] = STATE(2549), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2646), [sym_compiler_directive_decl] = STATE(2646), [sym_fsi_directive_decl] = STATE(2646), [sym_preproc_line] = STATE(2646), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4833), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323766,83 +324240,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2647] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1347), - [sym_rules] = STATE(1692), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1435), + [sym_rules] = STATE(1604), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4837), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323852,83 +324326,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2648] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7323), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1499), + [sym_rules] = STATE(2050), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4831), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -323938,83 +324412,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2649] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7715), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(949), + [sym_rules] = STATE(1035), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4839), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324024,83 +324498,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2650] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1757), - [sym_rules] = STATE(2522), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1370), + [sym_rules] = STATE(1825), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2650), [sym_compiler_directive_decl] = STATE(2650), [sym_fsi_directive_decl] = STATE(2650), [sym_preproc_line] = STATE(2650), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4841), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324110,83 +324584,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2651] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7823), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1824), + [sym_rules] = STATE(2476), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4833), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324196,83 +324670,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2652] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7660), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8304), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2652), [sym_compiler_directive_decl] = STATE(2652), [sym_fsi_directive_decl] = STATE(2652), [sym_preproc_line] = STATE(2652), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324282,83 +324756,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2653] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(918), - [sym_rules] = STATE(1162), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8177), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2653), [sym_compiler_directive_decl] = STATE(2653), [sym_fsi_directive_decl] = STATE(2653), [sym_preproc_line] = STATE(2653), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324368,83 +324842,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2654] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(934), - [sym_rules] = STATE(1070), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7682), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4831), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324454,83 +324928,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2655] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1586), - [sym_rules] = STATE(2143), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8076), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4839), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324540,83 +325014,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2656] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7268), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7197), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324626,83 +325100,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2657] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1526), - [sym_rules] = STATE(1880), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7949), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324712,83 +325186,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2658] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1526), - [sym_rules] = STATE(1848), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(954), + [sym_rules] = STATE(1033), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4843), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324798,83 +325272,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2659] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7183), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7782), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2659), [sym_compiler_directive_decl] = STATE(2659), [sym_fsi_directive_decl] = STATE(2659), [sym_preproc_line] = STATE(2659), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324884,83 +325358,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2660] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1586), - [sym_rules] = STATE(2144), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1549), + [sym_rules] = STATE(2112), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4839), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4845), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -324970,83 +325444,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2661] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7596), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7873), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325056,83 +325530,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2662] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8065), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7806), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325142,83 +325616,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2663] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7278), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1522), + [sym_rules] = STATE(1862), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4829), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325228,83 +325702,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2664] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1526), - [sym_rules] = STATE(1847), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1522), + [sym_rules] = STATE(1879), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4829), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325314,83 +325788,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2665] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(918), - [sym_rules] = STATE(1246), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(954), + [sym_rules] = STATE(1061), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4843), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325400,83 +325874,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2666] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1586), - [sym_rules] = STATE(2151), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(949), + [sym_rules] = STATE(1092), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4839), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325486,83 +325960,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2667] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7966), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7593), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325572,83 +326046,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2668] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7894), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(949), + [sym_rules] = STATE(1062), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4839), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325658,83 +326132,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2669] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1757), - [sym_rules] = STATE(2475), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(954), + [sym_rules] = STATE(1065), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4843), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325744,83 +326218,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2670] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1757), - [sym_rules] = STATE(2474), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7784), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325830,83 +326304,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2671] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7077), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7587), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -325916,83 +326390,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2672] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1472), - [sym_rules] = STATE(2035), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1741), + [sym_rules] = STATE(2445), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2672), [sym_compiler_directive_decl] = STATE(2672), [sym_fsi_directive_decl] = STATE(2672), [sym_preproc_line] = STATE(2672), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4847), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326002,83 +326476,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2673] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1526), - [sym_rules] = STATE(1828), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1522), + [sym_rules] = STATE(1906), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4829), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326088,83 +326562,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2674] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1751), - [sym_rules] = STATE(2178), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1593), + [sym_rules] = STATE(2278), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2674), [sym_compiler_directive_decl] = STATE(2674), [sym_fsi_directive_decl] = STATE(2674), [sym_preproc_line] = STATE(2674), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4835), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326174,83 +326648,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2675] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7300), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(954), + [sym_rules] = STATE(1095), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4843), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326260,83 +326734,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2676] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1472), - [sym_rules] = STATE(2023), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1593), + [sym_rules] = STATE(2279), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2676), [sym_compiler_directive_decl] = STATE(2676), [sym_fsi_directive_decl] = STATE(2676), [sym_preproc_line] = STATE(2676), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4835), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326346,83 +326820,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2677] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7645), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7761), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326432,83 +326906,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2678] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1472), - [sym_rules] = STATE(2022), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1549), + [sym_rules] = STATE(2067), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4845), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326518,83 +326992,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2679] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1525), - [sym_rules] = STATE(1974), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7455), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2679), [sym_compiler_directive_decl] = STATE(2679), [sym_fsi_directive_decl] = STATE(2679), [sym_preproc_line] = STATE(2679), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326604,83 +327078,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2680] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7004), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1549), + [sym_rules] = STATE(2062), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4845), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326690,83 +327164,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2681] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1525), - [sym_rules] = STATE(1846), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7361), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2681), [sym_compiler_directive_decl] = STATE(2681), [sym_fsi_directive_decl] = STATE(2681), [sym_preproc_line] = STATE(2681), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326776,83 +327250,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2682] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1472), - [sym_rules] = STATE(2006), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1435), + [sym_rules] = STATE(1771), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4837), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326862,83 +327336,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2683] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7490), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7043), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -326948,83 +327422,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2684] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1751), - [sym_rules] = STATE(2197), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7338), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327034,83 +327508,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2685] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7516), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7380), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327120,83 +327594,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2686] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1404), - [sym_rules] = STATE(1725), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7306), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327206,83 +327680,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2687] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1586), - [sym_rules] = STATE(2204), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1549), + [sym_rules] = STATE(2042), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2687), [sym_compiler_directive_decl] = STATE(2687), [sym_fsi_directive_decl] = STATE(2687), [sym_preproc_line] = STATE(2687), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4839), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4845), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327292,83 +327766,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2688] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7624), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8204), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327378,83 +327852,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2689] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7705), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1590), + [sym_rules] = STATE(2256), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4849), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327464,83 +327938,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2690] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7964), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1590), + [sym_rules] = STATE(2219), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2690), [sym_compiler_directive_decl] = STATE(2690), [sym_fsi_directive_decl] = STATE(2690), [sym_preproc_line] = STATE(2690), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4849), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327550,83 +328024,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2691] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1655), - [sym_rules] = STATE(2525), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1593), + [sym_rules] = STATE(2297), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4835), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327636,83 +328110,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2692] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1655), - [sym_rules] = STATE(2513), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1435), + [sym_rules] = STATE(1698), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4837), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327722,83 +328196,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2693] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1655), - [sym_rules] = STATE(2523), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1590), + [sym_rules] = STATE(2218), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4849), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327808,83 +328282,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2694] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1757), - [sym_rules] = STATE(2436), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1741), + [sym_rules] = STATE(2391), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4847), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327894,83 +328368,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2695] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1751), - [sym_rules] = STATE(2222), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7189), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -327980,83 +328454,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2696] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(934), - [sym_rules] = STATE(1043), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1741), + [sym_rules] = STATE(2390), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2696), [sym_compiler_directive_decl] = STATE(2696), [sym_fsi_directive_decl] = STATE(2696), [sym_preproc_line] = STATE(2696), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4831), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4847), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328066,83 +328540,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2697] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1655), - [sym_rules] = STATE(2524), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1620), + [sym_rules] = STATE(2429), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328152,83 +328626,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2698] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(918), - [sym_rules] = STATE(1121), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1590), + [sym_rules] = STATE(2154), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4849), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328238,83 +328712,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2699] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1404), - [sym_rules] = STATE(1656), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7299), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328324,83 +328798,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2700] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7263), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(8164), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328410,83 +328884,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2701] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(7433), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7741), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328496,83 +328970,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2702] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1404), - [sym_rules] = STATE(1690), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1620), + [sym_rules] = STATE(2456), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328582,83 +329056,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2703] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1404), - [sym_rules] = STATE(1691), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7237), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328668,83 +329142,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2704] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1603), - [sym_rules] = STATE(2254), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1620), + [sym_rules] = STATE(2465), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328754,83 +329228,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2705] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6088), - [sym_rules] = STATE(8112), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1620), + [sym_rules] = STATE(2483), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328840,82 +329314,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2706] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7177), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4849), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -328925,252 +329400,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2707] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7166), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2707), [sym_compiler_directive_decl] = STATE(2707), [sym_fsi_directive_decl] = STATE(2707), [sym_preproc_line] = STATE(2707), - [ts_builtin_sym_end] = ACTIONS(4851), - [sym_identifier] = ACTIONS(4853), - [anon_sym_namespace] = ACTIONS(4853), - [anon_sym_module] = ACTIONS(4853), - [anon_sym_open] = ACTIONS(4853), - [anon_sym_LBRACK_LT] = ACTIONS(4851), - [anon_sym_return] = ACTIONS(4853), - [anon_sym_type] = ACTIONS(4853), - [anon_sym_do] = ACTIONS(4853), - [anon_sym_and] = ACTIONS(4853), - [anon_sym_let] = ACTIONS(4853), - [anon_sym_let_BANG] = ACTIONS(4851), - [aux_sym_access_modifier_token1] = ACTIONS(4851), - [anon_sym_LPAREN] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(4853), - [anon_sym_AMP] = ACTIONS(4853), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_LBRACK_PIPE] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LT_AT] = ACTIONS(4853), - [anon_sym_LT_AT_AT] = ACTIONS(4851), - [anon_sym_LBRACE_PIPE] = ACTIONS(4851), - [anon_sym_with] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4853), - [anon_sym_return_BANG] = ACTIONS(4851), - [anon_sym_yield] = ACTIONS(4853), - [anon_sym_yield_BANG] = ACTIONS(4851), - [anon_sym_lazy] = ACTIONS(4853), - [anon_sym_assert] = ACTIONS(4853), - [anon_sym_upcast] = ACTIONS(4853), - [anon_sym_downcast] = ACTIONS(4853), - [anon_sym_for] = ACTIONS(4853), - [anon_sym_while] = ACTIONS(4853), - [anon_sym_if] = ACTIONS(4853), - [anon_sym_fun] = ACTIONS(4853), - [anon_sym_try] = ACTIONS(4853), - [anon_sym_match] = ACTIONS(4853), - [anon_sym_match_BANG] = ACTIONS(4851), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_use] = ACTIONS(4853), - [anon_sym_use_BANG] = ACTIONS(4851), - [anon_sym_do_BANG] = ACTIONS(4851), - [anon_sym_begin] = ACTIONS(4853), - [anon_sym_default] = ACTIONS(4853), - [anon_sym_static] = ACTIONS(4853), - [anon_sym_member] = ACTIONS(4853), - [anon_sym_exception] = ACTIONS(4853), - [anon_sym_abstract] = ACTIONS(4853), - [anon_sym_override] = ACTIONS(4853), - [anon_sym_val] = ACTIONS(4853), - [aux_sym_char_token1] = ACTIONS(4851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(4853), - [anon_sym_AT_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4851), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4851), - [sym_bool] = ACTIONS(4853), - [sym_unit] = ACTIONS(4851), - [anon_sym_LPAREN_PIPE] = ACTIONS(4853), - [sym_op_identifier] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_PLUS_DOT] = ACTIONS(4851), - [anon_sym_DASH_DOT] = ACTIONS(4851), - [anon_sym_PERCENT] = ACTIONS(4851), - [anon_sym_AMP_AMP] = ACTIONS(4851), - [anon_sym_TILDE] = ACTIONS(4851), - [aux_sym_prefix_op_token1] = ACTIONS(4851), - [sym_int] = ACTIONS(4853), - [sym_xint] = ACTIONS(4851), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4851), - [anon_sym_POUNDload] = ACTIONS(4851), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4851), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2708] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1741), + [sym_rules] = STATE(2353), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2708), [sym_compiler_directive_decl] = STATE(2708), [sym_fsi_directive_decl] = STATE(2708), [sym_preproc_line] = STATE(2708), - [ts_builtin_sym_end] = ACTIONS(4857), - [sym_identifier] = ACTIONS(4859), - [anon_sym_namespace] = ACTIONS(4859), - [anon_sym_module] = ACTIONS(4859), - [anon_sym_open] = ACTIONS(4859), - [anon_sym_LBRACK_LT] = ACTIONS(4857), - [anon_sym_return] = ACTIONS(4859), - [anon_sym_type] = ACTIONS(4859), - [anon_sym_do] = ACTIONS(4859), - [anon_sym_and] = ACTIONS(4859), - [anon_sym_let] = ACTIONS(4859), - [anon_sym_let_BANG] = ACTIONS(4857), - [aux_sym_access_modifier_token1] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(4859), - [anon_sym_AMP] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_LBRACK_PIPE] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4859), - [anon_sym_LT_AT] = ACTIONS(4859), - [anon_sym_LT_AT_AT] = ACTIONS(4857), - [anon_sym_LBRACE_PIPE] = ACTIONS(4857), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_new] = ACTIONS(4859), - [anon_sym_return_BANG] = ACTIONS(4857), - [anon_sym_yield] = ACTIONS(4859), - [anon_sym_yield_BANG] = ACTIONS(4857), - [anon_sym_lazy] = ACTIONS(4859), - [anon_sym_assert] = ACTIONS(4859), - [anon_sym_upcast] = ACTIONS(4859), - [anon_sym_downcast] = ACTIONS(4859), - [anon_sym_for] = ACTIONS(4859), - [anon_sym_while] = ACTIONS(4859), - [anon_sym_if] = ACTIONS(4859), - [anon_sym_fun] = ACTIONS(4859), - [anon_sym_try] = ACTIONS(4859), - [anon_sym_match] = ACTIONS(4859), - [anon_sym_match_BANG] = ACTIONS(4857), - [anon_sym_function] = ACTIONS(4859), - [anon_sym_use] = ACTIONS(4859), - [anon_sym_use_BANG] = ACTIONS(4857), - [anon_sym_do_BANG] = ACTIONS(4857), - [anon_sym_begin] = ACTIONS(4859), - [anon_sym_default] = ACTIONS(4859), - [anon_sym_static] = ACTIONS(4859), - [anon_sym_member] = ACTIONS(4859), - [anon_sym_exception] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_override] = ACTIONS(4859), - [anon_sym_val] = ACTIONS(4859), - [aux_sym_char_token1] = ACTIONS(4857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_AT_DQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4857), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4857), - [sym_bool] = ACTIONS(4859), - [sym_unit] = ACTIONS(4857), - [anon_sym_LPAREN_PIPE] = ACTIONS(4859), - [sym_op_identifier] = ACTIONS(4857), - [anon_sym_PLUS] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [anon_sym_PLUS_DOT] = ACTIONS(4857), - [anon_sym_DASH_DOT] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_TILDE] = ACTIONS(4857), - [aux_sym_prefix_op_token1] = ACTIONS(4857), - [sym_int] = ACTIONS(4859), - [sym_xint] = ACTIONS(4857), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4857), - [anon_sym_POUNDload] = ACTIONS(4857), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4857), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2709] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1435), + [sym_rules] = STATE(1724), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4866), - [anon_sym_LBRACK_LT] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_null] = ACTIONS(4874), - [anon_sym__] = ACTIONS(4877), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_COLON_QMARK] = ACTIONS(4883), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4837), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_LBRACK_PIPE] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4892), - [aux_sym_char_token1] = ACTIONS(4895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_AT_DQUOTE] = ACTIONS(4904), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4907), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4910), - [sym_bool] = ACTIONS(4913), - [sym_unit] = ACTIONS(4916), - [anon_sym_LPAREN_PIPE] = ACTIONS(4919), - [sym_op_identifier] = ACTIONS(4922), - [sym_int] = ACTIONS(4925), - [sym_xint] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -329180,10 +329658,1293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2710] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7097), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2711] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1370), + [sym_rules] = STATE(1748), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2712] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(949), + [sym_rules] = STATE(1184), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4839), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2713] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7668), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2714] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7062), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2715] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6093), + [sym_rules] = STATE(7051), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2716] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1370), + [sym_rules] = STATE(1730), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2717] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1370), + [sym_rules] = STATE(1833), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2718] = { + [sym_block_comment] = STATE(2718), + [sym_compiler_directive_decl] = STATE(2718), + [sym_fsi_directive_decl] = STATE(2718), + [sym_preproc_line] = STATE(2718), + [ts_builtin_sym_end] = ACTIONS(4853), + [sym_identifier] = ACTIONS(4855), + [anon_sym_namespace] = ACTIONS(4855), + [anon_sym_module] = ACTIONS(4855), + [anon_sym_open] = ACTIONS(4855), + [anon_sym_LBRACK_LT] = ACTIONS(4853), + [anon_sym_return] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(4855), + [anon_sym_do] = ACTIONS(4855), + [anon_sym_and] = ACTIONS(4855), + [anon_sym_let] = ACTIONS(4855), + [anon_sym_let_BANG] = ACTIONS(4853), + [aux_sym_access_modifier_token1] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_null] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4855), + [anon_sym_LBRACK_PIPE] = ACTIONS(4853), + [anon_sym_LBRACE] = ACTIONS(4855), + [anon_sym_LT_AT] = ACTIONS(4855), + [anon_sym_LT_AT_AT] = ACTIONS(4853), + [anon_sym_LBRACE_PIPE] = ACTIONS(4853), + [anon_sym_with] = ACTIONS(4857), + [anon_sym_new] = ACTIONS(4855), + [anon_sym_return_BANG] = ACTIONS(4853), + [anon_sym_yield] = ACTIONS(4855), + [anon_sym_yield_BANG] = ACTIONS(4853), + [anon_sym_lazy] = ACTIONS(4855), + [anon_sym_assert] = ACTIONS(4855), + [anon_sym_upcast] = ACTIONS(4855), + [anon_sym_downcast] = ACTIONS(4855), + [anon_sym_for] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_if] = ACTIONS(4855), + [anon_sym_fun] = ACTIONS(4855), + [anon_sym_try] = ACTIONS(4855), + [anon_sym_match] = ACTIONS(4855), + [anon_sym_match_BANG] = ACTIONS(4853), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_use] = ACTIONS(4855), + [anon_sym_use_BANG] = ACTIONS(4853), + [anon_sym_do_BANG] = ACTIONS(4853), + [anon_sym_begin] = ACTIONS(4855), + [anon_sym_default] = ACTIONS(4855), + [anon_sym_static] = ACTIONS(4855), + [anon_sym_member] = ACTIONS(4855), + [anon_sym_exception] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_override] = ACTIONS(4855), + [anon_sym_val] = ACTIONS(4855), + [aux_sym_char_token1] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_AT_DQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [sym_bool] = ACTIONS(4855), + [sym_unit] = ACTIONS(4853), + [anon_sym_LPAREN_PIPE] = ACTIONS(4855), + [sym_op_identifier] = ACTIONS(4853), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_PLUS_DOT] = ACTIONS(4853), + [anon_sym_DASH_DOT] = ACTIONS(4853), + [anon_sym_PERCENT] = ACTIONS(4853), + [anon_sym_AMP_AMP] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4853), + [aux_sym_prefix_op_token1] = ACTIONS(4853), + [sym_int] = ACTIONS(4855), + [sym_xint] = ACTIONS(4853), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4853), + [anon_sym_POUNDload] = ACTIONS(4853), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4853), + }, + [2719] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2720] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_comment] = STATE(2720), + [sym_compiler_directive_decl] = STATE(2720), + [sym_fsi_directive_decl] = STATE(2720), + [sym_preproc_line] = STATE(2720), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4861), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2721] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_comment] = STATE(2721), + [sym_compiler_directive_decl] = STATE(2721), + [sym_fsi_directive_decl] = STATE(2721), + [sym_preproc_line] = STATE(2721), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2722] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2723] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4867), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2724] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2725] = { + [sym_block_comment] = STATE(2725), + [sym_compiler_directive_decl] = STATE(2725), + [sym_fsi_directive_decl] = STATE(2725), + [sym_preproc_line] = STATE(2725), [sym_identifier] = ACTIONS(2528), [anon_sym_return] = ACTIONS(2528), [anon_sym_do] = ACTIONS(2528), @@ -329241,20 +331002,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_prefix_op_token1] = ACTIONS(2526), [sym_int] = ACTIONS(2528), [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(4931), - [anon_sym_uy] = ACTIONS(4933), - [anon_sym_s] = ACTIONS(4935), - [anon_sym_us] = ACTIONS(4937), - [anon_sym_l] = ACTIONS(4939), - [aux_sym_uint32_token1] = ACTIONS(4941), - [anon_sym_n] = ACTIONS(4943), - [anon_sym_un] = ACTIONS(4945), - [anon_sym_L] = ACTIONS(4947), - [aux_sym_uint64_token1] = ACTIONS(4949), - [aux_sym_bignum_token1] = ACTIONS(4951), - [aux_sym_decimal_token1] = ACTIONS(4953), - [anon_sym_DOT2] = ACTIONS(4955), - [aux_sym_float_token1] = ACTIONS(4957), + [anon_sym_y] = ACTIONS(4871), + [anon_sym_uy] = ACTIONS(4873), + [anon_sym_s] = ACTIONS(4875), + [anon_sym_us] = ACTIONS(4877), + [anon_sym_l] = ACTIONS(4879), + [aux_sym_uint32_token1] = ACTIONS(4881), + [anon_sym_n] = ACTIONS(4883), + [anon_sym_un] = ACTIONS(4885), + [anon_sym_L] = ACTIONS(4887), + [aux_sym_uint64_token1] = ACTIONS(4889), + [aux_sym_bignum_token1] = ACTIONS(4891), + [aux_sym_decimal_token1] = ACTIONS(4893), + [anon_sym_DOT2] = ACTIONS(4895), + [aux_sym_float_token1] = ACTIONS(4897), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -329264,1103 +331025,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(2526), }, - [2711] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2712] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2713] = { - [sym_block_comment] = STATE(2713), - [sym_compiler_directive_decl] = STATE(2713), - [sym_fsi_directive_decl] = STATE(2713), - [sym_preproc_line] = STATE(2713), - [ts_builtin_sym_end] = ACTIONS(4963), - [sym_identifier] = ACTIONS(4965), - [anon_sym_namespace] = ACTIONS(4965), - [anon_sym_module] = ACTIONS(4965), - [anon_sym_open] = ACTIONS(4965), - [anon_sym_LBRACK_LT] = ACTIONS(4963), - [anon_sym_return] = ACTIONS(4965), - [anon_sym_type] = ACTIONS(4965), - [anon_sym_do] = ACTIONS(4965), - [anon_sym_and] = ACTIONS(4965), - [anon_sym_let] = ACTIONS(4965), - [anon_sym_let_BANG] = ACTIONS(4963), - [aux_sym_access_modifier_token1] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4965), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_LBRACK_PIPE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_LT_AT] = ACTIONS(4965), - [anon_sym_LT_AT_AT] = ACTIONS(4963), - [anon_sym_LBRACE_PIPE] = ACTIONS(4963), - [anon_sym_with] = ACTIONS(4967), - [anon_sym_new] = ACTIONS(4965), - [anon_sym_return_BANG] = ACTIONS(4963), - [anon_sym_yield] = ACTIONS(4965), - [anon_sym_yield_BANG] = ACTIONS(4963), - [anon_sym_lazy] = ACTIONS(4965), - [anon_sym_assert] = ACTIONS(4965), - [anon_sym_upcast] = ACTIONS(4965), - [anon_sym_downcast] = ACTIONS(4965), - [anon_sym_for] = ACTIONS(4965), - [anon_sym_while] = ACTIONS(4965), - [anon_sym_if] = ACTIONS(4965), - [anon_sym_fun] = ACTIONS(4965), - [anon_sym_try] = ACTIONS(4965), - [anon_sym_match] = ACTIONS(4965), - [anon_sym_match_BANG] = ACTIONS(4963), - [anon_sym_function] = ACTIONS(4965), - [anon_sym_use] = ACTIONS(4965), - [anon_sym_use_BANG] = ACTIONS(4963), - [anon_sym_do_BANG] = ACTIONS(4963), - [anon_sym_begin] = ACTIONS(4965), - [anon_sym_default] = ACTIONS(4965), - [anon_sym_static] = ACTIONS(4965), - [anon_sym_member] = ACTIONS(4965), - [anon_sym_exception] = ACTIONS(4965), - [anon_sym_abstract] = ACTIONS(4965), - [anon_sym_override] = ACTIONS(4965), - [anon_sym_val] = ACTIONS(4965), - [aux_sym_char_token1] = ACTIONS(4963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4965), - [anon_sym_DQUOTE] = ACTIONS(4965), - [anon_sym_AT_DQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4963), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4963), - [sym_bool] = ACTIONS(4965), - [sym_unit] = ACTIONS(4963), - [anon_sym_LPAREN_PIPE] = ACTIONS(4965), - [sym_op_identifier] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_PLUS_DOT] = ACTIONS(4963), - [anon_sym_DASH_DOT] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP_AMP] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [aux_sym_prefix_op_token1] = ACTIONS(4963), - [sym_int] = ACTIONS(4965), - [sym_xint] = ACTIONS(4963), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4963), - [anon_sym_POUNDload] = ACTIONS(4963), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4963), - }, - [2714] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2715] = { - [sym_block_comment] = STATE(2715), - [sym_compiler_directive_decl] = STATE(2715), - [sym_fsi_directive_decl] = STATE(2715), - [sym_preproc_line] = STATE(2715), - [ts_builtin_sym_end] = ACTIONS(4971), - [sym_identifier] = ACTIONS(4973), - [anon_sym_namespace] = ACTIONS(4973), - [anon_sym_module] = ACTIONS(4973), - [anon_sym_open] = ACTIONS(4973), - [anon_sym_LBRACK_LT] = ACTIONS(4971), - [anon_sym_return] = ACTIONS(4973), - [anon_sym_type] = ACTIONS(4973), - [anon_sym_do] = ACTIONS(4973), - [anon_sym_and] = ACTIONS(4973), - [anon_sym_let] = ACTIONS(4973), - [anon_sym_let_BANG] = ACTIONS(4971), - [aux_sym_access_modifier_token1] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_null] = ACTIONS(4973), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_LBRACK_PIPE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LT_AT] = ACTIONS(4973), - [anon_sym_LT_AT_AT] = ACTIONS(4971), - [anon_sym_LBRACE_PIPE] = ACTIONS(4971), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_return_BANG] = ACTIONS(4971), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_yield_BANG] = ACTIONS(4971), - [anon_sym_lazy] = ACTIONS(4973), - [anon_sym_assert] = ACTIONS(4973), - [anon_sym_upcast] = ACTIONS(4973), - [anon_sym_downcast] = ACTIONS(4973), - [anon_sym_for] = ACTIONS(4973), - [anon_sym_while] = ACTIONS(4973), - [anon_sym_if] = ACTIONS(4973), - [anon_sym_fun] = ACTIONS(4973), - [anon_sym_try] = ACTIONS(4973), - [anon_sym_match] = ACTIONS(4973), - [anon_sym_match_BANG] = ACTIONS(4971), - [anon_sym_function] = ACTIONS(4973), - [anon_sym_use] = ACTIONS(4973), - [anon_sym_use_BANG] = ACTIONS(4971), - [anon_sym_do_BANG] = ACTIONS(4971), - [anon_sym_begin] = ACTIONS(4973), - [anon_sym_default] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_member] = ACTIONS(4973), - [anon_sym_exception] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_val] = ACTIONS(4973), - [aux_sym_char_token1] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(4973), - [anon_sym_AT_DQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [sym_bool] = ACTIONS(4973), - [sym_unit] = ACTIONS(4971), - [anon_sym_LPAREN_PIPE] = ACTIONS(4973), - [sym_op_identifier] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_PLUS_DOT] = ACTIONS(4971), - [anon_sym_DASH_DOT] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [aux_sym_prefix_op_token1] = ACTIONS(4971), - [sym_int] = ACTIONS(4973), - [sym_xint] = ACTIONS(4971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4971), - [anon_sym_POUNDload] = ACTIONS(4971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4971), - }, - [2716] = { - [sym_block_comment] = STATE(2716), - [sym_compiler_directive_decl] = STATE(2716), - [sym_fsi_directive_decl] = STATE(2716), - [sym_preproc_line] = STATE(2716), - [ts_builtin_sym_end] = ACTIONS(4971), - [sym_identifier] = ACTIONS(4973), - [anon_sym_namespace] = ACTIONS(4973), - [anon_sym_module] = ACTIONS(4973), - [anon_sym_open] = ACTIONS(4973), - [anon_sym_LBRACK_LT] = ACTIONS(4971), - [anon_sym_return] = ACTIONS(4973), - [anon_sym_type] = ACTIONS(4973), - [anon_sym_do] = ACTIONS(4973), - [anon_sym_and] = ACTIONS(4973), - [anon_sym_let] = ACTIONS(4973), - [anon_sym_let_BANG] = ACTIONS(4971), - [aux_sym_access_modifier_token1] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_null] = ACTIONS(4973), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_LBRACK_PIPE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LT_AT] = ACTIONS(4973), - [anon_sym_LT_AT_AT] = ACTIONS(4971), - [anon_sym_LBRACE_PIPE] = ACTIONS(4971), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_return_BANG] = ACTIONS(4971), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_yield_BANG] = ACTIONS(4971), - [anon_sym_lazy] = ACTIONS(4973), - [anon_sym_assert] = ACTIONS(4973), - [anon_sym_upcast] = ACTIONS(4973), - [anon_sym_downcast] = ACTIONS(4973), - [anon_sym_for] = ACTIONS(4973), - [anon_sym_while] = ACTIONS(4973), - [anon_sym_if] = ACTIONS(4973), - [anon_sym_fun] = ACTIONS(4973), - [anon_sym_try] = ACTIONS(4973), - [anon_sym_match] = ACTIONS(4973), - [anon_sym_match_BANG] = ACTIONS(4971), - [anon_sym_function] = ACTIONS(4973), - [anon_sym_use] = ACTIONS(4973), - [anon_sym_use_BANG] = ACTIONS(4971), - [anon_sym_do_BANG] = ACTIONS(4971), - [anon_sym_begin] = ACTIONS(4973), - [anon_sym_default] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_member] = ACTIONS(4973), - [anon_sym_exception] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_val] = ACTIONS(4973), - [aux_sym_char_token1] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(4973), - [anon_sym_AT_DQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [sym_bool] = ACTIONS(4973), - [sym_unit] = ACTIONS(4971), - [anon_sym_LPAREN_PIPE] = ACTIONS(4973), - [sym_op_identifier] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_PLUS_DOT] = ACTIONS(4971), - [anon_sym_DASH_DOT] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [aux_sym_prefix_op_token1] = ACTIONS(4971), - [sym_int] = ACTIONS(4973), - [sym_xint] = ACTIONS(4971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4971), - [anon_sym_POUNDload] = ACTIONS(4971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4971), - }, - [2717] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2718] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2719] = { - [sym_block_comment] = STATE(2719), - [sym_compiler_directive_decl] = STATE(2719), - [sym_fsi_directive_decl] = STATE(2719), - [sym_preproc_line] = STATE(2719), - [ts_builtin_sym_end] = ACTIONS(4983), - [sym_identifier] = ACTIONS(4985), - [anon_sym_namespace] = ACTIONS(4985), - [anon_sym_module] = ACTIONS(4985), - [anon_sym_open] = ACTIONS(4985), - [anon_sym_LBRACK_LT] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4985), - [anon_sym_type] = ACTIONS(4985), - [anon_sym_do] = ACTIONS(4985), - [anon_sym_and] = ACTIONS(4985), - [anon_sym_let] = ACTIONS(4985), - [anon_sym_let_BANG] = ACTIONS(4983), - [aux_sym_access_modifier_token1] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_null] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_LBRACK_PIPE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_LT_AT] = ACTIONS(4985), - [anon_sym_LT_AT_AT] = ACTIONS(4983), - [anon_sym_LBRACE_PIPE] = ACTIONS(4983), - [anon_sym_new] = ACTIONS(4985), - [anon_sym_return_BANG] = ACTIONS(4983), - [anon_sym_yield] = ACTIONS(4985), - [anon_sym_yield_BANG] = ACTIONS(4983), - [anon_sym_lazy] = ACTIONS(4985), - [anon_sym_assert] = ACTIONS(4985), - [anon_sym_upcast] = ACTIONS(4985), - [anon_sym_downcast] = ACTIONS(4985), - [anon_sym_for] = ACTIONS(4985), - [anon_sym_while] = ACTIONS(4985), - [anon_sym_if] = ACTIONS(4985), - [anon_sym_fun] = ACTIONS(4985), - [anon_sym_try] = ACTIONS(4985), - [anon_sym_match] = ACTIONS(4985), - [anon_sym_match_BANG] = ACTIONS(4983), - [anon_sym_function] = ACTIONS(4985), - [anon_sym_use] = ACTIONS(4985), - [anon_sym_use_BANG] = ACTIONS(4983), - [anon_sym_do_BANG] = ACTIONS(4983), - [anon_sym_begin] = ACTIONS(4985), - [anon_sym_default] = ACTIONS(4985), - [anon_sym_static] = ACTIONS(4985), - [anon_sym_member] = ACTIONS(4985), - [anon_sym_exception] = ACTIONS(4985), - [anon_sym_abstract] = ACTIONS(4985), - [anon_sym_override] = ACTIONS(4985), - [anon_sym_val] = ACTIONS(4985), - [aux_sym_char_token1] = ACTIONS(4983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4985), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_AT_DQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4983), - [sym_bool] = ACTIONS(4985), - [sym_unit] = ACTIONS(4983), - [anon_sym_LPAREN_PIPE] = ACTIONS(4985), - [sym_op_identifier] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_PLUS_DOT] = ACTIONS(4983), - [anon_sym_DASH_DOT] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [aux_sym_prefix_op_token1] = ACTIONS(4983), - [sym_int] = ACTIONS(4985), - [sym_xint] = ACTIONS(4983), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4983), - [anon_sym_POUNDload] = ACTIONS(4983), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4983), - }, - [2720] = { - [sym_block_comment] = STATE(2720), - [sym_compiler_directive_decl] = STATE(2720), - [sym_fsi_directive_decl] = STATE(2720), - [sym_preproc_line] = STATE(2720), - [ts_builtin_sym_end] = ACTIONS(4983), - [sym_identifier] = ACTIONS(4985), - [anon_sym_namespace] = ACTIONS(4985), - [anon_sym_module] = ACTIONS(4985), - [anon_sym_open] = ACTIONS(4985), - [anon_sym_LBRACK_LT] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4985), - [anon_sym_type] = ACTIONS(4985), - [anon_sym_do] = ACTIONS(4985), - [anon_sym_and] = ACTIONS(4985), - [anon_sym_let] = ACTIONS(4985), - [anon_sym_let_BANG] = ACTIONS(4983), - [aux_sym_access_modifier_token1] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_LBRACK_PIPE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_LT_AT] = ACTIONS(4985), - [anon_sym_LT_AT_AT] = ACTIONS(4983), - [anon_sym_LBRACE_PIPE] = ACTIONS(4983), - [anon_sym_new] = ACTIONS(4985), - [anon_sym_return_BANG] = ACTIONS(4983), - [anon_sym_yield] = ACTIONS(4985), - [anon_sym_yield_BANG] = ACTIONS(4983), - [anon_sym_lazy] = ACTIONS(4985), - [anon_sym_assert] = ACTIONS(4985), - [anon_sym_upcast] = ACTIONS(4985), - [anon_sym_downcast] = ACTIONS(4985), - [anon_sym_for] = ACTIONS(4985), - [anon_sym_while] = ACTIONS(4985), - [anon_sym_if] = ACTIONS(4985), - [anon_sym_fun] = ACTIONS(4985), - [anon_sym_try] = ACTIONS(4985), - [anon_sym_match] = ACTIONS(4985), - [anon_sym_match_BANG] = ACTIONS(4983), - [anon_sym_function] = ACTIONS(4985), - [anon_sym_use] = ACTIONS(4985), - [anon_sym_use_BANG] = ACTIONS(4983), - [anon_sym_do_BANG] = ACTIONS(4983), - [anon_sym_begin] = ACTIONS(4985), - [anon_sym_default] = ACTIONS(4985), - [anon_sym_static] = ACTIONS(4985), - [anon_sym_member] = ACTIONS(4985), - [anon_sym_exception] = ACTIONS(4985), - [anon_sym_abstract] = ACTIONS(4985), - [anon_sym_override] = ACTIONS(4985), - [anon_sym_val] = ACTIONS(4985), - [aux_sym_char_token1] = ACTIONS(4983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4985), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_AT_DQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4983), - [sym_bool] = ACTIONS(4985), - [sym_unit] = ACTIONS(4983), - [anon_sym_LPAREN_PIPE] = ACTIONS(4985), - [sym_op_identifier] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_PLUS_DOT] = ACTIONS(4983), - [anon_sym_DASH_DOT] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [aux_sym_prefix_op_token1] = ACTIONS(4983), - [sym_int] = ACTIONS(4985), - [sym_xint] = ACTIONS(4983), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4983), - [anon_sym_POUNDload] = ACTIONS(4983), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4983), - }, - [2721] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_comment] = STATE(2721), - [sym_compiler_directive_decl] = STATE(2721), - [sym_fsi_directive_decl] = STATE(2721), - [sym_preproc_line] = STATE(2721), - [aux_sym_attributes_repeat1] = STATE(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2722] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2723] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(4995), + [2726] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_comment] = STATE(2726), + [sym_compiler_directive_decl] = STATE(2726), + [sym_fsi_directive_decl] = STATE(2726), + [sym_preproc_line] = STATE(2726), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4899), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -330369,168 +331110,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2724] = { - [sym_block_comment] = STATE(2724), - [sym_compiler_directive_decl] = STATE(2724), - [sym_fsi_directive_decl] = STATE(2724), - [sym_preproc_line] = STATE(2724), - [aux_sym__function_or_value_defns_repeat1] = STATE(2728), - [ts_builtin_sym_end] = ACTIONS(4997), - [sym_identifier] = ACTIONS(4999), - [anon_sym_namespace] = ACTIONS(4999), - [anon_sym_module] = ACTIONS(4999), - [anon_sym_open] = ACTIONS(4999), - [anon_sym_LBRACK_LT] = ACTIONS(4997), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_type] = ACTIONS(4999), - [anon_sym_do] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_let_BANG] = ACTIONS(4997), - [aux_sym_access_modifier_token1] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_PIPE] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_LT_AT] = ACTIONS(4999), - [anon_sym_LT_AT_AT] = ACTIONS(4997), - [anon_sym_LBRACE_PIPE] = ACTIONS(4997), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_return_BANG] = ACTIONS(4997), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_yield_BANG] = ACTIONS(4997), - [anon_sym_lazy] = ACTIONS(4999), - [anon_sym_assert] = ACTIONS(4999), - [anon_sym_upcast] = ACTIONS(4999), - [anon_sym_downcast] = ACTIONS(4999), - [anon_sym_for] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_match] = ACTIONS(4999), - [anon_sym_match_BANG] = ACTIONS(4997), - [anon_sym_function] = ACTIONS(4999), - [anon_sym_use] = ACTIONS(4999), - [anon_sym_use_BANG] = ACTIONS(4997), - [anon_sym_do_BANG] = ACTIONS(4997), - [anon_sym_begin] = ACTIONS(4999), - [anon_sym_default] = ACTIONS(4999), - [anon_sym_static] = ACTIONS(4999), - [anon_sym_member] = ACTIONS(4999), - [anon_sym_exception] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_override] = ACTIONS(4999), - [anon_sym_val] = ACTIONS(4999), - [aux_sym_char_token1] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_AT_DQUOTE] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [sym_bool] = ACTIONS(4999), - [sym_unit] = ACTIONS(4997), - [anon_sym_LPAREN_PIPE] = ACTIONS(4999), - [sym_op_identifier] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_PLUS_DOT] = ACTIONS(4997), - [anon_sym_DASH_DOT] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_TILDE] = ACTIONS(4997), - [aux_sym_prefix_op_token1] = ACTIONS(4997), - [sym_int] = ACTIONS(4999), - [sym_xint] = ACTIONS(4997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4997), - [anon_sym_POUNDload] = ACTIONS(4997), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4997), - }, - [2725] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(5003), + [2727] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4901), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -330539,763 +331195,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2726] = { - [sym_block_comment] = STATE(2726), - [sym_compiler_directive_decl] = STATE(2726), - [sym_fsi_directive_decl] = STATE(2726), - [sym_preproc_line] = STATE(2726), - [ts_builtin_sym_end] = ACTIONS(5005), - [sym_identifier] = ACTIONS(5007), - [anon_sym_namespace] = ACTIONS(5007), - [anon_sym_module] = ACTIONS(5007), - [anon_sym_open] = ACTIONS(5007), - [anon_sym_LBRACK_LT] = ACTIONS(5005), - [anon_sym_return] = ACTIONS(5007), - [anon_sym_type] = ACTIONS(5007), - [anon_sym_do] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_let] = ACTIONS(5007), - [anon_sym_let_BANG] = ACTIONS(5005), - [aux_sym_access_modifier_token1] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_PIPE] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_LT_AT] = ACTIONS(5007), - [anon_sym_LT_AT_AT] = ACTIONS(5005), - [anon_sym_LBRACE_PIPE] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5007), - [anon_sym_return_BANG] = ACTIONS(5005), - [anon_sym_yield] = ACTIONS(5007), - [anon_sym_yield_BANG] = ACTIONS(5005), - [anon_sym_lazy] = ACTIONS(5007), - [anon_sym_assert] = ACTIONS(5007), - [anon_sym_upcast] = ACTIONS(5007), - [anon_sym_downcast] = ACTIONS(5007), - [anon_sym_for] = ACTIONS(5007), - [anon_sym_while] = ACTIONS(5007), - [anon_sym_if] = ACTIONS(5007), - [anon_sym_fun] = ACTIONS(5007), - [anon_sym_try] = ACTIONS(5007), - [anon_sym_match] = ACTIONS(5007), - [anon_sym_match_BANG] = ACTIONS(5005), - [anon_sym_function] = ACTIONS(5007), - [anon_sym_use] = ACTIONS(5007), - [anon_sym_use_BANG] = ACTIONS(5005), - [anon_sym_do_BANG] = ACTIONS(5005), - [anon_sym_begin] = ACTIONS(5007), - [anon_sym_default] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(5007), - [anon_sym_member] = ACTIONS(5007), - [anon_sym_exception] = ACTIONS(5007), - [anon_sym_abstract] = ACTIONS(5007), - [anon_sym_override] = ACTIONS(5007), - [anon_sym_val] = ACTIONS(5007), - [aux_sym_char_token1] = ACTIONS(5005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_AT_DQUOTE] = ACTIONS(5005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5005), - [sym_bool] = ACTIONS(5007), - [sym_unit] = ACTIONS(5005), - [anon_sym_LPAREN_PIPE] = ACTIONS(5007), - [sym_op_identifier] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_PLUS_DOT] = ACTIONS(5005), - [anon_sym_DASH_DOT] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_TILDE] = ACTIONS(5005), - [aux_sym_prefix_op_token1] = ACTIONS(5005), - [sym_int] = ACTIONS(5007), - [sym_xint] = ACTIONS(5005), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5005), - [anon_sym_POUNDload] = ACTIONS(5005), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5005), - }, - [2727] = { - [sym_block_comment] = STATE(2727), - [sym_compiler_directive_decl] = STATE(2727), - [sym_fsi_directive_decl] = STATE(2727), - [sym_preproc_line] = STATE(2727), - [ts_builtin_sym_end] = ACTIONS(5005), - [sym_identifier] = ACTIONS(5007), - [anon_sym_namespace] = ACTIONS(5007), - [anon_sym_module] = ACTIONS(5007), - [anon_sym_open] = ACTIONS(5007), - [anon_sym_LBRACK_LT] = ACTIONS(5005), - [anon_sym_return] = ACTIONS(5007), - [anon_sym_type] = ACTIONS(5007), - [anon_sym_do] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_let] = ACTIONS(5007), - [anon_sym_let_BANG] = ACTIONS(5005), - [aux_sym_access_modifier_token1] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_PIPE] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_LT_AT] = ACTIONS(5007), - [anon_sym_LT_AT_AT] = ACTIONS(5005), - [anon_sym_LBRACE_PIPE] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5007), - [anon_sym_return_BANG] = ACTIONS(5005), - [anon_sym_yield] = ACTIONS(5007), - [anon_sym_yield_BANG] = ACTIONS(5005), - [anon_sym_lazy] = ACTIONS(5007), - [anon_sym_assert] = ACTIONS(5007), - [anon_sym_upcast] = ACTIONS(5007), - [anon_sym_downcast] = ACTIONS(5007), - [anon_sym_for] = ACTIONS(5007), - [anon_sym_while] = ACTIONS(5007), - [anon_sym_if] = ACTIONS(5007), - [anon_sym_fun] = ACTIONS(5007), - [anon_sym_try] = ACTIONS(5007), - [anon_sym_match] = ACTIONS(5007), - [anon_sym_match_BANG] = ACTIONS(5005), - [anon_sym_function] = ACTIONS(5007), - [anon_sym_use] = ACTIONS(5007), - [anon_sym_use_BANG] = ACTIONS(5005), - [anon_sym_do_BANG] = ACTIONS(5005), - [anon_sym_begin] = ACTIONS(5007), - [anon_sym_default] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(5007), - [anon_sym_member] = ACTIONS(5007), - [anon_sym_exception] = ACTIONS(5007), - [anon_sym_abstract] = ACTIONS(5007), - [anon_sym_override] = ACTIONS(5007), - [anon_sym_val] = ACTIONS(5007), - [aux_sym_char_token1] = ACTIONS(5005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_AT_DQUOTE] = ACTIONS(5005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5005), - [sym_bool] = ACTIONS(5007), - [sym_unit] = ACTIONS(5005), - [anon_sym_LPAREN_PIPE] = ACTIONS(5007), - [sym_op_identifier] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_PLUS_DOT] = ACTIONS(5005), - [anon_sym_DASH_DOT] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_TILDE] = ACTIONS(5005), - [aux_sym_prefix_op_token1] = ACTIONS(5005), - [sym_int] = ACTIONS(5007), - [sym_xint] = ACTIONS(5005), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5005), - [anon_sym_POUNDload] = ACTIONS(5005), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5005), - }, [2728] = { [sym_block_comment] = STATE(2728), [sym_compiler_directive_decl] = STATE(2728), [sym_fsi_directive_decl] = STATE(2728), [sym_preproc_line] = STATE(2728), - [aux_sym__function_or_value_defns_repeat1] = STATE(2728), - [ts_builtin_sym_end] = ACTIONS(5013), - [sym_identifier] = ACTIONS(5015), - [anon_sym_namespace] = ACTIONS(5015), - [anon_sym_module] = ACTIONS(5015), - [anon_sym_open] = ACTIONS(5015), - [anon_sym_LBRACK_LT] = ACTIONS(5013), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_type] = ACTIONS(5015), - [anon_sym_do] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5017), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_let_BANG] = ACTIONS(5013), - [aux_sym_access_modifier_token1] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_PIPE] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LT_AT] = ACTIONS(5015), - [anon_sym_LT_AT_AT] = ACTIONS(5013), - [anon_sym_LBRACE_PIPE] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_return_BANG] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_yield_BANG] = ACTIONS(5013), - [anon_sym_lazy] = ACTIONS(5015), - [anon_sym_assert] = ACTIONS(5015), - [anon_sym_upcast] = ACTIONS(5015), - [anon_sym_downcast] = ACTIONS(5015), - [anon_sym_for] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_match] = ACTIONS(5015), - [anon_sym_match_BANG] = ACTIONS(5013), - [anon_sym_function] = ACTIONS(5015), - [anon_sym_use] = ACTIONS(5015), - [anon_sym_use_BANG] = ACTIONS(5013), - [anon_sym_do_BANG] = ACTIONS(5013), - [anon_sym_begin] = ACTIONS(5015), - [anon_sym_default] = ACTIONS(5015), - [anon_sym_static] = ACTIONS(5015), - [anon_sym_member] = ACTIONS(5015), - [anon_sym_exception] = ACTIONS(5015), - [anon_sym_abstract] = ACTIONS(5015), - [anon_sym_override] = ACTIONS(5015), - [anon_sym_val] = ACTIONS(5015), - [aux_sym_char_token1] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_AT_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [sym_bool] = ACTIONS(5015), - [sym_unit] = ACTIONS(5013), - [anon_sym_LPAREN_PIPE] = ACTIONS(5015), - [sym_op_identifier] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_PLUS_DOT] = ACTIONS(5013), - [anon_sym_DASH_DOT] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5013), - [aux_sym_prefix_op_token1] = ACTIONS(5013), - [sym_int] = ACTIONS(5015), - [sym_xint] = ACTIONS(5013), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5013), - [anon_sym_POUNDload] = ACTIONS(5013), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5013), + [ts_builtin_sym_end] = ACTIONS(4903), + [sym_identifier] = ACTIONS(4905), + [anon_sym_namespace] = ACTIONS(4905), + [anon_sym_module] = ACTIONS(4905), + [anon_sym_open] = ACTIONS(4905), + [anon_sym_LBRACK_LT] = ACTIONS(4903), + [anon_sym_return] = ACTIONS(4905), + [anon_sym_type] = ACTIONS(4905), + [anon_sym_do] = ACTIONS(4905), + [anon_sym_and] = ACTIONS(4905), + [anon_sym_let] = ACTIONS(4905), + [anon_sym_let_BANG] = ACTIONS(4903), + [aux_sym_access_modifier_token1] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4905), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_null] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4905), + [anon_sym_LBRACK_PIPE] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4905), + [anon_sym_LT_AT] = ACTIONS(4905), + [anon_sym_LT_AT_AT] = ACTIONS(4903), + [anon_sym_LBRACE_PIPE] = ACTIONS(4903), + [anon_sym_new] = ACTIONS(4905), + [anon_sym_return_BANG] = ACTIONS(4903), + [anon_sym_yield] = ACTIONS(4905), + [anon_sym_yield_BANG] = ACTIONS(4903), + [anon_sym_lazy] = ACTIONS(4905), + [anon_sym_assert] = ACTIONS(4905), + [anon_sym_upcast] = ACTIONS(4905), + [anon_sym_downcast] = ACTIONS(4905), + [anon_sym_for] = ACTIONS(4905), + [anon_sym_while] = ACTIONS(4905), + [anon_sym_if] = ACTIONS(4905), + [anon_sym_fun] = ACTIONS(4905), + [anon_sym_try] = ACTIONS(4905), + [anon_sym_match] = ACTIONS(4905), + [anon_sym_match_BANG] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4905), + [anon_sym_use] = ACTIONS(4905), + [anon_sym_use_BANG] = ACTIONS(4903), + [anon_sym_do_BANG] = ACTIONS(4903), + [anon_sym_begin] = ACTIONS(4905), + [anon_sym_default] = ACTIONS(4905), + [anon_sym_static] = ACTIONS(4905), + [anon_sym_member] = ACTIONS(4905), + [anon_sym_exception] = ACTIONS(4905), + [anon_sym_abstract] = ACTIONS(4905), + [anon_sym_override] = ACTIONS(4905), + [anon_sym_val] = ACTIONS(4905), + [aux_sym_char_token1] = ACTIONS(4903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_AT_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4903), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4903), + [sym_bool] = ACTIONS(4905), + [sym_unit] = ACTIONS(4903), + [anon_sym_LPAREN_PIPE] = ACTIONS(4905), + [sym_op_identifier] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_PLUS_DOT] = ACTIONS(4903), + [anon_sym_DASH_DOT] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_TILDE] = ACTIONS(4903), + [aux_sym_prefix_op_token1] = ACTIONS(4903), + [sym_int] = ACTIONS(4905), + [sym_xint] = ACTIONS(4903), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4903), + [anon_sym_POUNDload] = ACTIONS(4903), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4903), }, [2729] = { [sym_block_comment] = STATE(2729), [sym_compiler_directive_decl] = STATE(2729), [sym_fsi_directive_decl] = STATE(2729), [sym_preproc_line] = STATE(2729), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_LBRACK_LT] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [aux_sym_access_modifier_token1] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_member] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [anon_sym_abstract] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3165), - [anon_sym_val] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3167), - [anon_sym_POUNDload] = ACTIONS(3167), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), + [ts_builtin_sym_end] = ACTIONS(4903), + [sym_identifier] = ACTIONS(4905), + [anon_sym_namespace] = ACTIONS(4905), + [anon_sym_module] = ACTIONS(4905), + [anon_sym_open] = ACTIONS(4905), + [anon_sym_LBRACK_LT] = ACTIONS(4903), + [anon_sym_return] = ACTIONS(4905), + [anon_sym_type] = ACTIONS(4905), + [anon_sym_do] = ACTIONS(4905), + [anon_sym_and] = ACTIONS(4905), + [anon_sym_let] = ACTIONS(4905), + [anon_sym_let_BANG] = ACTIONS(4903), + [aux_sym_access_modifier_token1] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4905), + [anon_sym_COMMA] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4905), + [anon_sym_LBRACK_PIPE] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4905), + [anon_sym_LT_AT] = ACTIONS(4905), + [anon_sym_LT_AT_AT] = ACTIONS(4903), + [anon_sym_LBRACE_PIPE] = ACTIONS(4903), + [anon_sym_new] = ACTIONS(4905), + [anon_sym_return_BANG] = ACTIONS(4903), + [anon_sym_yield] = ACTIONS(4905), + [anon_sym_yield_BANG] = ACTIONS(4903), + [anon_sym_lazy] = ACTIONS(4905), + [anon_sym_assert] = ACTIONS(4905), + [anon_sym_upcast] = ACTIONS(4905), + [anon_sym_downcast] = ACTIONS(4905), + [anon_sym_for] = ACTIONS(4905), + [anon_sym_while] = ACTIONS(4905), + [anon_sym_if] = ACTIONS(4905), + [anon_sym_fun] = ACTIONS(4905), + [anon_sym_try] = ACTIONS(4905), + [anon_sym_match] = ACTIONS(4905), + [anon_sym_match_BANG] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4905), + [anon_sym_use] = ACTIONS(4905), + [anon_sym_use_BANG] = ACTIONS(4903), + [anon_sym_do_BANG] = ACTIONS(4903), + [anon_sym_begin] = ACTIONS(4905), + [anon_sym_default] = ACTIONS(4905), + [anon_sym_static] = ACTIONS(4905), + [anon_sym_member] = ACTIONS(4905), + [anon_sym_exception] = ACTIONS(4905), + [anon_sym_abstract] = ACTIONS(4905), + [anon_sym_override] = ACTIONS(4905), + [anon_sym_val] = ACTIONS(4905), + [aux_sym_char_token1] = ACTIONS(4903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_AT_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4903), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4903), + [sym_bool] = ACTIONS(4905), + [sym_unit] = ACTIONS(4903), + [anon_sym_LPAREN_PIPE] = ACTIONS(4905), + [sym_op_identifier] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_PLUS_DOT] = ACTIONS(4903), + [anon_sym_DASH_DOT] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_TILDE] = ACTIONS(4903), + [aux_sym_prefix_op_token1] = ACTIONS(4903), + [sym_int] = ACTIONS(4905), + [sym_xint] = ACTIONS(4903), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4903), + [anon_sym_POUNDload] = ACTIONS(4903), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4903), }, [2730] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2730), [sym_compiler_directive_decl] = STATE(2730), [sym_fsi_directive_decl] = STATE(2730), [sym_preproc_line] = STATE(2730), - [ts_builtin_sym_end] = ACTIONS(5020), - [sym_identifier] = ACTIONS(5022), - [anon_sym_namespace] = ACTIONS(5022), - [anon_sym_module] = ACTIONS(5022), - [anon_sym_open] = ACTIONS(5022), - [anon_sym_LBRACK_LT] = ACTIONS(5020), - [anon_sym_return] = ACTIONS(5022), - [anon_sym_type] = ACTIONS(5022), - [anon_sym_do] = ACTIONS(5022), - [anon_sym_and] = ACTIONS(5022), - [anon_sym_let] = ACTIONS(5022), - [anon_sym_let_BANG] = ACTIONS(5020), - [aux_sym_access_modifier_token1] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_null] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_LBRACK_PIPE] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LT_AT] = ACTIONS(5022), - [anon_sym_LT_AT_AT] = ACTIONS(5020), - [anon_sym_LBRACE_PIPE] = ACTIONS(5020), - [anon_sym_with] = ACTIONS(5024), - [anon_sym_new] = ACTIONS(5022), - [anon_sym_return_BANG] = ACTIONS(5020), - [anon_sym_yield] = ACTIONS(5022), - [anon_sym_yield_BANG] = ACTIONS(5020), - [anon_sym_lazy] = ACTIONS(5022), - [anon_sym_assert] = ACTIONS(5022), - [anon_sym_upcast] = ACTIONS(5022), - [anon_sym_downcast] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5022), - [anon_sym_while] = ACTIONS(5022), - [anon_sym_if] = ACTIONS(5022), - [anon_sym_fun] = ACTIONS(5022), - [anon_sym_try] = ACTIONS(5022), - [anon_sym_match] = ACTIONS(5022), - [anon_sym_match_BANG] = ACTIONS(5020), - [anon_sym_function] = ACTIONS(5022), - [anon_sym_use] = ACTIONS(5022), - [anon_sym_use_BANG] = ACTIONS(5020), - [anon_sym_do_BANG] = ACTIONS(5020), - [anon_sym_begin] = ACTIONS(5022), - [anon_sym_default] = ACTIONS(5022), - [anon_sym_static] = ACTIONS(5022), - [anon_sym_member] = ACTIONS(5022), - [anon_sym_exception] = ACTIONS(5022), - [anon_sym_abstract] = ACTIONS(5022), - [anon_sym_override] = ACTIONS(5022), - [anon_sym_val] = ACTIONS(5022), - [aux_sym_char_token1] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5022), - [anon_sym_DQUOTE] = ACTIONS(5022), - [anon_sym_AT_DQUOTE] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [sym_bool] = ACTIONS(5022), - [sym_unit] = ACTIONS(5020), - [anon_sym_LPAREN_PIPE] = ACTIONS(5022), - [sym_op_identifier] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_PLUS_DOT] = ACTIONS(5020), - [anon_sym_DASH_DOT] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_TILDE] = ACTIONS(5020), - [aux_sym_prefix_op_token1] = ACTIONS(5020), - [sym_int] = ACTIONS(5022), - [sym_xint] = ACTIONS(5020), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5020), - [anon_sym_POUNDload] = ACTIONS(5020), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5020), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2731] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_access_modifier] = STATE(2912), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5426), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2731), [sym_compiler_directive_decl] = STATE(2731), [sym_fsi_directive_decl] = STATE(2731), [sym_preproc_line] = STATE(2731), - [ts_builtin_sym_end] = ACTIONS(5020), - [sym_identifier] = ACTIONS(5022), - [anon_sym_namespace] = ACTIONS(5022), - [anon_sym_module] = ACTIONS(5022), - [anon_sym_open] = ACTIONS(5022), - [anon_sym_LBRACK_LT] = ACTIONS(5020), - [anon_sym_return] = ACTIONS(5022), - [anon_sym_type] = ACTIONS(5022), - [anon_sym_do] = ACTIONS(5022), - [anon_sym_and] = ACTIONS(5022), - [anon_sym_let] = ACTIONS(5022), - [anon_sym_let_BANG] = ACTIONS(5020), - [aux_sym_access_modifier_token1] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_null] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_LBRACK_PIPE] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LT_AT] = ACTIONS(5022), - [anon_sym_LT_AT_AT] = ACTIONS(5020), - [anon_sym_LBRACE_PIPE] = ACTIONS(5020), - [anon_sym_new] = ACTIONS(5022), - [anon_sym_return_BANG] = ACTIONS(5020), - [anon_sym_yield] = ACTIONS(5022), - [anon_sym_yield_BANG] = ACTIONS(5020), - [anon_sym_lazy] = ACTIONS(5022), - [anon_sym_assert] = ACTIONS(5022), - [anon_sym_upcast] = ACTIONS(5022), - [anon_sym_downcast] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5022), - [anon_sym_while] = ACTIONS(5022), - [anon_sym_if] = ACTIONS(5022), - [anon_sym_fun] = ACTIONS(5022), - [anon_sym_try] = ACTIONS(5022), - [anon_sym_match] = ACTIONS(5022), - [anon_sym_match_BANG] = ACTIONS(5020), - [anon_sym_function] = ACTIONS(5022), - [anon_sym_use] = ACTIONS(5022), - [anon_sym_use_BANG] = ACTIONS(5020), - [anon_sym_do_BANG] = ACTIONS(5020), - [anon_sym_begin] = ACTIONS(5022), - [anon_sym_default] = ACTIONS(5022), - [anon_sym_static] = ACTIONS(5022), - [anon_sym_member] = ACTIONS(5022), - [anon_sym_exception] = ACTIONS(5022), - [anon_sym_abstract] = ACTIONS(5022), - [anon_sym_override] = ACTIONS(5022), - [anon_sym_val] = ACTIONS(5022), - [aux_sym_char_token1] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5022), - [anon_sym_DQUOTE] = ACTIONS(5022), - [anon_sym_AT_DQUOTE] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [sym_bool] = ACTIONS(5022), - [sym_unit] = ACTIONS(5020), - [anon_sym_LPAREN_PIPE] = ACTIONS(5022), - [sym_op_identifier] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_PLUS_DOT] = ACTIONS(5020), - [anon_sym_DASH_DOT] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_TILDE] = ACTIONS(5020), - [aux_sym_prefix_op_token1] = ACTIONS(5020), - [sym_int] = ACTIONS(5022), - [sym_xint] = ACTIONS(5020), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5020), - [anon_sym_POUNDload] = ACTIONS(5020), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5020), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [aux_sym_access_modifier_token1] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2732] = { [sym_block_comment] = STATE(2732), [sym_compiler_directive_decl] = STATE(2732), [sym_fsi_directive_decl] = STATE(2732), [sym_preproc_line] = STATE(2732), - [ts_builtin_sym_end] = ACTIONS(5020), - [sym_identifier] = ACTIONS(5022), - [anon_sym_namespace] = ACTIONS(5022), - [anon_sym_module] = ACTIONS(5022), - [anon_sym_open] = ACTIONS(5022), - [anon_sym_LBRACK_LT] = ACTIONS(5020), - [anon_sym_return] = ACTIONS(5022), - [anon_sym_type] = ACTIONS(5022), - [anon_sym_do] = ACTIONS(5022), - [anon_sym_and] = ACTIONS(5022), - [anon_sym_let] = ACTIONS(5022), - [anon_sym_let_BANG] = ACTIONS(5020), - [aux_sym_access_modifier_token1] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_null] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_LBRACK_PIPE] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LT_AT] = ACTIONS(5022), - [anon_sym_LT_AT_AT] = ACTIONS(5020), - [anon_sym_LBRACE_PIPE] = ACTIONS(5020), - [anon_sym_new] = ACTIONS(5022), - [anon_sym_return_BANG] = ACTIONS(5020), - [anon_sym_yield] = ACTIONS(5022), - [anon_sym_yield_BANG] = ACTIONS(5020), - [anon_sym_lazy] = ACTIONS(5022), - [anon_sym_assert] = ACTIONS(5022), - [anon_sym_upcast] = ACTIONS(5022), - [anon_sym_downcast] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5022), - [anon_sym_while] = ACTIONS(5022), - [anon_sym_if] = ACTIONS(5022), - [anon_sym_fun] = ACTIONS(5022), - [anon_sym_try] = ACTIONS(5022), - [anon_sym_match] = ACTIONS(5022), - [anon_sym_match_BANG] = ACTIONS(5020), - [anon_sym_function] = ACTIONS(5022), - [anon_sym_use] = ACTIONS(5022), - [anon_sym_use_BANG] = ACTIONS(5020), - [anon_sym_do_BANG] = ACTIONS(5020), - [anon_sym_begin] = ACTIONS(5022), - [anon_sym_default] = ACTIONS(5022), - [anon_sym_static] = ACTIONS(5022), - [anon_sym_member] = ACTIONS(5022), - [anon_sym_exception] = ACTIONS(5022), - [anon_sym_abstract] = ACTIONS(5022), - [anon_sym_override] = ACTIONS(5022), - [anon_sym_val] = ACTIONS(5022), - [aux_sym_char_token1] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5022), - [anon_sym_DQUOTE] = ACTIONS(5022), - [anon_sym_AT_DQUOTE] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), - [sym_bool] = ACTIONS(5022), - [sym_unit] = ACTIONS(5020), - [anon_sym_LPAREN_PIPE] = ACTIONS(5022), - [sym_op_identifier] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_PLUS_DOT] = ACTIONS(5020), - [anon_sym_DASH_DOT] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_TILDE] = ACTIONS(5020), - [aux_sym_prefix_op_token1] = ACTIONS(5020), - [sym_int] = ACTIONS(5022), - [sym_xint] = ACTIONS(5020), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5020), - [anon_sym_POUNDload] = ACTIONS(5020), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5020), + [ts_builtin_sym_end] = ACTIONS(4913), + [sym_identifier] = ACTIONS(4915), + [anon_sym_namespace] = ACTIONS(4915), + [anon_sym_module] = ACTIONS(4915), + [anon_sym_open] = ACTIONS(4915), + [anon_sym_LBRACK_LT] = ACTIONS(4913), + [anon_sym_return] = ACTIONS(4915), + [anon_sym_type] = ACTIONS(4915), + [anon_sym_do] = ACTIONS(4915), + [anon_sym_and] = ACTIONS(4915), + [anon_sym_let] = ACTIONS(4915), + [anon_sym_let_BANG] = ACTIONS(4913), + [aux_sym_access_modifier_token1] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_null] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_LBRACK_PIPE] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_LT_AT] = ACTIONS(4915), + [anon_sym_LT_AT_AT] = ACTIONS(4913), + [anon_sym_LBRACE_PIPE] = ACTIONS(4913), + [anon_sym_new] = ACTIONS(4915), + [anon_sym_return_BANG] = ACTIONS(4913), + [anon_sym_yield] = ACTIONS(4915), + [anon_sym_yield_BANG] = ACTIONS(4913), + [anon_sym_lazy] = ACTIONS(4915), + [anon_sym_assert] = ACTIONS(4915), + [anon_sym_upcast] = ACTIONS(4915), + [anon_sym_downcast] = ACTIONS(4915), + [anon_sym_for] = ACTIONS(4915), + [anon_sym_while] = ACTIONS(4915), + [anon_sym_if] = ACTIONS(4915), + [anon_sym_fun] = ACTIONS(4915), + [anon_sym_try] = ACTIONS(4915), + [anon_sym_match] = ACTIONS(4915), + [anon_sym_match_BANG] = ACTIONS(4913), + [anon_sym_function] = ACTIONS(4915), + [anon_sym_use] = ACTIONS(4915), + [anon_sym_use_BANG] = ACTIONS(4913), + [anon_sym_do_BANG] = ACTIONS(4913), + [anon_sym_begin] = ACTIONS(4915), + [anon_sym_default] = ACTIONS(4915), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_member] = ACTIONS(4915), + [anon_sym_exception] = ACTIONS(4915), + [anon_sym_abstract] = ACTIONS(4915), + [anon_sym_override] = ACTIONS(4915), + [anon_sym_val] = ACTIONS(4915), + [aux_sym_char_token1] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4915), + [anon_sym_DQUOTE] = ACTIONS(4915), + [anon_sym_AT_DQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [sym_bool] = ACTIONS(4915), + [sym_unit] = ACTIONS(4913), + [anon_sym_LPAREN_PIPE] = ACTIONS(4915), + [sym_op_identifier] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_PLUS_DOT] = ACTIONS(4913), + [anon_sym_DASH_DOT] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_AMP_AMP] = ACTIONS(4913), + [anon_sym_TILDE] = ACTIONS(4913), + [aux_sym_prefix_op_token1] = ACTIONS(4913), + [sym_int] = ACTIONS(4915), + [sym_xint] = ACTIONS(4913), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4913), + [anon_sym_POUNDload] = ACTIONS(4913), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4913), }, [2733] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(5030), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(4853), + [sym_identifier] = ACTIONS(4855), + [anon_sym_namespace] = ACTIONS(4855), + [anon_sym_module] = ACTIONS(4855), + [anon_sym_open] = ACTIONS(4855), + [anon_sym_LBRACK_LT] = ACTIONS(4853), + [anon_sym_return] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(4855), + [anon_sym_do] = ACTIONS(4855), + [anon_sym_and] = ACTIONS(4855), + [anon_sym_let] = ACTIONS(4855), + [anon_sym_let_BANG] = ACTIONS(4853), + [aux_sym_access_modifier_token1] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_null] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4855), + [anon_sym_LBRACK_PIPE] = ACTIONS(4853), + [anon_sym_LBRACE] = ACTIONS(4855), + [anon_sym_LT_AT] = ACTIONS(4855), + [anon_sym_LT_AT_AT] = ACTIONS(4853), + [anon_sym_LBRACE_PIPE] = ACTIONS(4853), + [anon_sym_new] = ACTIONS(4855), + [anon_sym_return_BANG] = ACTIONS(4853), + [anon_sym_yield] = ACTIONS(4855), + [anon_sym_yield_BANG] = ACTIONS(4853), + [anon_sym_lazy] = ACTIONS(4855), + [anon_sym_assert] = ACTIONS(4855), + [anon_sym_upcast] = ACTIONS(4855), + [anon_sym_downcast] = ACTIONS(4855), + [anon_sym_for] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_if] = ACTIONS(4855), + [anon_sym_fun] = ACTIONS(4855), + [anon_sym_try] = ACTIONS(4855), + [anon_sym_match] = ACTIONS(4855), + [anon_sym_match_BANG] = ACTIONS(4853), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_use] = ACTIONS(4855), + [anon_sym_use_BANG] = ACTIONS(4853), + [anon_sym_do_BANG] = ACTIONS(4853), + [anon_sym_begin] = ACTIONS(4855), + [anon_sym_default] = ACTIONS(4855), + [anon_sym_static] = ACTIONS(4855), + [anon_sym_member] = ACTIONS(4855), + [anon_sym_exception] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_override] = ACTIONS(4855), + [anon_sym_val] = ACTIONS(4855), + [aux_sym_char_token1] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_AT_DQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [sym_bool] = ACTIONS(4855), + [sym_unit] = ACTIONS(4853), + [anon_sym_LPAREN_PIPE] = ACTIONS(4855), + [sym_op_identifier] = ACTIONS(4853), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_PLUS_DOT] = ACTIONS(4853), + [anon_sym_DASH_DOT] = ACTIONS(4853), + [anon_sym_PERCENT] = ACTIONS(4853), + [anon_sym_AMP_AMP] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4853), + [aux_sym_prefix_op_token1] = ACTIONS(4853), + [sym_int] = ACTIONS(4855), + [sym_xint] = ACTIONS(4853), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4853), + [anon_sym_POUNDload] = ACTIONS(4853), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4853), }, [2734] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_access_modifier] = STATE(2835), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4921), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [aux_sym_access_modifier_token1] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -331305,421 +331791,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2735] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2735), [sym_compiler_directive_decl] = STATE(2735), [sym_fsi_directive_decl] = STATE(2735), [sym_preproc_line] = STATE(2735), - [aux_sym__function_or_value_defns_repeat1] = STATE(2724), - [ts_builtin_sym_end] = ACTIONS(5032), - [sym_identifier] = ACTIONS(5034), - [anon_sym_namespace] = ACTIONS(5034), - [anon_sym_module] = ACTIONS(5034), - [anon_sym_open] = ACTIONS(5034), - [anon_sym_LBRACK_LT] = ACTIONS(5032), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_type] = ACTIONS(5034), - [anon_sym_do] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_let_BANG] = ACTIONS(5032), - [aux_sym_access_modifier_token1] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5034), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_LBRACK_PIPE] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_LT_AT] = ACTIONS(5034), - [anon_sym_LT_AT_AT] = ACTIONS(5032), - [anon_sym_LBRACE_PIPE] = ACTIONS(5032), - [anon_sym_new] = ACTIONS(5034), - [anon_sym_return_BANG] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_yield_BANG] = ACTIONS(5032), - [anon_sym_lazy] = ACTIONS(5034), - [anon_sym_assert] = ACTIONS(5034), - [anon_sym_upcast] = ACTIONS(5034), - [anon_sym_downcast] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_if] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_match] = ACTIONS(5034), - [anon_sym_match_BANG] = ACTIONS(5032), - [anon_sym_function] = ACTIONS(5034), - [anon_sym_use] = ACTIONS(5034), - [anon_sym_use_BANG] = ACTIONS(5032), - [anon_sym_do_BANG] = ACTIONS(5032), - [anon_sym_begin] = ACTIONS(5034), - [anon_sym_default] = ACTIONS(5034), - [anon_sym_static] = ACTIONS(5034), - [anon_sym_member] = ACTIONS(5034), - [anon_sym_exception] = ACTIONS(5034), - [anon_sym_abstract] = ACTIONS(5034), - [anon_sym_override] = ACTIONS(5034), - [anon_sym_val] = ACTIONS(5034), - [aux_sym_char_token1] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [anon_sym_AT_DQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [sym_bool] = ACTIONS(5034), - [sym_unit] = ACTIONS(5032), - [anon_sym_LPAREN_PIPE] = ACTIONS(5034), - [sym_op_identifier] = ACTIONS(5032), - [anon_sym_PLUS] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_PLUS_DOT] = ACTIONS(5032), - [anon_sym_DASH_DOT] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [aux_sym_prefix_op_token1] = ACTIONS(5032), - [sym_int] = ACTIONS(5034), - [sym_xint] = ACTIONS(5032), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5032), - [anon_sym_POUNDload] = ACTIONS(5032), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5032), }, [2736] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(5036), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(4913), + [sym_identifier] = ACTIONS(4915), + [anon_sym_namespace] = ACTIONS(4915), + [anon_sym_module] = ACTIONS(4915), + [anon_sym_open] = ACTIONS(4915), + [anon_sym_LBRACK_LT] = ACTIONS(4913), + [anon_sym_return] = ACTIONS(4915), + [anon_sym_type] = ACTIONS(4915), + [anon_sym_do] = ACTIONS(4915), + [anon_sym_and] = ACTIONS(4915), + [anon_sym_let] = ACTIONS(4915), + [anon_sym_let_BANG] = ACTIONS(4913), + [aux_sym_access_modifier_token1] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4925), + [anon_sym_null] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_LBRACK_PIPE] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_LT_AT] = ACTIONS(4915), + [anon_sym_LT_AT_AT] = ACTIONS(4913), + [anon_sym_LBRACE_PIPE] = ACTIONS(4913), + [anon_sym_new] = ACTIONS(4915), + [anon_sym_return_BANG] = ACTIONS(4913), + [anon_sym_yield] = ACTIONS(4915), + [anon_sym_yield_BANG] = ACTIONS(4913), + [anon_sym_lazy] = ACTIONS(4915), + [anon_sym_assert] = ACTIONS(4915), + [anon_sym_upcast] = ACTIONS(4915), + [anon_sym_downcast] = ACTIONS(4915), + [anon_sym_for] = ACTIONS(4915), + [anon_sym_while] = ACTIONS(4915), + [anon_sym_if] = ACTIONS(4915), + [anon_sym_fun] = ACTIONS(4915), + [anon_sym_try] = ACTIONS(4915), + [anon_sym_match] = ACTIONS(4915), + [anon_sym_match_BANG] = ACTIONS(4913), + [anon_sym_function] = ACTIONS(4915), + [anon_sym_use] = ACTIONS(4915), + [anon_sym_use_BANG] = ACTIONS(4913), + [anon_sym_do_BANG] = ACTIONS(4913), + [anon_sym_begin] = ACTIONS(4915), + [anon_sym_default] = ACTIONS(4915), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_member] = ACTIONS(4915), + [anon_sym_exception] = ACTIONS(4915), + [anon_sym_abstract] = ACTIONS(4915), + [anon_sym_override] = ACTIONS(4915), + [anon_sym_val] = ACTIONS(4915), + [aux_sym_char_token1] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4915), + [anon_sym_DQUOTE] = ACTIONS(4915), + [anon_sym_AT_DQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [sym_bool] = ACTIONS(4915), + [sym_unit] = ACTIONS(4913), + [anon_sym_LPAREN_PIPE] = ACTIONS(4915), + [sym_op_identifier] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_PLUS_DOT] = ACTIONS(4913), + [anon_sym_DASH_DOT] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_AMP_AMP] = ACTIONS(4913), + [anon_sym_TILDE] = ACTIONS(4913), + [aux_sym_prefix_op_token1] = ACTIONS(4913), + [sym_int] = ACTIONS(4915), + [sym_xint] = ACTIONS(4913), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4913), + [anon_sym_POUNDload] = ACTIONS(4913), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4913), }, [2737] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(5038), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(4927), + [sym_identifier] = ACTIONS(4929), + [anon_sym_namespace] = ACTIONS(4929), + [anon_sym_module] = ACTIONS(4929), + [anon_sym_open] = ACTIONS(4929), + [anon_sym_LBRACK_LT] = ACTIONS(4927), + [anon_sym_return] = ACTIONS(4929), + [anon_sym_type] = ACTIONS(4929), + [anon_sym_do] = ACTIONS(4929), + [anon_sym_and] = ACTIONS(4929), + [anon_sym_let] = ACTIONS(4929), + [anon_sym_let_BANG] = ACTIONS(4927), + [aux_sym_access_modifier_token1] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4929), + [anon_sym_null] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4929), + [anon_sym_LBRACK_PIPE] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4929), + [anon_sym_LT_AT] = ACTIONS(4929), + [anon_sym_LT_AT_AT] = ACTIONS(4927), + [anon_sym_LBRACE_PIPE] = ACTIONS(4927), + [anon_sym_with] = ACTIONS(4931), + [anon_sym_new] = ACTIONS(4929), + [anon_sym_return_BANG] = ACTIONS(4927), + [anon_sym_yield] = ACTIONS(4929), + [anon_sym_yield_BANG] = ACTIONS(4927), + [anon_sym_lazy] = ACTIONS(4929), + [anon_sym_assert] = ACTIONS(4929), + [anon_sym_upcast] = ACTIONS(4929), + [anon_sym_downcast] = ACTIONS(4929), + [anon_sym_for] = ACTIONS(4929), + [anon_sym_while] = ACTIONS(4929), + [anon_sym_if] = ACTIONS(4929), + [anon_sym_fun] = ACTIONS(4929), + [anon_sym_try] = ACTIONS(4929), + [anon_sym_match] = ACTIONS(4929), + [anon_sym_match_BANG] = ACTIONS(4927), + [anon_sym_function] = ACTIONS(4929), + [anon_sym_use] = ACTIONS(4929), + [anon_sym_use_BANG] = ACTIONS(4927), + [anon_sym_do_BANG] = ACTIONS(4927), + [anon_sym_begin] = ACTIONS(4929), + [anon_sym_default] = ACTIONS(4929), + [anon_sym_static] = ACTIONS(4929), + [anon_sym_member] = ACTIONS(4929), + [anon_sym_exception] = ACTIONS(4929), + [anon_sym_abstract] = ACTIONS(4929), + [anon_sym_override] = ACTIONS(4929), + [anon_sym_val] = ACTIONS(4929), + [aux_sym_char_token1] = ACTIONS(4927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4929), + [anon_sym_DQUOTE] = ACTIONS(4929), + [anon_sym_AT_DQUOTE] = ACTIONS(4927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4927), + [sym_bool] = ACTIONS(4929), + [sym_unit] = ACTIONS(4927), + [anon_sym_LPAREN_PIPE] = ACTIONS(4929), + [sym_op_identifier] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_PLUS_DOT] = ACTIONS(4927), + [anon_sym_DASH_DOT] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_TILDE] = ACTIONS(4927), + [aux_sym_prefix_op_token1] = ACTIONS(4927), + [sym_int] = ACTIONS(4929), + [sym_xint] = ACTIONS(4927), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4927), + [anon_sym_POUNDload] = ACTIONS(4927), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4927), }, [2738] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_comment] = STATE(2738), [sym_compiler_directive_decl] = STATE(2738), [sym_fsi_directive_decl] = STATE(2738), [sym_preproc_line] = STATE(2738), - [aux_sym_attributes_repeat1] = STATE(3724), - [aux_sym__method_defn_repeat1] = STATE(2709), - [sym_identifier] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(5040), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(4853), + [sym_identifier] = ACTIONS(4855), + [anon_sym_namespace] = ACTIONS(4855), + [anon_sym_module] = ACTIONS(4855), + [anon_sym_open] = ACTIONS(4855), + [anon_sym_LBRACK_LT] = ACTIONS(4853), + [anon_sym_return] = ACTIONS(4855), + [anon_sym_type] = ACTIONS(4855), + [anon_sym_do] = ACTIONS(4855), + [anon_sym_and] = ACTIONS(4855), + [anon_sym_let] = ACTIONS(4855), + [anon_sym_let_BANG] = ACTIONS(4853), + [aux_sym_access_modifier_token1] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_null] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4855), + [anon_sym_LBRACK_PIPE] = ACTIONS(4853), + [anon_sym_LBRACE] = ACTIONS(4855), + [anon_sym_LT_AT] = ACTIONS(4855), + [anon_sym_LT_AT_AT] = ACTIONS(4853), + [anon_sym_LBRACE_PIPE] = ACTIONS(4853), + [anon_sym_new] = ACTIONS(4855), + [anon_sym_return_BANG] = ACTIONS(4853), + [anon_sym_yield] = ACTIONS(4855), + [anon_sym_yield_BANG] = ACTIONS(4853), + [anon_sym_lazy] = ACTIONS(4855), + [anon_sym_assert] = ACTIONS(4855), + [anon_sym_upcast] = ACTIONS(4855), + [anon_sym_downcast] = ACTIONS(4855), + [anon_sym_for] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_if] = ACTIONS(4855), + [anon_sym_fun] = ACTIONS(4855), + [anon_sym_try] = ACTIONS(4855), + [anon_sym_match] = ACTIONS(4855), + [anon_sym_match_BANG] = ACTIONS(4853), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_use] = ACTIONS(4855), + [anon_sym_use_BANG] = ACTIONS(4853), + [anon_sym_do_BANG] = ACTIONS(4853), + [anon_sym_begin] = ACTIONS(4855), + [anon_sym_default] = ACTIONS(4855), + [anon_sym_static] = ACTIONS(4855), + [anon_sym_member] = ACTIONS(4855), + [anon_sym_exception] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_override] = ACTIONS(4855), + [anon_sym_val] = ACTIONS(4855), + [aux_sym_char_token1] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_AT_DQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4853), + [sym_bool] = ACTIONS(4855), + [sym_unit] = ACTIONS(4853), + [anon_sym_LPAREN_PIPE] = ACTIONS(4855), + [sym_op_identifier] = ACTIONS(4853), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_PLUS_DOT] = ACTIONS(4853), + [anon_sym_DASH_DOT] = ACTIONS(4853), + [anon_sym_PERCENT] = ACTIONS(4853), + [anon_sym_AMP_AMP] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4853), + [aux_sym_prefix_op_token1] = ACTIONS(4853), + [sym_int] = ACTIONS(4855), + [sym_xint] = ACTIONS(4853), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4853), + [anon_sym_POUNDload] = ACTIONS(4853), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4853), }, [2739] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1365), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4935), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -331733,329 +332220,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2740), [sym_fsi_directive_decl] = STATE(2740), [sym_preproc_line] = STATE(2740), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_open] = ACTIONS(2105), - [anon_sym_LBRACK_LT] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_BANG] = ACTIONS(2103), - [aux_sym_access_modifier_token1] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LBRACK_PIPE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LT_AT] = ACTIONS(2105), - [anon_sym_LT_AT_AT] = ACTIONS(2103), - [anon_sym_LBRACE_PIPE] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_return_BANG] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_yield_BANG] = ACTIONS(2103), - [anon_sym_lazy] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_upcast] = ACTIONS(2105), - [anon_sym_downcast] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_fun] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_match_BANG] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_use_BANG] = ACTIONS(2103), - [anon_sym_do_BANG] = ACTIONS(2103), - [anon_sym_begin] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_member] = ACTIONS(2105), - [anon_sym_exception] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_val] = ACTIONS(2105), - [aux_sym_char_token1] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_AT_DQUOTE] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [sym_bool] = ACTIONS(2105), - [sym_unit] = ACTIONS(2103), - [anon_sym_LPAREN_PIPE] = ACTIONS(2105), - [sym_op_identifier] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_PLUS_DOT] = ACTIONS(2103), - [anon_sym_DASH_DOT] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [aux_sym_prefix_op_token1] = ACTIONS(2103), - [sym_int] = ACTIONS(2105), - [sym_xint] = ACTIONS(2103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2103), - [anon_sym_POUNDload] = ACTIONS(2103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2103), + [ts_builtin_sym_end] = ACTIONS(4937), + [sym_identifier] = ACTIONS(4939), + [anon_sym_namespace] = ACTIONS(4939), + [anon_sym_module] = ACTIONS(4939), + [anon_sym_open] = ACTIONS(4939), + [anon_sym_LBRACK_LT] = ACTIONS(4937), + [anon_sym_return] = ACTIONS(4939), + [anon_sym_type] = ACTIONS(4939), + [anon_sym_do] = ACTIONS(4939), + [anon_sym_and] = ACTIONS(4939), + [anon_sym_let] = ACTIONS(4939), + [anon_sym_let_BANG] = ACTIONS(4937), + [aux_sym_access_modifier_token1] = ACTIONS(4937), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_null] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(4939), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_LBRACK_PIPE] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_LT_AT] = ACTIONS(4939), + [anon_sym_LT_AT_AT] = ACTIONS(4937), + [anon_sym_LBRACE_PIPE] = ACTIONS(4937), + [anon_sym_with] = ACTIONS(4941), + [anon_sym_new] = ACTIONS(4939), + [anon_sym_return_BANG] = ACTIONS(4937), + [anon_sym_yield] = ACTIONS(4939), + [anon_sym_yield_BANG] = ACTIONS(4937), + [anon_sym_lazy] = ACTIONS(4939), + [anon_sym_assert] = ACTIONS(4939), + [anon_sym_upcast] = ACTIONS(4939), + [anon_sym_downcast] = ACTIONS(4939), + [anon_sym_for] = ACTIONS(4939), + [anon_sym_while] = ACTIONS(4939), + [anon_sym_if] = ACTIONS(4939), + [anon_sym_fun] = ACTIONS(4939), + [anon_sym_try] = ACTIONS(4939), + [anon_sym_match] = ACTIONS(4939), + [anon_sym_match_BANG] = ACTIONS(4937), + [anon_sym_function] = ACTIONS(4939), + [anon_sym_use] = ACTIONS(4939), + [anon_sym_use_BANG] = ACTIONS(4937), + [anon_sym_do_BANG] = ACTIONS(4937), + [anon_sym_begin] = ACTIONS(4939), + [anon_sym_default] = ACTIONS(4939), + [anon_sym_static] = ACTIONS(4939), + [anon_sym_member] = ACTIONS(4939), + [anon_sym_exception] = ACTIONS(4939), + [anon_sym_abstract] = ACTIONS(4939), + [anon_sym_override] = ACTIONS(4939), + [anon_sym_val] = ACTIONS(4939), + [aux_sym_char_token1] = ACTIONS(4937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), + [anon_sym_DQUOTE] = ACTIONS(4939), + [anon_sym_AT_DQUOTE] = ACTIONS(4937), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4937), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4937), + [sym_bool] = ACTIONS(4939), + [sym_unit] = ACTIONS(4937), + [anon_sym_LPAREN_PIPE] = ACTIONS(4939), + [sym_op_identifier] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_PLUS_DOT] = ACTIONS(4937), + [anon_sym_DASH_DOT] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_AMP_AMP] = ACTIONS(4937), + [anon_sym_TILDE] = ACTIONS(4937), + [aux_sym_prefix_op_token1] = ACTIONS(4937), + [sym_int] = ACTIONS(4939), + [sym_xint] = ACTIONS(4937), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4937), + [anon_sym_POUNDload] = ACTIONS(4937), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4937), }, [2741] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1442), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(4943), + [sym_identifier] = ACTIONS(4945), + [anon_sym_namespace] = ACTIONS(4945), + [anon_sym_module] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_LBRACK_LT] = ACTIONS(4943), + [anon_sym_return] = ACTIONS(4945), + [anon_sym_type] = ACTIONS(4945), + [anon_sym_do] = ACTIONS(4945), + [anon_sym_and] = ACTIONS(4945), + [anon_sym_let] = ACTIONS(4945), + [anon_sym_let_BANG] = ACTIONS(4943), + [aux_sym_access_modifier_token1] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_null] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_LBRACK_PIPE] = ACTIONS(4943), + [anon_sym_LBRACE] = ACTIONS(4945), + [anon_sym_LT_AT] = ACTIONS(4945), + [anon_sym_LT_AT_AT] = ACTIONS(4943), + [anon_sym_LBRACE_PIPE] = ACTIONS(4943), + [anon_sym_with] = ACTIONS(4947), + [anon_sym_new] = ACTIONS(4945), + [anon_sym_return_BANG] = ACTIONS(4943), + [anon_sym_yield] = ACTIONS(4945), + [anon_sym_yield_BANG] = ACTIONS(4943), + [anon_sym_lazy] = ACTIONS(4945), + [anon_sym_assert] = ACTIONS(4945), + [anon_sym_upcast] = ACTIONS(4945), + [anon_sym_downcast] = ACTIONS(4945), + [anon_sym_for] = ACTIONS(4945), + [anon_sym_while] = ACTIONS(4945), + [anon_sym_if] = ACTIONS(4945), + [anon_sym_fun] = ACTIONS(4945), + [anon_sym_try] = ACTIONS(4945), + [anon_sym_match] = ACTIONS(4945), + [anon_sym_match_BANG] = ACTIONS(4943), + [anon_sym_function] = ACTIONS(4945), + [anon_sym_use] = ACTIONS(4945), + [anon_sym_use_BANG] = ACTIONS(4943), + [anon_sym_do_BANG] = ACTIONS(4943), + [anon_sym_begin] = ACTIONS(4945), + [anon_sym_default] = ACTIONS(4945), + [anon_sym_static] = ACTIONS(4945), + [anon_sym_member] = ACTIONS(4945), + [anon_sym_exception] = ACTIONS(4945), + [anon_sym_abstract] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_val] = ACTIONS(4945), + [aux_sym_char_token1] = ACTIONS(4943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), + [anon_sym_DQUOTE] = ACTIONS(4945), + [anon_sym_AT_DQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4943), + [sym_bool] = ACTIONS(4945), + [sym_unit] = ACTIONS(4943), + [anon_sym_LPAREN_PIPE] = ACTIONS(4945), + [sym_op_identifier] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_PLUS_DOT] = ACTIONS(4943), + [anon_sym_DASH_DOT] = ACTIONS(4943), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_TILDE] = ACTIONS(4943), + [aux_sym_prefix_op_token1] = ACTIONS(4943), + [sym_int] = ACTIONS(4945), + [sym_xint] = ACTIONS(4943), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4943), + [anon_sym_POUNDload] = ACTIONS(4943), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4943), }, [2742] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(2005), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym__function_or_value_defns_repeat1] = STATE(2742), + [ts_builtin_sym_end] = ACTIONS(4949), + [sym_identifier] = ACTIONS(4951), + [anon_sym_namespace] = ACTIONS(4951), + [anon_sym_module] = ACTIONS(4951), + [anon_sym_open] = ACTIONS(4951), + [anon_sym_LBRACK_LT] = ACTIONS(4949), + [anon_sym_return] = ACTIONS(4951), + [anon_sym_type] = ACTIONS(4951), + [anon_sym_do] = ACTIONS(4951), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_let] = ACTIONS(4951), + [anon_sym_let_BANG] = ACTIONS(4949), + [aux_sym_access_modifier_token1] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LBRACK_PIPE] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LT_AT] = ACTIONS(4951), + [anon_sym_LT_AT_AT] = ACTIONS(4949), + [anon_sym_LBRACE_PIPE] = ACTIONS(4949), + [anon_sym_new] = ACTIONS(4951), + [anon_sym_return_BANG] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4951), + [anon_sym_yield_BANG] = ACTIONS(4949), + [anon_sym_lazy] = ACTIONS(4951), + [anon_sym_assert] = ACTIONS(4951), + [anon_sym_upcast] = ACTIONS(4951), + [anon_sym_downcast] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4951), + [anon_sym_while] = ACTIONS(4951), + [anon_sym_if] = ACTIONS(4951), + [anon_sym_fun] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4951), + [anon_sym_match] = ACTIONS(4951), + [anon_sym_match_BANG] = ACTIONS(4949), + [anon_sym_function] = ACTIONS(4951), + [anon_sym_use] = ACTIONS(4951), + [anon_sym_use_BANG] = ACTIONS(4949), + [anon_sym_do_BANG] = ACTIONS(4949), + [anon_sym_begin] = ACTIONS(4951), + [anon_sym_default] = ACTIONS(4951), + [anon_sym_static] = ACTIONS(4951), + [anon_sym_member] = ACTIONS(4951), + [anon_sym_exception] = ACTIONS(4951), + [anon_sym_abstract] = ACTIONS(4951), + [anon_sym_override] = ACTIONS(4951), + [anon_sym_val] = ACTIONS(4951), + [aux_sym_char_token1] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [anon_sym_AT_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [sym_bool] = ACTIONS(4951), + [sym_unit] = ACTIONS(4949), + [anon_sym_LPAREN_PIPE] = ACTIONS(4951), + [sym_op_identifier] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_PLUS_DOT] = ACTIONS(4949), + [anon_sym_DASH_DOT] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [aux_sym_prefix_op_token1] = ACTIONS(4949), + [sym_int] = ACTIONS(4951), + [sym_xint] = ACTIONS(4949), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4949), + [anon_sym_POUNDload] = ACTIONS(4949), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4949), }, [2743] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1522), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2743), [sym_compiler_directive_decl] = STATE(2743), [sym_fsi_directive_decl] = STATE(2743), [sym_preproc_line] = STATE(2743), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4956), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -332065,262 +332556,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2744] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(2041), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym__function_or_value_defns_repeat1] = STATE(2742), + [ts_builtin_sym_end] = ACTIONS(4958), + [sym_identifier] = ACTIONS(4960), + [anon_sym_namespace] = ACTIONS(4960), + [anon_sym_module] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_LBRACK_LT] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_type] = ACTIONS(4960), + [anon_sym_do] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(4962), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_let_BANG] = ACTIONS(4958), + [aux_sym_access_modifier_token1] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_PIPE] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LT_AT] = ACTIONS(4960), + [anon_sym_LT_AT_AT] = ACTIONS(4958), + [anon_sym_LBRACE_PIPE] = ACTIONS(4958), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_return_BANG] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_yield_BANG] = ACTIONS(4958), + [anon_sym_lazy] = ACTIONS(4960), + [anon_sym_assert] = ACTIONS(4960), + [anon_sym_upcast] = ACTIONS(4960), + [anon_sym_downcast] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_match_BANG] = ACTIONS(4958), + [anon_sym_function] = ACTIONS(4960), + [anon_sym_use] = ACTIONS(4960), + [anon_sym_use_BANG] = ACTIONS(4958), + [anon_sym_do_BANG] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4960), + [anon_sym_default] = ACTIONS(4960), + [anon_sym_static] = ACTIONS(4960), + [anon_sym_member] = ACTIONS(4960), + [anon_sym_exception] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_val] = ACTIONS(4960), + [aux_sym_char_token1] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_AT_DQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [sym_bool] = ACTIONS(4960), + [sym_unit] = ACTIONS(4958), + [anon_sym_LPAREN_PIPE] = ACTIONS(4960), + [sym_op_identifier] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_PLUS_DOT] = ACTIONS(4958), + [anon_sym_DASH_DOT] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [aux_sym_prefix_op_token1] = ACTIONS(4958), + [sym_int] = ACTIONS(4960), + [sym_xint] = ACTIONS(4958), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4958), + [anon_sym_POUNDload] = ACTIONS(4958), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4958), }, [2745] = { [sym_block_comment] = STATE(2745), [sym_compiler_directive_decl] = STATE(2745), [sym_fsi_directive_decl] = STATE(2745), [sym_preproc_line] = STATE(2745), - [ts_builtin_sym_end] = ACTIONS(5042), - [sym_identifier] = ACTIONS(5044), - [anon_sym_namespace] = ACTIONS(5044), - [anon_sym_module] = ACTIONS(5044), - [anon_sym_open] = ACTIONS(5044), - [anon_sym_LBRACK_LT] = ACTIONS(5042), - [anon_sym_return] = ACTIONS(5044), - [anon_sym_type] = ACTIONS(5044), - [anon_sym_do] = ACTIONS(5044), - [anon_sym_and] = ACTIONS(5044), - [anon_sym_let] = ACTIONS(5044), - [anon_sym_let_BANG] = ACTIONS(5042), - [aux_sym_access_modifier_token1] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5044), - [anon_sym_null] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5044), - [anon_sym_LBRACK_PIPE] = ACTIONS(5042), - [anon_sym_LBRACE] = ACTIONS(5044), - [anon_sym_LT_AT] = ACTIONS(5044), - [anon_sym_LT_AT_AT] = ACTIONS(5042), - [anon_sym_LBRACE_PIPE] = ACTIONS(5042), - [anon_sym_new] = ACTIONS(5044), - [anon_sym_return_BANG] = ACTIONS(5042), - [anon_sym_yield] = ACTIONS(5044), - [anon_sym_yield_BANG] = ACTIONS(5042), - [anon_sym_lazy] = ACTIONS(5044), - [anon_sym_assert] = ACTIONS(5044), - [anon_sym_upcast] = ACTIONS(5044), - [anon_sym_downcast] = ACTIONS(5044), - [anon_sym_for] = ACTIONS(5044), - [anon_sym_while] = ACTIONS(5044), - [anon_sym_if] = ACTIONS(5044), - [anon_sym_fun] = ACTIONS(5044), - [anon_sym_try] = ACTIONS(5044), - [anon_sym_match] = ACTIONS(5044), - [anon_sym_match_BANG] = ACTIONS(5042), - [anon_sym_function] = ACTIONS(5044), - [anon_sym_use] = ACTIONS(5044), - [anon_sym_use_BANG] = ACTIONS(5042), - [anon_sym_do_BANG] = ACTIONS(5042), - [anon_sym_begin] = ACTIONS(5044), - [anon_sym_default] = ACTIONS(5044), - [anon_sym_static] = ACTIONS(5044), - [anon_sym_member] = ACTIONS(5044), - [anon_sym_exception] = ACTIONS(5044), - [anon_sym_abstract] = ACTIONS(5044), - [anon_sym_override] = ACTIONS(5044), - [anon_sym_val] = ACTIONS(5044), - [aux_sym_char_token1] = ACTIONS(5042), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5044), - [anon_sym_DQUOTE] = ACTIONS(5044), - [anon_sym_AT_DQUOTE] = ACTIONS(5042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5042), - [sym_bool] = ACTIONS(5044), - [sym_unit] = ACTIONS(5042), - [anon_sym_LPAREN_PIPE] = ACTIONS(5044), - [sym_op_identifier] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_PLUS_DOT] = ACTIONS(5042), - [anon_sym_DASH_DOT] = ACTIONS(5042), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_TILDE] = ACTIONS(5042), - [aux_sym_prefix_op_token1] = ACTIONS(5042), - [sym_int] = ACTIONS(5044), - [sym_xint] = ACTIONS(5042), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5042), - [anon_sym_POUNDload] = ACTIONS(5042), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5042), + [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_COMMA] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_LBRACK_PIPE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_LT_AT] = ACTIONS(4966), + [anon_sym_LT_AT_AT] = ACTIONS(4964), + [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_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_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4964), + [anon_sym_POUNDload] = ACTIONS(4964), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4964), }, [2746] = { [sym_block_comment] = STATE(2746), [sym_compiler_directive_decl] = STATE(2746), [sym_fsi_directive_decl] = STATE(2746), [sym_preproc_line] = STATE(2746), - [ts_builtin_sym_end] = ACTIONS(4638), - [sym_identifier] = ACTIONS(4640), - [anon_sym_namespace] = ACTIONS(4640), - [anon_sym_module] = ACTIONS(4640), - [anon_sym_open] = ACTIONS(4640), - [anon_sym_LBRACK_LT] = ACTIONS(4638), - [anon_sym_return] = ACTIONS(4640), - [anon_sym_type] = ACTIONS(4640), - [anon_sym_do] = ACTIONS(4640), - [anon_sym_and] = ACTIONS(4640), - [anon_sym_let] = ACTIONS(4640), - [anon_sym_let_BANG] = ACTIONS(4638), - [aux_sym_access_modifier_token1] = ACTIONS(4638), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4640), - [anon_sym_AMP] = ACTIONS(4640), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_LBRACK_PIPE] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_LT_AT] = ACTIONS(4640), - [anon_sym_LT_AT_AT] = ACTIONS(4638), - [anon_sym_LBRACE_PIPE] = ACTIONS(4638), - [anon_sym_new] = ACTIONS(4640), - [anon_sym_return_BANG] = ACTIONS(4638), - [anon_sym_yield] = ACTIONS(4640), - [anon_sym_yield_BANG] = ACTIONS(4638), - [anon_sym_lazy] = ACTIONS(4640), - [anon_sym_assert] = ACTIONS(4640), - [anon_sym_upcast] = ACTIONS(4640), - [anon_sym_downcast] = ACTIONS(4640), - [anon_sym_for] = ACTIONS(4640), - [anon_sym_while] = ACTIONS(4640), - [anon_sym_if] = ACTIONS(4640), - [anon_sym_fun] = ACTIONS(4640), - [anon_sym_try] = ACTIONS(4640), - [anon_sym_match] = ACTIONS(4640), - [anon_sym_match_BANG] = ACTIONS(4638), - [anon_sym_function] = ACTIONS(4640), - [anon_sym_use] = ACTIONS(4640), - [anon_sym_use_BANG] = ACTIONS(4638), - [anon_sym_do_BANG] = ACTIONS(4638), - [anon_sym_begin] = ACTIONS(4640), - [anon_sym_default] = ACTIONS(4640), - [anon_sym_static] = ACTIONS(4640), - [anon_sym_member] = ACTIONS(4640), - [anon_sym_exception] = ACTIONS(4640), - [anon_sym_abstract] = ACTIONS(4640), - [anon_sym_override] = ACTIONS(4640), - [anon_sym_val] = ACTIONS(4640), - [aux_sym_char_token1] = ACTIONS(4638), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4640), - [anon_sym_DQUOTE] = ACTIONS(4640), - [anon_sym_AT_DQUOTE] = ACTIONS(4638), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4638), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4638), - [sym_bool] = ACTIONS(4640), - [sym_unit] = ACTIONS(4638), - [anon_sym_LPAREN_PIPE] = ACTIONS(4640), - [sym_op_identifier] = ACTIONS(4638), - [anon_sym_PLUS] = ACTIONS(4640), - [anon_sym_DASH] = ACTIONS(4640), - [anon_sym_PLUS_DOT] = ACTIONS(4638), - [anon_sym_DASH_DOT] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_AMP_AMP] = ACTIONS(4638), - [anon_sym_TILDE] = ACTIONS(4638), - [aux_sym_prefix_op_token1] = ACTIONS(4638), - [sym_int] = ACTIONS(4640), - [sym_xint] = ACTIONS(4638), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4638), - [anon_sym_POUNDload] = ACTIONS(4638), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4638), + [aux_sym__function_or_value_defns_repeat1] = STATE(2744), + [ts_builtin_sym_end] = ACTIONS(4970), + [sym_identifier] = ACTIONS(4972), + [anon_sym_namespace] = ACTIONS(4972), + [anon_sym_module] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_LBRACK_LT] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_type] = ACTIONS(4972), + [anon_sym_do] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(4962), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_let_BANG] = ACTIONS(4970), + [aux_sym_access_modifier_token1] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_PIPE] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LT_AT] = ACTIONS(4972), + [anon_sym_LT_AT_AT] = ACTIONS(4970), + [anon_sym_LBRACE_PIPE] = ACTIONS(4970), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_return_BANG] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_yield_BANG] = ACTIONS(4970), + [anon_sym_lazy] = ACTIONS(4972), + [anon_sym_assert] = ACTIONS(4972), + [anon_sym_upcast] = ACTIONS(4972), + [anon_sym_downcast] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_match_BANG] = ACTIONS(4970), + [anon_sym_function] = ACTIONS(4972), + [anon_sym_use] = ACTIONS(4972), + [anon_sym_use_BANG] = ACTIONS(4970), + [anon_sym_do_BANG] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4972), + [anon_sym_default] = ACTIONS(4972), + [anon_sym_static] = ACTIONS(4972), + [anon_sym_member] = ACTIONS(4972), + [anon_sym_exception] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_val] = ACTIONS(4972), + [aux_sym_char_token1] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_AT_DQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [sym_bool] = ACTIONS(4972), + [sym_unit] = ACTIONS(4970), + [anon_sym_LPAREN_PIPE] = ACTIONS(4972), + [sym_op_identifier] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_PLUS_DOT] = ACTIONS(4970), + [anon_sym_DASH_DOT] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [aux_sym_prefix_op_token1] = ACTIONS(4970), + [sym_int] = ACTIONS(4972), + [sym_xint] = ACTIONS(4970), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4970), + [anon_sym_POUNDload] = ACTIONS(4970), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4970), }, [2747] = { [sym_block_comment] = STATE(2747), [sym_compiler_directive_decl] = STATE(2747), [sym_fsi_directive_decl] = STATE(2747), [sym_preproc_line] = STATE(2747), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_open] = ACTIONS(3221), + [anon_sym_LBRACK_LT] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_and] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [aux_sym_access_modifier_token1] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_member] = ACTIONS(3221), + [anon_sym_exception] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_val] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3219), + [anon_sym_DASH_DOT] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3219), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3219), + [anon_sym_POUNDload] = ACTIONS(3219), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + }, + [2748] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2749] = { + [sym_block_comment] = STATE(2749), + [sym_compiler_directive_decl] = STATE(2749), + [sym_fsi_directive_decl] = STATE(2749), + [sym_preproc_line] = STATE(2749), + [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_COMMA] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_LBRACK_PIPE] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_LT_AT] = ACTIONS(4966), + [anon_sym_LT_AT_AT] = ACTIONS(4964), + [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_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_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4964), + [anon_sym_POUNDload] = ACTIONS(4964), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4964), + }, + [2750] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2750), + [sym_identifier] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_LBRACK_LT] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_null] = ACTIONS(4989), + [anon_sym__] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4995), + [anon_sym_COLON_QMARK] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_LBRACK_PIPE] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5007), + [aux_sym_char_token1] = ACTIONS(5010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5013), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_AT_DQUOTE] = ACTIONS(5019), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5025), + [sym_bool] = ACTIONS(5028), + [sym_unit] = ACTIONS(5031), + [anon_sym_LPAREN_PIPE] = ACTIONS(5034), + [sym_op_identifier] = ACTIONS(5037), + [sym_int] = ACTIONS(5040), + [sym_xint] = ACTIONS(5043), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2751] = { + [sym_block_comment] = STATE(2751), + [sym_compiler_directive_decl] = STATE(2751), + [sym_fsi_directive_decl] = STATE(2751), + [sym_preproc_line] = STATE(2751), [ts_builtin_sym_end] = ACTIONS(5046), [sym_identifier] = ACTIONS(5048), [anon_sym_namespace] = ACTIONS(5048), @@ -332400,586 +333234,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5046), }, - [2748] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5661), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2749] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(937), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2750] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2712), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2751] = { - [sym_block_comment] = STATE(2751), - [sym_compiler_directive_decl] = STATE(2751), - [sym_fsi_directive_decl] = STATE(2751), - [sym_preproc_line] = STATE(2751), - [ts_builtin_sym_end] = ACTIONS(5052), - [sym_identifier] = ACTIONS(5054), - [anon_sym_namespace] = ACTIONS(5054), - [anon_sym_module] = ACTIONS(5054), - [anon_sym_open] = ACTIONS(5054), - [anon_sym_LBRACK_LT] = ACTIONS(5052), - [anon_sym_return] = ACTIONS(5054), - [anon_sym_type] = ACTIONS(5054), - [anon_sym_do] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_let] = ACTIONS(5054), - [anon_sym_let_BANG] = ACTIONS(5052), - [aux_sym_access_modifier_token1] = ACTIONS(5052), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_null] = ACTIONS(5054), - [anon_sym_AMP] = ACTIONS(5054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_LBRACK_PIPE] = ACTIONS(5052), - [anon_sym_LBRACE] = ACTIONS(5054), - [anon_sym_LT_AT] = ACTIONS(5054), - [anon_sym_LT_AT_AT] = ACTIONS(5052), - [anon_sym_LBRACE_PIPE] = ACTIONS(5052), - [anon_sym_new] = ACTIONS(5054), - [anon_sym_return_BANG] = ACTIONS(5052), - [anon_sym_yield] = ACTIONS(5054), - [anon_sym_yield_BANG] = ACTIONS(5052), - [anon_sym_lazy] = ACTIONS(5054), - [anon_sym_assert] = ACTIONS(5054), - [anon_sym_upcast] = ACTIONS(5054), - [anon_sym_downcast] = ACTIONS(5054), - [anon_sym_for] = ACTIONS(5054), - [anon_sym_while] = ACTIONS(5054), - [anon_sym_if] = ACTIONS(5054), - [anon_sym_fun] = ACTIONS(5054), - [anon_sym_try] = ACTIONS(5054), - [anon_sym_match] = ACTIONS(5054), - [anon_sym_match_BANG] = ACTIONS(5052), - [anon_sym_function] = ACTIONS(5054), - [anon_sym_use] = ACTIONS(5054), - [anon_sym_use_BANG] = ACTIONS(5052), - [anon_sym_do_BANG] = ACTIONS(5052), - [anon_sym_begin] = ACTIONS(5054), - [anon_sym_default] = ACTIONS(5054), - [anon_sym_static] = ACTIONS(5054), - [anon_sym_member] = ACTIONS(5054), - [anon_sym_exception] = ACTIONS(5054), - [anon_sym_abstract] = ACTIONS(5054), - [anon_sym_override] = ACTIONS(5054), - [anon_sym_val] = ACTIONS(5054), - [aux_sym_char_token1] = ACTIONS(5052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5054), - [anon_sym_DQUOTE] = ACTIONS(5054), - [anon_sym_AT_DQUOTE] = ACTIONS(5052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5052), - [sym_bool] = ACTIONS(5054), - [sym_unit] = ACTIONS(5052), - [anon_sym_LPAREN_PIPE] = ACTIONS(5054), - [sym_op_identifier] = ACTIONS(5052), - [anon_sym_PLUS] = ACTIONS(5054), - [anon_sym_DASH] = ACTIONS(5054), - [anon_sym_PLUS_DOT] = ACTIONS(5052), - [anon_sym_DASH_DOT] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5052), - [anon_sym_AMP_AMP] = ACTIONS(5052), - [anon_sym_TILDE] = ACTIONS(5052), - [aux_sym_prefix_op_token1] = ACTIONS(5052), - [sym_int] = ACTIONS(5054), - [sym_xint] = ACTIONS(5052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5052), - [anon_sym_POUNDload] = ACTIONS(5052), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5052), - }, [2752] = { [sym_block_comment] = STATE(2752), [sym_compiler_directive_decl] = STATE(2752), [sym_fsi_directive_decl] = STATE(2752), [sym_preproc_line] = STATE(2752), - [ts_builtin_sym_end] = ACTIONS(5056), - [sym_identifier] = ACTIONS(5058), - [anon_sym_namespace] = ACTIONS(5058), - [anon_sym_module] = ACTIONS(5058), - [anon_sym_open] = ACTIONS(5058), - [anon_sym_LBRACK_LT] = ACTIONS(5056), - [anon_sym_return] = ACTIONS(5058), - [anon_sym_type] = ACTIONS(5058), - [anon_sym_do] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_let] = ACTIONS(5058), - [anon_sym_let_BANG] = ACTIONS(5056), - [aux_sym_access_modifier_token1] = ACTIONS(5056), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_null] = ACTIONS(5058), - [anon_sym_AMP] = ACTIONS(5058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_LBRACK_PIPE] = ACTIONS(5056), - [anon_sym_LBRACE] = ACTIONS(5058), - [anon_sym_LT_AT] = ACTIONS(5058), - [anon_sym_LT_AT_AT] = ACTIONS(5056), - [anon_sym_LBRACE_PIPE] = ACTIONS(5056), - [anon_sym_new] = ACTIONS(5058), - [anon_sym_return_BANG] = ACTIONS(5056), - [anon_sym_yield] = ACTIONS(5058), - [anon_sym_yield_BANG] = ACTIONS(5056), - [anon_sym_lazy] = ACTIONS(5058), - [anon_sym_assert] = ACTIONS(5058), - [anon_sym_upcast] = ACTIONS(5058), - [anon_sym_downcast] = ACTIONS(5058), - [anon_sym_for] = ACTIONS(5058), - [anon_sym_while] = ACTIONS(5058), - [anon_sym_if] = ACTIONS(5058), - [anon_sym_fun] = ACTIONS(5058), - [anon_sym_try] = ACTIONS(5058), - [anon_sym_match] = ACTIONS(5058), - [anon_sym_match_BANG] = ACTIONS(5056), - [anon_sym_function] = ACTIONS(5058), - [anon_sym_use] = ACTIONS(5058), - [anon_sym_use_BANG] = ACTIONS(5056), - [anon_sym_do_BANG] = ACTIONS(5056), - [anon_sym_begin] = ACTIONS(5058), - [anon_sym_default] = ACTIONS(5058), - [anon_sym_static] = ACTIONS(5058), - [anon_sym_member] = ACTIONS(5058), - [anon_sym_exception] = ACTIONS(5058), - [anon_sym_abstract] = ACTIONS(5058), - [anon_sym_override] = ACTIONS(5058), - [anon_sym_val] = ACTIONS(5058), - [aux_sym_char_token1] = ACTIONS(5056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5058), - [anon_sym_DQUOTE] = ACTIONS(5058), - [anon_sym_AT_DQUOTE] = ACTIONS(5056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5056), - [sym_bool] = ACTIONS(5058), - [sym_unit] = ACTIONS(5056), - [anon_sym_LPAREN_PIPE] = ACTIONS(5058), - [sym_op_identifier] = ACTIONS(5056), - [anon_sym_PLUS] = ACTIONS(5058), - [anon_sym_DASH] = ACTIONS(5058), - [anon_sym_PLUS_DOT] = ACTIONS(5056), - [anon_sym_DASH_DOT] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5056), - [anon_sym_TILDE] = ACTIONS(5056), - [aux_sym_prefix_op_token1] = ACTIONS(5056), - [sym_int] = ACTIONS(5058), - [sym_xint] = ACTIONS(5056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5056), - [anon_sym_POUNDload] = ACTIONS(5056), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5056), + [ts_builtin_sym_end] = ACTIONS(4549), + [sym_identifier] = ACTIONS(4551), + [anon_sym_namespace] = ACTIONS(4551), + [anon_sym_module] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_LBRACK_LT] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_type] = ACTIONS(4551), + [anon_sym_do] = ACTIONS(4551), + [anon_sym_and] = ACTIONS(4551), + [anon_sym_let] = ACTIONS(4551), + [anon_sym_let_BANG] = ACTIONS(4549), + [aux_sym_access_modifier_token1] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_PIPE] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_LT_AT] = ACTIONS(4551), + [anon_sym_LT_AT_AT] = ACTIONS(4549), + [anon_sym_LBRACE_PIPE] = ACTIONS(4549), + [anon_sym_new] = ACTIONS(4551), + [anon_sym_return_BANG] = ACTIONS(4549), + [anon_sym_yield] = ACTIONS(4551), + [anon_sym_yield_BANG] = ACTIONS(4549), + [anon_sym_lazy] = ACTIONS(4551), + [anon_sym_assert] = ACTIONS(4551), + [anon_sym_upcast] = ACTIONS(4551), + [anon_sym_downcast] = ACTIONS(4551), + [anon_sym_for] = ACTIONS(4551), + [anon_sym_while] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_match] = ACTIONS(4551), + [anon_sym_match_BANG] = ACTIONS(4549), + [anon_sym_function] = ACTIONS(4551), + [anon_sym_use] = ACTIONS(4551), + [anon_sym_use_BANG] = ACTIONS(4549), + [anon_sym_do_BANG] = ACTIONS(4549), + [anon_sym_begin] = ACTIONS(4551), + [anon_sym_default] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_member] = ACTIONS(4551), + [anon_sym_exception] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_val] = ACTIONS(4551), + [aux_sym_char_token1] = ACTIONS(4549), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_AT_DQUOTE] = ACTIONS(4549), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [sym_bool] = ACTIONS(4551), + [sym_unit] = ACTIONS(4549), + [anon_sym_LPAREN_PIPE] = ACTIONS(4551), + [sym_op_identifier] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_PLUS_DOT] = ACTIONS(4549), + [anon_sym_DASH_DOT] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [aux_sym_prefix_op_token1] = ACTIONS(4549), + [sym_int] = ACTIONS(4551), + [sym_xint] = ACTIONS(4549), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4549), + [anon_sym_POUNDload] = ACTIONS(4549), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4549), }, [2753] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1837), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2753), [sym_compiler_directive_decl] = STATE(2753), [sym_fsi_directive_decl] = STATE(2753), [sym_preproc_line] = STATE(2753), - [ts_builtin_sym_end] = ACTIONS(5060), - [sym_identifier] = ACTIONS(5062), - [anon_sym_namespace] = ACTIONS(5062), - [anon_sym_module] = ACTIONS(5062), - [anon_sym_open] = ACTIONS(5062), - [anon_sym_LBRACK_LT] = ACTIONS(5060), - [anon_sym_return] = ACTIONS(5062), - [anon_sym_type] = ACTIONS(5062), - [anon_sym_do] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_let] = ACTIONS(5062), - [anon_sym_let_BANG] = ACTIONS(5060), - [aux_sym_access_modifier_token1] = ACTIONS(5060), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_null] = ACTIONS(5062), - [anon_sym_AMP] = ACTIONS(5062), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_LBRACK_PIPE] = ACTIONS(5060), - [anon_sym_LBRACE] = ACTIONS(5062), - [anon_sym_LT_AT] = ACTIONS(5062), - [anon_sym_LT_AT_AT] = ACTIONS(5060), - [anon_sym_LBRACE_PIPE] = ACTIONS(5060), - [anon_sym_new] = ACTIONS(5062), - [anon_sym_return_BANG] = ACTIONS(5060), - [anon_sym_yield] = ACTIONS(5062), - [anon_sym_yield_BANG] = ACTIONS(5060), - [anon_sym_lazy] = ACTIONS(5062), - [anon_sym_assert] = ACTIONS(5062), - [anon_sym_upcast] = ACTIONS(5062), - [anon_sym_downcast] = ACTIONS(5062), - [anon_sym_for] = ACTIONS(5062), - [anon_sym_while] = ACTIONS(5062), - [anon_sym_if] = ACTIONS(5062), - [anon_sym_fun] = ACTIONS(5062), - [anon_sym_try] = ACTIONS(5062), - [anon_sym_match] = ACTIONS(5062), - [anon_sym_match_BANG] = ACTIONS(5060), - [anon_sym_function] = ACTIONS(5062), - [anon_sym_use] = ACTIONS(5062), - [anon_sym_use_BANG] = ACTIONS(5060), - [anon_sym_do_BANG] = ACTIONS(5060), - [anon_sym_begin] = ACTIONS(5062), - [anon_sym_default] = ACTIONS(5062), - [anon_sym_static] = ACTIONS(5062), - [anon_sym_member] = ACTIONS(5062), - [anon_sym_exception] = ACTIONS(5062), - [anon_sym_abstract] = ACTIONS(5062), - [anon_sym_override] = ACTIONS(5062), - [anon_sym_val] = ACTIONS(5062), - [aux_sym_char_token1] = ACTIONS(5060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5062), - [anon_sym_DQUOTE] = ACTIONS(5062), - [anon_sym_AT_DQUOTE] = ACTIONS(5060), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5060), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5060), - [sym_bool] = ACTIONS(5062), - [sym_unit] = ACTIONS(5060), - [anon_sym_LPAREN_PIPE] = ACTIONS(5062), - [sym_op_identifier] = ACTIONS(5060), - [anon_sym_PLUS] = ACTIONS(5062), - [anon_sym_DASH] = ACTIONS(5062), - [anon_sym_PLUS_DOT] = ACTIONS(5060), - [anon_sym_DASH_DOT] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5060), - [anon_sym_TILDE] = ACTIONS(5060), - [aux_sym_prefix_op_token1] = ACTIONS(5060), - [sym_int] = ACTIONS(5062), - [sym_xint] = ACTIONS(5060), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5060), - [anon_sym_POUNDload] = ACTIONS(5060), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5060), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2754] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1537), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1852), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -332989,165 +333487,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2755] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1477), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2755), [sym_compiler_directive_decl] = STATE(2755), [sym_fsi_directive_decl] = STATE(2755), [sym_preproc_line] = STATE(2755), - [ts_builtin_sym_end] = ACTIONS(5064), - [sym_identifier] = ACTIONS(5066), - [anon_sym_namespace] = ACTIONS(5066), - [anon_sym_module] = ACTIONS(5066), - [anon_sym_open] = ACTIONS(5066), - [anon_sym_LBRACK_LT] = ACTIONS(5064), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_type] = ACTIONS(5066), - [anon_sym_do] = ACTIONS(5066), - [anon_sym_and] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_let_BANG] = ACTIONS(5064), - [aux_sym_access_modifier_token1] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_LBRACK_PIPE] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_LT_AT] = ACTIONS(5066), - [anon_sym_LT_AT_AT] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5064), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_return_BANG] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_yield_BANG] = ACTIONS(5064), - [anon_sym_lazy] = ACTIONS(5066), - [anon_sym_assert] = ACTIONS(5066), - [anon_sym_upcast] = ACTIONS(5066), - [anon_sym_downcast] = ACTIONS(5066), - [anon_sym_for] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_match] = ACTIONS(5066), - [anon_sym_match_BANG] = ACTIONS(5064), - [anon_sym_function] = ACTIONS(5066), - [anon_sym_use] = ACTIONS(5066), - [anon_sym_use_BANG] = ACTIONS(5064), - [anon_sym_do_BANG] = ACTIONS(5064), - [anon_sym_begin] = ACTIONS(5066), - [anon_sym_default] = ACTIONS(5066), - [anon_sym_static] = ACTIONS(5066), - [anon_sym_member] = ACTIONS(5066), - [anon_sym_exception] = ACTIONS(5066), - [anon_sym_abstract] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_val] = ACTIONS(5066), - [aux_sym_char_token1] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [anon_sym_AT_DQUOTE] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [sym_bool] = ACTIONS(5066), - [sym_unit] = ACTIONS(5064), - [anon_sym_LPAREN_PIPE] = ACTIONS(5066), - [sym_op_identifier] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_PLUS_DOT] = ACTIONS(5064), - [anon_sym_DASH_DOT] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_prefix_op_token1] = ACTIONS(5064), - [sym_int] = ACTIONS(5066), - [sym_xint] = ACTIONS(5064), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5064), - [anon_sym_POUNDload] = ACTIONS(5064), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5064), - }, - [2756] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1588), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -333156,334 +333570,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, + [2756] = { + [sym_block_comment] = STATE(2756), + [sym_compiler_directive_decl] = STATE(2756), + [sym_fsi_directive_decl] = STATE(2756), + [sym_preproc_line] = STATE(2756), + [ts_builtin_sym_end] = ACTIONS(5050), + [sym_identifier] = ACTIONS(5052), + [anon_sym_namespace] = ACTIONS(5052), + [anon_sym_module] = ACTIONS(5052), + [anon_sym_open] = ACTIONS(5052), + [anon_sym_LBRACK_LT] = ACTIONS(5050), + [anon_sym_return] = ACTIONS(5052), + [anon_sym_type] = ACTIONS(5052), + [anon_sym_do] = ACTIONS(5052), + [anon_sym_and] = ACTIONS(5052), + [anon_sym_let] = ACTIONS(5052), + [anon_sym_let_BANG] = ACTIONS(5050), + [aux_sym_access_modifier_token1] = ACTIONS(5050), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_null] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACK_PIPE] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_LT_AT] = ACTIONS(5052), + [anon_sym_LT_AT_AT] = ACTIONS(5050), + [anon_sym_LBRACE_PIPE] = ACTIONS(5050), + [anon_sym_new] = ACTIONS(5052), + [anon_sym_return_BANG] = ACTIONS(5050), + [anon_sym_yield] = ACTIONS(5052), + [anon_sym_yield_BANG] = ACTIONS(5050), + [anon_sym_lazy] = ACTIONS(5052), + [anon_sym_assert] = ACTIONS(5052), + [anon_sym_upcast] = ACTIONS(5052), + [anon_sym_downcast] = ACTIONS(5052), + [anon_sym_for] = ACTIONS(5052), + [anon_sym_while] = ACTIONS(5052), + [anon_sym_if] = ACTIONS(5052), + [anon_sym_fun] = ACTIONS(5052), + [anon_sym_try] = ACTIONS(5052), + [anon_sym_match] = ACTIONS(5052), + [anon_sym_match_BANG] = ACTIONS(5050), + [anon_sym_function] = ACTIONS(5052), + [anon_sym_use] = ACTIONS(5052), + [anon_sym_use_BANG] = ACTIONS(5050), + [anon_sym_do_BANG] = ACTIONS(5050), + [anon_sym_begin] = ACTIONS(5052), + [anon_sym_default] = ACTIONS(5052), + [anon_sym_static] = ACTIONS(5052), + [anon_sym_member] = ACTIONS(5052), + [anon_sym_exception] = ACTIONS(5052), + [anon_sym_abstract] = ACTIONS(5052), + [anon_sym_override] = ACTIONS(5052), + [anon_sym_val] = ACTIONS(5052), + [aux_sym_char_token1] = ACTIONS(5050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [anon_sym_AT_DQUOTE] = ACTIONS(5050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5050), + [sym_bool] = ACTIONS(5052), + [sym_unit] = ACTIONS(5050), + [anon_sym_LPAREN_PIPE] = ACTIONS(5052), + [sym_op_identifier] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_PLUS_DOT] = ACTIONS(5050), + [anon_sym_DASH_DOT] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_AMP_AMP] = ACTIONS(5050), + [anon_sym_TILDE] = ACTIONS(5050), + [aux_sym_prefix_op_token1] = ACTIONS(5050), + [sym_int] = ACTIONS(5052), + [sym_xint] = ACTIONS(5050), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5050), + [anon_sym_POUNDload] = ACTIONS(5050), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5050), + }, [2757] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5712), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(5068), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [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(5056), + [anon_sym_let] = ACTIONS(5056), + [anon_sym_let_BANG] = ACTIONS(5054), + [aux_sym_access_modifier_token1] = ACTIONS(5054), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_PIPE] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LT_AT] = ACTIONS(5056), + [anon_sym_LT_AT_AT] = ACTIONS(5054), + [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_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), + [anon_sym_default] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_member] = ACTIONS(5056), + [anon_sym_exception] = ACTIONS(5056), + [anon_sym_abstract] = ACTIONS(5056), + [anon_sym_override] = ACTIONS(5056), + [anon_sym_val] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5054), + [anon_sym_POUNDload] = ACTIONS(5054), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5054), }, [2758] = { [sym_block_comment] = STATE(2758), [sym_compiler_directive_decl] = STATE(2758), [sym_fsi_directive_decl] = STATE(2758), [sym_preproc_line] = STATE(2758), - [ts_builtin_sym_end] = ACTIONS(5070), - [sym_identifier] = ACTIONS(5072), - [anon_sym_namespace] = ACTIONS(5072), - [anon_sym_module] = ACTIONS(5072), - [anon_sym_open] = ACTIONS(5072), - [anon_sym_LBRACK_LT] = ACTIONS(5070), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_type] = ACTIONS(5072), - [anon_sym_do] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_let_BANG] = ACTIONS(5070), - [aux_sym_access_modifier_token1] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LBRACK_PIPE] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_LT_AT] = ACTIONS(5072), - [anon_sym_LT_AT_AT] = ACTIONS(5070), - [anon_sym_LBRACE_PIPE] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5072), - [anon_sym_return_BANG] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_yield_BANG] = ACTIONS(5070), - [anon_sym_lazy] = ACTIONS(5072), - [anon_sym_assert] = ACTIONS(5072), - [anon_sym_upcast] = ACTIONS(5072), - [anon_sym_downcast] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_fun] = ACTIONS(5072), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_match_BANG] = ACTIONS(5070), - [anon_sym_function] = ACTIONS(5072), - [anon_sym_use] = ACTIONS(5072), - [anon_sym_use_BANG] = ACTIONS(5070), - [anon_sym_do_BANG] = ACTIONS(5070), - [anon_sym_begin] = ACTIONS(5072), - [anon_sym_default] = ACTIONS(5072), - [anon_sym_static] = ACTIONS(5072), - [anon_sym_member] = ACTIONS(5072), - [anon_sym_exception] = ACTIONS(5072), - [anon_sym_abstract] = ACTIONS(5072), - [anon_sym_override] = ACTIONS(5072), - [anon_sym_val] = ACTIONS(5072), - [aux_sym_char_token1] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE] = ACTIONS(5072), - [anon_sym_AT_DQUOTE] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [sym_bool] = ACTIONS(5072), - [sym_unit] = ACTIONS(5070), - [anon_sym_LPAREN_PIPE] = ACTIONS(5072), - [sym_op_identifier] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5072), - [anon_sym_PLUS_DOT] = ACTIONS(5070), - [anon_sym_DASH_DOT] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [aux_sym_prefix_op_token1] = ACTIONS(5070), - [sym_int] = ACTIONS(5072), - [sym_xint] = ACTIONS(5070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5070), - [anon_sym_POUNDload] = ACTIONS(5070), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5070), + [ts_builtin_sym_end] = ACTIONS(4545), + [sym_identifier] = ACTIONS(4547), + [anon_sym_namespace] = ACTIONS(4547), + [anon_sym_module] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_LBRACK_LT] = ACTIONS(4545), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_type] = ACTIONS(4547), + [anon_sym_do] = ACTIONS(4547), + [anon_sym_and] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4547), + [anon_sym_let_BANG] = ACTIONS(4545), + [aux_sym_access_modifier_token1] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4547), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LBRACK_PIPE] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4547), + [anon_sym_LT_AT] = ACTIONS(4547), + [anon_sym_LT_AT_AT] = ACTIONS(4545), + [anon_sym_LBRACE_PIPE] = ACTIONS(4545), + [anon_sym_new] = ACTIONS(4547), + [anon_sym_return_BANG] = ACTIONS(4545), + [anon_sym_yield] = ACTIONS(4547), + [anon_sym_yield_BANG] = ACTIONS(4545), + [anon_sym_lazy] = ACTIONS(4547), + [anon_sym_assert] = ACTIONS(4547), + [anon_sym_upcast] = ACTIONS(4547), + [anon_sym_downcast] = ACTIONS(4547), + [anon_sym_for] = ACTIONS(4547), + [anon_sym_while] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_match] = ACTIONS(4547), + [anon_sym_match_BANG] = ACTIONS(4545), + [anon_sym_function] = ACTIONS(4547), + [anon_sym_use] = ACTIONS(4547), + [anon_sym_use_BANG] = ACTIONS(4545), + [anon_sym_do_BANG] = ACTIONS(4545), + [anon_sym_begin] = ACTIONS(4547), + [anon_sym_default] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_member] = ACTIONS(4547), + [anon_sym_exception] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_val] = ACTIONS(4547), + [aux_sym_char_token1] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(4547), + [anon_sym_AT_DQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4545), + [sym_bool] = ACTIONS(4547), + [sym_unit] = ACTIONS(4545), + [anon_sym_LPAREN_PIPE] = ACTIONS(4547), + [sym_op_identifier] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_PLUS_DOT] = ACTIONS(4545), + [anon_sym_DASH_DOT] = ACTIONS(4545), + [anon_sym_PERCENT] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [aux_sym_prefix_op_token1] = ACTIONS(4545), + [sym_int] = ACTIONS(4547), + [sym_xint] = ACTIONS(4545), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4545), + [anon_sym_POUNDload] = ACTIONS(4545), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4545), }, [2759] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1555), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [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(5060), + [anon_sym_let] = ACTIONS(5060), + [anon_sym_let_BANG] = ACTIONS(5058), + [aux_sym_access_modifier_token1] = ACTIONS(5058), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_LBRACK_PIPE] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_LT_AT] = ACTIONS(5060), + [anon_sym_LT_AT_AT] = ACTIONS(5058), + [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_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), + [anon_sym_default] = ACTIONS(5060), + [anon_sym_static] = ACTIONS(5060), + [anon_sym_member] = ACTIONS(5060), + [anon_sym_exception] = ACTIONS(5060), + [anon_sym_abstract] = ACTIONS(5060), + [anon_sym_override] = ACTIONS(5060), + [anon_sym_val] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5058), + [anon_sym_POUNDload] = ACTIONS(5058), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5058), }, [2760] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(933), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1493), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -333493,81 +333991,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2761] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(2012), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2717), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -333581,174 +334079,1686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2762), [sym_fsi_directive_decl] = STATE(2762), [sym_preproc_line] = STATE(2762), - [ts_builtin_sym_end] = ACTIONS(5074), - [sym_identifier] = ACTIONS(5076), - [anon_sym_namespace] = ACTIONS(5076), - [anon_sym_module] = ACTIONS(5076), - [anon_sym_open] = ACTIONS(5076), - [anon_sym_LBRACK_LT] = ACTIONS(5074), - [anon_sym_return] = ACTIONS(5076), - [anon_sym_type] = ACTIONS(5076), - [anon_sym_do] = ACTIONS(5076), - [anon_sym_and] = ACTIONS(5076), - [anon_sym_let] = ACTIONS(5076), - [anon_sym_let_BANG] = ACTIONS(5074), - [aux_sym_access_modifier_token1] = ACTIONS(5074), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5076), - [anon_sym_AMP] = ACTIONS(5076), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_LBRACK_PIPE] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_LT_AT] = ACTIONS(5076), - [anon_sym_LT_AT_AT] = ACTIONS(5074), - [anon_sym_LBRACE_PIPE] = ACTIONS(5074), - [anon_sym_new] = ACTIONS(5076), - [anon_sym_return_BANG] = ACTIONS(5074), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_yield_BANG] = ACTIONS(5074), - [anon_sym_lazy] = ACTIONS(5076), - [anon_sym_assert] = ACTIONS(5076), - [anon_sym_upcast] = ACTIONS(5076), - [anon_sym_downcast] = ACTIONS(5076), - [anon_sym_for] = ACTIONS(5076), - [anon_sym_while] = ACTIONS(5076), - [anon_sym_if] = ACTIONS(5076), - [anon_sym_fun] = ACTIONS(5076), - [anon_sym_try] = ACTIONS(5076), - [anon_sym_match] = ACTIONS(5076), - [anon_sym_match_BANG] = ACTIONS(5074), - [anon_sym_function] = ACTIONS(5076), - [anon_sym_use] = ACTIONS(5076), - [anon_sym_use_BANG] = ACTIONS(5074), - [anon_sym_do_BANG] = ACTIONS(5074), - [anon_sym_begin] = ACTIONS(5076), - [anon_sym_default] = ACTIONS(5076), - [anon_sym_static] = ACTIONS(5076), - [anon_sym_member] = ACTIONS(5076), - [anon_sym_exception] = ACTIONS(5076), - [anon_sym_abstract] = ACTIONS(5076), - [anon_sym_override] = ACTIONS(5076), - [anon_sym_val] = ACTIONS(5076), - [aux_sym_char_token1] = ACTIONS(5074), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5076), - [anon_sym_DQUOTE] = ACTIONS(5076), - [anon_sym_AT_DQUOTE] = ACTIONS(5074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5074), - [sym_bool] = ACTIONS(5076), - [sym_unit] = ACTIONS(5074), - [anon_sym_LPAREN_PIPE] = ACTIONS(5076), - [sym_op_identifier] = ACTIONS(5074), - [anon_sym_PLUS] = ACTIONS(5076), - [anon_sym_DASH] = ACTIONS(5076), - [anon_sym_PLUS_DOT] = ACTIONS(5074), - [anon_sym_DASH_DOT] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5074), - [anon_sym_TILDE] = ACTIONS(5074), - [aux_sym_prefix_op_token1] = ACTIONS(5074), - [sym_int] = ACTIONS(5076), - [sym_xint] = ACTIONS(5074), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5074), - [anon_sym_POUNDload] = ACTIONS(5074), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5074), + [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), + [aux_sym_access_modifier_token1] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_null] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_PIPE] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LT_AT] = ACTIONS(5064), + [anon_sym_LT_AT_AT] = ACTIONS(5062), + [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_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), + [anon_sym_default] = ACTIONS(5064), + [anon_sym_static] = ACTIONS(5064), + [anon_sym_member] = ACTIONS(5064), + [anon_sym_exception] = ACTIONS(5064), + [anon_sym_abstract] = ACTIONS(5064), + [anon_sym_override] = ACTIONS(5064), + [anon_sym_val] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5062), + [anon_sym_POUNDload] = ACTIONS(5062), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5062), }, [2763] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2763), [sym_compiler_directive_decl] = STATE(2763), [sym_fsi_directive_decl] = STATE(2763), [sym_preproc_line] = STATE(2763), - [ts_builtin_sym_end] = ACTIONS(5074), - [sym_identifier] = ACTIONS(5076), - [anon_sym_namespace] = ACTIONS(5076), - [anon_sym_module] = ACTIONS(5076), - [anon_sym_open] = ACTIONS(5076), - [anon_sym_LBRACK_LT] = ACTIONS(5074), - [anon_sym_return] = ACTIONS(5076), - [anon_sym_type] = ACTIONS(5076), - [anon_sym_do] = ACTIONS(5076), - [anon_sym_and] = ACTIONS(5076), - [anon_sym_let] = ACTIONS(5076), - [anon_sym_let_BANG] = ACTIONS(5074), - [aux_sym_access_modifier_token1] = ACTIONS(5074), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5076), - [anon_sym_AMP] = ACTIONS(5076), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_LBRACK_PIPE] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_LT_AT] = ACTIONS(5076), - [anon_sym_LT_AT_AT] = ACTIONS(5074), - [anon_sym_LBRACE_PIPE] = ACTIONS(5074), - [anon_sym_new] = ACTIONS(5076), - [anon_sym_return_BANG] = ACTIONS(5074), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_yield_BANG] = ACTIONS(5074), - [anon_sym_lazy] = ACTIONS(5076), - [anon_sym_assert] = ACTIONS(5076), - [anon_sym_upcast] = ACTIONS(5076), - [anon_sym_downcast] = ACTIONS(5076), - [anon_sym_for] = ACTIONS(5076), - [anon_sym_while] = ACTIONS(5076), - [anon_sym_if] = ACTIONS(5076), - [anon_sym_fun] = ACTIONS(5076), - [anon_sym_try] = ACTIONS(5076), - [anon_sym_match] = ACTIONS(5076), - [anon_sym_match_BANG] = ACTIONS(5074), - [anon_sym_function] = ACTIONS(5076), - [anon_sym_use] = ACTIONS(5076), - [anon_sym_use_BANG] = ACTIONS(5074), - [anon_sym_do_BANG] = ACTIONS(5074), - [anon_sym_begin] = ACTIONS(5076), - [anon_sym_default] = ACTIONS(5076), - [anon_sym_static] = ACTIONS(5076), - [anon_sym_member] = ACTIONS(5076), - [anon_sym_exception] = ACTIONS(5076), - [anon_sym_abstract] = ACTIONS(5076), - [anon_sym_override] = ACTIONS(5076), - [anon_sym_val] = ACTIONS(5076), - [aux_sym_char_token1] = ACTIONS(5074), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5076), - [anon_sym_DQUOTE] = ACTIONS(5076), - [anon_sym_AT_DQUOTE] = ACTIONS(5074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5074), - [sym_bool] = ACTIONS(5076), - [sym_unit] = ACTIONS(5074), - [anon_sym_LPAREN_PIPE] = ACTIONS(5076), - [sym_op_identifier] = ACTIONS(5074), - [anon_sym_PLUS] = ACTIONS(5076), - [anon_sym_DASH] = ACTIONS(5076), - [anon_sym_PLUS_DOT] = ACTIONS(5074), - [anon_sym_DASH_DOT] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5074), - [anon_sym_TILDE] = ACTIONS(5074), - [aux_sym_prefix_op_token1] = ACTIONS(5074), - [sym_int] = ACTIONS(5076), - [sym_xint] = ACTIONS(5074), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5074), - [anon_sym_POUNDload] = ACTIONS(5074), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5074), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2721), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2764] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6224), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2765] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(960), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2766] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1873), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2767] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1650), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2768] = { + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5757), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(5066), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2769] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1821), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2770] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1678), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2771] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2723), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2772] = { + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5754), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2773] = { + [sym_block_comment] = STATE(2773), + [sym_compiler_directive_decl] = STATE(2773), + [sym_fsi_directive_decl] = STATE(2773), + [sym_preproc_line] = STATE(2773), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_open] = ACTIONS(2121), + [anon_sym_LBRACK_LT] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_and] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_let_BANG] = ACTIONS(2119), + [aux_sym_access_modifier_token1] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACK_PIPE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LT_AT] = ACTIONS(2121), + [anon_sym_LT_AT_AT] = ACTIONS(2119), + [anon_sym_LBRACE_PIPE] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_return_BANG] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_yield_BANG] = ACTIONS(2119), + [anon_sym_lazy] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2121), + [anon_sym_upcast] = ACTIONS(2121), + [anon_sym_downcast] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_fun] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_match_BANG] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_use_BANG] = ACTIONS(2119), + [anon_sym_do_BANG] = ACTIONS(2119), + [anon_sym_begin] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_member] = ACTIONS(2121), + [anon_sym_exception] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_override] = ACTIONS(2121), + [anon_sym_val] = ACTIONS(2121), + [aux_sym_char_token1] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_AT_DQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [sym_bool] = ACTIONS(2121), + [sym_unit] = ACTIONS(2119), + [anon_sym_LPAREN_PIPE] = ACTIONS(2121), + [sym_op_identifier] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_PLUS_DOT] = ACTIONS(2119), + [anon_sym_DASH_DOT] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [aux_sym_prefix_op_token1] = ACTIONS(2119), + [sym_int] = ACTIONS(2121), + [sym_xint] = ACTIONS(2119), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2119), + [anon_sym_POUNDload] = ACTIONS(2119), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2119), + }, + [2774] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1932), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2774), + [sym_compiler_directive_decl] = STATE(2774), + [sym_fsi_directive_decl] = STATE(2774), + [sym_preproc_line] = STATE(2774), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2775] = { + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5794), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2776] = { + [sym_block_comment] = STATE(2776), + [sym_compiler_directive_decl] = STATE(2776), + [sym_fsi_directive_decl] = STATE(2776), + [sym_preproc_line] = STATE(2776), + [ts_builtin_sym_end] = ACTIONS(4913), + [sym_identifier] = ACTIONS(4915), + [anon_sym_namespace] = ACTIONS(4915), + [anon_sym_module] = ACTIONS(4915), + [anon_sym_open] = ACTIONS(4915), + [anon_sym_LBRACK_LT] = ACTIONS(4913), + [anon_sym_return] = ACTIONS(4915), + [anon_sym_type] = ACTIONS(4915), + [anon_sym_do] = ACTIONS(4915), + [anon_sym_and] = ACTIONS(4915), + [anon_sym_let] = ACTIONS(4915), + [anon_sym_let_BANG] = ACTIONS(4913), + [aux_sym_access_modifier_token1] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_LBRACK_PIPE] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_LT_AT] = ACTIONS(4915), + [anon_sym_LT_AT_AT] = ACTIONS(4913), + [anon_sym_LBRACE_PIPE] = ACTIONS(4913), + [anon_sym_new] = ACTIONS(4915), + [anon_sym_return_BANG] = ACTIONS(4913), + [anon_sym_yield] = ACTIONS(4915), + [anon_sym_yield_BANG] = ACTIONS(4913), + [anon_sym_lazy] = ACTIONS(4915), + [anon_sym_assert] = ACTIONS(4915), + [anon_sym_upcast] = ACTIONS(4915), + [anon_sym_downcast] = ACTIONS(4915), + [anon_sym_for] = ACTIONS(4915), + [anon_sym_while] = ACTIONS(4915), + [anon_sym_if] = ACTIONS(4915), + [anon_sym_fun] = ACTIONS(4915), + [anon_sym_try] = ACTIONS(4915), + [anon_sym_match] = ACTIONS(4915), + [anon_sym_match_BANG] = ACTIONS(4913), + [anon_sym_function] = ACTIONS(4915), + [anon_sym_use] = ACTIONS(4915), + [anon_sym_use_BANG] = ACTIONS(4913), + [anon_sym_do_BANG] = ACTIONS(4913), + [anon_sym_begin] = ACTIONS(4915), + [anon_sym_default] = ACTIONS(4915), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_member] = ACTIONS(4915), + [anon_sym_exception] = ACTIONS(4915), + [anon_sym_abstract] = ACTIONS(4915), + [anon_sym_override] = ACTIONS(4915), + [anon_sym_val] = ACTIONS(4915), + [aux_sym_char_token1] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4915), + [anon_sym_DQUOTE] = ACTIONS(4915), + [anon_sym_AT_DQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4913), + [sym_bool] = ACTIONS(4915), + [sym_unit] = ACTIONS(4913), + [anon_sym_LPAREN_PIPE] = ACTIONS(4915), + [sym_op_identifier] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_PLUS_DOT] = ACTIONS(4913), + [anon_sym_DASH_DOT] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_AMP_AMP] = ACTIONS(4913), + [anon_sym_TILDE] = ACTIONS(4913), + [aux_sym_prefix_op_token1] = ACTIONS(4913), + [sym_int] = ACTIONS(4915), + [sym_xint] = ACTIONS(4913), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4913), + [anon_sym_POUNDload] = ACTIONS(4913), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4913), + }, + [2777] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(2049), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2778] = { + [sym_block_comment] = STATE(2778), + [sym_compiler_directive_decl] = STATE(2778), + [sym_fsi_directive_decl] = STATE(2778), + [sym_preproc_line] = STATE(2778), + [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), + [aux_sym_access_modifier_token1] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5074), + [anon_sym_null] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_LBRACK_PIPE] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5074), + [anon_sym_LT_AT] = ACTIONS(5074), + [anon_sym_LT_AT_AT] = ACTIONS(5072), + [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_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_default] = ACTIONS(5074), + [anon_sym_static] = ACTIONS(5074), + [anon_sym_member] = ACTIONS(5074), + [anon_sym_exception] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_val] = ACTIONS(5074), + [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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5072), + [anon_sym_POUNDload] = ACTIONS(5072), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5072), + }, + [2779] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(955), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2780] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1762), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2781] = { + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5317), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4410), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym__newline] = ACTIONS(5076), + }, + [2782] = { + [sym_block_comment] = STATE(2782), + [sym_compiler_directive_decl] = STATE(2782), + [sym_fsi_directive_decl] = STATE(2782), + [sym_preproc_line] = STATE(2782), [ts_builtin_sym_end] = ACTIONS(5078), [sym_identifier] = ACTIONS(5080), [anon_sym_namespace] = ACTIONS(5080), @@ -333828,95 +335838,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5078), }, - [2765] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1013), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2766] = { - [sym_block_comment] = STATE(2766), - [sym_compiler_directive_decl] = STATE(2766), - [sym_fsi_directive_decl] = STATE(2766), - [sym_preproc_line] = STATE(2766), + [2783] = { + [sym_block_comment] = STATE(2783), + [sym_compiler_directive_decl] = STATE(2783), + [sym_fsi_directive_decl] = STATE(2783), + [sym_preproc_line] = STATE(2783), [ts_builtin_sym_end] = ACTIONS(5082), [sym_identifier] = ACTIONS(5084), [anon_sym_namespace] = ACTIONS(5084), @@ -333996,82 +335922,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5082), }, - [2767] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1562), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [2784] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2748), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -334080,82 +336006,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2768] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1011), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [2785] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5477), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1846), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2785), + [sym_compiler_directive_decl] = STATE(2785), + [sym_fsi_directive_decl] = STATE(2785), + [sym_preproc_line] = STATE(2785), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -334164,82 +336090,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2769] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1731), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [2786] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_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(3759), + [aux_sym__method_defn_repeat1] = STATE(2720), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -334248,11 +336174,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2770] = { - [sym_block_comment] = STATE(2770), - [sym_compiler_directive_decl] = STATE(2770), - [sym_fsi_directive_decl] = STATE(2770), - [sym_preproc_line] = STATE(2770), + [2787] = { + [sym_block_comment] = STATE(2787), + [sym_compiler_directive_decl] = STATE(2787), + [sym_fsi_directive_decl] = STATE(2787), + [sym_preproc_line] = STATE(2787), [ts_builtin_sym_end] = ACTIONS(5086), [sym_identifier] = ACTIONS(5088), [anon_sym_namespace] = ACTIONS(5088), @@ -334332,447 +336258,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5086), }, - [2771] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2738), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [2788] = { + [sym_block_comment] = STATE(2788), + [sym_compiler_directive_decl] = STATE(2788), + [sym_fsi_directive_decl] = STATE(2788), + [sym_preproc_line] = STATE(2788), + [ts_builtin_sym_end] = ACTIONS(4793), + [sym_identifier] = ACTIONS(4795), + [anon_sym_namespace] = ACTIONS(4795), + [anon_sym_module] = ACTIONS(4795), + [anon_sym_open] = ACTIONS(4795), + [anon_sym_LBRACK_LT] = ACTIONS(4793), + [anon_sym_return] = ACTIONS(4795), + [anon_sym_type] = ACTIONS(4795), + [anon_sym_do] = ACTIONS(4795), + [anon_sym_and] = ACTIONS(4795), + [anon_sym_let] = ACTIONS(4795), + [anon_sym_let_BANG] = ACTIONS(4793), + [aux_sym_access_modifier_token1] = ACTIONS(4793), + [anon_sym_LPAREN] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(4795), + [anon_sym_AMP] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4795), + [anon_sym_LBRACK_PIPE] = ACTIONS(4793), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_LT_AT] = ACTIONS(4795), + [anon_sym_LT_AT_AT] = ACTIONS(4793), + [anon_sym_LBRACE_PIPE] = ACTIONS(4793), + [anon_sym_new] = ACTIONS(4795), + [anon_sym_return_BANG] = ACTIONS(4793), + [anon_sym_yield] = ACTIONS(4795), + [anon_sym_yield_BANG] = ACTIONS(4793), + [anon_sym_lazy] = ACTIONS(4795), + [anon_sym_assert] = ACTIONS(4795), + [anon_sym_upcast] = ACTIONS(4795), + [anon_sym_downcast] = ACTIONS(4795), + [anon_sym_for] = ACTIONS(4795), + [anon_sym_while] = ACTIONS(4795), + [anon_sym_if] = ACTIONS(4795), + [anon_sym_fun] = ACTIONS(4795), + [anon_sym_try] = ACTIONS(4795), + [anon_sym_match] = ACTIONS(4795), + [anon_sym_match_BANG] = ACTIONS(4793), + [anon_sym_function] = ACTIONS(4795), + [anon_sym_use] = ACTIONS(4795), + [anon_sym_use_BANG] = ACTIONS(4793), + [anon_sym_do_BANG] = ACTIONS(4793), + [anon_sym_begin] = ACTIONS(4795), + [anon_sym_default] = ACTIONS(4795), + [anon_sym_static] = ACTIONS(4795), + [anon_sym_member] = ACTIONS(4795), + [anon_sym_exception] = ACTIONS(4795), + [anon_sym_abstract] = ACTIONS(4795), + [anon_sym_override] = ACTIONS(4795), + [anon_sym_val] = ACTIONS(4795), + [aux_sym_char_token1] = ACTIONS(4793), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4795), + [anon_sym_DQUOTE] = ACTIONS(4795), + [anon_sym_AT_DQUOTE] = ACTIONS(4793), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4793), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4793), + [sym_bool] = ACTIONS(4795), + [sym_unit] = ACTIONS(4793), + [anon_sym_LPAREN_PIPE] = ACTIONS(4795), + [sym_op_identifier] = ACTIONS(4793), + [anon_sym_PLUS] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4795), + [anon_sym_PLUS_DOT] = ACTIONS(4793), + [anon_sym_DASH_DOT] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4793), + [anon_sym_AMP_AMP] = ACTIONS(4793), + [anon_sym_TILDE] = ACTIONS(4793), + [aux_sym_prefix_op_token1] = ACTIONS(4793), + [sym_int] = ACTIONS(4795), + [sym_xint] = ACTIONS(4793), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4793), + [anon_sym_POUNDload] = ACTIONS(4793), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4793), }, - [2772] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1941), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2773] = { - [sym_block_comment] = STATE(2773), - [sym_compiler_directive_decl] = STATE(2773), - [sym_fsi_directive_decl] = STATE(2773), - [sym_preproc_line] = STATE(2773), - [ts_builtin_sym_end] = ACTIONS(4644), - [sym_identifier] = ACTIONS(4646), - [anon_sym_namespace] = ACTIONS(4646), - [anon_sym_module] = ACTIONS(4646), - [anon_sym_open] = ACTIONS(4646), - [anon_sym_LBRACK_LT] = ACTIONS(4644), - [anon_sym_return] = ACTIONS(4646), - [anon_sym_type] = ACTIONS(4646), - [anon_sym_do] = ACTIONS(4646), - [anon_sym_and] = ACTIONS(4646), - [anon_sym_let] = ACTIONS(4646), - [anon_sym_let_BANG] = ACTIONS(4644), - [aux_sym_access_modifier_token1] = ACTIONS(4644), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_null] = ACTIONS(4646), - [anon_sym_AMP] = ACTIONS(4646), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_LBRACK_PIPE] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(4646), - [anon_sym_LT_AT] = ACTIONS(4646), - [anon_sym_LT_AT_AT] = ACTIONS(4644), - [anon_sym_LBRACE_PIPE] = ACTIONS(4644), - [anon_sym_new] = ACTIONS(4646), - [anon_sym_return_BANG] = ACTIONS(4644), - [anon_sym_yield] = ACTIONS(4646), - [anon_sym_yield_BANG] = ACTIONS(4644), - [anon_sym_lazy] = ACTIONS(4646), - [anon_sym_assert] = ACTIONS(4646), - [anon_sym_upcast] = ACTIONS(4646), - [anon_sym_downcast] = ACTIONS(4646), - [anon_sym_for] = ACTIONS(4646), - [anon_sym_while] = ACTIONS(4646), - [anon_sym_if] = ACTIONS(4646), - [anon_sym_fun] = ACTIONS(4646), - [anon_sym_try] = ACTIONS(4646), - [anon_sym_match] = ACTIONS(4646), - [anon_sym_match_BANG] = ACTIONS(4644), - [anon_sym_function] = ACTIONS(4646), - [anon_sym_use] = ACTIONS(4646), - [anon_sym_use_BANG] = ACTIONS(4644), - [anon_sym_do_BANG] = ACTIONS(4644), - [anon_sym_begin] = ACTIONS(4646), - [anon_sym_default] = ACTIONS(4646), - [anon_sym_static] = ACTIONS(4646), - [anon_sym_member] = ACTIONS(4646), - [anon_sym_exception] = ACTIONS(4646), - [anon_sym_abstract] = ACTIONS(4646), - [anon_sym_override] = ACTIONS(4646), - [anon_sym_val] = ACTIONS(4646), - [aux_sym_char_token1] = ACTIONS(4644), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(4646), - [anon_sym_AT_DQUOTE] = ACTIONS(4644), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4644), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4644), - [sym_bool] = ACTIONS(4646), - [sym_unit] = ACTIONS(4644), - [anon_sym_LPAREN_PIPE] = ACTIONS(4646), - [sym_op_identifier] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_PLUS_DOT] = ACTIONS(4644), - [anon_sym_DASH_DOT] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_AMP_AMP] = ACTIONS(4644), - [anon_sym_TILDE] = ACTIONS(4644), - [aux_sym_prefix_op_token1] = ACTIONS(4644), - [sym_int] = ACTIONS(4646), - [sym_xint] = ACTIONS(4644), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4644), - [anon_sym_POUNDload] = ACTIONS(4644), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4644), - }, - [2774] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1950), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2774), - [sym_compiler_directive_decl] = STATE(2774), - [sym_fsi_directive_decl] = STATE(2774), - [sym_preproc_line] = STATE(2774), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2775] = { - [sym_block_comment] = STATE(2775), - [sym_compiler_directive_decl] = STATE(2775), - [sym_fsi_directive_decl] = STATE(2775), - [sym_preproc_line] = STATE(2775), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_open] = ACTIONS(2105), - [anon_sym_LBRACK_LT] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_BANG] = ACTIONS(2103), - [aux_sym_access_modifier_token1] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LBRACK_PIPE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LT_AT] = ACTIONS(2105), - [anon_sym_LT_AT_AT] = ACTIONS(2103), - [anon_sym_LBRACE_PIPE] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_return_BANG] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_yield_BANG] = ACTIONS(2103), - [anon_sym_lazy] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_upcast] = ACTIONS(2105), - [anon_sym_downcast] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_fun] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_match_BANG] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_use_BANG] = ACTIONS(2103), - [anon_sym_do_BANG] = ACTIONS(2103), - [anon_sym_begin] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_member] = ACTIONS(2105), - [anon_sym_exception] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_val] = ACTIONS(2105), - [aux_sym_char_token1] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_AT_DQUOTE] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2103), - [sym_bool] = ACTIONS(2105), - [sym_unit] = ACTIONS(2103), - [anon_sym_LPAREN_PIPE] = ACTIONS(2105), - [sym_op_identifier] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_PLUS_DOT] = ACTIONS(2103), - [anon_sym_DASH_DOT] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [aux_sym_prefix_op_token1] = ACTIONS(2103), - [sym_int] = ACTIONS(2105), - [sym_xint] = ACTIONS(2103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2103), - [anon_sym_POUNDload] = ACTIONS(2103), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2103), - }, - [2776] = { - [sym_block_comment] = STATE(2776), - [sym_compiler_directive_decl] = STATE(2776), - [sym_fsi_directive_decl] = STATE(2776), - [sym_preproc_line] = STATE(2776), - [ts_builtin_sym_end] = ACTIONS(5090), - [sym_identifier] = ACTIONS(5092), - [anon_sym_namespace] = ACTIONS(5092), - [anon_sym_module] = ACTIONS(5092), - [anon_sym_open] = ACTIONS(5092), - [anon_sym_LBRACK_LT] = ACTIONS(5090), - [anon_sym_return] = ACTIONS(5092), - [anon_sym_type] = ACTIONS(5092), - [anon_sym_do] = ACTIONS(5092), - [anon_sym_and] = ACTIONS(5092), - [anon_sym_let] = ACTIONS(5092), - [anon_sym_let_BANG] = ACTIONS(5090), - [aux_sym_access_modifier_token1] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5092), - [anon_sym_null] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), + [2789] = { + [sym_block_comment] = STATE(2789), + [sym_compiler_directive_decl] = STATE(2789), + [sym_fsi_directive_decl] = STATE(2789), + [sym_preproc_line] = STATE(2789), + [ts_builtin_sym_end] = ACTIONS(5090), + [sym_identifier] = ACTIONS(5092), + [anon_sym_namespace] = ACTIONS(5092), + [anon_sym_module] = ACTIONS(5092), + [anon_sym_open] = ACTIONS(5092), + [anon_sym_LBRACK_LT] = ACTIONS(5090), + [anon_sym_return] = ACTIONS(5092), + [anon_sym_type] = ACTIONS(5092), + [anon_sym_do] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_let] = ACTIONS(5092), + [anon_sym_let_BANG] = ACTIONS(5090), + [aux_sym_access_modifier_token1] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_null] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5092), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5092), [anon_sym_LBRACK_PIPE] = ACTIONS(5090), @@ -334836,683 +336426,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5090), }, - [2777] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6351), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2778] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6101), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2778), - [sym_compiler_directive_decl] = STATE(2778), - [sym_fsi_directive_decl] = STATE(2778), - [sym_preproc_line] = STATE(2778), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2779] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1980), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2780] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1824), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2781] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1760), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2782] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5474), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1682), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2782), - [sym_compiler_directive_decl] = STATE(2782), - [sym_fsi_directive_decl] = STATE(2782), - [sym_preproc_line] = STATE(2782), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2783] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5515), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(6175), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2784] = { - [sym_block_comment] = STATE(2784), - [sym_compiler_directive_decl] = STATE(2784), - [sym_fsi_directive_decl] = STATE(2784), - [sym_preproc_line] = STATE(2784), - [ts_builtin_sym_end] = ACTIONS(4612), - [sym_identifier] = ACTIONS(4614), - [anon_sym_namespace] = ACTIONS(4614), - [anon_sym_module] = ACTIONS(4614), - [anon_sym_open] = ACTIONS(4614), - [anon_sym_LBRACK_LT] = ACTIONS(4612), - [anon_sym_return] = ACTIONS(4614), - [anon_sym_type] = ACTIONS(4614), - [anon_sym_do] = ACTIONS(4614), - [anon_sym_and] = ACTIONS(4614), - [anon_sym_let] = ACTIONS(4614), - [anon_sym_let_BANG] = ACTIONS(4612), - [aux_sym_access_modifier_token1] = ACTIONS(4612), - [anon_sym_LPAREN] = ACTIONS(4614), - [anon_sym_null] = ACTIONS(4614), - [anon_sym_AMP] = ACTIONS(4614), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4614), - [anon_sym_LBRACK_PIPE] = ACTIONS(4612), - [anon_sym_LBRACE] = ACTIONS(4614), - [anon_sym_LT_AT] = ACTIONS(4614), - [anon_sym_LT_AT_AT] = ACTIONS(4612), - [anon_sym_LBRACE_PIPE] = ACTIONS(4612), - [anon_sym_new] = ACTIONS(4614), - [anon_sym_return_BANG] = ACTIONS(4612), - [anon_sym_yield] = ACTIONS(4614), - [anon_sym_yield_BANG] = ACTIONS(4612), - [anon_sym_lazy] = ACTIONS(4614), - [anon_sym_assert] = ACTIONS(4614), - [anon_sym_upcast] = ACTIONS(4614), - [anon_sym_downcast] = ACTIONS(4614), - [anon_sym_for] = ACTIONS(4614), - [anon_sym_while] = ACTIONS(4614), - [anon_sym_if] = ACTIONS(4614), - [anon_sym_fun] = ACTIONS(4614), - [anon_sym_try] = ACTIONS(4614), - [anon_sym_match] = ACTIONS(4614), - [anon_sym_match_BANG] = ACTIONS(4612), - [anon_sym_function] = ACTIONS(4614), - [anon_sym_use] = ACTIONS(4614), - [anon_sym_use_BANG] = ACTIONS(4612), - [anon_sym_do_BANG] = ACTIONS(4612), - [anon_sym_begin] = ACTIONS(4614), - [anon_sym_default] = ACTIONS(4614), - [anon_sym_static] = ACTIONS(4614), - [anon_sym_member] = ACTIONS(4614), - [anon_sym_exception] = ACTIONS(4614), - [anon_sym_abstract] = ACTIONS(4614), - [anon_sym_override] = ACTIONS(4614), - [anon_sym_val] = ACTIONS(4614), - [aux_sym_char_token1] = ACTIONS(4612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(4614), - [anon_sym_AT_DQUOTE] = ACTIONS(4612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4612), - [sym_bool] = ACTIONS(4614), - [sym_unit] = ACTIONS(4612), - [anon_sym_LPAREN_PIPE] = ACTIONS(4614), - [sym_op_identifier] = ACTIONS(4612), - [anon_sym_PLUS] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(4614), - [anon_sym_PLUS_DOT] = ACTIONS(4612), - [anon_sym_DASH_DOT] = ACTIONS(4612), - [anon_sym_PERCENT] = ACTIONS(4612), - [anon_sym_AMP_AMP] = ACTIONS(4612), - [anon_sym_TILDE] = ACTIONS(4612), - [aux_sym_prefix_op_token1] = ACTIONS(4612), - [sym_int] = ACTIONS(4614), - [sym_xint] = ACTIONS(4612), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4612), - [anon_sym_POUNDload] = ACTIONS(4612), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4612), - }, - [2785] = { - [sym_block_comment] = STATE(2785), - [sym_compiler_directive_decl] = STATE(2785), - [sym_fsi_directive_decl] = STATE(2785), - [sym_preproc_line] = STATE(2785), + [2790] = { + [sym_block_comment] = STATE(2790), + [sym_compiler_directive_decl] = STATE(2790), + [sym_fsi_directive_decl] = STATE(2790), + [sym_preproc_line] = STATE(2790), [ts_builtin_sym_end] = ACTIONS(5094), [sym_identifier] = ACTIONS(5096), [anon_sym_namespace] = ACTIONS(5096), @@ -335592,11 +336510,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5094), }, - [2786] = { - [sym_block_comment] = STATE(2786), - [sym_compiler_directive_decl] = STATE(2786), - [sym_fsi_directive_decl] = STATE(2786), - [sym_preproc_line] = STATE(2786), + [2791] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5502), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1683), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2792] = { + [sym_block_comment] = STATE(2792), + [sym_compiler_directive_decl] = STATE(2792), + [sym_fsi_directive_decl] = STATE(2792), + [sym_preproc_line] = STATE(2792), [ts_builtin_sym_end] = ACTIONS(5098), [sym_identifier] = ACTIONS(5100), [anon_sym_namespace] = ACTIONS(5100), @@ -335676,11 +336678,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5098), }, - [2787] = { - [sym_block_comment] = STATE(2787), - [sym_compiler_directive_decl] = STATE(2787), - [sym_fsi_directive_decl] = STATE(2787), - [sym_preproc_line] = STATE(2787), + [2793] = { + [sym_block_comment] = STATE(2793), + [sym_compiler_directive_decl] = STATE(2793), + [sym_fsi_directive_decl] = STATE(2793), + [sym_preproc_line] = STATE(2793), [ts_builtin_sym_end] = ACTIONS(5102), [sym_identifier] = ACTIONS(5104), [anon_sym_namespace] = ACTIONS(5104), @@ -335760,11 +336762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5102), }, - [2788] = { - [sym_block_comment] = STATE(2788), - [sym_compiler_directive_decl] = STATE(2788), - [sym_fsi_directive_decl] = STATE(2788), - [sym_preproc_line] = STATE(2788), + [2794] = { + [sym_block_comment] = STATE(2794), + [sym_compiler_directive_decl] = STATE(2794), + [sym_fsi_directive_decl] = STATE(2794), + [sym_preproc_line] = STATE(2794), [ts_builtin_sym_end] = ACTIONS(5106), [sym_identifier] = ACTIONS(5108), [anon_sym_namespace] = ACTIONS(5108), @@ -335844,166 +336846,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5106), }, - [2789] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(2037), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2790] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1969), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2790), - [sym_compiler_directive_decl] = STATE(2790), - [sym_fsi_directive_decl] = STATE(2790), - [sym_preproc_line] = STATE(2790), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [2795] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1498), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -336012,82 +336930,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2791] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1516), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [2796] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1592), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -336096,11 +337014,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2792] = { - [sym_block_comment] = STATE(2792), - [sym_compiler_directive_decl] = STATE(2792), - [sym_fsi_directive_decl] = STATE(2792), - [sym_preproc_line] = STATE(2792), + [2797] = { + [sym_block_comment] = STATE(2797), + [sym_compiler_directive_decl] = STATE(2797), + [sym_fsi_directive_decl] = STATE(2797), + [sym_preproc_line] = STATE(2797), [ts_builtin_sym_end] = ACTIONS(5110), [sym_identifier] = ACTIONS(5112), [anon_sym_namespace] = ACTIONS(5112), @@ -336180,501 +337098,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5110), }, - [2793] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1528), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_comment] = STATE(2793), - [sym_compiler_directive_decl] = STATE(2793), - [sym_fsi_directive_decl] = STATE(2793), - [sym_preproc_line] = STATE(2793), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2794] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1956), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2795] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), - [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2733), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2796] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1658), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2797] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1512), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), - [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, [2798] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5211), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1707), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -336682,168 +337181,251 @@ 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(15), - [sym__newline] = ACTIONS(5114), }, [2799] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5546), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1644), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5114), + [sym_identifier] = ACTIONS(5116), + [anon_sym_namespace] = ACTIONS(5116), + [anon_sym_module] = ACTIONS(5116), + [anon_sym_open] = ACTIONS(5116), + [anon_sym_LBRACK_LT] = ACTIONS(5114), + [anon_sym_return] = ACTIONS(5116), + [anon_sym_type] = ACTIONS(5116), + [anon_sym_do] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_let_BANG] = ACTIONS(5114), + [aux_sym_access_modifier_token1] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LBRACK_PIPE] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_LT_AT] = ACTIONS(5116), + [anon_sym_LT_AT_AT] = ACTIONS(5114), + [anon_sym_LBRACE_PIPE] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5116), + [anon_sym_return_BANG] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5116), + [anon_sym_yield_BANG] = ACTIONS(5114), + [anon_sym_lazy] = ACTIONS(5116), + [anon_sym_assert] = ACTIONS(5116), + [anon_sym_upcast] = ACTIONS(5116), + [anon_sym_downcast] = ACTIONS(5116), + [anon_sym_for] = ACTIONS(5116), + [anon_sym_while] = ACTIONS(5116), + [anon_sym_if] = ACTIONS(5116), + [anon_sym_fun] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5116), + [anon_sym_match_BANG] = ACTIONS(5114), + [anon_sym_function] = ACTIONS(5116), + [anon_sym_use] = ACTIONS(5116), + [anon_sym_use_BANG] = ACTIONS(5114), + [anon_sym_do_BANG] = ACTIONS(5114), + [anon_sym_begin] = ACTIONS(5116), + [anon_sym_default] = ACTIONS(5116), + [anon_sym_static] = ACTIONS(5116), + [anon_sym_member] = ACTIONS(5116), + [anon_sym_exception] = ACTIONS(5116), + [anon_sym_abstract] = ACTIONS(5116), + [anon_sym_override] = ACTIONS(5116), + [anon_sym_val] = ACTIONS(5116), + [aux_sym_char_token1] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_AT_DQUOTE] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [sym_bool] = ACTIONS(5116), + [sym_unit] = ACTIONS(5114), + [anon_sym_LPAREN_PIPE] = ACTIONS(5116), + [sym_op_identifier] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS_DOT] = ACTIONS(5114), + [anon_sym_DASH_DOT] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [aux_sym_prefix_op_token1] = ACTIONS(5114), + [sym_int] = ACTIONS(5116), + [sym_xint] = ACTIONS(5114), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5114), + [anon_sym_POUNDload] = ACTIONS(5114), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5114), }, [2800] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1714), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_comment] = STATE(2800), [sym_compiler_directive_decl] = STATE(2800), [sym_fsi_directive_decl] = STATE(2800), [sym_preproc_line] = STATE(2800), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [ts_builtin_sym_end] = ACTIONS(5118), + [sym_identifier] = ACTIONS(5120), + [anon_sym_namespace] = ACTIONS(5120), + [anon_sym_module] = ACTIONS(5120), + [anon_sym_open] = ACTIONS(5120), + [anon_sym_LBRACK_LT] = ACTIONS(5118), + [anon_sym_return] = ACTIONS(5120), + [anon_sym_type] = ACTIONS(5120), + [anon_sym_do] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_let_BANG] = ACTIONS(5118), + [aux_sym_access_modifier_token1] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LBRACK_PIPE] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_LT_AT] = ACTIONS(5120), + [anon_sym_LT_AT_AT] = ACTIONS(5118), + [anon_sym_LBRACE_PIPE] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5120), + [anon_sym_return_BANG] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5120), + [anon_sym_yield_BANG] = ACTIONS(5118), + [anon_sym_lazy] = ACTIONS(5120), + [anon_sym_assert] = ACTIONS(5120), + [anon_sym_upcast] = ACTIONS(5120), + [anon_sym_downcast] = ACTIONS(5120), + [anon_sym_for] = ACTIONS(5120), + [anon_sym_while] = ACTIONS(5120), + [anon_sym_if] = ACTIONS(5120), + [anon_sym_fun] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5120), + [anon_sym_match_BANG] = ACTIONS(5118), + [anon_sym_function] = ACTIONS(5120), + [anon_sym_use] = ACTIONS(5120), + [anon_sym_use_BANG] = ACTIONS(5118), + [anon_sym_do_BANG] = ACTIONS(5118), + [anon_sym_begin] = ACTIONS(5120), + [anon_sym_default] = ACTIONS(5120), + [anon_sym_static] = ACTIONS(5120), + [anon_sym_member] = ACTIONS(5120), + [anon_sym_exception] = ACTIONS(5120), + [anon_sym_abstract] = ACTIONS(5120), + [anon_sym_override] = ACTIONS(5120), + [anon_sym_val] = ACTIONS(5120), + [aux_sym_char_token1] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [anon_sym_AT_DQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [sym_bool] = ACTIONS(5120), + [sym_unit] = ACTIONS(5118), + [anon_sym_LPAREN_PIPE] = ACTIONS(5120), + [sym_op_identifier] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS_DOT] = ACTIONS(5118), + [anon_sym_DASH_DOT] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [aux_sym_prefix_op_token1] = ACTIONS(5118), + [sym_int] = ACTIONS(5120), + [sym_xint] = ACTIONS(5118), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5118), + [anon_sym_POUNDload] = ACTIONS(5118), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5118), + }, + [2801] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(2052), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_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(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -336852,166 +337434,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2801] = { - [sym_block_comment] = STATE(2801), - [sym_compiler_directive_decl] = STATE(2801), - [sym_fsi_directive_decl] = STATE(2801), - [sym_preproc_line] = STATE(2801), - [ts_builtin_sym_end] = ACTIONS(4971), - [sym_identifier] = ACTIONS(4973), - [anon_sym_namespace] = ACTIONS(4973), - [anon_sym_module] = ACTIONS(4973), - [anon_sym_open] = ACTIONS(4973), - [anon_sym_LBRACK_LT] = ACTIONS(4971), - [anon_sym_return] = ACTIONS(4973), - [anon_sym_type] = ACTIONS(4973), - [anon_sym_do] = ACTIONS(4973), - [anon_sym_and] = ACTIONS(4973), - [anon_sym_let] = ACTIONS(4973), - [anon_sym_let_BANG] = ACTIONS(4971), - [aux_sym_access_modifier_token1] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_null] = ACTIONS(4973), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_LBRACK_PIPE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LT_AT] = ACTIONS(4973), - [anon_sym_LT_AT_AT] = ACTIONS(4971), - [anon_sym_LBRACE_PIPE] = ACTIONS(4971), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_return_BANG] = ACTIONS(4971), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_yield_BANG] = ACTIONS(4971), - [anon_sym_lazy] = ACTIONS(4973), - [anon_sym_assert] = ACTIONS(4973), - [anon_sym_upcast] = ACTIONS(4973), - [anon_sym_downcast] = ACTIONS(4973), - [anon_sym_for] = ACTIONS(4973), - [anon_sym_while] = ACTIONS(4973), - [anon_sym_if] = ACTIONS(4973), - [anon_sym_fun] = ACTIONS(4973), - [anon_sym_try] = ACTIONS(4973), - [anon_sym_match] = ACTIONS(4973), - [anon_sym_match_BANG] = ACTIONS(4971), - [anon_sym_function] = ACTIONS(4973), - [anon_sym_use] = ACTIONS(4973), - [anon_sym_use_BANG] = ACTIONS(4971), - [anon_sym_do_BANG] = ACTIONS(4971), - [anon_sym_begin] = ACTIONS(4973), - [anon_sym_default] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_member] = ACTIONS(4973), - [anon_sym_exception] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_val] = ACTIONS(4973), - [aux_sym_char_token1] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(4973), - [anon_sym_AT_DQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4971), - [sym_bool] = ACTIONS(4973), - [sym_unit] = ACTIONS(4971), - [anon_sym_LPAREN_PIPE] = ACTIONS(4973), - [sym_op_identifier] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_PLUS_DOT] = ACTIONS(4971), - [anon_sym_DASH_DOT] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [aux_sym_prefix_op_token1] = ACTIONS(4971), - [sym_int] = ACTIONS(4973), - [sym_xint] = ACTIONS(4971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4971), - [anon_sym_POUNDload] = ACTIONS(4971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4971), - }, [2802] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6139), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337021,165 +337519,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2803] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5451), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1492), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2803), [sym_compiler_directive_decl] = STATE(2803), [sym_fsi_directive_decl] = STATE(2803), [sym_preproc_line] = STATE(2803), - [ts_builtin_sym_end] = ACTIONS(5116), - [sym_identifier] = ACTIONS(5118), - [anon_sym_namespace] = ACTIONS(5118), - [anon_sym_module] = ACTIONS(5118), - [anon_sym_open] = ACTIONS(5118), - [anon_sym_LBRACK_LT] = ACTIONS(5116), - [anon_sym_return] = ACTIONS(5118), - [anon_sym_type] = ACTIONS(5118), - [anon_sym_do] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_let] = ACTIONS(5118), - [anon_sym_let_BANG] = ACTIONS(5116), - [aux_sym_access_modifier_token1] = ACTIONS(5116), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_null] = ACTIONS(5118), - [anon_sym_AMP] = ACTIONS(5118), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_LBRACK_PIPE] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_LT_AT] = ACTIONS(5118), - [anon_sym_LT_AT_AT] = ACTIONS(5116), - [anon_sym_LBRACE_PIPE] = ACTIONS(5116), - [anon_sym_new] = ACTIONS(5118), - [anon_sym_return_BANG] = ACTIONS(5116), - [anon_sym_yield] = ACTIONS(5118), - [anon_sym_yield_BANG] = ACTIONS(5116), - [anon_sym_lazy] = ACTIONS(5118), - [anon_sym_assert] = ACTIONS(5118), - [anon_sym_upcast] = ACTIONS(5118), - [anon_sym_downcast] = ACTIONS(5118), - [anon_sym_for] = ACTIONS(5118), - [anon_sym_while] = ACTIONS(5118), - [anon_sym_if] = ACTIONS(5118), - [anon_sym_fun] = ACTIONS(5118), - [anon_sym_try] = ACTIONS(5118), - [anon_sym_match] = ACTIONS(5118), - [anon_sym_match_BANG] = ACTIONS(5116), - [anon_sym_function] = ACTIONS(5118), - [anon_sym_use] = ACTIONS(5118), - [anon_sym_use_BANG] = ACTIONS(5116), - [anon_sym_do_BANG] = ACTIONS(5116), - [anon_sym_begin] = ACTIONS(5118), - [anon_sym_default] = ACTIONS(5118), - [anon_sym_static] = ACTIONS(5118), - [anon_sym_member] = ACTIONS(5118), - [anon_sym_exception] = ACTIONS(5118), - [anon_sym_abstract] = ACTIONS(5118), - [anon_sym_override] = ACTIONS(5118), - [anon_sym_val] = ACTIONS(5118), - [aux_sym_char_token1] = ACTIONS(5116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [anon_sym_AT_DQUOTE] = ACTIONS(5116), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5116), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5116), - [sym_bool] = ACTIONS(5118), - [sym_unit] = ACTIONS(5116), - [anon_sym_LPAREN_PIPE] = ACTIONS(5118), - [sym_op_identifier] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5118), - [anon_sym_PLUS_DOT] = ACTIONS(5116), - [anon_sym_DASH_DOT] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_AMP_AMP] = ACTIONS(5116), - [anon_sym_TILDE] = ACTIONS(5116), - [aux_sym_prefix_op_token1] = ACTIONS(5116), - [sym_int] = ACTIONS(5118), - [sym_xint] = ACTIONS(5116), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5116), - [anon_sym_POUNDload] = ACTIONS(5116), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5116), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2804] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5593), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(2035), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [aux_sym__method_defn_repeat1] = STATE(2722), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337189,81 +337687,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2805] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(976), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5499), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1739), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337273,81 +337771,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2806] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5447), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1514), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1487), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337357,165 +337855,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2807] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3415), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), [sym_block_comment] = STATE(2807), [sym_compiler_directive_decl] = STATE(2807), [sym_fsi_directive_decl] = STATE(2807), [sym_preproc_line] = STATE(2807), - [aux_sym_attributes_repeat1] = STATE(3724), - [aux_sym__method_defn_repeat1] = STATE(2721), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5122), + [sym_identifier] = ACTIONS(5124), + [anon_sym_namespace] = ACTIONS(5124), + [anon_sym_module] = ACTIONS(5124), + [anon_sym_open] = ACTIONS(5124), + [anon_sym_LBRACK_LT] = ACTIONS(5122), + [anon_sym_return] = ACTIONS(5124), + [anon_sym_type] = ACTIONS(5124), + [anon_sym_do] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_let] = ACTIONS(5124), + [anon_sym_let_BANG] = ACTIONS(5122), + [aux_sym_access_modifier_token1] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_null] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_LBRACK_PIPE] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_LT_AT] = ACTIONS(5124), + [anon_sym_LT_AT_AT] = ACTIONS(5122), + [anon_sym_LBRACE_PIPE] = ACTIONS(5122), + [anon_sym_new] = ACTIONS(5124), + [anon_sym_return_BANG] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5124), + [anon_sym_yield_BANG] = ACTIONS(5122), + [anon_sym_lazy] = ACTIONS(5124), + [anon_sym_assert] = ACTIONS(5124), + [anon_sym_upcast] = ACTIONS(5124), + [anon_sym_downcast] = ACTIONS(5124), + [anon_sym_for] = ACTIONS(5124), + [anon_sym_while] = ACTIONS(5124), + [anon_sym_if] = ACTIONS(5124), + [anon_sym_fun] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5124), + [anon_sym_match] = ACTIONS(5124), + [anon_sym_match_BANG] = ACTIONS(5122), + [anon_sym_function] = ACTIONS(5124), + [anon_sym_use] = ACTIONS(5124), + [anon_sym_use_BANG] = ACTIONS(5122), + [anon_sym_do_BANG] = ACTIONS(5122), + [anon_sym_begin] = ACTIONS(5124), + [anon_sym_default] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_member] = ACTIONS(5124), + [anon_sym_exception] = ACTIONS(5124), + [anon_sym_abstract] = ACTIONS(5124), + [anon_sym_override] = ACTIONS(5124), + [anon_sym_val] = ACTIONS(5124), + [aux_sym_char_token1] = ACTIONS(5122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [anon_sym_AT_DQUOTE] = ACTIONS(5122), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5122), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5122), + [sym_bool] = ACTIONS(5124), + [sym_unit] = ACTIONS(5122), + [anon_sym_LPAREN_PIPE] = ACTIONS(5124), + [sym_op_identifier] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_PLUS_DOT] = ACTIONS(5122), + [anon_sym_DASH_DOT] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5122), + [aux_sym_prefix_op_token1] = ACTIONS(5122), + [sym_int] = ACTIONS(5124), + [sym_xint] = ACTIONS(5122), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5122), + [anon_sym_POUNDload] = ACTIONS(5122), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5122), }, [2808] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1700), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2739), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337525,81 +338023,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2809] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5577), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(969), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(942), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337609,333 +338107,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2810] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5461), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1517), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3531), + [anon_sym_namespace] = ACTIONS(3531), + [anon_sym_module] = ACTIONS(3531), + [anon_sym_open] = ACTIONS(3531), + [anon_sym_LBRACK_LT] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3531), + [anon_sym_type] = ACTIONS(3531), + [anon_sym_do] = ACTIONS(3531), + [anon_sym_and] = ACTIONS(3531), + [anon_sym_let] = ACTIONS(3531), + [anon_sym_let_BANG] = ACTIONS(3529), + [aux_sym_access_modifier_token1] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3531), + [anon_sym_null] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3531), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(3531), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_LT_AT] = ACTIONS(3531), + [anon_sym_LT_AT_AT] = ACTIONS(3529), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3531), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3531), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3531), + [anon_sym_assert] = ACTIONS(3531), + [anon_sym_upcast] = ACTIONS(3531), + [anon_sym_downcast] = ACTIONS(3531), + [anon_sym_for] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3531), + [anon_sym_if] = ACTIONS(3531), + [anon_sym_fun] = ACTIONS(3531), + [anon_sym_try] = ACTIONS(3531), + [anon_sym_match] = ACTIONS(3531), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3531), + [anon_sym_use] = ACTIONS(3531), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3531), + [anon_sym_default] = ACTIONS(3531), + [anon_sym_static] = ACTIONS(3531), + [anon_sym_member] = ACTIONS(3531), + [anon_sym_exception] = ACTIONS(3531), + [anon_sym_abstract] = ACTIONS(3531), + [anon_sym_override] = ACTIONS(3531), + [anon_sym_val] = ACTIONS(3531), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3531), + [sym_unit] = ACTIONS(3529), + [anon_sym_LPAREN_PIPE] = ACTIONS(3531), + [sym_op_identifier] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3531), + [anon_sym_PLUS_DOT] = ACTIONS(3529), + [anon_sym_DASH_DOT] = ACTIONS(3529), + [anon_sym_PERCENT] = ACTIONS(3529), + [anon_sym_AMP_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3529), + [sym_int] = ACTIONS(3531), + [sym_xint] = ACTIONS(3529), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3529), + [anon_sym_POUNDload] = ACTIONS(3529), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3529), }, [2811] = { [sym_block_comment] = STATE(2811), [sym_compiler_directive_decl] = STATE(2811), [sym_fsi_directive_decl] = STATE(2811), [sym_preproc_line] = STATE(2811), - [ts_builtin_sym_end] = ACTIONS(5120), - [sym_identifier] = ACTIONS(5122), - [anon_sym_namespace] = ACTIONS(5122), - [anon_sym_module] = ACTIONS(5122), - [anon_sym_open] = ACTIONS(5122), - [anon_sym_LBRACK_LT] = ACTIONS(5120), - [anon_sym_return] = ACTIONS(5122), - [anon_sym_type] = ACTIONS(5122), - [anon_sym_do] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_let_BANG] = ACTIONS(5120), - [aux_sym_access_modifier_token1] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LBRACK_PIPE] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_LT_AT] = ACTIONS(5122), - [anon_sym_LT_AT_AT] = ACTIONS(5120), - [anon_sym_LBRACE_PIPE] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5122), - [anon_sym_return_BANG] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5122), - [anon_sym_yield_BANG] = ACTIONS(5120), - [anon_sym_lazy] = ACTIONS(5122), - [anon_sym_assert] = ACTIONS(5122), - [anon_sym_upcast] = ACTIONS(5122), - [anon_sym_downcast] = ACTIONS(5122), - [anon_sym_for] = ACTIONS(5122), - [anon_sym_while] = ACTIONS(5122), - [anon_sym_if] = ACTIONS(5122), - [anon_sym_fun] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5122), - [anon_sym_match] = ACTIONS(5122), - [anon_sym_match_BANG] = ACTIONS(5120), - [anon_sym_function] = ACTIONS(5122), - [anon_sym_use] = ACTIONS(5122), - [anon_sym_use_BANG] = ACTIONS(5120), - [anon_sym_do_BANG] = ACTIONS(5120), - [anon_sym_begin] = ACTIONS(5122), - [anon_sym_default] = ACTIONS(5122), - [anon_sym_static] = ACTIONS(5122), - [anon_sym_member] = ACTIONS(5122), - [anon_sym_exception] = ACTIONS(5122), - [anon_sym_abstract] = ACTIONS(5122), - [anon_sym_override] = ACTIONS(5122), - [anon_sym_val] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [anon_sym_AT_DQUOTE] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [sym_bool] = ACTIONS(5122), - [sym_unit] = ACTIONS(5120), - [anon_sym_LPAREN_PIPE] = ACTIONS(5122), - [sym_op_identifier] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_PLUS_DOT] = ACTIONS(5120), - [anon_sym_DASH_DOT] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5120), - [aux_sym_prefix_op_token1] = ACTIONS(5120), - [sym_int] = ACTIONS(5122), - [sym_xint] = ACTIONS(5120), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5120), - [anon_sym_POUNDload] = ACTIONS(5120), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5120), + [ts_builtin_sym_end] = ACTIONS(5126), + [sym_identifier] = ACTIONS(5128), + [anon_sym_namespace] = ACTIONS(5128), + [anon_sym_module] = ACTIONS(5128), + [anon_sym_open] = ACTIONS(5128), + [anon_sym_LBRACK_LT] = ACTIONS(5126), + [anon_sym_return] = ACTIONS(5128), + [anon_sym_type] = ACTIONS(5128), + [anon_sym_do] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_let_BANG] = ACTIONS(5126), + [aux_sym_access_modifier_token1] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LBRACK_PIPE] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LT_AT] = ACTIONS(5128), + [anon_sym_LT_AT_AT] = ACTIONS(5126), + [anon_sym_LBRACE_PIPE] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5128), + [anon_sym_return_BANG] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5128), + [anon_sym_yield_BANG] = ACTIONS(5126), + [anon_sym_lazy] = ACTIONS(5128), + [anon_sym_assert] = ACTIONS(5128), + [anon_sym_upcast] = ACTIONS(5128), + [anon_sym_downcast] = ACTIONS(5128), + [anon_sym_for] = ACTIONS(5128), + [anon_sym_while] = ACTIONS(5128), + [anon_sym_if] = ACTIONS(5128), + [anon_sym_fun] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5128), + [anon_sym_match_BANG] = ACTIONS(5126), + [anon_sym_function] = ACTIONS(5128), + [anon_sym_use] = ACTIONS(5128), + [anon_sym_use_BANG] = ACTIONS(5126), + [anon_sym_do_BANG] = ACTIONS(5126), + [anon_sym_begin] = ACTIONS(5128), + [anon_sym_default] = ACTIONS(5128), + [anon_sym_static] = ACTIONS(5128), + [anon_sym_member] = ACTIONS(5128), + [anon_sym_exception] = ACTIONS(5128), + [anon_sym_abstract] = ACTIONS(5128), + [anon_sym_override] = ACTIONS(5128), + [anon_sym_val] = ACTIONS(5128), + [aux_sym_char_token1] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [anon_sym_AT_DQUOTE] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [sym_bool] = ACTIONS(5128), + [sym_unit] = ACTIONS(5126), + [anon_sym_LPAREN_PIPE] = ACTIONS(5128), + [sym_op_identifier] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS_DOT] = ACTIONS(5126), + [anon_sym_DASH_DOT] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [aux_sym_prefix_op_token1] = ACTIONS(5126), + [sym_int] = ACTIONS(5128), + [sym_xint] = ACTIONS(5126), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5126), + [anon_sym_POUNDload] = ACTIONS(5126), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5126), }, [2812] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1520), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2812), [sym_compiler_directive_decl] = STATE(2812), [sym_fsi_directive_decl] = STATE(2812), [sym_preproc_line] = STATE(2812), - [ts_builtin_sym_end] = ACTIONS(3646), - [sym_identifier] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_open] = ACTIONS(3648), - [anon_sym_LBRACK_LT] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_let_BANG] = ACTIONS(3646), - [aux_sym_access_modifier_token1] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_null] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LT_AT] = ACTIONS(3648), - [anon_sym_LT_AT_AT] = ACTIONS(3646), - [anon_sym_LBRACE_PIPE] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_return_BANG] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_yield_BANG] = ACTIONS(3646), - [anon_sym_lazy] = ACTIONS(3648), - [anon_sym_assert] = ACTIONS(3648), - [anon_sym_upcast] = ACTIONS(3648), - [anon_sym_downcast] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_fun] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_match] = ACTIONS(3648), - [anon_sym_match_BANG] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_use] = ACTIONS(3648), - [anon_sym_use_BANG] = ACTIONS(3646), - [anon_sym_do_BANG] = ACTIONS(3646), - [anon_sym_begin] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_member] = ACTIONS(3648), - [anon_sym_exception] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_val] = ACTIONS(3648), - [aux_sym_char_token1] = ACTIONS(3646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_AT_DQUOTE] = ACTIONS(3646), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3646), - [sym_bool] = ACTIONS(3648), - [sym_unit] = ACTIONS(3646), - [anon_sym_LPAREN_PIPE] = ACTIONS(3648), - [sym_op_identifier] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [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(3646), - [aux_sym_prefix_op_token1] = ACTIONS(3646), - [sym_int] = ACTIONS(3648), - [sym_xint] = ACTIONS(3646), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3646), - [anon_sym_POUNDload] = ACTIONS(3646), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3646), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2813] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(2026), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(971), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -337945,165 +338443,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2814] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5459), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(977), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2814), [sym_compiler_directive_decl] = STATE(2814), [sym_fsi_directive_decl] = STATE(2814), [sym_preproc_line] = STATE(2814), - [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(5126), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [aux_sym_access_modifier_token1] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [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_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), - [anon_sym_default] = ACTIONS(5126), - [anon_sym_static] = ACTIONS(5126), - [anon_sym_member] = ACTIONS(5126), - [anon_sym_exception] = ACTIONS(5126), - [anon_sym_abstract] = ACTIONS(5126), - [anon_sym_override] = ACTIONS(5126), - [anon_sym_val] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5124), - [anon_sym_POUNDload] = ACTIONS(5124), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2815] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5614), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5532), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1486), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2815), [sym_compiler_directive_decl] = STATE(2815), [sym_fsi_directive_decl] = STATE(2815), [sym_preproc_line] = STATE(2815), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_RPAREN] = ACTIONS(5128), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338113,164 +338611,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2816] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_rule] = STATE(1635), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_comment] = STATE(2816), [sym_compiler_directive_decl] = STATE(2816), [sym_fsi_directive_decl] = STATE(2816), [sym_preproc_line] = STATE(2816), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5130), + [sym_identifier] = ACTIONS(5132), + [anon_sym_namespace] = ACTIONS(5132), + [anon_sym_module] = ACTIONS(5132), + [anon_sym_open] = ACTIONS(5132), + [anon_sym_LBRACK_LT] = ACTIONS(5130), + [anon_sym_return] = ACTIONS(5132), + [anon_sym_type] = ACTIONS(5132), + [anon_sym_do] = ACTIONS(5132), + [anon_sym_and] = ACTIONS(5132), + [anon_sym_let] = ACTIONS(5132), + [anon_sym_let_BANG] = ACTIONS(5130), + [aux_sym_access_modifier_token1] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_null] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_LBRACK_PIPE] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_LT_AT] = ACTIONS(5132), + [anon_sym_LT_AT_AT] = ACTIONS(5130), + [anon_sym_LBRACE_PIPE] = ACTIONS(5130), + [anon_sym_new] = ACTIONS(5132), + [anon_sym_return_BANG] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5132), + [anon_sym_yield_BANG] = ACTIONS(5130), + [anon_sym_lazy] = ACTIONS(5132), + [anon_sym_assert] = ACTIONS(5132), + [anon_sym_upcast] = ACTIONS(5132), + [anon_sym_downcast] = ACTIONS(5132), + [anon_sym_for] = ACTIONS(5132), + [anon_sym_while] = ACTIONS(5132), + [anon_sym_if] = ACTIONS(5132), + [anon_sym_fun] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5132), + [anon_sym_match] = ACTIONS(5132), + [anon_sym_match_BANG] = ACTIONS(5130), + [anon_sym_function] = ACTIONS(5132), + [anon_sym_use] = ACTIONS(5132), + [anon_sym_use_BANG] = ACTIONS(5130), + [anon_sym_do_BANG] = ACTIONS(5130), + [anon_sym_begin] = ACTIONS(5132), + [anon_sym_default] = ACTIONS(5132), + [anon_sym_static] = ACTIONS(5132), + [anon_sym_member] = ACTIONS(5132), + [anon_sym_exception] = ACTIONS(5132), + [anon_sym_abstract] = ACTIONS(5132), + [anon_sym_override] = ACTIONS(5132), + [anon_sym_val] = ACTIONS(5132), + [aux_sym_char_token1] = ACTIONS(5130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [anon_sym_AT_DQUOTE] = ACTIONS(5130), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5130), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5130), + [sym_bool] = ACTIONS(5132), + [sym_unit] = ACTIONS(5130), + [anon_sym_LPAREN_PIPE] = ACTIONS(5132), + [sym_op_identifier] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_PLUS_DOT] = ACTIONS(5130), + [anon_sym_DASH_DOT] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_AMP_AMP] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5130), + [aux_sym_prefix_op_token1] = ACTIONS(5130), + [sym_int] = ACTIONS(5132), + [sym_xint] = ACTIONS(5130), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5130), + [anon_sym_POUNDload] = ACTIONS(5130), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5130), }, [2817] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5637), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5563), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1673), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2817), [sym_compiler_directive_decl] = STATE(2817), [sym_fsi_directive_decl] = STATE(2817), [sym_preproc_line] = STATE(2817), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338280,163 +338779,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2818] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5624), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), [sym_block_comment] = STATE(2818), [sym_compiler_directive_decl] = STATE(2818), [sym_fsi_directive_decl] = STATE(2818), [sym_preproc_line] = STATE(2818), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5130), + [sym_identifier] = ACTIONS(5132), + [anon_sym_namespace] = ACTIONS(5132), + [anon_sym_module] = ACTIONS(5132), + [anon_sym_open] = ACTIONS(5132), + [anon_sym_LBRACK_LT] = ACTIONS(5130), + [anon_sym_return] = ACTIONS(5132), + [anon_sym_type] = ACTIONS(5132), + [anon_sym_do] = ACTIONS(5132), + [anon_sym_and] = ACTIONS(5132), + [anon_sym_let] = ACTIONS(5132), + [anon_sym_let_BANG] = ACTIONS(5130), + [aux_sym_access_modifier_token1] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_null] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_LBRACK_PIPE] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_LT_AT] = ACTIONS(5132), + [anon_sym_LT_AT_AT] = ACTIONS(5130), + [anon_sym_LBRACE_PIPE] = ACTIONS(5130), + [anon_sym_new] = ACTIONS(5132), + [anon_sym_return_BANG] = ACTIONS(5130), + [anon_sym_yield] = ACTIONS(5132), + [anon_sym_yield_BANG] = ACTIONS(5130), + [anon_sym_lazy] = ACTIONS(5132), + [anon_sym_assert] = ACTIONS(5132), + [anon_sym_upcast] = ACTIONS(5132), + [anon_sym_downcast] = ACTIONS(5132), + [anon_sym_for] = ACTIONS(5132), + [anon_sym_while] = ACTIONS(5132), + [anon_sym_if] = ACTIONS(5132), + [anon_sym_fun] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5132), + [anon_sym_match] = ACTIONS(5132), + [anon_sym_match_BANG] = ACTIONS(5130), + [anon_sym_function] = ACTIONS(5132), + [anon_sym_use] = ACTIONS(5132), + [anon_sym_use_BANG] = ACTIONS(5130), + [anon_sym_do_BANG] = ACTIONS(5130), + [anon_sym_begin] = ACTIONS(5132), + [anon_sym_default] = ACTIONS(5132), + [anon_sym_static] = ACTIONS(5132), + [anon_sym_member] = ACTIONS(5132), + [anon_sym_exception] = ACTIONS(5132), + [anon_sym_abstract] = ACTIONS(5132), + [anon_sym_override] = ACTIONS(5132), + [anon_sym_val] = ACTIONS(5132), + [aux_sym_char_token1] = ACTIONS(5130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5132), + [anon_sym_DQUOTE] = ACTIONS(5132), + [anon_sym_AT_DQUOTE] = ACTIONS(5130), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5130), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5130), + [sym_bool] = ACTIONS(5132), + [sym_unit] = ACTIONS(5130), + [anon_sym_LPAREN_PIPE] = ACTIONS(5132), + [sym_op_identifier] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_PLUS_DOT] = ACTIONS(5130), + [anon_sym_DASH_DOT] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_AMP_AMP] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5130), + [aux_sym_prefix_op_token1] = ACTIONS(5130), + [sym_int] = ACTIONS(5132), + [sym_xint] = ACTIONS(5130), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5130), + [anon_sym_POUNDload] = ACTIONS(5130), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5130), }, [2819] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5555), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1572), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2819), [sym_compiler_directive_decl] = STATE(2819), [sym_fsi_directive_decl] = STATE(2819), [sym_preproc_line] = STATE(2819), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338446,80 +338947,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2820] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5663), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2820), [sym_compiler_directive_decl] = STATE(2820), [sym_fsi_directive_decl] = STATE(2820), [sym_preproc_line] = STATE(2820), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2735), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338529,80 +339031,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2821] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5612), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1685), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2821), [sym_compiler_directive_decl] = STATE(2821), [sym_fsi_directive_decl] = STATE(2821), [sym_preproc_line] = STATE(2821), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338612,80 +339115,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2822] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5536), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1528), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2822), [sym_compiler_directive_decl] = STATE(2822), [sym_fsi_directive_decl] = STATE(2822), [sym_preproc_line] = STATE(2822), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338695,80 +339199,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2823] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5626), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(921), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2823), [sym_compiler_directive_decl] = STATE(2823), [sym_fsi_directive_decl] = STATE(2823), [sym_preproc_line] = STATE(2823), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338778,80 +339283,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2824] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5394), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5508), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(6199), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2824), [sym_compiler_directive_decl] = STATE(2824), [sym_fsi_directive_decl] = STATE(2824), [sym_preproc_line] = STATE(2824), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338861,80 +339367,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2825] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5699), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5602), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1425), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2825), [sym_compiler_directive_decl] = STATE(2825), [sym_fsi_directive_decl] = STATE(2825), [sym_preproc_line] = STATE(2825), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5130), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -338944,80 +339451,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2826] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5673), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_rule] = STATE(1974), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2826), [sym_compiler_directive_decl] = STATE(2826), [sym_fsi_directive_decl] = STATE(2826), [sym_preproc_line] = STATE(2826), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5132), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339027,80 +339535,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2827] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5701), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), [sym_block_comment] = STATE(2827), [sym_compiler_directive_decl] = STATE(2827), [sym_fsi_directive_decl] = STATE(2827), [sym_preproc_line] = STATE(2827), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5134), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_open] = ACTIONS(2121), + [anon_sym_LBRACK_LT] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_and] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_let_BANG] = ACTIONS(2119), + [aux_sym_access_modifier_token1] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACK_PIPE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LT_AT] = ACTIONS(2121), + [anon_sym_LT_AT_AT] = ACTIONS(2119), + [anon_sym_LBRACE_PIPE] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_return_BANG] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_yield_BANG] = ACTIONS(2119), + [anon_sym_lazy] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2121), + [anon_sym_upcast] = ACTIONS(2121), + [anon_sym_downcast] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_fun] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_match_BANG] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_use_BANG] = ACTIONS(2119), + [anon_sym_do_BANG] = ACTIONS(2119), + [anon_sym_begin] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_member] = ACTIONS(2121), + [anon_sym_exception] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_override] = ACTIONS(2121), + [anon_sym_val] = ACTIONS(2121), + [aux_sym_char_token1] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_AT_DQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2119), + [sym_bool] = ACTIONS(2121), + [sym_unit] = ACTIONS(2119), + [anon_sym_LPAREN_PIPE] = ACTIONS(2121), + [sym_op_identifier] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_PLUS_DOT] = ACTIONS(2119), + [anon_sym_DASH_DOT] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [aux_sym_prefix_op_token1] = ACTIONS(2119), + [sym_int] = ACTIONS(2121), + [sym_xint] = ACTIONS(2119), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2119), + [anon_sym_POUNDload] = ACTIONS(2119), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2119), + }, + [2828] = { + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3483), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), + [sym_block_comment] = STATE(2828), + [sym_compiler_directive_decl] = STATE(2828), + [sym_fsi_directive_decl] = STATE(2828), + [sym_preproc_line] = STATE(2828), + [aux_sym_attributes_repeat1] = STATE(3759), + [aux_sym__method_defn_repeat1] = STATE(2722), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339109,164 +339702,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), }, - [2828] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), - [sym_block_comment] = STATE(2828), - [sym_compiler_directive_decl] = STATE(2828), - [sym_fsi_directive_decl] = STATE(2828), - [sym_preproc_line] = STATE(2828), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(5136), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(5138), - [anon_sym_module] = ACTIONS(5138), - [anon_sym_open] = ACTIONS(5138), - [anon_sym_LBRACK_LT] = ACTIONS(5136), - [anon_sym_return] = ACTIONS(5138), - [anon_sym_type] = ACTIONS(5138), - [anon_sym_do] = ACTIONS(5138), - [anon_sym_let] = ACTIONS(5138), - [anon_sym_let_BANG] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_null] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_LBRACK_PIPE] = ACTIONS(5136), - [anon_sym_LBRACE] = ACTIONS(5138), - [anon_sym_LT_AT] = ACTIONS(5138), - [anon_sym_LT_AT_AT] = ACTIONS(5136), - [anon_sym_LBRACE_PIPE] = ACTIONS(5136), - [anon_sym_new] = ACTIONS(5138), - [anon_sym_return_BANG] = ACTIONS(5136), - [anon_sym_yield] = ACTIONS(5138), - [anon_sym_yield_BANG] = ACTIONS(5136), - [anon_sym_lazy] = ACTIONS(5138), - [anon_sym_assert] = ACTIONS(5138), - [anon_sym_upcast] = ACTIONS(5138), - [anon_sym_downcast] = ACTIONS(5138), - [anon_sym_for] = ACTIONS(5138), - [anon_sym_while] = ACTIONS(5138), - [anon_sym_if] = ACTIONS(5138), - [anon_sym_fun] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(5138), - [anon_sym_match] = ACTIONS(5138), - [anon_sym_match_BANG] = ACTIONS(5136), - [anon_sym_function] = ACTIONS(5138), - [anon_sym_use] = ACTIONS(5138), - [anon_sym_use_BANG] = ACTIONS(5136), - [anon_sym_do_BANG] = ACTIONS(5136), - [anon_sym_begin] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_exception] = ACTIONS(5138), - [aux_sym_char_token1] = ACTIONS(5136), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5138), - [anon_sym_DQUOTE] = ACTIONS(5138), - [anon_sym_AT_DQUOTE] = ACTIONS(5136), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5136), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5136), - [sym_bool] = ACTIONS(5138), - [sym_unit] = ACTIONS(5136), - [anon_sym_LPAREN_PIPE] = ACTIONS(5138), - [sym_op_identifier] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_PLUS_DOT] = ACTIONS(5136), - [anon_sym_DASH_DOT] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_TILDE] = ACTIONS(5136), - [aux_sym_prefix_op_token1] = ACTIONS(5136), - [sym_int] = ACTIONS(5138), - [sym_xint] = ACTIONS(5136), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5136), - [anon_sym_POUNDload] = ACTIONS(5136), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5136), - }, [2829] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5667), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5697), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_comment] = STATE(2829), [sym_compiler_directive_decl] = STATE(2829), [sym_fsi_directive_decl] = STATE(2829), [sym_preproc_line] = STATE(2829), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339276,80 +339786,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2830] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5538), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5462), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2830), [sym_compiler_directive_decl] = STATE(2830), [sym_fsi_directive_decl] = STATE(2830), [sym_preproc_line] = STATE(2830), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), [anon_sym_LPAREN_PIPE] = ACTIONS(4502), [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339359,80 +339869,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2831] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5346), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5578), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2831), [sym_compiler_directive_decl] = STATE(2831), [sym_fsi_directive_decl] = STATE(2831), [sym_preproc_line] = STATE(2831), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), [anon_sym_LPAREN_PIPE] = ACTIONS(4502), [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339442,80 +339952,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2832] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5544), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5686), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5134), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339525,80 +340035,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2833] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5698), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5795), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339608,80 +340118,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2834] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5598), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5688), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5136), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339691,80 +340201,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2835] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5283), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5701), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339774,80 +340284,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2836] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5695), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5703), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339857,80 +340367,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2837] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5696), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5575), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2837), [sym_compiler_directive_decl] = STATE(2837), [sym_fsi_directive_decl] = STATE(2837), [sym_preproc_line] = STATE(2837), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5134), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -339940,80 +340450,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2838] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5684), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340023,80 +340533,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2839] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5549), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5728), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4502), - [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340106,80 +340616,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2840] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5638), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5681), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2840), [sym_compiler_directive_decl] = STATE(2840), [sym_fsi_directive_decl] = STATE(2840), [sym_preproc_line] = STATE(2840), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5138), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340189,80 +340699,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2841] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3479), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5470), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340272,80 +340782,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2842] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5596), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5572), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340355,163 +340865,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2843] = { - [sym_type_arguments] = STATE(2609), - [sym_long_identifier] = STATE(2620), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5737), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2843), [sym_compiler_directive_decl] = STATE(2843), [sym_fsi_directive_decl] = STATE(2843), [sym_preproc_line] = STATE(2843), - [aux_sym_compound_type_repeat1] = STATE(2588), - [ts_builtin_sym_end] = ACTIONS(5140), - [sym_identifier] = ACTIONS(4333), - [anon_sym_namespace] = ACTIONS(5142), - [anon_sym_module] = ACTIONS(5142), - [anon_sym_open] = ACTIONS(5142), - [anon_sym_LBRACK_LT] = ACTIONS(5140), - [anon_sym_return] = ACTIONS(5142), - [anon_sym_type] = ACTIONS(5142), - [anon_sym_do] = ACTIONS(5142), - [anon_sym_let] = ACTIONS(5142), - [anon_sym_let_BANG] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_null] = ACTIONS(5142), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_LBRACK_PIPE] = ACTIONS(5140), - [anon_sym_LBRACE] = ACTIONS(5142), - [anon_sym_LT_AT] = ACTIONS(5142), - [anon_sym_LT_AT_AT] = ACTIONS(5140), - [anon_sym_LBRACE_PIPE] = ACTIONS(5140), - [anon_sym_new] = ACTIONS(5142), - [anon_sym_return_BANG] = ACTIONS(5140), - [anon_sym_yield] = ACTIONS(5142), - [anon_sym_yield_BANG] = ACTIONS(5140), - [anon_sym_lazy] = ACTIONS(5142), - [anon_sym_assert] = ACTIONS(5142), - [anon_sym_upcast] = ACTIONS(5142), - [anon_sym_downcast] = ACTIONS(5142), - [anon_sym_for] = ACTIONS(5142), - [anon_sym_while] = ACTIONS(5142), - [anon_sym_if] = ACTIONS(5142), - [anon_sym_fun] = ACTIONS(5142), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_try] = ACTIONS(5142), - [anon_sym_match] = ACTIONS(5142), - [anon_sym_match_BANG] = ACTIONS(5140), - [anon_sym_function] = ACTIONS(5142), - [anon_sym_use] = ACTIONS(5142), - [anon_sym_use_BANG] = ACTIONS(5140), - [anon_sym_do_BANG] = ACTIONS(5140), - [anon_sym_begin] = ACTIONS(5142), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_LT2] = ACTIONS(4339), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4341), - [anon_sym_exception] = ACTIONS(5142), - [aux_sym_char_token1] = ACTIONS(5140), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5142), - [anon_sym_DQUOTE] = ACTIONS(5142), - [anon_sym_AT_DQUOTE] = ACTIONS(5140), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5140), - [sym_bool] = ACTIONS(5142), - [sym_unit] = ACTIONS(5140), - [anon_sym_LPAREN_PIPE] = ACTIONS(5142), - [sym_op_identifier] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5142), - [anon_sym_DASH] = ACTIONS(5142), - [anon_sym_PLUS_DOT] = ACTIONS(5140), - [anon_sym_DASH_DOT] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_TILDE] = ACTIONS(5140), - [aux_sym_prefix_op_token1] = ACTIONS(5140), - [sym_int] = ACTIONS(5142), - [sym_xint] = ACTIONS(5140), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5140), - [anon_sym_POUNDload] = ACTIONS(5140), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5140), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2844] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5603), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5717), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2844), [sym_compiler_directive_decl] = STATE(2844), [sym_fsi_directive_decl] = STATE(2844), [sym_preproc_line] = STATE(2844), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340521,80 +341031,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2845] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5509), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5621), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2845), [sym_compiler_directive_decl] = STATE(2845), [sym_fsi_directive_decl] = STATE(2845), [sym_preproc_line] = STATE(2845), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), [anon_sym_LPAREN_PIPE] = ACTIONS(4502), [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340604,80 +341114,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2846] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5724), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5501), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2846), [sym_compiler_directive_decl] = STATE(2846), [sym_fsi_directive_decl] = STATE(2846), [sym_preproc_line] = STATE(2846), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340687,80 +341197,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2847] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5617), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), [sym_block_comment] = STATE(2847), [sym_compiler_directive_decl] = STATE(2847), [sym_fsi_directive_decl] = STATE(2847), [sym_preproc_line] = STATE(2847), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), + [sym_identifier] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2526), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2526), + [anon_sym_DASH_DOT] = ACTIONS(2526), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2526), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_y] = ACTIONS(4871), + [anon_sym_uy] = ACTIONS(4873), + [anon_sym_s] = ACTIONS(4875), + [anon_sym_us] = ACTIONS(4877), + [anon_sym_l] = ACTIONS(4879), + [aux_sym_uint32_token1] = ACTIONS(4881), + [anon_sym_n] = ACTIONS(4883), + [anon_sym_un] = ACTIONS(4885), + [anon_sym_L] = ACTIONS(4887), + [aux_sym_uint64_token1] = ACTIONS(4889), + [anon_sym_lf] = ACTIONS(5140), + [anon_sym_LF] = ACTIONS(5142), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340768,82 +341277,83 @@ 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(15), + [anon_sym_POUNDif] = ACTIONS(2526), }, [2848] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5705), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5643), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2848), [sym_compiler_directive_decl] = STATE(2848), [sym_fsi_directive_decl] = STATE(2848), [sym_preproc_line] = STATE(2848), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5144), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340853,80 +341363,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2849] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5688), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5721), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2849), [sym_compiler_directive_decl] = STATE(2849), [sym_fsi_directive_decl] = STATE(2849), [sym_preproc_line] = STATE(2849), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -340936,80 +341446,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2850] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), [sym__pattern] = STATE(5718), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2850), [sym_compiler_directive_decl] = STATE(2850), [sym_fsi_directive_decl] = STATE(2850), [sym_preproc_line] = STATE(2850), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341019,80 +341529,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2851] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5708), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5724), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2851), [sym_compiler_directive_decl] = STATE(2851), [sym_fsi_directive_decl] = STATE(2851), [sym_preproc_line] = STATE(2851), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5146), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341102,80 +341612,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2852] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5711), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5569), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2852), [sym_compiler_directive_decl] = STATE(2852), [sym_fsi_directive_decl] = STATE(2852), [sym_preproc_line] = STATE(2852), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5148), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341185,80 +341695,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2853] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5619), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2853), [sym_compiler_directive_decl] = STATE(2853), [sym_fsi_directive_decl] = STATE(2853), [sym_preproc_line] = STATE(2853), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5144), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341268,80 +341778,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2854] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5716), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3543), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2854), [sym_compiler_directive_decl] = STATE(2854), [sym_fsi_directive_decl] = STATE(2854), [sym_preproc_line] = STATE(2854), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5150), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341351,80 +341861,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2855] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5471), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5731), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2855), [sym_compiler_directive_decl] = STATE(2855), [sym_fsi_directive_decl] = STATE(2855), [sym_preproc_line] = STATE(2855), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341434,80 +341944,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2856] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5437), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5287), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2856), [sym_compiler_directive_decl] = STATE(2856), [sym_fsi_directive_decl] = STATE(2856), [sym_preproc_line] = STATE(2856), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341517,80 +342027,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2857] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5434), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5660), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2857), [sym_compiler_directive_decl] = STATE(2857), [sym_fsi_directive_decl] = STATE(2857), [sym_preproc_line] = STATE(2857), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341600,80 +342110,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2858] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5616), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3542), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2858), [sym_compiler_directive_decl] = STATE(2858), [sym_fsi_directive_decl] = STATE(2858), [sym_preproc_line] = STATE(2858), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5134), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341683,80 +342193,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2859] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5425), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3541), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2859), [sym_compiler_directive_decl] = STATE(2859), [sym_fsi_directive_decl] = STATE(2859), [sym_preproc_line] = STATE(2859), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), [anon_sym_LPAREN_PIPE] = ACTIONS(4502), [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341766,80 +342276,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2860] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5665), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2860), [sym_compiler_directive_decl] = STATE(2860), [sym_fsi_directive_decl] = STATE(2860), [sym_preproc_line] = STATE(2860), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341849,80 +342359,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2861] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5496), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3546), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2861), [sym_compiler_directive_decl] = STATE(2861), [sym_fsi_directive_decl] = STATE(2861), [sym_preproc_line] = STATE(2861), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -341932,80 +342442,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2862] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5622), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5715), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2862), [sym_compiler_directive_decl] = STATE(2862), [sym_fsi_directive_decl] = STATE(2862), [sym_preproc_line] = STATE(2862), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5146), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342015,80 +342525,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2863] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5623), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5673), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2863), [sym_compiler_directive_decl] = STATE(2863), [sym_fsi_directive_decl] = STATE(2863), [sym_preproc_line] = STATE(2863), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342098,80 +342608,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2864] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5634), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5617), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2864), [sym_compiler_directive_decl] = STATE(2864), [sym_fsi_directive_decl] = STATE(2864), [sym_preproc_line] = STATE(2864), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342181,80 +342691,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2865] = { - [sym_attributes] = STATE(2853), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5824), - [sym__pattern] = STATE(5627), - [sym_optional_pattern] = STATE(5824), - [sym_type_check_pattern] = STATE(5824), - [sym_attribute_pattern] = STATE(5824), - [sym_paren_pattern] = STATE(5824), - [sym_as_pattern] = STATE(5824), - [sym_cons_pattern] = STATE(5824), - [sym_disjunct_pattern] = STATE(5824), - [sym_conjunct_pattern] = STATE(5824), - [sym_typed_pattern] = STATE(5824), - [sym_list_pattern] = STATE(5824), - [sym_array_pattern] = STATE(5824), - [sym_record_pattern] = STATE(5824), - [sym_identifier_pattern] = STATE(5824), - [sym_long_identifier_or_op] = STATE(2564), - [sym_char] = STATE(5770), - [sym_format_string] = STATE(5769), - [sym__string_literal] = STATE(5769), - [sym_string] = STATE(5770), - [sym_verbatim_string] = STATE(5770), - [sym_bytearray] = STATE(5770), - [sym_verbatim_bytearray] = STATE(5770), - [sym_format_triple_quoted_string] = STATE(5768), - [sym_triple_quoted_string] = STATE(5770), - [sym_const] = STATE(5824), - [sym_long_identifier] = STATE(3417), - [sym_active_pattern] = STATE(3586), - [sym__identifier_or_op] = STATE(3600), - [sym_sbyte] = STATE(5770), - [sym_byte] = STATE(5770), - [sym_int16] = STATE(5770), - [sym_uint16] = STATE(5770), - [sym_int32] = STATE(5770), - [sym_uint32] = STATE(5770), - [sym_nativeint] = STATE(5770), - [sym_unativeint] = STATE(5770), - [sym_int64] = STATE(5770), - [sym_uint64] = STATE(5770), - [sym_ieee32] = STATE(5770), - [sym_ieee64] = STATE(5770), - [sym_bignum] = STATE(5770), - [sym_decimal] = STATE(5770), - [sym_float] = STATE(5411), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5644), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2865), [sym_compiler_directive_decl] = STATE(2865), [sym_fsi_directive_decl] = STATE(2865), [sym_preproc_line] = STATE(2865), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4664), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4795), - [anon_sym__] = ACTIONS(4670), - [anon_sym_QMARK] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4676), - [anon_sym_LBRACK_PIPE] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4680), - [aux_sym_char_token1] = ACTIONS(4797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4799), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_AT_DQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), - [sym_bool] = ACTIONS(4809), - [sym_unit] = ACTIONS(4811), - [anon_sym_LPAREN_PIPE] = ACTIONS(4698), - [sym_op_identifier] = ACTIONS(4700), - [sym_int] = ACTIONS(4813), - [sym_xint] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342264,80 +342774,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2866] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5719), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5744), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2866), [sym_compiler_directive_decl] = STATE(2866), [sym_fsi_directive_decl] = STATE(2866), [sym_preproc_line] = STATE(2866), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5152), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342347,80 +342857,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2867] = { - [sym_attributes] = STATE(2845), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5657), - [sym__pattern] = STATE(5498), - [sym_optional_pattern] = STATE(5657), - [sym_type_check_pattern] = STATE(5657), - [sym_attribute_pattern] = STATE(5657), - [sym_paren_pattern] = STATE(5657), - [sym_as_pattern] = STATE(5657), - [sym_cons_pattern] = STATE(5657), - [sym_disjunct_pattern] = STATE(5657), - [sym_conjunct_pattern] = STATE(5657), - [sym_typed_pattern] = STATE(5657), - [sym_list_pattern] = STATE(5657), - [sym_array_pattern] = STATE(5657), - [sym_record_pattern] = STATE(5657), - [sym_identifier_pattern] = STATE(5657), - [sym_long_identifier_or_op] = STATE(2520), - [sym_char] = STATE(5668), - [sym_format_string] = STATE(5669), - [sym__string_literal] = STATE(5669), - [sym_string] = STATE(5668), - [sym_verbatim_string] = STATE(5668), - [sym_bytearray] = STATE(5668), - [sym_verbatim_bytearray] = STATE(5668), - [sym_format_triple_quoted_string] = STATE(5588), - [sym_triple_quoted_string] = STATE(5668), - [sym_const] = STATE(5657), - [sym_long_identifier] = STATE(3354), - [sym_active_pattern] = STATE(3526), - [sym__identifier_or_op] = STATE(3513), - [sym_sbyte] = STATE(5668), - [sym_byte] = STATE(5668), - [sym_int16] = STATE(5668), - [sym_uint16] = STATE(5668), - [sym_int32] = STATE(5668), - [sym_uint32] = STATE(5668), - [sym_nativeint] = STATE(5668), - [sym_unativeint] = STATE(5668), - [sym_int64] = STATE(5668), - [sym_uint64] = STATE(5668), - [sym_ieee32] = STATE(5668), - [sym_ieee64] = STATE(5668), - [sym_bignum] = STATE(5668), - [sym_decimal] = STATE(5668), - [sym_float] = STATE(5295), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5609), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2867), [sym_compiler_directive_decl] = STATE(2867), [sym_fsi_directive_decl] = STATE(2867), [sym_preproc_line] = STATE(2867), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4468), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4616), - [anon_sym__] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_COLON_QMARK] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_LBRACK_PIPE] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [aux_sym_char_token1] = ACTIONS(4618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4622), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4628), - [sym_bool] = ACTIONS(4630), - [sym_unit] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), [anon_sym_LPAREN_PIPE] = ACTIONS(4502), [sym_op_identifier] = ACTIONS(4504), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4636), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342430,80 +342940,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2868] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5670), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5785), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), [sym_block_comment] = STATE(2868), [sym_compiler_directive_decl] = STATE(2868), [sym_fsi_directive_decl] = STATE(2868), [sym_preproc_line] = STATE(2868), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342513,80 +343023,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2869] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5558), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5426), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(2978), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2869), [sym_compiler_directive_decl] = STATE(2869), [sym_fsi_directive_decl] = STATE(2869), [sym_preproc_line] = STATE(2869), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342596,80 +343106,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2870] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5651), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5683), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2870), [sym_compiler_directive_decl] = STATE(2870), [sym_fsi_directive_decl] = STATE(2870), [sym_preproc_line] = STATE(2870), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5148), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342679,80 +343189,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2871] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5689), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5712), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2871), [sym_compiler_directive_decl] = STATE(2871), [sym_fsi_directive_decl] = STATE(2871), [sym_preproc_line] = STATE(2871), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5130), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5150), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342762,80 +343272,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2872] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5392), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5503), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2872), [sym_compiler_directive_decl] = STATE(2872), [sym_fsi_directive_decl] = STATE(2872), [sym_preproc_line] = STATE(2872), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342845,80 +343355,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2873] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3529), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5457), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2873), [sym_compiler_directive_decl] = STATE(2873), [sym_fsi_directive_decl] = STATE(2873), [sym_preproc_line] = STATE(2873), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -342928,80 +343438,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2874] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5389), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5788), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2874), [sym_compiler_directive_decl] = STATE(2874), [sym_fsi_directive_decl] = STATE(2874), [sym_preproc_line] = STATE(2874), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343011,163 +343521,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2875] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5567), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_comment] = STATE(2875), [sym_compiler_directive_decl] = STATE(2875), [sym_fsi_directive_decl] = STATE(2875), [sym_preproc_line] = STATE(2875), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(5152), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(5154), + [anon_sym_module] = ACTIONS(5154), + [anon_sym_open] = ACTIONS(5154), + [anon_sym_LBRACK_LT] = ACTIONS(5152), + [anon_sym_return] = ACTIONS(5154), + [anon_sym_type] = ACTIONS(5154), + [anon_sym_do] = ACTIONS(5154), + [anon_sym_let] = ACTIONS(5154), + [anon_sym_let_BANG] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_null] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5154), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_LBRACK_PIPE] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_LT_AT] = ACTIONS(5154), + [anon_sym_LT_AT_AT] = ACTIONS(5152), + [anon_sym_LBRACE_PIPE] = ACTIONS(5152), + [anon_sym_new] = ACTIONS(5154), + [anon_sym_return_BANG] = ACTIONS(5152), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_yield_BANG] = ACTIONS(5152), + [anon_sym_lazy] = ACTIONS(5154), + [anon_sym_assert] = ACTIONS(5154), + [anon_sym_upcast] = ACTIONS(5154), + [anon_sym_downcast] = ACTIONS(5154), + [anon_sym_for] = ACTIONS(5154), + [anon_sym_while] = ACTIONS(5154), + [anon_sym_if] = ACTIONS(5154), + [anon_sym_fun] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_match] = ACTIONS(5154), + [anon_sym_match_BANG] = ACTIONS(5152), + [anon_sym_function] = ACTIONS(5154), + [anon_sym_use] = ACTIONS(5154), + [anon_sym_use_BANG] = ACTIONS(5152), + [anon_sym_do_BANG] = ACTIONS(5152), + [anon_sym_begin] = ACTIONS(5154), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_exception] = ACTIONS(5154), + [aux_sym_char_token1] = ACTIONS(5152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5154), + [anon_sym_DQUOTE] = ACTIONS(5154), + [anon_sym_AT_DQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5152), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5152), + [sym_bool] = ACTIONS(5154), + [sym_unit] = ACTIONS(5152), + [anon_sym_LPAREN_PIPE] = ACTIONS(5154), + [sym_op_identifier] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_PLUS_DOT] = ACTIONS(5152), + [anon_sym_DASH_DOT] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_AMP_AMP] = ACTIONS(5152), + [anon_sym_TILDE] = ACTIONS(5152), + [aux_sym_prefix_op_token1] = ACTIONS(5152), + [sym_int] = ACTIONS(5154), + [sym_xint] = ACTIONS(5152), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5152), + [anon_sym_POUNDload] = ACTIONS(5152), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5152), }, [2876] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5639), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5684), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2876), [sym_compiler_directive_decl] = STATE(2876), [sym_fsi_directive_decl] = STATE(2876), [sym_preproc_line] = STATE(2876), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5156), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343177,80 +343687,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2877] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5680), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5727), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2877), [sym_compiler_directive_decl] = STATE(2877), [sym_fsi_directive_decl] = STATE(2877), [sym_preproc_line] = STATE(2877), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5154), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343260,80 +343770,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2878] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5720), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5601), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2878), [sym_compiler_directive_decl] = STATE(2878), [sym_fsi_directive_decl] = STATE(2878), [sym_preproc_line] = STATE(2878), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5150), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343343,80 +343853,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2879] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5578), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5719), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2879), [sym_compiler_directive_decl] = STATE(2879), [sym_fsi_directive_decl] = STATE(2879), [sym_preproc_line] = STATE(2879), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343426,80 +343936,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2880] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5721), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5659), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2880), [sym_compiler_directive_decl] = STATE(2880), [sym_fsi_directive_decl] = STATE(2880), [sym_preproc_line] = STATE(2880), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5156), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5150), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343509,80 +344019,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2881] = { - [sym_attributes] = STATE(2881), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5547), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2333), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3392), - [sym_active_pattern] = STATE(3521), - [sym__identifier_or_op] = STATE(3433), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5706), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2881), [sym_compiler_directive_decl] = STATE(2881), [sym_fsi_directive_decl] = STATE(2881), [sym_preproc_line] = STATE(2881), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4413), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4437), - [sym_op_identifier] = ACTIONS(4439), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343592,80 +344102,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2882] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5417), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5734), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2882), [sym_compiler_directive_decl] = STATE(2882), [sym_fsi_directive_decl] = STATE(2882), [sym_preproc_line] = STATE(2882), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343675,80 +344185,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2883] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5416), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3527), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2883), [sym_compiler_directive_decl] = STATE(2883), [sym_fsi_directive_decl] = STATE(2883), [sym_preproc_line] = STATE(2883), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343758,80 +344268,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2884] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3534), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5691), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2884), [sym_compiler_directive_decl] = STATE(2884), [sym_fsi_directive_decl] = STATE(2884), [sym_preproc_line] = STATE(2884), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5158), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343841,80 +344351,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2885] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5485), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5518), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2885), [sym_compiler_directive_decl] = STATE(2885), [sym_fsi_directive_decl] = STATE(2885), [sym_preproc_line] = STATE(2885), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -343924,80 +344434,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2886] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5592), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2883), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(3608), + [sym__pattern] = STATE(3503), + [sym_optional_pattern] = STATE(3608), + [sym_type_check_pattern] = STATE(3608), + [sym_attribute_pattern] = STATE(3608), + [sym_paren_pattern] = STATE(3608), + [sym_as_pattern] = STATE(3608), + [sym_cons_pattern] = STATE(3608), + [sym_disjunct_pattern] = STATE(3608), + [sym_conjunct_pattern] = STATE(3608), + [sym_typed_pattern] = STATE(3608), + [sym_list_pattern] = STATE(3608), + [sym_array_pattern] = STATE(3608), + [sym_record_pattern] = STATE(3608), + [sym_identifier_pattern] = STATE(3608), + [sym_long_identifier_or_op] = STATE(2576), + [sym_char] = STATE(3398), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3398), + [sym_verbatim_string] = STATE(3398), + [sym_bytearray] = STATE(3398), + [sym_verbatim_bytearray] = STATE(3398), + [sym_format_triple_quoted_string] = STATE(3399), + [sym_triple_quoted_string] = STATE(3398), + [sym_const] = STATE(3608), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(3398), + [sym_byte] = STATE(3398), + [sym_int16] = STATE(3398), + [sym_uint16] = STATE(3398), + [sym_int32] = STATE(3398), + [sym_uint32] = STATE(3398), + [sym_nativeint] = STATE(3398), + [sym_unativeint] = STATE(3398), + [sym_int64] = STATE(3398), + [sym_uint64] = STATE(3398), + [sym_ieee32] = STATE(3398), + [sym_ieee64] = STATE(3398), + [sym_bignum] = STATE(3398), + [sym_decimal] = STATE(3398), + [sym_float] = STATE(3323), [sym_block_comment] = STATE(2886), [sym_compiler_directive_decl] = STATE(2886), [sym_fsi_directive_decl] = STATE(2886), [sym_preproc_line] = STATE(2886), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [anon_sym__] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LBRACK_PIPE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [aux_sym_char_token1] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(4490), + [anon_sym_AT_DQUOTE] = ACTIONS(4492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4496), + [sym_bool] = ACTIONS(4498), + [sym_unit] = ACTIONS(4500), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4506), + [sym_xint] = ACTIONS(4508), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344007,80 +344517,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2887] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3533), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5693), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2887), [sym_compiler_directive_decl] = STATE(2887), [sym_fsi_directive_decl] = STATE(2887), [sym_preproc_line] = STATE(2887), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5160), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344090,80 +344600,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2888] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3531), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5682), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5144), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344173,80 +344683,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2889] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5677), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5689), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_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(3724), - [sym_identifier] = ACTIONS(5134), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344256,80 +344766,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2890] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5728), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5738), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2890), [sym_compiler_directive_decl] = STATE(2890), [sym_fsi_directive_decl] = STATE(2890), [sym_preproc_line] = STATE(2890), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344339,80 +344849,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2891] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5660), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5755), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2891), [sym_compiler_directive_decl] = STATE(2891), [sym_fsi_directive_decl] = STATE(2891), [sym_preproc_line] = STATE(2891), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344422,80 +344932,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2892] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5415), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2892), [sym_compiler_directive_decl] = STATE(2892), [sym_fsi_directive_decl] = STATE(2892), [sym_preproc_line] = STATE(2892), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344505,80 +345015,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2893] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5635), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5711), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2893), [sym_compiler_directive_decl] = STATE(2893), [sym_fsi_directive_decl] = STATE(2893), [sym_preproc_line] = STATE(2893), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5162), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344588,80 +345098,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2894] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5700), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5752), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2894), [sym_compiler_directive_decl] = STATE(2894), [sym_fsi_directive_decl] = STATE(2894), [sym_preproc_line] = STATE(2894), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5158), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344671,163 +345181,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2895] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(2939), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_type_arguments] = STATE(2623), + [sym_long_identifier] = STATE(2614), [sym_block_comment] = STATE(2895), [sym_compiler_directive_decl] = STATE(2895), [sym_fsi_directive_decl] = STATE(2895), [sym_preproc_line] = STATE(2895), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_compound_type_repeat1] = STATE(2587), + [ts_builtin_sym_end] = ACTIONS(5164), + [sym_identifier] = ACTIONS(4328), + [anon_sym_namespace] = ACTIONS(5166), + [anon_sym_module] = ACTIONS(5166), + [anon_sym_open] = ACTIONS(5166), + [anon_sym_LBRACK_LT] = ACTIONS(5164), + [anon_sym_return] = ACTIONS(5166), + [anon_sym_type] = ACTIONS(5166), + [anon_sym_do] = ACTIONS(5166), + [anon_sym_let] = ACTIONS(5166), + [anon_sym_let_BANG] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_null] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5166), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_LBRACK_PIPE] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_LT_AT] = ACTIONS(5166), + [anon_sym_LT_AT_AT] = ACTIONS(5164), + [anon_sym_LBRACE_PIPE] = ACTIONS(5164), + [anon_sym_new] = ACTIONS(5166), + [anon_sym_return_BANG] = ACTIONS(5164), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_yield_BANG] = ACTIONS(5164), + [anon_sym_lazy] = ACTIONS(5166), + [anon_sym_assert] = ACTIONS(5166), + [anon_sym_upcast] = ACTIONS(5166), + [anon_sym_downcast] = ACTIONS(5166), + [anon_sym_for] = ACTIONS(5166), + [anon_sym_while] = ACTIONS(5166), + [anon_sym_if] = ACTIONS(5166), + [anon_sym_fun] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_match] = ACTIONS(5166), + [anon_sym_match_BANG] = ACTIONS(5164), + [anon_sym_function] = ACTIONS(5166), + [anon_sym_use] = ACTIONS(5166), + [anon_sym_use_BANG] = ACTIONS(5164), + [anon_sym_do_BANG] = ACTIONS(5164), + [anon_sym_begin] = ACTIONS(5166), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_LT2] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4336), + [anon_sym_exception] = ACTIONS(5166), + [aux_sym_char_token1] = ACTIONS(5164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5166), + [anon_sym_DQUOTE] = ACTIONS(5166), + [anon_sym_AT_DQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5164), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5164), + [sym_bool] = ACTIONS(5166), + [sym_unit] = ACTIONS(5164), + [anon_sym_LPAREN_PIPE] = ACTIONS(5166), + [sym_op_identifier] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_PLUS_DOT] = ACTIONS(5164), + [anon_sym_DASH_DOT] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_AMP_AMP] = ACTIONS(5164), + [anon_sym_TILDE] = ACTIONS(5164), + [aux_sym_prefix_op_token1] = ACTIONS(5164), + [sym_int] = ACTIONS(5166), + [sym_xint] = ACTIONS(5164), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5164), + [anon_sym_POUNDload] = ACTIONS(5164), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5164), }, [2896] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5409), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2865), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5756), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2513), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2896), [sym_compiler_directive_decl] = STATE(2896), [sym_fsi_directive_decl] = STATE(2896), [sym_preproc_line] = STATE(2896), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344837,80 +345347,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2897] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5593), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), - [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5702), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2897), [sym_compiler_directive_decl] = STATE(2897), [sym_fsi_directive_decl] = STATE(2897), [sym_preproc_line] = STATE(2897), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4724), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5168), [anon_sym_LBRACK_LT] = ACTIONS(4361), [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -344920,80 +345430,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2898] = { - [sym_attributes] = STATE(2898), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(3573), - [sym__pattern] = STATE(3487), - [sym_optional_pattern] = STATE(3573), - [sym_type_check_pattern] = STATE(3573), - [sym_attribute_pattern] = STATE(3573), - [sym_paren_pattern] = STATE(3573), - [sym_as_pattern] = STATE(3573), - [sym_cons_pattern] = STATE(3573), - [sym_disjunct_pattern] = STATE(3573), - [sym_conjunct_pattern] = STATE(3573), - [sym_typed_pattern] = STATE(3573), - [sym_list_pattern] = STATE(3573), - [sym_array_pattern] = STATE(3573), - [sym_record_pattern] = STATE(3573), - [sym_identifier_pattern] = STATE(3573), - [sym_long_identifier_or_op] = STATE(2590), - [sym_char] = STATE(3397), - [sym_format_string] = STATE(3394), - [sym__string_literal] = STATE(3394), - [sym_string] = STATE(3397), - [sym_verbatim_string] = STATE(3397), - [sym_bytearray] = STATE(3397), - [sym_verbatim_bytearray] = STATE(3397), - [sym_format_triple_quoted_string] = STATE(3393), - [sym_triple_quoted_string] = STATE(3397), - [sym_const] = STATE(3573), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(3397), - [sym_byte] = STATE(3397), - [sym_int16] = STATE(3397), - [sym_uint16] = STATE(3397), - [sym_int32] = STATE(3397), - [sym_uint32] = STATE(3397), - [sym_nativeint] = STATE(3397), - [sym_unativeint] = STATE(3397), - [sym_int64] = STATE(3397), - [sym_uint64] = STATE(3397), - [sym_ieee32] = STATE(3397), - [sym_ieee64] = STATE(3397), - [sym_bignum] = STATE(3397), - [sym_decimal] = STATE(3397), - [sym_float] = STATE(3291), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5698), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2898), [sym_compiler_directive_decl] = STATE(2898), [sym_fsi_directive_decl] = STATE(2898), [sym_preproc_line] = STATE(2898), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5150), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4560), - [anon_sym__] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_PIPE] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4572), - [aux_sym_char_token1] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_AT_DQUOTE] = ACTIONS(4387), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4391), - [sym_bool] = ACTIONS(4393), - [sym_unit] = ACTIONS(4395), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4401), - [sym_xint] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -345003,79 +345513,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2899] = { + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5567), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2899), [sym_compiler_directive_decl] = STATE(2899), [sym_fsi_directive_decl] = STATE(2899), [sym_preproc_line] = STATE(2899), - [sym_identifier] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2526), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2526), - [anon_sym_DASH_DOT] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2526), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_y] = ACTIONS(4931), - [anon_sym_uy] = ACTIONS(4933), - [anon_sym_s] = ACTIONS(4935), - [anon_sym_us] = ACTIONS(4937), - [anon_sym_l] = ACTIONS(4939), - [aux_sym_uint32_token1] = ACTIONS(4941), - [anon_sym_n] = ACTIONS(4943), - [anon_sym_un] = ACTIONS(4945), - [anon_sym_L] = ACTIONS(4947), - [aux_sym_uint64_token1] = ACTIONS(4949), - [anon_sym_lf] = ACTIONS(5160), - [anon_sym_LF] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -345083,83 +345594,82 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2526), }, [2900] = { - [sym_attributes] = STATE(2897), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5703), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2577), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3519), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5534), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), [sym_active_pattern] = STATE(3557), - [sym__identifier_or_op] = STATE(3607), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2900), [sym_compiler_directive_decl] = STATE(2900), [sym_fsi_directive_decl] = STATE(2900), [sym_preproc_line] = STATE(2900), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(5164), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4748), - [sym_op_identifier] = ACTIONS(4750), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -345169,80 +345679,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2901] = { - [sym_attributes] = STATE(2861), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5495), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2292), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5623), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2901), [sym_compiler_directive_decl] = STATE(2901), [sym_fsi_directive_decl] = STATE(2901), [sym_preproc_line] = STATE(2901), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -345252,80 +345762,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2902] = { - [sym_attributes] = STATE(2872), - [sym__attribute_set] = STATE(3818), - [sym_repeat_pattern] = STATE(5082), - [sym__pattern] = STATE(5675), - [sym_optional_pattern] = STATE(5082), - [sym_type_check_pattern] = STATE(5082), - [sym_attribute_pattern] = STATE(5082), - [sym_paren_pattern] = STATE(5082), - [sym_as_pattern] = STATE(5082), - [sym_cons_pattern] = STATE(5082), - [sym_disjunct_pattern] = STATE(5082), - [sym_conjunct_pattern] = STATE(5082), - [sym_typed_pattern] = STATE(5082), - [sym_list_pattern] = STATE(5082), - [sym_array_pattern] = STATE(5082), - [sym_record_pattern] = STATE(5082), - [sym_identifier_pattern] = STATE(5082), - [sym_long_identifier_or_op] = STATE(2185), - [sym_char] = STATE(4976), - [sym_format_string] = STATE(5096), - [sym__string_literal] = STATE(5096), - [sym_string] = STATE(4976), - [sym_verbatim_string] = STATE(4976), - [sym_bytearray] = STATE(4976), - [sym_verbatim_bytearray] = STATE(4976), - [sym_format_triple_quoted_string] = STATE(5057), - [sym_triple_quoted_string] = STATE(4976), - [sym_const] = STATE(5082), - [sym_long_identifier] = STATE(3307), - [sym_active_pattern] = STATE(3398), - [sym__identifier_or_op] = STATE(3406), - [sym_sbyte] = STATE(4976), - [sym_byte] = STATE(4976), - [sym_int16] = STATE(4976), - [sym_uint16] = STATE(4976), - [sym_int32] = STATE(4976), - [sym_uint32] = STATE(4976), - [sym_nativeint] = STATE(4976), - [sym_unativeint] = STATE(4976), - [sym_int64] = STATE(4976), - [sym_uint64] = STATE(4976), - [sym_ieee32] = STATE(4976), - [sym_ieee64] = STATE(4976), - [sym_bignum] = STATE(4976), - [sym_decimal] = STATE(4976), - [sym_float] = STATE(4766), + [sym_attributes] = STATE(2846), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5743), + [sym__pattern] = STATE(5620), + [sym_optional_pattern] = STATE(5743), + [sym_type_check_pattern] = STATE(5743), + [sym_attribute_pattern] = STATE(5743), + [sym_paren_pattern] = STATE(5743), + [sym_as_pattern] = STATE(5743), + [sym_cons_pattern] = STATE(5743), + [sym_disjunct_pattern] = STATE(5743), + [sym_conjunct_pattern] = STATE(5743), + [sym_typed_pattern] = STATE(5743), + [sym_list_pattern] = STATE(5743), + [sym_array_pattern] = STATE(5743), + [sym_record_pattern] = STATE(5743), + [sym_identifier_pattern] = STATE(5743), + [sym_long_identifier_or_op] = STATE(2228), + [sym_char] = STATE(5758), + [sym_format_string] = STATE(5759), + [sym__string_literal] = STATE(5759), + [sym_string] = STATE(5758), + [sym_verbatim_string] = STATE(5758), + [sym_bytearray] = STATE(5758), + [sym_verbatim_bytearray] = STATE(5758), + [sym_format_triple_quoted_string] = STATE(5762), + [sym_triple_quoted_string] = STATE(5758), + [sym_const] = STATE(5743), + [sym_long_identifier] = STATE(3436), + [sym_active_pattern] = STATE(3557), + [sym__identifier_or_op] = STATE(3548), + [sym_sbyte] = STATE(5758), + [sym_byte] = STATE(5758), + [sym_int16] = STATE(5758), + [sym_uint16] = STATE(5758), + [sym_int32] = STATE(5758), + [sym_uint32] = STATE(5758), + [sym_nativeint] = STATE(5758), + [sym_unativeint] = STATE(5758), + [sym_int64] = STATE(5758), + [sym_uint64] = STATE(5758), + [sym_ieee32] = STATE(5758), + [sym_ieee64] = STATE(5758), + [sym_bignum] = STATE(5758), + [sym_decimal] = STATE(5758), + [sym_float] = STATE(5293), [sym_block_comment] = STATE(2902), [sym_compiler_directive_decl] = STATE(2902), [sym_fsi_directive_decl] = STATE(2902), [sym_preproc_line] = STATE(2902), - [aux_sym_attributes_repeat1] = STATE(3724), - [sym_identifier] = ACTIONS(4357), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4410), [anon_sym_LBRACK_LT] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4584), - [anon_sym__] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_COLON_QMARK] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4647), + [anon_sym__] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_COLON_QMARK] = ACTIONS(4420), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LBRACK_PIPE] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(4379), - [aux_sym_char_token1] = ACTIONS(4586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4590), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4596), - [sym_bool] = ACTIONS(4598), - [sym_unit] = ACTIONS(4600), - [anon_sym_LPAREN_PIPE] = ACTIONS(4397), - [sym_op_identifier] = ACTIONS(4399), - [sym_int] = ACTIONS(4602), - [sym_xint] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LBRACK_PIPE] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [aux_sym_char_token1] = ACTIONS(4649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_AT_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), + [sym_bool] = ACTIONS(4661), + [sym_unit] = ACTIONS(4663), + [anon_sym_LPAREN_PIPE] = ACTIONS(4444), + [sym_op_identifier] = ACTIONS(4446), + [sym_int] = ACTIONS(4665), + [sym_xint] = ACTIONS(4667), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -345335,105 +345845,1182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2903] = { - [sym_attributes] = STATE(8041), - [sym__attribute_set] = STATE(3962), + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5695), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2903), [sym_compiler_directive_decl] = STATE(2903), [sym_fsi_directive_decl] = STATE(2903), [sym_preproc_line] = STATE(2903), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_type_definition_repeat1] = STATE(2903), - [ts_builtin_sym_end] = ACTIONS(5166), + [aux_sym_attributes_repeat1] = STATE(3759), [sym_identifier] = ACTIONS(5168), - [anon_sym_namespace] = ACTIONS(5168), - [anon_sym_module] = ACTIONS(5168), - [anon_sym_open] = ACTIONS(5168), - [anon_sym_LBRACK_LT] = ACTIONS(5170), - [anon_sym_return] = ACTIONS(5168), - [anon_sym_type] = ACTIONS(5168), - [anon_sym_do] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5173), - [anon_sym_let] = ACTIONS(5168), - [anon_sym_let_BANG] = ACTIONS(5166), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_null] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5168), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_LBRACK_PIPE] = ACTIONS(5166), - [anon_sym_LBRACE] = ACTIONS(5168), - [anon_sym_LT_AT] = ACTIONS(5168), - [anon_sym_LT_AT_AT] = ACTIONS(5166), - [anon_sym_LBRACE_PIPE] = ACTIONS(5166), - [anon_sym_new] = ACTIONS(5168), - [anon_sym_return_BANG] = ACTIONS(5166), - [anon_sym_yield] = ACTIONS(5168), - [anon_sym_yield_BANG] = ACTIONS(5166), - [anon_sym_lazy] = ACTIONS(5168), - [anon_sym_assert] = ACTIONS(5168), - [anon_sym_upcast] = ACTIONS(5168), - [anon_sym_downcast] = ACTIONS(5168), - [anon_sym_for] = ACTIONS(5168), - [anon_sym_while] = ACTIONS(5168), - [anon_sym_if] = ACTIONS(5168), - [anon_sym_fun] = ACTIONS(5168), - [anon_sym_try] = ACTIONS(5168), - [anon_sym_match] = ACTIONS(5168), - [anon_sym_match_BANG] = ACTIONS(5166), - [anon_sym_function] = ACTIONS(5168), - [anon_sym_use] = ACTIONS(5168), - [anon_sym_use_BANG] = ACTIONS(5166), - [anon_sym_do_BANG] = ACTIONS(5166), - [anon_sym_begin] = ACTIONS(5168), - [anon_sym_exception] = ACTIONS(5168), - [aux_sym_char_token1] = ACTIONS(5166), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5168), - [anon_sym_DQUOTE] = ACTIONS(5168), - [anon_sym_AT_DQUOTE] = ACTIONS(5166), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5166), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5166), - [sym_bool] = ACTIONS(5168), - [sym_unit] = ACTIONS(5166), - [anon_sym_LPAREN_PIPE] = ACTIONS(5168), - [sym_op_identifier] = ACTIONS(5166), - [anon_sym_PLUS] = ACTIONS(5168), - [anon_sym_DASH] = ACTIONS(5168), - [anon_sym_PLUS_DOT] = ACTIONS(5166), - [anon_sym_DASH_DOT] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_AMP_AMP] = ACTIONS(5166), - [anon_sym_TILDE] = ACTIONS(5166), - [aux_sym_prefix_op_token1] = ACTIONS(5166), - [sym_int] = ACTIONS(5168), - [sym_xint] = ACTIONS(5166), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5166), - [anon_sym_POUNDload] = ACTIONS(5166), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5166), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2904] = { - [sym_attributes] = STATE(8041), - [sym__attribute_set] = STATE(3962), + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5638), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), [sym_block_comment] = STATE(2904), [sym_compiler_directive_decl] = STATE(2904), [sym_fsi_directive_decl] = STATE(2904), [sym_preproc_line] = STATE(2904), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2905] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5507), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2905), + [sym_compiler_directive_decl] = STATE(2905), + [sym_fsi_directive_decl] = STATE(2905), + [sym_preproc_line] = STATE(2905), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2906] = { + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5694), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2906), + [sym_compiler_directive_decl] = STATE(2906), + [sym_fsi_directive_decl] = STATE(2906), + [sym_preproc_line] = STATE(2906), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(5150), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2907] = { + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5763), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2907), + [sym_compiler_directive_decl] = STATE(2907), + [sym_fsi_directive_decl] = STATE(2907), + [sym_preproc_line] = STATE(2907), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2908] = { + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5704), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), + [sym_block_comment] = STATE(2908), + [sym_compiler_directive_decl] = STATE(2908), + [sym_fsi_directive_decl] = STATE(2908), + [sym_preproc_line] = STATE(2908), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2909] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5639), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2909), + [sym_compiler_directive_decl] = STATE(2909), + [sym_fsi_directive_decl] = STATE(2909), + [sym_preproc_line] = STATE(2909), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2910] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5640), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2910), + [sym_compiler_directive_decl] = STATE(2910), + [sym_fsi_directive_decl] = STATE(2910), + [sym_preproc_line] = STATE(2910), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2911] = { + [sym_attributes] = STATE(2911), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5760), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2579), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3531), + [sym_active_pattern] = STATE(3640), + [sym__identifier_or_op] = STATE(3584), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2911), + [sym_compiler_directive_decl] = STATE(2911), + [sym_fsi_directive_decl] = STATE(2911), + [sym_preproc_line] = STATE(2911), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4671), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_COLON_QMARK] = ACTIONS(4677), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4695), + [sym_op_identifier] = ACTIONS(4697), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2912] = { + [sym_attributes] = STATE(2830), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5321), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2481), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3350), + [sym_active_pattern] = STATE(3390), + [sym__identifier_or_op] = STATE(3385), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2912), + [sym_compiler_directive_decl] = STATE(2912), + [sym_fsi_directive_decl] = STATE(2912), + [sym_preproc_line] = STATE(2912), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4502), + [sym_op_identifier] = ACTIONS(4504), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2913] = { + [sym_attributes] = STATE(2913), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5819), + [sym__pattern] = STATE(5679), + [sym_optional_pattern] = STATE(5819), + [sym_type_check_pattern] = STATE(5819), + [sym_attribute_pattern] = STATE(5819), + [sym_paren_pattern] = STATE(5819), + [sym_as_pattern] = STATE(5819), + [sym_cons_pattern] = STATE(5819), + [sym_disjunct_pattern] = STATE(5819), + [sym_conjunct_pattern] = STATE(5819), + [sym_typed_pattern] = STATE(5819), + [sym_list_pattern] = STATE(5819), + [sym_array_pattern] = STATE(5819), + [sym_record_pattern] = STATE(5819), + [sym_identifier_pattern] = STATE(5819), + [sym_long_identifier_or_op] = STATE(2592), + [sym_char] = STATE(5859), + [sym_format_string] = STATE(5858), + [sym__string_literal] = STATE(5858), + [sym_string] = STATE(5859), + [sym_verbatim_string] = STATE(5859), + [sym_bytearray] = STATE(5859), + [sym_verbatim_bytearray] = STATE(5859), + [sym_format_triple_quoted_string] = STATE(5852), + [sym_triple_quoted_string] = STATE(5859), + [sym_const] = STATE(5819), + [sym_long_identifier] = STATE(3455), + [sym_active_pattern] = STATE(3654), + [sym__identifier_or_op] = STATE(3573), + [sym_sbyte] = STATE(5859), + [sym_byte] = STATE(5859), + [sym_int16] = STATE(5859), + [sym_uint16] = STATE(5859), + [sym_int32] = STATE(5859), + [sym_uint32] = STATE(5859), + [sym_nativeint] = STATE(5859), + [sym_unativeint] = STATE(5859), + [sym_int64] = STATE(5859), + [sym_uint64] = STATE(5859), + [sym_ieee32] = STATE(5859), + [sym_ieee64] = STATE(5859), + [sym_bignum] = STATE(5859), + [sym_decimal] = STATE(5859), + [sym_float] = STATE(5536), + [sym_block_comment] = STATE(2913), + [sym_compiler_directive_decl] = STATE(2913), + [sym_fsi_directive_decl] = STATE(2913), + [sym_preproc_line] = STATE(2913), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4741), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_null] = ACTIONS(4797), + [anon_sym__] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4749), + [anon_sym_COLON_QMARK] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_LBRACK_PIPE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4757), + [aux_sym_char_token1] = ACTIONS(4799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4801), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_AT_DQUOTE] = ACTIONS(4805), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4809), + [sym_bool] = ACTIONS(4811), + [sym_unit] = ACTIONS(4813), + [anon_sym_LPAREN_PIPE] = ACTIONS(4775), + [sym_op_identifier] = ACTIONS(4777), + [sym_int] = ACTIONS(4815), + [sym_xint] = ACTIONS(4817), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2914] = { + [sym_attributes] = STATE(2905), + [sym__attribute_set] = STATE(3878), + [sym_repeat_pattern] = STATE(5113), + [sym__pattern] = STATE(5647), + [sym_optional_pattern] = STATE(5113), + [sym_type_check_pattern] = STATE(5113), + [sym_attribute_pattern] = STATE(5113), + [sym_paren_pattern] = STATE(5113), + [sym_as_pattern] = STATE(5113), + [sym_cons_pattern] = STATE(5113), + [sym_disjunct_pattern] = STATE(5113), + [sym_conjunct_pattern] = STATE(5113), + [sym_typed_pattern] = STATE(5113), + [sym_list_pattern] = STATE(5113), + [sym_array_pattern] = STATE(5113), + [sym_record_pattern] = STATE(5113), + [sym_identifier_pattern] = STATE(5113), + [sym_long_identifier_or_op] = STATE(2180), + [sym_char] = STATE(5140), + [sym_format_string] = STATE(5112), + [sym__string_literal] = STATE(5112), + [sym_string] = STATE(5140), + [sym_verbatim_string] = STATE(5140), + [sym_bytearray] = STATE(5140), + [sym_verbatim_bytearray] = STATE(5140), + [sym_format_triple_quoted_string] = STATE(5115), + [sym_triple_quoted_string] = STATE(5140), + [sym_const] = STATE(5113), + [sym_long_identifier] = STATE(3400), + [sym_active_pattern] = STATE(3493), + [sym__identifier_or_op] = STATE(3544), + [sym_sbyte] = STATE(5140), + [sym_byte] = STATE(5140), + [sym_int16] = STATE(5140), + [sym_uint16] = STATE(5140), + [sym_int32] = STATE(5140), + [sym_uint32] = STATE(5140), + [sym_nativeint] = STATE(5140), + [sym_unativeint] = STATE(5140), + [sym_int64] = STATE(5140), + [sym_uint64] = STATE(5140), + [sym_ieee32] = STATE(5140), + [sym_ieee64] = STATE(5140), + [sym_bignum] = STATE(5140), + [sym_decimal] = STATE(5140), + [sym_float] = STATE(4777), + [sym_block_comment] = STATE(2914), + [sym_compiler_directive_decl] = STATE(2914), + [sym_fsi_directive_decl] = STATE(2914), + [sym_preproc_line] = STATE(2914), + [aux_sym_attributes_repeat1] = STATE(3759), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LBRACK_LT] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_null] = ACTIONS(4520), + [anon_sym__] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_COLON_QMARK] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LBRACK_PIPE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [aux_sym_char_token1] = ACTIONS(4522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_AT_DQUOTE] = ACTIONS(4528), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4532), + [sym_bool] = ACTIONS(4534), + [sym_unit] = ACTIONS(4536), + [anon_sym_LPAREN_PIPE] = ACTIONS(4399), + [sym_op_identifier] = ACTIONS(4401), + [sym_int] = ACTIONS(4538), + [sym_xint] = ACTIONS(4540), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2915] = { + [sym_attributes] = STATE(8209), + [sym__attribute_set] = STATE(4224), + [sym_block_comment] = STATE(2915), + [sym_compiler_directive_decl] = STATE(2915), + [sym_fsi_directive_decl] = STATE(2915), + [sym_preproc_line] = STATE(2915), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_type_definition_repeat1] = STATE(2918), + [ts_builtin_sym_end] = ACTIONS(5170), + [sym_identifier] = ACTIONS(5172), + [anon_sym_namespace] = ACTIONS(5172), + [anon_sym_module] = ACTIONS(5172), + [anon_sym_open] = ACTIONS(5172), + [anon_sym_LBRACK_LT] = ACTIONS(5170), + [anon_sym_return] = ACTIONS(5172), + [anon_sym_type] = ACTIONS(5172), + [anon_sym_do] = ACTIONS(5172), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_let] = ACTIONS(5172), + [anon_sym_let_BANG] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_null] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_LBRACK_PIPE] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_LT_AT] = ACTIONS(5172), + [anon_sym_LT_AT_AT] = ACTIONS(5170), + [anon_sym_LBRACE_PIPE] = ACTIONS(5170), + [anon_sym_new] = ACTIONS(5172), + [anon_sym_return_BANG] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5172), + [anon_sym_yield_BANG] = ACTIONS(5170), + [anon_sym_lazy] = ACTIONS(5172), + [anon_sym_assert] = ACTIONS(5172), + [anon_sym_upcast] = ACTIONS(5172), + [anon_sym_downcast] = ACTIONS(5172), + [anon_sym_for] = ACTIONS(5172), + [anon_sym_while] = ACTIONS(5172), + [anon_sym_if] = ACTIONS(5172), + [anon_sym_fun] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5172), + [anon_sym_match] = ACTIONS(5172), + [anon_sym_match_BANG] = ACTIONS(5170), + [anon_sym_function] = ACTIONS(5172), + [anon_sym_use] = ACTIONS(5172), + [anon_sym_use_BANG] = ACTIONS(5170), + [anon_sym_do_BANG] = ACTIONS(5170), + [anon_sym_begin] = ACTIONS(5172), + [anon_sym_exception] = ACTIONS(5172), + [aux_sym_char_token1] = ACTIONS(5170), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_AT_DQUOTE] = ACTIONS(5170), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5170), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5170), + [sym_bool] = ACTIONS(5172), + [sym_unit] = ACTIONS(5170), + [anon_sym_LPAREN_PIPE] = ACTIONS(5172), + [sym_op_identifier] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_PLUS_DOT] = ACTIONS(5170), + [anon_sym_DASH_DOT] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5170), + [aux_sym_prefix_op_token1] = ACTIONS(5170), + [sym_int] = ACTIONS(5172), + [sym_xint] = ACTIONS(5170), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5170), + [anon_sym_POUNDload] = ACTIONS(5170), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5170), + }, + [2916] = { + [sym_attributes] = STATE(8209), + [sym__attribute_set] = STATE(4224), + [sym_block_comment] = STATE(2916), + [sym_compiler_directive_decl] = STATE(2916), + [sym_fsi_directive_decl] = STATE(2916), + [sym_preproc_line] = STATE(2916), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_type_definition_repeat1] = STATE(2917), + [ts_builtin_sym_end] = ACTIONS(5170), + [sym_identifier] = ACTIONS(5172), + [anon_sym_namespace] = ACTIONS(5172), + [anon_sym_module] = ACTIONS(5172), + [anon_sym_open] = ACTIONS(5172), + [anon_sym_LBRACK_LT] = ACTIONS(5170), + [anon_sym_return] = ACTIONS(5172), + [anon_sym_type] = ACTIONS(5172), + [anon_sym_do] = ACTIONS(5172), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_let] = ACTIONS(5172), + [anon_sym_let_BANG] = ACTIONS(5170), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_null] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_LBRACK_PIPE] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_LT_AT] = ACTIONS(5172), + [anon_sym_LT_AT_AT] = ACTIONS(5170), + [anon_sym_LBRACE_PIPE] = ACTIONS(5170), + [anon_sym_new] = ACTIONS(5172), + [anon_sym_return_BANG] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5172), + [anon_sym_yield_BANG] = ACTIONS(5170), + [anon_sym_lazy] = ACTIONS(5172), + [anon_sym_assert] = ACTIONS(5172), + [anon_sym_upcast] = ACTIONS(5172), + [anon_sym_downcast] = ACTIONS(5172), + [anon_sym_for] = ACTIONS(5172), + [anon_sym_while] = ACTIONS(5172), + [anon_sym_if] = ACTIONS(5172), + [anon_sym_fun] = ACTIONS(5172), + [anon_sym_try] = ACTIONS(5172), + [anon_sym_match] = ACTIONS(5172), + [anon_sym_match_BANG] = ACTIONS(5170), + [anon_sym_function] = ACTIONS(5172), + [anon_sym_use] = ACTIONS(5172), + [anon_sym_use_BANG] = ACTIONS(5170), + [anon_sym_do_BANG] = ACTIONS(5170), + [anon_sym_begin] = ACTIONS(5172), + [anon_sym_exception] = ACTIONS(5172), + [aux_sym_char_token1] = ACTIONS(5170), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_AT_DQUOTE] = ACTIONS(5170), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5170), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5170), + [sym_bool] = ACTIONS(5172), + [sym_unit] = ACTIONS(5170), + [anon_sym_LPAREN_PIPE] = ACTIONS(5172), + [sym_op_identifier] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_PLUS_DOT] = ACTIONS(5170), + [anon_sym_DASH_DOT] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5170), + [aux_sym_prefix_op_token1] = ACTIONS(5170), + [sym_int] = ACTIONS(5172), + [sym_xint] = ACTIONS(5170), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5170), + [anon_sym_POUNDload] = ACTIONS(5170), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5170), + }, + [2917] = { + [sym_attributes] = STATE(8209), + [sym__attribute_set] = STATE(4224), + [sym_block_comment] = STATE(2917), + [sym_compiler_directive_decl] = STATE(2917), + [sym_fsi_directive_decl] = STATE(2917), + [sym_preproc_line] = STATE(2917), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_type_definition_repeat1] = STATE(2917), [ts_builtin_sym_end] = ACTIONS(5176), [sym_identifier] = ACTIONS(5178), [anon_sym_namespace] = ACTIONS(5178), [anon_sym_module] = ACTIONS(5178), [anon_sym_open] = ACTIONS(5178), - [anon_sym_LBRACK_LT] = ACTIONS(5176), + [anon_sym_LBRACK_LT] = ACTIONS(5180), [anon_sym_return] = ACTIONS(5178), [anon_sym_type] = ACTIONS(5178), [anon_sym_do] = ACTIONS(5178), - [anon_sym_and] = ACTIONS(5180), + [anon_sym_and] = ACTIONS(5183), [anon_sym_let] = ACTIONS(5178), [anon_sym_let_BANG] = ACTIONS(5176), [anon_sym_LPAREN] = ACTIONS(5178), @@ -345496,96 +347083,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5176), }, - [2905] = { - [sym_attributes] = STATE(8041), - [sym__attribute_set] = STATE(3962), - [sym_block_comment] = STATE(2905), - [sym_compiler_directive_decl] = STATE(2905), - [sym_fsi_directive_decl] = STATE(2905), - [sym_preproc_line] = STATE(2905), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_type_definition_repeat1] = STATE(2903), - [ts_builtin_sym_end] = ACTIONS(5182), - [sym_identifier] = ACTIONS(5184), - [anon_sym_namespace] = ACTIONS(5184), - [anon_sym_module] = ACTIONS(5184), - [anon_sym_open] = ACTIONS(5184), - [anon_sym_LBRACK_LT] = ACTIONS(5182), - [anon_sym_return] = ACTIONS(5184), - [anon_sym_type] = ACTIONS(5184), - [anon_sym_do] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_let] = ACTIONS(5184), - [anon_sym_let_BANG] = ACTIONS(5182), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_null] = ACTIONS(5184), - [anon_sym_AMP] = ACTIONS(5184), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_LBRACK_PIPE] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5184), - [anon_sym_LT_AT] = ACTIONS(5184), - [anon_sym_LT_AT_AT] = ACTIONS(5182), - [anon_sym_LBRACE_PIPE] = ACTIONS(5182), - [anon_sym_new] = ACTIONS(5184), - [anon_sym_return_BANG] = ACTIONS(5182), - [anon_sym_yield] = ACTIONS(5184), - [anon_sym_yield_BANG] = ACTIONS(5182), - [anon_sym_lazy] = ACTIONS(5184), - [anon_sym_assert] = ACTIONS(5184), - [anon_sym_upcast] = ACTIONS(5184), - [anon_sym_downcast] = ACTIONS(5184), - [anon_sym_for] = ACTIONS(5184), - [anon_sym_while] = ACTIONS(5184), - [anon_sym_if] = ACTIONS(5184), - [anon_sym_fun] = ACTIONS(5184), - [anon_sym_try] = ACTIONS(5184), - [anon_sym_match] = ACTIONS(5184), - [anon_sym_match_BANG] = ACTIONS(5182), - [anon_sym_function] = ACTIONS(5184), - [anon_sym_use] = ACTIONS(5184), - [anon_sym_use_BANG] = ACTIONS(5182), - [anon_sym_do_BANG] = ACTIONS(5182), - [anon_sym_begin] = ACTIONS(5184), - [anon_sym_exception] = ACTIONS(5184), - [aux_sym_char_token1] = ACTIONS(5182), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5184), - [anon_sym_DQUOTE] = ACTIONS(5184), - [anon_sym_AT_DQUOTE] = ACTIONS(5182), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5182), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5182), - [sym_bool] = ACTIONS(5184), - [sym_unit] = ACTIONS(5182), - [anon_sym_LPAREN_PIPE] = ACTIONS(5184), - [sym_op_identifier] = ACTIONS(5182), - [anon_sym_PLUS] = ACTIONS(5184), - [anon_sym_DASH] = ACTIONS(5184), - [anon_sym_PLUS_DOT] = ACTIONS(5182), - [anon_sym_DASH_DOT] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), - [aux_sym_prefix_op_token1] = ACTIONS(5182), - [sym_int] = ACTIONS(5184), - [sym_xint] = ACTIONS(5182), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5182), - [anon_sym_POUNDload] = ACTIONS(5182), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5182), - }, - [2906] = { - [sym_attributes] = STATE(8041), - [sym__attribute_set] = STATE(3962), - [sym_block_comment] = STATE(2906), - [sym_compiler_directive_decl] = STATE(2906), - [sym_fsi_directive_decl] = STATE(2906), - [sym_preproc_line] = STATE(2906), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_type_definition_repeat1] = STATE(2905), + [2918] = { + [sym_attributes] = STATE(8209), + [sym__attribute_set] = STATE(4224), + [sym_block_comment] = STATE(2918), + [sym_compiler_directive_decl] = STATE(2918), + [sym_fsi_directive_decl] = STATE(2918), + [sym_preproc_line] = STATE(2918), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_type_definition_repeat1] = STATE(2917), [ts_builtin_sym_end] = ACTIONS(5186), [sym_identifier] = ACTIONS(5188), [anon_sym_namespace] = ACTIONS(5188), @@ -345595,7 +347101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(5188), [anon_sym_type] = ACTIONS(5188), [anon_sym_do] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5180), + [anon_sym_and] = ACTIONS(5174), [anon_sym_let] = ACTIONS(5188), [anon_sym_let_BANG] = ACTIONS(5186), [anon_sym_LPAREN] = ACTIONS(5188), @@ -345658,94 +347164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5186), }, - [2907] = { - [sym_attributes] = STATE(8041), - [sym__attribute_set] = STATE(3962), - [sym_block_comment] = STATE(2907), - [sym_compiler_directive_decl] = STATE(2907), - [sym_fsi_directive_decl] = STATE(2907), - [sym_preproc_line] = STATE(2907), - [aux_sym_attributes_repeat1] = STATE(3804), - [aux_sym_type_definition_repeat1] = STATE(2904), - [ts_builtin_sym_end] = ACTIONS(5182), - [sym_identifier] = ACTIONS(5184), - [anon_sym_namespace] = ACTIONS(5184), - [anon_sym_module] = ACTIONS(5184), - [anon_sym_open] = ACTIONS(5184), - [anon_sym_LBRACK_LT] = ACTIONS(5182), - [anon_sym_return] = ACTIONS(5184), - [anon_sym_type] = ACTIONS(5184), - [anon_sym_do] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_let] = ACTIONS(5184), - [anon_sym_let_BANG] = ACTIONS(5182), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_null] = ACTIONS(5184), - [anon_sym_AMP] = ACTIONS(5184), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_LBRACK_PIPE] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5184), - [anon_sym_LT_AT] = ACTIONS(5184), - [anon_sym_LT_AT_AT] = ACTIONS(5182), - [anon_sym_LBRACE_PIPE] = ACTIONS(5182), - [anon_sym_new] = ACTIONS(5184), - [anon_sym_return_BANG] = ACTIONS(5182), - [anon_sym_yield] = ACTIONS(5184), - [anon_sym_yield_BANG] = ACTIONS(5182), - [anon_sym_lazy] = ACTIONS(5184), - [anon_sym_assert] = ACTIONS(5184), - [anon_sym_upcast] = ACTIONS(5184), - [anon_sym_downcast] = ACTIONS(5184), - [anon_sym_for] = ACTIONS(5184), - [anon_sym_while] = ACTIONS(5184), - [anon_sym_if] = ACTIONS(5184), - [anon_sym_fun] = ACTIONS(5184), - [anon_sym_try] = ACTIONS(5184), - [anon_sym_match] = ACTIONS(5184), - [anon_sym_match_BANG] = ACTIONS(5182), - [anon_sym_function] = ACTIONS(5184), - [anon_sym_use] = ACTIONS(5184), - [anon_sym_use_BANG] = ACTIONS(5182), - [anon_sym_do_BANG] = ACTIONS(5182), - [anon_sym_begin] = ACTIONS(5184), - [anon_sym_exception] = ACTIONS(5184), - [aux_sym_char_token1] = ACTIONS(5182), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5184), - [anon_sym_DQUOTE] = ACTIONS(5184), - [anon_sym_AT_DQUOTE] = ACTIONS(5182), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5182), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5182), - [sym_bool] = ACTIONS(5184), - [sym_unit] = ACTIONS(5182), - [anon_sym_LPAREN_PIPE] = ACTIONS(5184), - [sym_op_identifier] = ACTIONS(5182), - [anon_sym_PLUS] = ACTIONS(5184), - [anon_sym_DASH] = ACTIONS(5184), - [anon_sym_PLUS_DOT] = ACTIONS(5182), - [anon_sym_DASH_DOT] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), - [aux_sym_prefix_op_token1] = ACTIONS(5182), - [sym_int] = ACTIONS(5184), - [sym_xint] = ACTIONS(5182), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5182), - [anon_sym_POUNDload] = ACTIONS(5182), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5182), - }, - [2908] = { - [sym_interface_implementation] = STATE(2916), - [sym_block_comment] = STATE(2908), - [sym_compiler_directive_decl] = STATE(2908), - [sym_fsi_directive_decl] = STATE(2908), - [sym_preproc_line] = STATE(2908), - [aux_sym__object_expression_inner_repeat1] = STATE(2909), + [2919] = { + [sym_attributes] = STATE(8209), + [sym__attribute_set] = STATE(4224), + [sym_block_comment] = STATE(2919), + [sym_compiler_directive_decl] = STATE(2919), + [sym_fsi_directive_decl] = STATE(2919), + [sym_preproc_line] = STATE(2919), + [aux_sym_attributes_repeat1] = STATE(3858), + [aux_sym_type_definition_repeat1] = STATE(2916), [ts_builtin_sym_end] = ACTIONS(5190), [sym_identifier] = ACTIONS(5192), [anon_sym_namespace] = ACTIONS(5192), @@ -345755,7 +347182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(5192), [anon_sym_type] = ACTIONS(5192), [anon_sym_do] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5174), [anon_sym_let] = ACTIONS(5192), [anon_sym_let_BANG] = ACTIONS(5190), [anon_sym_LPAREN] = ACTIONS(5192), @@ -345788,7 +347215,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(5190), [anon_sym_do_BANG] = ACTIONS(5190), [anon_sym_begin] = ACTIONS(5192), - [anon_sym_interface] = ACTIONS(5194), [anon_sym_exception] = ACTIONS(5192), [aux_sym_char_token1] = ACTIONS(5190), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5192), @@ -345819,1912 +347245,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5190), }, - [2909] = { - [sym_interface_implementation] = STATE(2916), - [sym_block_comment] = STATE(2909), - [sym_compiler_directive_decl] = STATE(2909), - [sym_fsi_directive_decl] = STATE(2909), - [sym_preproc_line] = STATE(2909), - [aux_sym__object_expression_inner_repeat1] = STATE(2909), - [ts_builtin_sym_end] = ACTIONS(5196), - [sym_identifier] = ACTIONS(5198), - [anon_sym_namespace] = ACTIONS(5198), - [anon_sym_module] = ACTIONS(5198), - [anon_sym_open] = ACTIONS(5198), - [anon_sym_LBRACK_LT] = ACTIONS(5196), - [anon_sym_return] = ACTIONS(5198), - [anon_sym_type] = ACTIONS(5198), - [anon_sym_do] = ACTIONS(5198), - [anon_sym_and] = ACTIONS(5198), - [anon_sym_let] = ACTIONS(5198), - [anon_sym_let_BANG] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5198), - [anon_sym_null] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_LBRACK_PIPE] = ACTIONS(5196), - [anon_sym_LBRACE] = ACTIONS(5198), - [anon_sym_LT_AT] = ACTIONS(5198), - [anon_sym_LT_AT_AT] = ACTIONS(5196), - [anon_sym_LBRACE_PIPE] = ACTIONS(5196), - [anon_sym_new] = ACTIONS(5198), - [anon_sym_return_BANG] = ACTIONS(5196), - [anon_sym_yield] = ACTIONS(5198), - [anon_sym_yield_BANG] = ACTIONS(5196), - [anon_sym_lazy] = ACTIONS(5198), - [anon_sym_assert] = ACTIONS(5198), - [anon_sym_upcast] = ACTIONS(5198), - [anon_sym_downcast] = ACTIONS(5198), - [anon_sym_for] = ACTIONS(5198), - [anon_sym_while] = ACTIONS(5198), - [anon_sym_if] = ACTIONS(5198), - [anon_sym_fun] = ACTIONS(5198), - [anon_sym_try] = ACTIONS(5198), - [anon_sym_match] = ACTIONS(5198), - [anon_sym_match_BANG] = ACTIONS(5196), - [anon_sym_function] = ACTIONS(5198), - [anon_sym_use] = ACTIONS(5198), - [anon_sym_use_BANG] = ACTIONS(5196), - [anon_sym_do_BANG] = ACTIONS(5196), - [anon_sym_begin] = ACTIONS(5198), - [anon_sym_interface] = ACTIONS(5200), - [anon_sym_exception] = ACTIONS(5198), - [aux_sym_char_token1] = ACTIONS(5196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5198), - [anon_sym_DQUOTE] = ACTIONS(5198), - [anon_sym_AT_DQUOTE] = ACTIONS(5196), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5196), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5196), - [sym_bool] = ACTIONS(5198), - [sym_unit] = ACTIONS(5196), - [anon_sym_LPAREN_PIPE] = ACTIONS(5198), - [sym_op_identifier] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_PLUS_DOT] = ACTIONS(5196), - [anon_sym_DASH_DOT] = ACTIONS(5196), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_TILDE] = ACTIONS(5196), - [aux_sym_prefix_op_token1] = ACTIONS(5196), - [sym_int] = ACTIONS(5198), - [sym_xint] = ACTIONS(5196), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5196), - [anon_sym_POUNDload] = ACTIONS(5196), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5196), - }, - [2910] = { - [sym_block_comment] = STATE(2910), - [sym_compiler_directive_decl] = STATE(2910), - [sym_fsi_directive_decl] = STATE(2910), - [sym_preproc_line] = STATE(2910), - [aux_sym_long_identifier_repeat1] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2911] = { - [sym_type_arguments] = STATE(3028), - [sym_long_identifier] = STATE(3016), - [sym_block_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(2991), - [sym_identifier] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2065), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [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(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - }, - [2912] = { - [sym_type_arguments] = STATE(3028), - [sym_long_identifier] = STATE(3016), - [sym_block_comment] = STATE(2912), - [sym_compiler_directive_decl] = STATE(2912), - [sym_fsi_directive_decl] = STATE(2912), - [sym_preproc_line] = STATE(2912), - [aux_sym_compound_type_repeat1] = STATE(2991), - [sym_identifier] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2065), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2884), - [anon_sym_DASH_DOT] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - }, - [2913] = { - [sym_type_arguments] = STATE(3028), - [sym_long_identifier] = STATE(3016), - [sym_block_comment] = STATE(2913), - [sym_compiler_directive_decl] = STATE(2913), - [sym_fsi_directive_decl] = STATE(2913), - [sym_preproc_line] = STATE(2913), - [aux_sym_compound_type_repeat1] = STATE(2991), - [sym_identifier] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2065), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - }, - [2914] = { - [sym_block_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(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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_LBRACK_PIPE] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_LT_AT] = ACTIONS(5211), - [anon_sym_LT_AT_AT] = ACTIONS(5209), - [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_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), - [anon_sym_interface] = ACTIONS(5211), - [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5209), - [anon_sym_POUNDload] = ACTIONS(5209), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5209), - }, - [2915] = { - [sym_block_comment] = STATE(2915), - [sym_compiler_directive_decl] = STATE(2915), - [sym_fsi_directive_decl] = STATE(2915), - [sym_preproc_line] = STATE(2915), - [aux_sym_type_argument_repeat1] = STATE(2918), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(5213), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [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(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - }, - [2916] = { - [sym_block_comment] = STATE(2916), - [sym_compiler_directive_decl] = STATE(2916), - [sym_fsi_directive_decl] = STATE(2916), - [sym_preproc_line] = STATE(2916), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_LBRACK_PIPE] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_LT_AT] = ACTIONS(5217), - [anon_sym_LT_AT_AT] = ACTIONS(5215), - [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_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), - [anon_sym_interface] = ACTIONS(5217), - [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5215), - [anon_sym_POUNDload] = ACTIONS(5215), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5215), - }, - [2917] = { - [sym_type_arguments] = STATE(3028), - [sym_long_identifier] = STATE(3016), - [sym_block_comment] = STATE(2917), - [sym_compiler_directive_decl] = STATE(2917), - [sym_fsi_directive_decl] = STATE(2917), - [sym_preproc_line] = STATE(2917), - [aux_sym_compound_type_repeat1] = STATE(2991), - [sym_identifier] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2910), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2065), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2910), - [anon_sym_DASH_DOT] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - }, - [2918] = { - [sym_block_comment] = STATE(2918), - [sym_compiler_directive_decl] = STATE(2918), - [sym_fsi_directive_decl] = STATE(2918), - [sym_preproc_line] = STATE(2918), - [aux_sym_type_argument_repeat1] = STATE(2918), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(5219), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - }, - [2919] = { - [sym_type_arguments] = STATE(3048), - [sym_long_identifier] = STATE(3066), - [sym_block_comment] = STATE(2919), - [sym_compiler_directive_decl] = STATE(2919), - [sym_fsi_directive_decl] = STATE(2919), - [sym_preproc_line] = STATE(2919), - [aux_sym_compound_type_repeat1] = STATE(2998), - [sym_identifier] = ACTIONS(5222), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2095), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2097), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [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(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, [2920] = { - [sym_type_arguments] = STATE(3048), - [sym_long_identifier] = STATE(3066), + [sym_interface_implementation] = STATE(2924), [sym_block_comment] = STATE(2920), [sym_compiler_directive_decl] = STATE(2920), [sym_fsi_directive_decl] = STATE(2920), [sym_preproc_line] = STATE(2920), - [aux_sym_compound_type_repeat1] = STATE(2998), - [sym_identifier] = ACTIONS(5222), - [anon_sym_GT_RBRACK] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2095), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2097), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2884), - [anon_sym_DASH_DOT] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [aux_sym__object_expression_inner_repeat1] = STATE(2921), + [ts_builtin_sym_end] = ACTIONS(5194), + [sym_identifier] = ACTIONS(5196), + [anon_sym_namespace] = ACTIONS(5196), + [anon_sym_module] = ACTIONS(5196), + [anon_sym_open] = ACTIONS(5196), + [anon_sym_LBRACK_LT] = ACTIONS(5194), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_do] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_let] = ACTIONS(5196), + [anon_sym_let_BANG] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_LBRACK_PIPE] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_LT_AT] = ACTIONS(5196), + [anon_sym_LT_AT_AT] = ACTIONS(5194), + [anon_sym_LBRACE_PIPE] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5196), + [anon_sym_return_BANG] = ACTIONS(5194), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_yield_BANG] = ACTIONS(5194), + [anon_sym_lazy] = ACTIONS(5196), + [anon_sym_assert] = ACTIONS(5196), + [anon_sym_upcast] = ACTIONS(5196), + [anon_sym_downcast] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_fun] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_match_BANG] = ACTIONS(5194), + [anon_sym_function] = ACTIONS(5196), + [anon_sym_use] = ACTIONS(5196), + [anon_sym_use_BANG] = ACTIONS(5194), + [anon_sym_do_BANG] = ACTIONS(5194), + [anon_sym_begin] = ACTIONS(5196), + [anon_sym_interface] = ACTIONS(5198), + [anon_sym_exception] = ACTIONS(5196), + [aux_sym_char_token1] = ACTIONS(5194), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5196), + [anon_sym_DQUOTE] = ACTIONS(5196), + [anon_sym_AT_DQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5194), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5194), + [sym_bool] = ACTIONS(5196), + [sym_unit] = ACTIONS(5194), + [anon_sym_LPAREN_PIPE] = ACTIONS(5196), + [sym_op_identifier] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_PLUS_DOT] = ACTIONS(5194), + [anon_sym_DASH_DOT] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_AMP_AMP] = ACTIONS(5194), + [anon_sym_TILDE] = ACTIONS(5194), + [aux_sym_prefix_op_token1] = ACTIONS(5194), + [sym_int] = ACTIONS(5196), + [sym_xint] = ACTIONS(5194), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5194), + [anon_sym_POUNDload] = ACTIONS(5194), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5194), }, [2921] = { - [sym_type_arguments] = STATE(3048), - [sym_long_identifier] = STATE(3066), + [sym_interface_implementation] = STATE(2924), [sym_block_comment] = STATE(2921), [sym_compiler_directive_decl] = STATE(2921), [sym_fsi_directive_decl] = STATE(2921), [sym_preproc_line] = STATE(2921), - [aux_sym_compound_type_repeat1] = STATE(2998), - [sym_identifier] = ACTIONS(5222), - [anon_sym_GT_RBRACK] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2095), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2097), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [aux_sym__object_expression_inner_repeat1] = STATE(2921), + [ts_builtin_sym_end] = ACTIONS(5200), + [sym_identifier] = ACTIONS(5202), + [anon_sym_namespace] = ACTIONS(5202), + [anon_sym_module] = ACTIONS(5202), + [anon_sym_open] = ACTIONS(5202), + [anon_sym_LBRACK_LT] = ACTIONS(5200), + [anon_sym_return] = ACTIONS(5202), + [anon_sym_type] = ACTIONS(5202), + [anon_sym_do] = ACTIONS(5202), + [anon_sym_and] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_let_BANG] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_null] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_LBRACK_PIPE] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_LT_AT] = ACTIONS(5202), + [anon_sym_LT_AT_AT] = ACTIONS(5200), + [anon_sym_LBRACE_PIPE] = ACTIONS(5200), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_return_BANG] = ACTIONS(5200), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_yield_BANG] = ACTIONS(5200), + [anon_sym_lazy] = ACTIONS(5202), + [anon_sym_assert] = ACTIONS(5202), + [anon_sym_upcast] = ACTIONS(5202), + [anon_sym_downcast] = ACTIONS(5202), + [anon_sym_for] = ACTIONS(5202), + [anon_sym_while] = ACTIONS(5202), + [anon_sym_if] = ACTIONS(5202), + [anon_sym_fun] = ACTIONS(5202), + [anon_sym_try] = ACTIONS(5202), + [anon_sym_match] = ACTIONS(5202), + [anon_sym_match_BANG] = ACTIONS(5200), + [anon_sym_function] = ACTIONS(5202), + [anon_sym_use] = ACTIONS(5202), + [anon_sym_use_BANG] = ACTIONS(5200), + [anon_sym_do_BANG] = ACTIONS(5200), + [anon_sym_begin] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5204), + [anon_sym_exception] = ACTIONS(5202), + [aux_sym_char_token1] = ACTIONS(5200), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_AT_DQUOTE] = ACTIONS(5200), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5200), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5200), + [sym_bool] = ACTIONS(5202), + [sym_unit] = ACTIONS(5200), + [anon_sym_LPAREN_PIPE] = ACTIONS(5202), + [sym_op_identifier] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_PLUS_DOT] = ACTIONS(5200), + [anon_sym_DASH_DOT] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_AMP_AMP] = ACTIONS(5200), + [anon_sym_TILDE] = ACTIONS(5200), + [aux_sym_prefix_op_token1] = ACTIONS(5200), + [sym_int] = ACTIONS(5202), + [sym_xint] = ACTIONS(5200), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5200), + [anon_sym_POUNDload] = ACTIONS(5200), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5200), }, [2922] = { [sym_block_comment] = STATE(2922), [sym_compiler_directive_decl] = STATE(2922), [sym_fsi_directive_decl] = STATE(2922), [sym_preproc_line] = STATE(2922), - [aux_sym_type_argument_repeat1] = STATE(2915), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(5213), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), + [aux_sym_long_identifier_repeat1] = STATE(2937), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_exception] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), }, [2923] = { [sym_block_comment] = STATE(2923), [sym_compiler_directive_decl] = STATE(2923), [sym_fsi_directive_decl] = STATE(2923), [sym_preproc_line] = STATE(2923), - [aux_sym_type_argument_repeat1] = STATE(2923), - [sym_identifier] = ACTIONS(2977), - [anon_sym_GT_RBRACK] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(5224), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [aux_sym_type_argument_repeat1] = STATE(2938), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(5211), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), }, [2924] = { - [sym_type_arguments] = STATE(3048), - [sym_long_identifier] = STATE(3066), [sym_block_comment] = STATE(2924), [sym_compiler_directive_decl] = STATE(2924), [sym_fsi_directive_decl] = STATE(2924), [sym_preproc_line] = STATE(2924), - [aux_sym_compound_type_repeat1] = STATE(2998), - [sym_identifier] = ACTIONS(5222), - [anon_sym_GT_RBRACK] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2910), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2095), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2097), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2910), - [anon_sym_DASH_DOT] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(5213), + [sym_identifier] = ACTIONS(5215), + [anon_sym_namespace] = ACTIONS(5215), + [anon_sym_module] = ACTIONS(5215), + [anon_sym_open] = ACTIONS(5215), + [anon_sym_LBRACK_LT] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5215), + [anon_sym_type] = ACTIONS(5215), + [anon_sym_do] = ACTIONS(5215), + [anon_sym_and] = ACTIONS(5215), + [anon_sym_let] = ACTIONS(5215), + [anon_sym_let_BANG] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_null] = ACTIONS(5215), + [anon_sym_AMP] = ACTIONS(5215), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_LBRACK_PIPE] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_LT_AT] = ACTIONS(5215), + [anon_sym_LT_AT_AT] = ACTIONS(5213), + [anon_sym_LBRACE_PIPE] = ACTIONS(5213), + [anon_sym_new] = ACTIONS(5215), + [anon_sym_return_BANG] = ACTIONS(5213), + [anon_sym_yield] = ACTIONS(5215), + [anon_sym_yield_BANG] = ACTIONS(5213), + [anon_sym_lazy] = ACTIONS(5215), + [anon_sym_assert] = ACTIONS(5215), + [anon_sym_upcast] = ACTIONS(5215), + [anon_sym_downcast] = ACTIONS(5215), + [anon_sym_for] = ACTIONS(5215), + [anon_sym_while] = ACTIONS(5215), + [anon_sym_if] = ACTIONS(5215), + [anon_sym_fun] = ACTIONS(5215), + [anon_sym_try] = ACTIONS(5215), + [anon_sym_match] = ACTIONS(5215), + [anon_sym_match_BANG] = ACTIONS(5213), + [anon_sym_function] = ACTIONS(5215), + [anon_sym_use] = ACTIONS(5215), + [anon_sym_use_BANG] = ACTIONS(5213), + [anon_sym_do_BANG] = ACTIONS(5213), + [anon_sym_begin] = ACTIONS(5215), + [anon_sym_interface] = ACTIONS(5215), + [anon_sym_exception] = ACTIONS(5215), + [aux_sym_char_token1] = ACTIONS(5213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5215), + [anon_sym_DQUOTE] = ACTIONS(5215), + [anon_sym_AT_DQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5213), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5213), + [sym_bool] = ACTIONS(5215), + [sym_unit] = ACTIONS(5213), + [anon_sym_LPAREN_PIPE] = ACTIONS(5215), + [sym_op_identifier] = ACTIONS(5213), + [anon_sym_PLUS] = ACTIONS(5215), + [anon_sym_DASH] = ACTIONS(5215), + [anon_sym_PLUS_DOT] = ACTIONS(5213), + [anon_sym_DASH_DOT] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_TILDE] = ACTIONS(5213), + [aux_sym_prefix_op_token1] = ACTIONS(5213), + [sym_int] = ACTIONS(5215), + [sym_xint] = ACTIONS(5213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5213), + [anon_sym_POUNDload] = ACTIONS(5213), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5213), }, [2925] = { [sym_block_comment] = STATE(2925), [sym_compiler_directive_decl] = STATE(2925), [sym_fsi_directive_decl] = STATE(2925), [sym_preproc_line] = STATE(2925), - [aux_sym_type_argument_repeat1] = STATE(2923), - [sym_identifier] = ACTIONS(3017), - [anon_sym_GT_RBRACK] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(5227), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [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(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - }, - [2926] = { - [sym_block_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(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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LBRACK_PIPE] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_LT_AT] = ACTIONS(5231), - [anon_sym_LT_AT_AT] = ACTIONS(5229), - [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_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), - [anon_sym_interface] = ACTIONS(5231), - [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5229), - [anon_sym_POUNDload] = ACTIONS(5229), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5229), - }, - [2927] = { - [sym_block_comment] = STATE(2927), - [sym_compiler_directive_decl] = STATE(2927), - [sym_fsi_directive_decl] = STATE(2927), - [sym_preproc_line] = STATE(2927), - [aux_sym_type_argument_repeat1] = STATE(2925), - [sym_identifier] = ACTIONS(3026), - [anon_sym_GT_RBRACK] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(5227), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [2928] = { - [sym_block_comment] = STATE(2928), - [sym_compiler_directive_decl] = STATE(2928), - [sym_fsi_directive_decl] = STATE(2928), - [sym_preproc_line] = STATE(2928), - [aux_sym_long_identifier_repeat1] = STATE(2933), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_module] = ACTIONS(2973), - [anon_sym_open] = ACTIONS(2973), - [anon_sym_LBRACK_LT] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_exception] = ACTIONS(2973), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2971), - [anon_sym_POUNDload] = ACTIONS(2971), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - }, - [2929] = { - [sym_block_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(2928), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2930] = { - [sym_block_comment] = STATE(2930), - [sym_compiler_directive_decl] = STATE(2930), - [sym_fsi_directive_decl] = STATE(2930), - [sym_preproc_line] = STATE(2930), - [aux_sym_long_identifier_repeat1] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2931] = { - [sym_block_comment] = STATE(2931), - [sym_compiler_directive_decl] = STATE(2931), - [sym_fsi_directive_decl] = STATE(2931), - [sym_preproc_line] = STATE(2931), - [aux_sym_long_identifier_repeat1] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2932] = { - [sym_block_comment] = STATE(2932), - [sym_compiler_directive_decl] = STATE(2932), - [sym_fsi_directive_decl] = STATE(2932), - [sym_preproc_line] = STATE(2932), - [aux_sym_long_identifier_repeat1] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_LBRACK_LT] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2957), - [anon_sym_POUNDload] = ACTIONS(2957), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2933] = { - [sym_block_comment] = STATE(2933), - [sym_compiler_directive_decl] = STATE(2933), - [sym_fsi_directive_decl] = STATE(2933), - [sym_preproc_line] = STATE(2933), - [aux_sym_long_identifier_repeat1] = STATE(2933), - [ts_builtin_sym_end] = ACTIONS(2990), + [aux_sym_long_identifier_repeat1] = STATE(2937), + [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(5217), [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), + [anon_sym_LBRACK_LT] = ACTIONS(2986), [anon_sym_return] = ACTIONS(2988), [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -347735,1148 +347681,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), }, - [2934] = { - [sym_block_comment] = STATE(2934), - [sym_compiler_directive_decl] = STATE(2934), - [sym_fsi_directive_decl] = STATE(2934), - [sym_preproc_line] = STATE(2934), - [ts_builtin_sym_end] = ACTIONS(5242), - [sym_identifier] = ACTIONS(5244), - [anon_sym_namespace] = ACTIONS(5244), - [anon_sym_module] = ACTIONS(5244), - [anon_sym_open] = ACTIONS(5244), - [anon_sym_LBRACK_LT] = ACTIONS(5242), - [anon_sym_return] = ACTIONS(5244), - [anon_sym_type] = ACTIONS(5244), - [anon_sym_do] = ACTIONS(5244), - [anon_sym_and] = ACTIONS(5244), - [anon_sym_let] = ACTIONS(5244), - [anon_sym_let_BANG] = ACTIONS(5242), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_null] = ACTIONS(5244), - [anon_sym_AMP] = ACTIONS(5244), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5244), - [anon_sym_LBRACK_PIPE] = ACTIONS(5242), - [anon_sym_LBRACE] = ACTIONS(5244), - [anon_sym_LT_AT] = ACTIONS(5244), - [anon_sym_LT_AT_AT] = ACTIONS(5242), - [anon_sym_LBRACE_PIPE] = ACTIONS(5242), - [anon_sym_new] = ACTIONS(5244), - [anon_sym_return_BANG] = ACTIONS(5242), - [anon_sym_yield] = ACTIONS(5244), - [anon_sym_yield_BANG] = ACTIONS(5242), - [anon_sym_lazy] = ACTIONS(5244), - [anon_sym_assert] = ACTIONS(5244), - [anon_sym_upcast] = ACTIONS(5244), - [anon_sym_downcast] = ACTIONS(5244), - [anon_sym_for] = ACTIONS(5244), - [anon_sym_while] = ACTIONS(5244), - [anon_sym_if] = ACTIONS(5244), - [anon_sym_fun] = ACTIONS(5244), - [anon_sym_try] = ACTIONS(5244), - [anon_sym_match] = ACTIONS(5244), - [anon_sym_match_BANG] = ACTIONS(5242), - [anon_sym_function] = ACTIONS(5244), - [anon_sym_use] = ACTIONS(5244), - [anon_sym_use_BANG] = ACTIONS(5242), - [anon_sym_do_BANG] = ACTIONS(5242), - [anon_sym_begin] = ACTIONS(5244), - [anon_sym_exception] = ACTIONS(5244), - [aux_sym_char_token1] = ACTIONS(5242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5244), - [anon_sym_DQUOTE] = ACTIONS(5244), - [anon_sym_AT_DQUOTE] = ACTIONS(5242), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5242), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5242), - [sym_bool] = ACTIONS(5244), - [sym_unit] = ACTIONS(5242), - [anon_sym_LPAREN_PIPE] = ACTIONS(5244), - [sym_op_identifier] = ACTIONS(5242), - [anon_sym_PLUS] = ACTIONS(5244), - [anon_sym_DASH] = ACTIONS(5244), - [anon_sym_PLUS_DOT] = ACTIONS(5242), - [anon_sym_DASH_DOT] = ACTIONS(5242), - [anon_sym_PERCENT] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5242), - [anon_sym_TILDE] = ACTIONS(5242), - [aux_sym_prefix_op_token1] = ACTIONS(5242), - [sym_int] = ACTIONS(5244), - [sym_xint] = ACTIONS(5242), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5242), - [anon_sym_POUNDload] = ACTIONS(5242), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5242), - }, - [2935] = { - [sym_block_comment] = STATE(2935), - [sym_compiler_directive_decl] = STATE(2935), - [sym_fsi_directive_decl] = STATE(2935), - [sym_preproc_line] = STATE(2935), - [ts_builtin_sym_end] = ACTIONS(5246), - [sym_identifier] = ACTIONS(5248), - [anon_sym_namespace] = ACTIONS(5248), - [anon_sym_module] = ACTIONS(5248), - [anon_sym_open] = ACTIONS(5248), - [anon_sym_LBRACK_LT] = ACTIONS(5246), - [anon_sym_return] = ACTIONS(5248), - [anon_sym_type] = ACTIONS(5248), - [anon_sym_do] = ACTIONS(5248), - [anon_sym_and] = ACTIONS(5248), - [anon_sym_let] = ACTIONS(5248), - [anon_sym_let_BANG] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5248), - [anon_sym_null] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5248), - [anon_sym_LBRACK_PIPE] = ACTIONS(5246), - [anon_sym_LBRACE] = ACTIONS(5248), - [anon_sym_LT_AT] = ACTIONS(5248), - [anon_sym_LT_AT_AT] = ACTIONS(5246), - [anon_sym_LBRACE_PIPE] = ACTIONS(5246), - [anon_sym_new] = ACTIONS(5248), - [anon_sym_return_BANG] = ACTIONS(5246), - [anon_sym_yield] = ACTIONS(5248), - [anon_sym_yield_BANG] = ACTIONS(5246), - [anon_sym_lazy] = ACTIONS(5248), - [anon_sym_assert] = ACTIONS(5248), - [anon_sym_upcast] = ACTIONS(5248), - [anon_sym_downcast] = ACTIONS(5248), - [anon_sym_for] = ACTIONS(5248), - [anon_sym_while] = ACTIONS(5248), - [anon_sym_if] = ACTIONS(5248), - [anon_sym_fun] = ACTIONS(5248), - [anon_sym_try] = ACTIONS(5248), - [anon_sym_match] = ACTIONS(5248), - [anon_sym_match_BANG] = ACTIONS(5246), - [anon_sym_function] = ACTIONS(5248), - [anon_sym_use] = ACTIONS(5248), - [anon_sym_use_BANG] = ACTIONS(5246), - [anon_sym_do_BANG] = ACTIONS(5246), - [anon_sym_begin] = ACTIONS(5248), - [anon_sym_exception] = ACTIONS(5248), - [aux_sym_char_token1] = ACTIONS(5246), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5248), - [anon_sym_DQUOTE] = ACTIONS(5248), - [anon_sym_AT_DQUOTE] = ACTIONS(5246), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5246), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5246), - [sym_bool] = ACTIONS(5248), - [sym_unit] = ACTIONS(5246), - [anon_sym_LPAREN_PIPE] = ACTIONS(5248), - [sym_op_identifier] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_PLUS_DOT] = ACTIONS(5246), - [anon_sym_DASH_DOT] = ACTIONS(5246), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_TILDE] = ACTIONS(5246), - [aux_sym_prefix_op_token1] = ACTIONS(5246), - [sym_int] = ACTIONS(5248), - [sym_xint] = ACTIONS(5246), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5246), - [anon_sym_POUNDload] = ACTIONS(5246), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5246), - }, - [2936] = { - [sym_block_comment] = STATE(2936), - [sym_compiler_directive_decl] = STATE(2936), - [sym_fsi_directive_decl] = STATE(2936), - [sym_preproc_line] = STATE(2936), - [sym_identifier] = ACTIONS(3066), - [anon_sym_GT_RBRACK] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3068), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__newline] = ACTIONS(3068), - }, - [2937] = { - [sym_block_comment] = STATE(2937), - [sym_compiler_directive_decl] = STATE(2937), - [sym_fsi_directive_decl] = STATE(2937), - [sym_preproc_line] = STATE(2937), - [ts_builtin_sym_end] = ACTIONS(5250), - [sym_identifier] = ACTIONS(5252), - [anon_sym_namespace] = ACTIONS(5252), - [anon_sym_module] = ACTIONS(5252), - [anon_sym_open] = ACTIONS(5252), - [anon_sym_LBRACK_LT] = ACTIONS(5250), - [anon_sym_return] = ACTIONS(5252), - [anon_sym_type] = ACTIONS(5252), - [anon_sym_do] = ACTIONS(5252), - [anon_sym_and] = ACTIONS(5252), - [anon_sym_let] = ACTIONS(5252), - [anon_sym_let_BANG] = ACTIONS(5250), - [anon_sym_LPAREN] = ACTIONS(5252), - [anon_sym_null] = ACTIONS(5252), - [anon_sym_AMP] = ACTIONS(5252), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5252), - [anon_sym_LBRACK_PIPE] = ACTIONS(5250), - [anon_sym_LBRACE] = ACTIONS(5252), - [anon_sym_LT_AT] = ACTIONS(5252), - [anon_sym_LT_AT_AT] = ACTIONS(5250), - [anon_sym_LBRACE_PIPE] = ACTIONS(5250), - [anon_sym_new] = ACTIONS(5252), - [anon_sym_return_BANG] = ACTIONS(5250), - [anon_sym_yield] = ACTIONS(5252), - [anon_sym_yield_BANG] = ACTIONS(5250), - [anon_sym_lazy] = ACTIONS(5252), - [anon_sym_assert] = ACTIONS(5252), - [anon_sym_upcast] = ACTIONS(5252), - [anon_sym_downcast] = ACTIONS(5252), - [anon_sym_for] = ACTIONS(5252), - [anon_sym_while] = ACTIONS(5252), - [anon_sym_if] = ACTIONS(5252), - [anon_sym_fun] = ACTIONS(5252), - [anon_sym_try] = ACTIONS(5252), - [anon_sym_match] = ACTIONS(5252), - [anon_sym_match_BANG] = ACTIONS(5250), - [anon_sym_function] = ACTIONS(5252), - [anon_sym_use] = ACTIONS(5252), - [anon_sym_use_BANG] = ACTIONS(5250), - [anon_sym_do_BANG] = ACTIONS(5250), - [anon_sym_begin] = ACTIONS(5252), - [anon_sym_exception] = ACTIONS(5252), - [aux_sym_char_token1] = ACTIONS(5250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5252), - [anon_sym_DQUOTE] = ACTIONS(5252), - [anon_sym_AT_DQUOTE] = ACTIONS(5250), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5250), - [sym_bool] = ACTIONS(5252), - [sym_unit] = ACTIONS(5250), - [anon_sym_LPAREN_PIPE] = ACTIONS(5252), - [sym_op_identifier] = ACTIONS(5250), - [anon_sym_PLUS] = ACTIONS(5252), - [anon_sym_DASH] = ACTIONS(5252), - [anon_sym_PLUS_DOT] = ACTIONS(5250), - [anon_sym_DASH_DOT] = ACTIONS(5250), - [anon_sym_PERCENT] = ACTIONS(5250), - [anon_sym_AMP_AMP] = ACTIONS(5250), - [anon_sym_TILDE] = ACTIONS(5250), - [aux_sym_prefix_op_token1] = ACTIONS(5250), - [sym_int] = ACTIONS(5252), - [sym_xint] = ACTIONS(5250), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5250), - [anon_sym_POUNDload] = ACTIONS(5250), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5250), - }, - [2938] = { - [sym_block_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(5166), - [sym_identifier] = ACTIONS(5168), - [anon_sym_namespace] = ACTIONS(5168), - [anon_sym_module] = ACTIONS(5168), - [anon_sym_open] = ACTIONS(5168), - [anon_sym_LBRACK_LT] = ACTIONS(5166), - [anon_sym_return] = ACTIONS(5168), - [anon_sym_type] = ACTIONS(5168), - [anon_sym_do] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_let] = ACTIONS(5168), - [anon_sym_let_BANG] = ACTIONS(5166), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_null] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5168), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_LBRACK_PIPE] = ACTIONS(5166), - [anon_sym_LBRACE] = ACTIONS(5168), - [anon_sym_LT_AT] = ACTIONS(5168), - [anon_sym_LT_AT_AT] = ACTIONS(5166), - [anon_sym_LBRACE_PIPE] = ACTIONS(5166), - [anon_sym_new] = ACTIONS(5168), - [anon_sym_return_BANG] = ACTIONS(5166), - [anon_sym_yield] = ACTIONS(5168), - [anon_sym_yield_BANG] = ACTIONS(5166), - [anon_sym_lazy] = ACTIONS(5168), - [anon_sym_assert] = ACTIONS(5168), - [anon_sym_upcast] = ACTIONS(5168), - [anon_sym_downcast] = ACTIONS(5168), - [anon_sym_for] = ACTIONS(5168), - [anon_sym_while] = ACTIONS(5168), - [anon_sym_if] = ACTIONS(5168), - [anon_sym_fun] = ACTIONS(5168), - [anon_sym_try] = ACTIONS(5168), - [anon_sym_match] = ACTIONS(5168), - [anon_sym_match_BANG] = ACTIONS(5166), - [anon_sym_function] = ACTIONS(5168), - [anon_sym_use] = ACTIONS(5168), - [anon_sym_use_BANG] = ACTIONS(5166), - [anon_sym_do_BANG] = ACTIONS(5166), - [anon_sym_begin] = ACTIONS(5168), - [anon_sym_exception] = ACTIONS(5168), - [aux_sym_char_token1] = ACTIONS(5166), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5168), - [anon_sym_DQUOTE] = ACTIONS(5168), - [anon_sym_AT_DQUOTE] = ACTIONS(5166), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5166), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5166), - [sym_bool] = ACTIONS(5168), - [sym_unit] = ACTIONS(5166), - [anon_sym_LPAREN_PIPE] = ACTIONS(5168), - [sym_op_identifier] = ACTIONS(5166), - [anon_sym_PLUS] = ACTIONS(5168), - [anon_sym_DASH] = ACTIONS(5168), - [anon_sym_PLUS_DOT] = ACTIONS(5166), - [anon_sym_DASH_DOT] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_AMP_AMP] = ACTIONS(5166), - [anon_sym_TILDE] = ACTIONS(5166), - [aux_sym_prefix_op_token1] = ACTIONS(5166), - [sym_int] = ACTIONS(5168), - [sym_xint] = ACTIONS(5166), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5166), - [anon_sym_POUNDload] = ACTIONS(5166), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5166), - }, - [2939] = { - [sym_argument_patterns] = STATE(6557), - [sym__atomic_pattern] = STATE(4028), - [sym_list_pattern] = STATE(4027), - [sym_array_pattern] = STATE(4027), - [sym_record_pattern] = STATE(4027), - [sym_type_arguments] = STATE(3196), - [sym_char] = STATE(4090), - [sym_format_string] = STATE(4102), - [sym__string_literal] = STATE(4102), - [sym_string] = STATE(4090), - [sym_verbatim_string] = STATE(4090), - [sym_bytearray] = STATE(4090), - [sym_verbatim_bytearray] = STATE(4090), - [sym_format_triple_quoted_string] = STATE(4103), - [sym_triple_quoted_string] = STATE(4090), - [sym_const] = STATE(4027), - [sym_long_identifier] = STATE(4027), - [sym_sbyte] = STATE(4090), - [sym_byte] = STATE(4090), - [sym_int16] = STATE(4090), - [sym_uint16] = STATE(4090), - [sym_int32] = STATE(4090), - [sym_uint32] = STATE(4090), - [sym_nativeint] = STATE(4090), - [sym_unativeint] = STATE(4090), - [sym_int64] = STATE(4090), - [sym_uint64] = STATE(4090), - [sym_ieee32] = STATE(4090), - [sym_ieee64] = STATE(4090), - [sym_bignum] = STATE(4090), - [sym_decimal] = STATE(4090), - [sym_float] = STATE(3802), - [sym_block_comment] = STATE(2939), - [sym_compiler_directive_decl] = STATE(2939), - [sym_fsi_directive_decl] = STATE(2939), - [sym_preproc_line] = STATE(2939), - [aux_sym_argument_patterns_repeat1] = STATE(3189), - [sym_identifier] = ACTIONS(5254), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(5256), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(5258), - [anon_sym__] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_COLON_QMARK] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5260), - [anon_sym_LBRACK_PIPE] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(5264), - [anon_sym_LT2] = ACTIONS(5266), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5272), - [anon_sym_AT_DQUOTE] = ACTIONS(5274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5276), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5278), - [sym_bool] = ACTIONS(5280), - [sym_unit] = ACTIONS(5282), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3070), - [sym_int] = ACTIONS(5284), - [sym_xint] = ACTIONS(5286), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2940] = { - [sym_block_comment] = STATE(2940), - [sym_compiler_directive_decl] = STATE(2940), - [sym_fsi_directive_decl] = STATE(2940), - [sym_preproc_line] = STATE(2940), - [ts_builtin_sym_end] = ACTIONS(5288), - [sym_identifier] = ACTIONS(5290), - [anon_sym_namespace] = ACTIONS(5290), - [anon_sym_module] = ACTIONS(5290), - [anon_sym_open] = ACTIONS(5290), - [anon_sym_LBRACK_LT] = ACTIONS(5288), - [anon_sym_return] = ACTIONS(5290), - [anon_sym_type] = ACTIONS(5290), - [anon_sym_do] = ACTIONS(5290), - [anon_sym_and] = ACTIONS(5290), - [anon_sym_let] = ACTIONS(5290), - [anon_sym_let_BANG] = ACTIONS(5288), - [anon_sym_LPAREN] = ACTIONS(5290), - [anon_sym_null] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5290), - [anon_sym_LBRACK_PIPE] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5290), - [anon_sym_LT_AT] = ACTIONS(5290), - [anon_sym_LT_AT_AT] = ACTIONS(5288), - [anon_sym_LBRACE_PIPE] = ACTIONS(5288), - [anon_sym_new] = ACTIONS(5290), - [anon_sym_return_BANG] = ACTIONS(5288), - [anon_sym_yield] = ACTIONS(5290), - [anon_sym_yield_BANG] = ACTIONS(5288), - [anon_sym_lazy] = ACTIONS(5290), - [anon_sym_assert] = ACTIONS(5290), - [anon_sym_upcast] = ACTIONS(5290), - [anon_sym_downcast] = ACTIONS(5290), - [anon_sym_for] = ACTIONS(5290), - [anon_sym_while] = ACTIONS(5290), - [anon_sym_if] = ACTIONS(5290), - [anon_sym_fun] = ACTIONS(5290), - [anon_sym_try] = ACTIONS(5290), - [anon_sym_match] = ACTIONS(5290), - [anon_sym_match_BANG] = ACTIONS(5288), - [anon_sym_function] = ACTIONS(5290), - [anon_sym_use] = ACTIONS(5290), - [anon_sym_use_BANG] = ACTIONS(5288), - [anon_sym_do_BANG] = ACTIONS(5288), - [anon_sym_begin] = ACTIONS(5290), - [anon_sym_exception] = ACTIONS(5290), - [aux_sym_char_token1] = ACTIONS(5288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5290), - [anon_sym_DQUOTE] = ACTIONS(5290), - [anon_sym_AT_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5288), - [sym_bool] = ACTIONS(5290), - [sym_unit] = ACTIONS(5288), - [anon_sym_LPAREN_PIPE] = ACTIONS(5290), - [sym_op_identifier] = ACTIONS(5288), - [anon_sym_PLUS] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(5290), - [anon_sym_PLUS_DOT] = ACTIONS(5288), - [anon_sym_DASH_DOT] = ACTIONS(5288), - [anon_sym_PERCENT] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_TILDE] = ACTIONS(5288), - [aux_sym_prefix_op_token1] = ACTIONS(5288), - [sym_int] = ACTIONS(5290), - [sym_xint] = ACTIONS(5288), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5288), - [anon_sym_POUNDload] = ACTIONS(5288), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5288), - }, - [2941] = { - [sym_block_comment] = STATE(2941), - [sym_compiler_directive_decl] = STATE(2941), - [sym_fsi_directive_decl] = STATE(2941), - [sym_preproc_line] = STATE(2941), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_LBRACK_PIPE] = ACTIONS(5292), - [anon_sym_LBRACE] = ACTIONS(5294), - [anon_sym_LT_AT] = ACTIONS(5294), - [anon_sym_LT_AT_AT] = ACTIONS(5292), - [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_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), - [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5292), - [anon_sym_POUNDload] = ACTIONS(5292), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5292), - }, - [2942] = { - [sym_block_comment] = STATE(2942), - [sym_compiler_directive_decl] = STATE(2942), - [sym_fsi_directive_decl] = STATE(2942), - [sym_preproc_line] = STATE(2942), - [ts_builtin_sym_end] = ACTIONS(5296), - [sym_identifier] = ACTIONS(5298), - [anon_sym_namespace] = ACTIONS(5298), - [anon_sym_module] = ACTIONS(5298), - [anon_sym_open] = ACTIONS(5298), - [anon_sym_LBRACK_LT] = ACTIONS(5296), - [anon_sym_return] = ACTIONS(5298), - [anon_sym_type] = ACTIONS(5298), - [anon_sym_do] = ACTIONS(5298), - [anon_sym_and] = ACTIONS(5298), - [anon_sym_let] = ACTIONS(5298), - [anon_sym_let_BANG] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5298), - [anon_sym_null] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5298), - [anon_sym_LBRACK_PIPE] = ACTIONS(5296), - [anon_sym_LBRACE] = ACTIONS(5298), - [anon_sym_LT_AT] = ACTIONS(5298), - [anon_sym_LT_AT_AT] = ACTIONS(5296), - [anon_sym_LBRACE_PIPE] = ACTIONS(5296), - [anon_sym_new] = ACTIONS(5298), - [anon_sym_return_BANG] = ACTIONS(5296), - [anon_sym_yield] = ACTIONS(5298), - [anon_sym_yield_BANG] = ACTIONS(5296), - [anon_sym_lazy] = ACTIONS(5298), - [anon_sym_assert] = ACTIONS(5298), - [anon_sym_upcast] = ACTIONS(5298), - [anon_sym_downcast] = ACTIONS(5298), - [anon_sym_for] = ACTIONS(5298), - [anon_sym_while] = ACTIONS(5298), - [anon_sym_if] = ACTIONS(5298), - [anon_sym_fun] = ACTIONS(5298), - [anon_sym_try] = ACTIONS(5298), - [anon_sym_match] = ACTIONS(5298), - [anon_sym_match_BANG] = ACTIONS(5296), - [anon_sym_function] = ACTIONS(5298), - [anon_sym_use] = ACTIONS(5298), - [anon_sym_use_BANG] = ACTIONS(5296), - [anon_sym_do_BANG] = ACTIONS(5296), - [anon_sym_begin] = ACTIONS(5298), - [anon_sym_exception] = ACTIONS(5298), - [aux_sym_char_token1] = ACTIONS(5296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5298), - [anon_sym_DQUOTE] = ACTIONS(5298), - [anon_sym_AT_DQUOTE] = ACTIONS(5296), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5296), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5296), - [sym_bool] = ACTIONS(5298), - [sym_unit] = ACTIONS(5296), - [anon_sym_LPAREN_PIPE] = ACTIONS(5298), - [sym_op_identifier] = ACTIONS(5296), - [anon_sym_PLUS] = ACTIONS(5298), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_PLUS_DOT] = ACTIONS(5296), - [anon_sym_DASH_DOT] = ACTIONS(5296), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_TILDE] = ACTIONS(5296), - [aux_sym_prefix_op_token1] = ACTIONS(5296), - [sym_int] = ACTIONS(5298), - [sym_xint] = ACTIONS(5296), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5296), - [anon_sym_POUNDload] = ACTIONS(5296), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5296), - }, - [2943] = { - [sym_block_comment] = STATE(2943), - [sym_compiler_directive_decl] = STATE(2943), - [sym_fsi_directive_decl] = STATE(2943), - [sym_preproc_line] = STATE(2943), - [ts_builtin_sym_end] = ACTIONS(5300), - [sym_identifier] = ACTIONS(5302), - [anon_sym_namespace] = ACTIONS(5302), - [anon_sym_module] = ACTIONS(5302), - [anon_sym_open] = ACTIONS(5302), - [anon_sym_LBRACK_LT] = ACTIONS(5300), - [anon_sym_return] = ACTIONS(5302), - [anon_sym_type] = ACTIONS(5302), - [anon_sym_do] = ACTIONS(5302), - [anon_sym_and] = ACTIONS(5302), - [anon_sym_let] = ACTIONS(5302), - [anon_sym_let_BANG] = ACTIONS(5300), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_null] = ACTIONS(5302), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_LBRACK_PIPE] = ACTIONS(5300), - [anon_sym_LBRACE] = ACTIONS(5302), - [anon_sym_LT_AT] = ACTIONS(5302), - [anon_sym_LT_AT_AT] = ACTIONS(5300), - [anon_sym_LBRACE_PIPE] = ACTIONS(5300), - [anon_sym_new] = ACTIONS(5302), - [anon_sym_return_BANG] = ACTIONS(5300), - [anon_sym_yield] = ACTIONS(5302), - [anon_sym_yield_BANG] = ACTIONS(5300), - [anon_sym_lazy] = ACTIONS(5302), - [anon_sym_assert] = ACTIONS(5302), - [anon_sym_upcast] = ACTIONS(5302), - [anon_sym_downcast] = ACTIONS(5302), - [anon_sym_for] = ACTIONS(5302), - [anon_sym_while] = ACTIONS(5302), - [anon_sym_if] = ACTIONS(5302), - [anon_sym_fun] = ACTIONS(5302), - [anon_sym_try] = ACTIONS(5302), - [anon_sym_match] = ACTIONS(5302), - [anon_sym_match_BANG] = ACTIONS(5300), - [anon_sym_function] = ACTIONS(5302), - [anon_sym_use] = ACTIONS(5302), - [anon_sym_use_BANG] = ACTIONS(5300), - [anon_sym_do_BANG] = ACTIONS(5300), - [anon_sym_begin] = ACTIONS(5302), - [anon_sym_exception] = ACTIONS(5302), - [aux_sym_char_token1] = ACTIONS(5300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5302), - [anon_sym_DQUOTE] = ACTIONS(5302), - [anon_sym_AT_DQUOTE] = ACTIONS(5300), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5300), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5300), - [sym_bool] = ACTIONS(5302), - [sym_unit] = ACTIONS(5300), - [anon_sym_LPAREN_PIPE] = ACTIONS(5302), - [sym_op_identifier] = ACTIONS(5300), - [anon_sym_PLUS] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [anon_sym_PLUS_DOT] = ACTIONS(5300), - [anon_sym_DASH_DOT] = ACTIONS(5300), - [anon_sym_PERCENT] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_TILDE] = ACTIONS(5300), - [aux_sym_prefix_op_token1] = ACTIONS(5300), - [sym_int] = ACTIONS(5302), - [sym_xint] = ACTIONS(5300), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5300), - [anon_sym_POUNDload] = ACTIONS(5300), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5300), - }, - [2944] = { - [sym_argument_patterns] = STATE(6523), - [sym__atomic_pattern] = STATE(4028), - [sym_list_pattern] = STATE(4027), - [sym_array_pattern] = STATE(4027), - [sym_record_pattern] = STATE(4027), - [sym_type_arguments] = STATE(3205), - [sym_char] = STATE(4090), - [sym_format_string] = STATE(4102), - [sym__string_literal] = STATE(4102), - [sym_string] = STATE(4090), - [sym_verbatim_string] = STATE(4090), - [sym_bytearray] = STATE(4090), - [sym_verbatim_bytearray] = STATE(4090), - [sym_format_triple_quoted_string] = STATE(4103), - [sym_triple_quoted_string] = STATE(4090), - [sym_const] = STATE(4027), - [sym_long_identifier] = STATE(4027), - [sym_sbyte] = STATE(4090), - [sym_byte] = STATE(4090), - [sym_int16] = STATE(4090), - [sym_uint16] = STATE(4090), - [sym_int32] = STATE(4090), - [sym_uint32] = STATE(4090), - [sym_nativeint] = STATE(4090), - [sym_unativeint] = STATE(4090), - [sym_int64] = STATE(4090), - [sym_uint64] = STATE(4090), - [sym_ieee32] = STATE(4090), - [sym_ieee64] = STATE(4090), - [sym_bignum] = STATE(4090), - [sym_decimal] = STATE(4090), - [sym_float] = STATE(3802), - [sym_block_comment] = STATE(2944), - [sym_compiler_directive_decl] = STATE(2944), - [sym_fsi_directive_decl] = STATE(2944), - [sym_preproc_line] = STATE(2944), - [aux_sym_argument_patterns_repeat1] = STATE(3189), - [sym_identifier] = ACTIONS(5254), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(5256), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(5258), - [anon_sym__] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_COLON_QMARK] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5260), - [anon_sym_LBRACK_PIPE] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(5264), - [anon_sym_LT2] = ACTIONS(5266), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5272), - [anon_sym_AT_DQUOTE] = ACTIONS(5274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5276), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5278), - [sym_bool] = ACTIONS(5280), - [sym_unit] = ACTIONS(5282), - [anon_sym_LPAREN_PIPE] = ACTIONS(3074), - [sym_op_identifier] = ACTIONS(3070), - [sym_int] = ACTIONS(5284), - [sym_xint] = ACTIONS(5286), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [2945] = { - [sym_block_comment] = STATE(2945), - [sym_compiler_directive_decl] = STATE(2945), - [sym_fsi_directive_decl] = STATE(2945), - [sym_preproc_line] = STATE(2945), - [ts_builtin_sym_end] = ACTIONS(5304), - [sym_identifier] = ACTIONS(5306), - [anon_sym_namespace] = ACTIONS(5306), - [anon_sym_module] = ACTIONS(5306), - [anon_sym_open] = ACTIONS(5306), - [anon_sym_LBRACK_LT] = ACTIONS(5304), - [anon_sym_return] = ACTIONS(5306), - [anon_sym_type] = ACTIONS(5306), - [anon_sym_do] = ACTIONS(5306), - [anon_sym_and] = ACTIONS(5306), - [anon_sym_let] = ACTIONS(5306), - [anon_sym_let_BANG] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_null] = ACTIONS(5306), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5306), - [anon_sym_LBRACK_PIPE] = ACTIONS(5304), - [anon_sym_LBRACE] = ACTIONS(5306), - [anon_sym_LT_AT] = ACTIONS(5306), - [anon_sym_LT_AT_AT] = ACTIONS(5304), - [anon_sym_LBRACE_PIPE] = ACTIONS(5304), - [anon_sym_new] = ACTIONS(5306), - [anon_sym_return_BANG] = ACTIONS(5304), - [anon_sym_yield] = ACTIONS(5306), - [anon_sym_yield_BANG] = ACTIONS(5304), - [anon_sym_lazy] = ACTIONS(5306), - [anon_sym_assert] = ACTIONS(5306), - [anon_sym_upcast] = ACTIONS(5306), - [anon_sym_downcast] = ACTIONS(5306), - [anon_sym_for] = ACTIONS(5306), - [anon_sym_while] = ACTIONS(5306), - [anon_sym_if] = ACTIONS(5306), - [anon_sym_fun] = ACTIONS(5306), - [anon_sym_try] = ACTIONS(5306), - [anon_sym_match] = ACTIONS(5306), - [anon_sym_match_BANG] = ACTIONS(5304), - [anon_sym_function] = ACTIONS(5306), - [anon_sym_use] = ACTIONS(5306), - [anon_sym_use_BANG] = ACTIONS(5304), - [anon_sym_do_BANG] = ACTIONS(5304), - [anon_sym_begin] = ACTIONS(5306), - [anon_sym_exception] = ACTIONS(5306), - [aux_sym_char_token1] = ACTIONS(5304), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5306), - [anon_sym_DQUOTE] = ACTIONS(5306), - [anon_sym_AT_DQUOTE] = ACTIONS(5304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5304), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5304), - [sym_bool] = ACTIONS(5306), - [sym_unit] = ACTIONS(5304), - [anon_sym_LPAREN_PIPE] = ACTIONS(5306), - [sym_op_identifier] = ACTIONS(5304), - [anon_sym_PLUS] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_PLUS_DOT] = ACTIONS(5304), - [anon_sym_DASH_DOT] = ACTIONS(5304), - [anon_sym_PERCENT] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5304), - [aux_sym_prefix_op_token1] = ACTIONS(5304), - [sym_int] = ACTIONS(5306), - [sym_xint] = ACTIONS(5304), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5304), - [anon_sym_POUNDload] = ACTIONS(5304), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5304), - }, - [2946] = { - [sym_block_comment] = STATE(2946), - [sym_compiler_directive_decl] = STATE(2946), - [sym_fsi_directive_decl] = STATE(2946), - [sym_preproc_line] = STATE(2946), - [ts_builtin_sym_end] = ACTIONS(5308), - [sym_identifier] = ACTIONS(5310), - [anon_sym_namespace] = ACTIONS(5310), - [anon_sym_module] = ACTIONS(5310), - [anon_sym_open] = ACTIONS(5310), - [anon_sym_LBRACK_LT] = ACTIONS(5308), - [anon_sym_return] = ACTIONS(5310), - [anon_sym_type] = ACTIONS(5310), - [anon_sym_do] = ACTIONS(5310), - [anon_sym_and] = ACTIONS(5310), - [anon_sym_let] = ACTIONS(5310), - [anon_sym_let_BANG] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5310), - [anon_sym_null] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_LBRACK_PIPE] = ACTIONS(5308), - [anon_sym_LBRACE] = ACTIONS(5310), - [anon_sym_LT_AT] = ACTIONS(5310), - [anon_sym_LT_AT_AT] = ACTIONS(5308), - [anon_sym_LBRACE_PIPE] = ACTIONS(5308), - [anon_sym_new] = ACTIONS(5310), - [anon_sym_return_BANG] = ACTIONS(5308), - [anon_sym_yield] = ACTIONS(5310), - [anon_sym_yield_BANG] = ACTIONS(5308), - [anon_sym_lazy] = ACTIONS(5310), - [anon_sym_assert] = ACTIONS(5310), - [anon_sym_upcast] = ACTIONS(5310), - [anon_sym_downcast] = ACTIONS(5310), - [anon_sym_for] = ACTIONS(5310), - [anon_sym_while] = ACTIONS(5310), - [anon_sym_if] = ACTIONS(5310), - [anon_sym_fun] = ACTIONS(5310), - [anon_sym_try] = ACTIONS(5310), - [anon_sym_match] = ACTIONS(5310), - [anon_sym_match_BANG] = ACTIONS(5308), - [anon_sym_function] = ACTIONS(5310), - [anon_sym_use] = ACTIONS(5310), - [anon_sym_use_BANG] = ACTIONS(5308), - [anon_sym_do_BANG] = ACTIONS(5308), - [anon_sym_begin] = ACTIONS(5310), - [anon_sym_exception] = ACTIONS(5310), - [aux_sym_char_token1] = ACTIONS(5308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5310), - [anon_sym_DQUOTE] = ACTIONS(5310), - [anon_sym_AT_DQUOTE] = ACTIONS(5308), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5308), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5308), - [sym_bool] = ACTIONS(5310), - [sym_unit] = ACTIONS(5308), - [anon_sym_LPAREN_PIPE] = ACTIONS(5310), - [sym_op_identifier] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_PLUS_DOT] = ACTIONS(5308), - [anon_sym_DASH_DOT] = ACTIONS(5308), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_TILDE] = ACTIONS(5308), - [aux_sym_prefix_op_token1] = ACTIONS(5308), - [sym_int] = ACTIONS(5310), - [sym_xint] = ACTIONS(5308), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5308), - [anon_sym_POUNDload] = ACTIONS(5308), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5308), - }, - [2947] = { - [sym_block_comment] = STATE(2947), - [sym_compiler_directive_decl] = STATE(2947), - [sym_fsi_directive_decl] = STATE(2947), - [sym_preproc_line] = STATE(2947), - [ts_builtin_sym_end] = ACTIONS(5312), - [sym_identifier] = ACTIONS(5314), - [anon_sym_namespace] = ACTIONS(5314), - [anon_sym_module] = ACTIONS(5314), - [anon_sym_open] = ACTIONS(5314), - [anon_sym_LBRACK_LT] = ACTIONS(5312), - [anon_sym_return] = ACTIONS(5314), - [anon_sym_type] = ACTIONS(5314), - [anon_sym_do] = ACTIONS(5314), - [anon_sym_and] = ACTIONS(5314), - [anon_sym_let] = ACTIONS(5314), - [anon_sym_let_BANG] = ACTIONS(5312), - [anon_sym_LPAREN] = ACTIONS(5314), - [anon_sym_null] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5314), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5314), - [anon_sym_LBRACK_PIPE] = ACTIONS(5312), - [anon_sym_LBRACE] = ACTIONS(5314), - [anon_sym_LT_AT] = ACTIONS(5314), - [anon_sym_LT_AT_AT] = ACTIONS(5312), - [anon_sym_LBRACE_PIPE] = ACTIONS(5312), - [anon_sym_new] = ACTIONS(5314), - [anon_sym_return_BANG] = ACTIONS(5312), - [anon_sym_yield] = ACTIONS(5314), - [anon_sym_yield_BANG] = ACTIONS(5312), - [anon_sym_lazy] = ACTIONS(5314), - [anon_sym_assert] = ACTIONS(5314), - [anon_sym_upcast] = ACTIONS(5314), - [anon_sym_downcast] = ACTIONS(5314), - [anon_sym_for] = ACTIONS(5314), - [anon_sym_while] = ACTIONS(5314), - [anon_sym_if] = ACTIONS(5314), - [anon_sym_fun] = ACTIONS(5314), - [anon_sym_try] = ACTIONS(5314), - [anon_sym_match] = ACTIONS(5314), - [anon_sym_match_BANG] = ACTIONS(5312), - [anon_sym_function] = ACTIONS(5314), - [anon_sym_use] = ACTIONS(5314), - [anon_sym_use_BANG] = ACTIONS(5312), - [anon_sym_do_BANG] = ACTIONS(5312), - [anon_sym_begin] = ACTIONS(5314), - [anon_sym_exception] = ACTIONS(5314), - [aux_sym_char_token1] = ACTIONS(5312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5314), - [anon_sym_DQUOTE] = ACTIONS(5314), - [anon_sym_AT_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5312), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5312), - [sym_bool] = ACTIONS(5314), - [sym_unit] = ACTIONS(5312), - [anon_sym_LPAREN_PIPE] = ACTIONS(5314), - [sym_op_identifier] = ACTIONS(5312), - [anon_sym_PLUS] = ACTIONS(5314), - [anon_sym_DASH] = ACTIONS(5314), - [anon_sym_PLUS_DOT] = ACTIONS(5312), - [anon_sym_DASH_DOT] = ACTIONS(5312), - [anon_sym_PERCENT] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_TILDE] = ACTIONS(5312), - [aux_sym_prefix_op_token1] = ACTIONS(5312), - [sym_int] = ACTIONS(5314), - [sym_xint] = ACTIONS(5312), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5312), - [anon_sym_POUNDload] = ACTIONS(5312), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5312), - }, - [2948] = { - [sym_block_comment] = STATE(2948), - [sym_compiler_directive_decl] = STATE(2948), - [sym_fsi_directive_decl] = STATE(2948), - [sym_preproc_line] = STATE(2948), - [aux_sym_long_identifier_repeat1] = STATE(2948), + [2926] = { + [sym_block_comment] = STATE(2926), + [sym_compiler_directive_decl] = STATE(2926), + [sym_fsi_directive_decl] = STATE(2926), + [sym_preproc_line] = STATE(2926), + [aux_sym_long_identifier_repeat1] = STATE(2937), + [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(5316), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -348885,151 +347757,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_exception] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - }, - [2949] = { - [sym_block_comment] = STATE(2949), - [sym_compiler_directive_decl] = STATE(2949), - [sym_fsi_directive_decl] = STATE(2949), - [sym_preproc_line] = STATE(2949), - [ts_builtin_sym_end] = ACTIONS(5319), - [sym_identifier] = ACTIONS(5321), - [anon_sym_namespace] = ACTIONS(5321), - [anon_sym_module] = ACTIONS(5321), - [anon_sym_open] = ACTIONS(5321), - [anon_sym_LBRACK_LT] = ACTIONS(5319), - [anon_sym_return] = ACTIONS(5321), - [anon_sym_type] = ACTIONS(5321), - [anon_sym_do] = ACTIONS(5321), - [anon_sym_and] = ACTIONS(5321), - [anon_sym_let] = ACTIONS(5321), - [anon_sym_let_BANG] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5321), - [anon_sym_null] = ACTIONS(5321), - [anon_sym_AMP] = ACTIONS(5321), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5321), - [anon_sym_LBRACK_PIPE] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5321), - [anon_sym_LT_AT] = ACTIONS(5321), - [anon_sym_LT_AT_AT] = ACTIONS(5319), - [anon_sym_LBRACE_PIPE] = ACTIONS(5319), - [anon_sym_new] = ACTIONS(5321), - [anon_sym_return_BANG] = ACTIONS(5319), - [anon_sym_yield] = ACTIONS(5321), - [anon_sym_yield_BANG] = ACTIONS(5319), - [anon_sym_lazy] = ACTIONS(5321), - [anon_sym_assert] = ACTIONS(5321), - [anon_sym_upcast] = ACTIONS(5321), - [anon_sym_downcast] = ACTIONS(5321), - [anon_sym_for] = ACTIONS(5321), - [anon_sym_while] = ACTIONS(5321), - [anon_sym_if] = ACTIONS(5321), - [anon_sym_fun] = ACTIONS(5321), - [anon_sym_try] = ACTIONS(5321), - [anon_sym_match] = ACTIONS(5321), - [anon_sym_match_BANG] = ACTIONS(5319), - [anon_sym_function] = ACTIONS(5321), - [anon_sym_use] = ACTIONS(5321), - [anon_sym_use_BANG] = ACTIONS(5319), - [anon_sym_do_BANG] = ACTIONS(5319), - [anon_sym_begin] = ACTIONS(5321), - [anon_sym_exception] = ACTIONS(5321), - [aux_sym_char_token1] = ACTIONS(5319), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5321), - [anon_sym_DQUOTE] = ACTIONS(5321), - [anon_sym_AT_DQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5319), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5319), - [sym_bool] = ACTIONS(5321), - [sym_unit] = ACTIONS(5319), - [anon_sym_LPAREN_PIPE] = ACTIONS(5321), - [sym_op_identifier] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_PLUS_DOT] = ACTIONS(5319), - [anon_sym_DASH_DOT] = ACTIONS(5319), - [anon_sym_PERCENT] = ACTIONS(5319), - [anon_sym_AMP_AMP] = ACTIONS(5319), - [anon_sym_TILDE] = ACTIONS(5319), - [aux_sym_prefix_op_token1] = ACTIONS(5319), - [sym_int] = ACTIONS(5321), - [sym_xint] = ACTIONS(5319), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5319), - [anon_sym_POUNDload] = ACTIONS(5319), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5319), + [anon_sym_POUNDif] = ACTIONS(2986), }, - [2950] = { - [sym_block_comment] = STATE(2950), - [sym_compiler_directive_decl] = STATE(2950), - [sym_fsi_directive_decl] = STATE(2950), - [sym_preproc_line] = STATE(2950), - [aux_sym_long_identifier_repeat1] = STATE(2950), + [2927] = { + [sym_block_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(2937), + [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), - [anon_sym_GT_RBRACK] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(5323), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -349038,38 +347835,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_exception] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + }, + [2928] = { + [sym_type_arguments] = STATE(3085), + [sym_long_identifier] = STATE(3091), + [sym_block_comment] = STATE(2928), + [sym_compiler_directive_decl] = STATE(2928), + [sym_fsi_directive_decl] = STATE(2928), + [sym_preproc_line] = STATE(2928), + [aux_sym_compound_type_repeat1] = STATE(3042), + [sym_identifier] = ACTIONS(5221), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -349077,77 +347949,155 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2882), }, - [2951] = { - [sym_block_comment] = STATE(2951), - [sym_compiler_directive_decl] = STATE(2951), - [sym_fsi_directive_decl] = STATE(2951), - [sym_preproc_line] = STATE(2951), - [sym_identifier] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3068), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [2929] = { + [sym_type_arguments] = STATE(3085), + [sym_long_identifier] = STATE(3091), + [sym_block_comment] = STATE(2929), + [sym_compiler_directive_decl] = STATE(2929), + [sym_fsi_directive_decl] = STATE(2929), + [sym_preproc_line] = STATE(2929), + [aux_sym_compound_type_repeat1] = STATE(3042), + [sym_identifier] = ACTIONS(5221), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2900), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + }, + [2930] = { + [sym_type_arguments] = STATE(3085), + [sym_long_identifier] = STATE(3091), + [sym_block_comment] = STATE(2930), + [sym_compiler_directive_decl] = STATE(2930), + [sym_fsi_directive_decl] = STATE(2930), + [sym_preproc_line] = STATE(2930), + [aux_sym_compound_type_repeat1] = STATE(3042), + [sym_identifier] = ACTIONS(5221), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2908), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -349155,189 +348105,1128 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3068), + [anon_sym_POUNDif] = ACTIONS(2908), }, - [2952] = { - [sym_block_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(5326), - [sym_identifier] = ACTIONS(5328), - [anon_sym_namespace] = ACTIONS(5328), - [anon_sym_module] = ACTIONS(5328), - [anon_sym_open] = ACTIONS(5328), - [anon_sym_LBRACK_LT] = ACTIONS(5326), - [anon_sym_return] = ACTIONS(5328), - [anon_sym_type] = ACTIONS(5328), - [anon_sym_do] = ACTIONS(5328), - [anon_sym_and] = ACTIONS(5328), - [anon_sym_let] = ACTIONS(5328), - [anon_sym_let_BANG] = ACTIONS(5326), - [anon_sym_LPAREN] = ACTIONS(5328), - [anon_sym_null] = ACTIONS(5328), - [anon_sym_AMP] = ACTIONS(5328), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5328), - [anon_sym_LBRACK_PIPE] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5328), - [anon_sym_LT_AT] = ACTIONS(5328), - [anon_sym_LT_AT_AT] = ACTIONS(5326), - [anon_sym_LBRACE_PIPE] = ACTIONS(5326), - [anon_sym_new] = ACTIONS(5328), - [anon_sym_return_BANG] = ACTIONS(5326), - [anon_sym_yield] = ACTIONS(5328), - [anon_sym_yield_BANG] = ACTIONS(5326), - [anon_sym_lazy] = ACTIONS(5328), - [anon_sym_assert] = ACTIONS(5328), - [anon_sym_upcast] = ACTIONS(5328), - [anon_sym_downcast] = ACTIONS(5328), - [anon_sym_for] = ACTIONS(5328), - [anon_sym_while] = ACTIONS(5328), - [anon_sym_if] = ACTIONS(5328), - [anon_sym_fun] = ACTIONS(5328), - [anon_sym_try] = ACTIONS(5328), - [anon_sym_match] = ACTIONS(5328), - [anon_sym_match_BANG] = ACTIONS(5326), - [anon_sym_function] = ACTIONS(5328), - [anon_sym_use] = ACTIONS(5328), - [anon_sym_use_BANG] = ACTIONS(5326), - [anon_sym_do_BANG] = ACTIONS(5326), - [anon_sym_begin] = ACTIONS(5328), - [anon_sym_exception] = ACTIONS(5328), - [aux_sym_char_token1] = ACTIONS(5326), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5328), - [anon_sym_DQUOTE] = ACTIONS(5328), - [anon_sym_AT_DQUOTE] = ACTIONS(5326), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5326), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5326), - [sym_bool] = ACTIONS(5328), - [sym_unit] = ACTIONS(5326), - [anon_sym_LPAREN_PIPE] = ACTIONS(5328), - [sym_op_identifier] = ACTIONS(5326), - [anon_sym_PLUS] = ACTIONS(5328), - [anon_sym_DASH] = ACTIONS(5328), - [anon_sym_PLUS_DOT] = ACTIONS(5326), - [anon_sym_DASH_DOT] = ACTIONS(5326), - [anon_sym_PERCENT] = ACTIONS(5326), - [anon_sym_AMP_AMP] = ACTIONS(5326), - [anon_sym_TILDE] = ACTIONS(5326), - [aux_sym_prefix_op_token1] = ACTIONS(5326), - [sym_int] = ACTIONS(5328), - [sym_xint] = ACTIONS(5326), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5326), - [anon_sym_POUNDload] = ACTIONS(5326), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5326), + [2931] = { + [sym_block_comment] = STATE(2931), + [sym_compiler_directive_decl] = STATE(2931), + [sym_fsi_directive_decl] = STATE(2931), + [sym_preproc_line] = STATE(2931), + [aux_sym_long_identifier_repeat1] = STATE(2931), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(5223), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, - [2953] = { - [sym_block_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(5330), - [sym_identifier] = ACTIONS(5332), - [anon_sym_namespace] = ACTIONS(5332), - [anon_sym_module] = ACTIONS(5332), - [anon_sym_open] = ACTIONS(5332), - [anon_sym_LBRACK_LT] = ACTIONS(5330), - [anon_sym_return] = ACTIONS(5332), - [anon_sym_type] = ACTIONS(5332), - [anon_sym_do] = ACTIONS(5332), - [anon_sym_and] = ACTIONS(5332), - [anon_sym_let] = ACTIONS(5332), - [anon_sym_let_BANG] = ACTIONS(5330), - [anon_sym_LPAREN] = ACTIONS(5332), - [anon_sym_null] = ACTIONS(5332), - [anon_sym_AMP] = ACTIONS(5332), + [2932] = { + [sym_block_comment] = STATE(2932), + [sym_compiler_directive_decl] = STATE(2932), + [sym_fsi_directive_decl] = STATE(2932), + [sym_preproc_line] = STATE(2932), + [ts_builtin_sym_end] = ACTIONS(5226), + [sym_identifier] = ACTIONS(5228), + [anon_sym_namespace] = ACTIONS(5228), + [anon_sym_module] = ACTIONS(5228), + [anon_sym_open] = ACTIONS(5228), + [anon_sym_LBRACK_LT] = ACTIONS(5226), + [anon_sym_return] = ACTIONS(5228), + [anon_sym_type] = ACTIONS(5228), + [anon_sym_do] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_let] = ACTIONS(5228), + [anon_sym_let_BANG] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5228), + [anon_sym_null] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5228), + [anon_sym_LBRACK_PIPE] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5228), + [anon_sym_LT_AT] = ACTIONS(5228), + [anon_sym_LT_AT_AT] = ACTIONS(5226), + [anon_sym_LBRACE_PIPE] = ACTIONS(5226), + [anon_sym_new] = ACTIONS(5228), + [anon_sym_return_BANG] = ACTIONS(5226), + [anon_sym_yield] = ACTIONS(5228), + [anon_sym_yield_BANG] = ACTIONS(5226), + [anon_sym_lazy] = ACTIONS(5228), + [anon_sym_assert] = ACTIONS(5228), + [anon_sym_upcast] = ACTIONS(5228), + [anon_sym_downcast] = ACTIONS(5228), + [anon_sym_for] = ACTIONS(5228), + [anon_sym_while] = ACTIONS(5228), + [anon_sym_if] = ACTIONS(5228), + [anon_sym_fun] = ACTIONS(5228), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_match] = ACTIONS(5228), + [anon_sym_match_BANG] = ACTIONS(5226), + [anon_sym_function] = ACTIONS(5228), + [anon_sym_use] = ACTIONS(5228), + [anon_sym_use_BANG] = ACTIONS(5226), + [anon_sym_do_BANG] = ACTIONS(5226), + [anon_sym_begin] = ACTIONS(5228), + [anon_sym_interface] = ACTIONS(5228), + [anon_sym_exception] = ACTIONS(5228), + [aux_sym_char_token1] = ACTIONS(5226), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5228), + [anon_sym_DQUOTE] = ACTIONS(5228), + [anon_sym_AT_DQUOTE] = ACTIONS(5226), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5226), + [sym_bool] = ACTIONS(5228), + [sym_unit] = ACTIONS(5226), + [anon_sym_LPAREN_PIPE] = ACTIONS(5228), + [sym_op_identifier] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_PLUS_DOT] = ACTIONS(5226), + [anon_sym_DASH_DOT] = ACTIONS(5226), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_TILDE] = ACTIONS(5226), + [aux_sym_prefix_op_token1] = ACTIONS(5226), + [sym_int] = ACTIONS(5228), + [sym_xint] = ACTIONS(5226), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5226), + [anon_sym_POUNDload] = ACTIONS(5226), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5226), + }, + [2933] = { + [sym_block_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(5230), + [sym_identifier] = ACTIONS(5232), + [anon_sym_namespace] = ACTIONS(5232), + [anon_sym_module] = ACTIONS(5232), + [anon_sym_open] = ACTIONS(5232), + [anon_sym_LBRACK_LT] = ACTIONS(5230), + [anon_sym_return] = ACTIONS(5232), + [anon_sym_type] = ACTIONS(5232), + [anon_sym_do] = ACTIONS(5232), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_let] = ACTIONS(5232), + [anon_sym_let_BANG] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(5232), + [anon_sym_null] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5232), + [anon_sym_LBRACK_PIPE] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5232), + [anon_sym_LT_AT] = ACTIONS(5232), + [anon_sym_LT_AT_AT] = ACTIONS(5230), + [anon_sym_LBRACE_PIPE] = ACTIONS(5230), + [anon_sym_new] = ACTIONS(5232), + [anon_sym_return_BANG] = ACTIONS(5230), + [anon_sym_yield] = ACTIONS(5232), + [anon_sym_yield_BANG] = ACTIONS(5230), + [anon_sym_lazy] = ACTIONS(5232), + [anon_sym_assert] = ACTIONS(5232), + [anon_sym_upcast] = ACTIONS(5232), + [anon_sym_downcast] = ACTIONS(5232), + [anon_sym_for] = ACTIONS(5232), + [anon_sym_while] = ACTIONS(5232), + [anon_sym_if] = ACTIONS(5232), + [anon_sym_fun] = ACTIONS(5232), + [anon_sym_try] = ACTIONS(5232), + [anon_sym_match] = ACTIONS(5232), + [anon_sym_match_BANG] = ACTIONS(5230), + [anon_sym_function] = ACTIONS(5232), + [anon_sym_use] = ACTIONS(5232), + [anon_sym_use_BANG] = ACTIONS(5230), + [anon_sym_do_BANG] = ACTIONS(5230), + [anon_sym_begin] = ACTIONS(5232), + [anon_sym_interface] = ACTIONS(5232), + [anon_sym_exception] = ACTIONS(5232), + [aux_sym_char_token1] = ACTIONS(5230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5232), + [anon_sym_DQUOTE] = ACTIONS(5232), + [anon_sym_AT_DQUOTE] = ACTIONS(5230), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5230), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5230), + [sym_bool] = ACTIONS(5232), + [sym_unit] = ACTIONS(5230), + [anon_sym_LPAREN_PIPE] = ACTIONS(5232), + [sym_op_identifier] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_PLUS_DOT] = ACTIONS(5230), + [anon_sym_DASH_DOT] = ACTIONS(5230), + [anon_sym_PERCENT] = ACTIONS(5230), + [anon_sym_AMP_AMP] = ACTIONS(5230), + [anon_sym_TILDE] = ACTIONS(5230), + [aux_sym_prefix_op_token1] = ACTIONS(5230), + [sym_int] = ACTIONS(5232), + [sym_xint] = ACTIONS(5230), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5230), + [anon_sym_POUNDload] = ACTIONS(5230), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5230), + }, + [2934] = { + [sym_type_arguments] = STATE(3066), + [sym_long_identifier] = STATE(3078), + [sym_block_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(3023), + [sym_identifier] = ACTIONS(5234), + [anon_sym_GT_RBRACK] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5332), - [anon_sym_LBRACK_PIPE] = ACTIONS(5330), - [anon_sym_LBRACE] = ACTIONS(5332), - [anon_sym_LT_AT] = ACTIONS(5332), - [anon_sym_LT_AT_AT] = ACTIONS(5330), - [anon_sym_LBRACE_PIPE] = ACTIONS(5330), - [anon_sym_new] = ACTIONS(5332), - [anon_sym_return_BANG] = ACTIONS(5330), - [anon_sym_yield] = ACTIONS(5332), - [anon_sym_yield_BANG] = ACTIONS(5330), - [anon_sym_lazy] = ACTIONS(5332), - [anon_sym_assert] = ACTIONS(5332), - [anon_sym_upcast] = ACTIONS(5332), - [anon_sym_downcast] = ACTIONS(5332), - [anon_sym_for] = ACTIONS(5332), - [anon_sym_while] = ACTIONS(5332), - [anon_sym_if] = ACTIONS(5332), - [anon_sym_fun] = ACTIONS(5332), - [anon_sym_try] = ACTIONS(5332), - [anon_sym_match] = ACTIONS(5332), - [anon_sym_match_BANG] = ACTIONS(5330), - [anon_sym_function] = ACTIONS(5332), - [anon_sym_use] = ACTIONS(5332), - [anon_sym_use_BANG] = ACTIONS(5330), - [anon_sym_do_BANG] = ACTIONS(5330), - [anon_sym_begin] = ACTIONS(5332), - [anon_sym_exception] = ACTIONS(5332), - [aux_sym_char_token1] = ACTIONS(5330), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5332), - [anon_sym_DQUOTE] = ACTIONS(5332), - [anon_sym_AT_DQUOTE] = ACTIONS(5330), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5330), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5330), - [sym_bool] = ACTIONS(5332), - [sym_unit] = ACTIONS(5330), - [anon_sym_LPAREN_PIPE] = ACTIONS(5332), - [sym_op_identifier] = ACTIONS(5330), - [anon_sym_PLUS] = ACTIONS(5332), - [anon_sym_DASH] = ACTIONS(5332), - [anon_sym_PLUS_DOT] = ACTIONS(5330), - [anon_sym_DASH_DOT] = ACTIONS(5330), - [anon_sym_PERCENT] = ACTIONS(5330), - [anon_sym_AMP_AMP] = ACTIONS(5330), - [anon_sym_TILDE] = ACTIONS(5330), - [aux_sym_prefix_op_token1] = ACTIONS(5330), - [sym_int] = ACTIONS(5332), - [sym_xint] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_LT2] = ACTIONS(2065), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2904), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5330), - [anon_sym_POUNDload] = ACTIONS(5330), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5330), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__newline] = ACTIONS(2904), }, - [2954] = { - [sym_type_arguments] = STATE(3078), - [sym_long_identifier] = STATE(3074), - [sym_block_comment] = STATE(2954), - [sym_compiler_directive_decl] = STATE(2954), - [sym_fsi_directive_decl] = STATE(2954), - [sym_preproc_line] = STATE(2954), - [aux_sym_compound_type_repeat1] = STATE(3058), - [sym_identifier] = ACTIONS(5334), + [2935] = { + [sym_block_comment] = STATE(2935), + [sym_compiler_directive_decl] = STATE(2935), + [sym_fsi_directive_decl] = STATE(2935), + [sym_preproc_line] = STATE(2935), + [aux_sym_type_argument_repeat1] = STATE(2936), + [sym_identifier] = ACTIONS(2979), + [anon_sym_GT_RBRACK] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(5236), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), + }, + [2936] = { + [sym_block_comment] = STATE(2936), + [sym_compiler_directive_decl] = STATE(2936), + [sym_fsi_directive_decl] = STATE(2936), + [sym_preproc_line] = STATE(2936), + [aux_sym_type_argument_repeat1] = STATE(2941), + [sym_identifier] = ACTIONS(2962), + [anon_sym_GT_RBRACK] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2960), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(5236), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2960), + [anon_sym_DASH_DOT] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2960), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + }, + [2937] = { + [sym_block_comment] = STATE(2937), + [sym_compiler_directive_decl] = STATE(2937), + [sym_fsi_directive_decl] = STATE(2937), + [sym_preproc_line] = STATE(2937), + [aux_sym_long_identifier_repeat1] = STATE(2931), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_open] = ACTIONS(2956), + [anon_sym_LBRACK_LT] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_exception] = ACTIONS(2956), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2954), + [anon_sym_POUNDload] = ACTIONS(2954), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + }, + [2938] = { + [sym_block_comment] = STATE(2938), + [sym_compiler_directive_decl] = STATE(2938), + [sym_fsi_directive_decl] = STATE(2938), + [sym_preproc_line] = STATE(2938), + [aux_sym_type_argument_repeat1] = STATE(2944), + [sym_identifier] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2960), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(5211), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2960), + [anon_sym_DASH_DOT] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2960), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + }, + [2939] = { + [sym_block_comment] = STATE(2939), + [sym_compiler_directive_decl] = STATE(2939), + [sym_fsi_directive_decl] = STATE(2939), + [sym_preproc_line] = STATE(2939), + [aux_sym_long_identifier_repeat1] = STATE(2937), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_exception] = ACTIONS(2988), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + }, + [2940] = { + [sym_type_arguments] = STATE(3066), + [sym_long_identifier] = STATE(3078), + [sym_block_comment] = STATE(2940), + [sym_compiler_directive_decl] = STATE(2940), + [sym_fsi_directive_decl] = STATE(2940), + [sym_preproc_line] = STATE(2940), + [aux_sym_compound_type_repeat1] = STATE(3023), + [sym_identifier] = ACTIONS(5234), + [anon_sym_GT_RBRACK] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_LT2] = ACTIONS(2065), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2908), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__newline] = ACTIONS(2908), + }, + [2941] = { + [sym_block_comment] = STATE(2941), + [sym_compiler_directive_decl] = STATE(2941), + [sym_fsi_directive_decl] = STATE(2941), + [sym_preproc_line] = STATE(2941), + [aux_sym_type_argument_repeat1] = STATE(2941), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(5240), + [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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [2942] = { + [sym_type_arguments] = STATE(3085), + [sym_long_identifier] = STATE(3091), + [sym_block_comment] = STATE(2942), + [sym_compiler_directive_decl] = STATE(2942), + [sym_fsi_directive_decl] = STATE(2942), + [sym_preproc_line] = STATE(2942), + [aux_sym_compound_type_repeat1] = STATE(3042), + [sym_identifier] = ACTIONS(5221), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LT2] = ACTIONS(2085), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2087), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2904), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + }, + [2943] = { + [sym_type_arguments] = STATE(3066), + [sym_long_identifier] = STATE(3078), + [sym_block_comment] = STATE(2943), + [sym_compiler_directive_decl] = STATE(2943), + [sym_fsi_directive_decl] = STATE(2943), + [sym_preproc_line] = STATE(2943), + [aux_sym_compound_type_repeat1] = STATE(3023), + [sym_identifier] = ACTIONS(5234), + [anon_sym_GT_RBRACK] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_LT2] = ACTIONS(2065), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2900), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__newline] = ACTIONS(2900), + }, + [2944] = { + [sym_block_comment] = STATE(2944), + [sym_compiler_directive_decl] = STATE(2944), + [sym_fsi_directive_decl] = STATE(2944), + [sym_preproc_line] = STATE(2944), + [aux_sym_type_argument_repeat1] = STATE(2944), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = 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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(5243), + [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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + }, + [2945] = { + [sym_type_arguments] = STATE(3066), + [sym_long_identifier] = STATE(3078), + [sym_block_comment] = STATE(2945), + [sym_compiler_directive_decl] = STATE(2945), + [sym_fsi_directive_decl] = STATE(2945), + [sym_preproc_line] = STATE(2945), + [aux_sym_compound_type_repeat1] = STATE(3023), + [sym_identifier] = ACTIONS(5234), + [anon_sym_GT_RBRACK] = ACTIONS(2882), [anon_sym_return] = ACTIONS(2886), [anon_sym_do] = ACTIONS(2886), [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2882), [anon_sym_LPAREN] = ACTIONS(2886), [anon_sym_null] = ACTIONS(2886), [anon_sym_AMP] = ACTIONS(2886), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), [anon_sym_LBRACE] = ACTIONS(2886), [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2882), [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2882), [anon_sym_lazy] = ACTIONS(2886), [anon_sym_assert] = ACTIONS(2886), [anon_sym_upcast] = ACTIONS(2886), @@ -349346,2051 +349235,2825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2886), [anon_sym_if] = ACTIONS(2886), [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2109), + [anon_sym_DASH_GT] = ACTIONS(2061), [anon_sym_try] = ACTIONS(2886), [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2886), [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), [anon_sym_begin] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_LT2] = ACTIONS(2065), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2067), + [aux_sym_char_token1] = ACTIONS(2882), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), + [sym_unit] = ACTIONS(2882), [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2884), + [sym_op_identifier] = ACTIONS(2882), [anon_sym_PLUS] = ACTIONS(2886), [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2884), - [anon_sym_DASH_DOT] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [2946] = { + [sym_block_comment] = STATE(2946), + [sym_compiler_directive_decl] = STATE(2946), + [sym_fsi_directive_decl] = STATE(2946), + [sym_preproc_line] = STATE(2946), + [ts_builtin_sym_end] = ACTIONS(5246), + [sym_identifier] = ACTIONS(5248), + [anon_sym_namespace] = ACTIONS(5248), + [anon_sym_module] = ACTIONS(5248), + [anon_sym_open] = ACTIONS(5248), + [anon_sym_LBRACK_LT] = ACTIONS(5246), + [anon_sym_return] = ACTIONS(5248), + [anon_sym_type] = ACTIONS(5248), + [anon_sym_do] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_let] = ACTIONS(5248), + [anon_sym_let_BANG] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_null] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5248), + [anon_sym_LBRACK_PIPE] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5248), + [anon_sym_LT_AT] = ACTIONS(5248), + [anon_sym_LT_AT_AT] = ACTIONS(5246), + [anon_sym_LBRACE_PIPE] = ACTIONS(5246), + [anon_sym_new] = ACTIONS(5248), + [anon_sym_return_BANG] = ACTIONS(5246), + [anon_sym_yield] = ACTIONS(5248), + [anon_sym_yield_BANG] = ACTIONS(5246), + [anon_sym_lazy] = ACTIONS(5248), + [anon_sym_assert] = ACTIONS(5248), + [anon_sym_upcast] = ACTIONS(5248), + [anon_sym_downcast] = ACTIONS(5248), + [anon_sym_for] = ACTIONS(5248), + [anon_sym_while] = ACTIONS(5248), + [anon_sym_if] = ACTIONS(5248), + [anon_sym_fun] = ACTIONS(5248), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_match] = ACTIONS(5248), + [anon_sym_match_BANG] = ACTIONS(5246), + [anon_sym_function] = ACTIONS(5248), + [anon_sym_use] = ACTIONS(5248), + [anon_sym_use_BANG] = ACTIONS(5246), + [anon_sym_do_BANG] = ACTIONS(5246), + [anon_sym_begin] = ACTIONS(5248), + [anon_sym_exception] = ACTIONS(5248), + [aux_sym_char_token1] = ACTIONS(5246), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5248), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_AT_DQUOTE] = ACTIONS(5246), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5246), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5246), + [sym_bool] = ACTIONS(5248), + [sym_unit] = ACTIONS(5246), + [anon_sym_LPAREN_PIPE] = ACTIONS(5248), + [sym_op_identifier] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_PLUS_DOT] = ACTIONS(5246), + [anon_sym_DASH_DOT] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_TILDE] = ACTIONS(5246), + [aux_sym_prefix_op_token1] = ACTIONS(5246), + [sym_int] = ACTIONS(5248), + [sym_xint] = ACTIONS(5246), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5246), + [anon_sym_POUNDload] = ACTIONS(5246), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5246), + }, + [2947] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7918), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2947), + [sym_compiler_directive_decl] = STATE(2947), + [sym_fsi_directive_decl] = STATE(2947), + [sym_preproc_line] = STATE(2947), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5258), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2948] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7795), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2948), + [sym_compiler_directive_decl] = STATE(2948), + [sym_fsi_directive_decl] = STATE(2948), + [sym_preproc_line] = STATE(2948), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2949] = { + [sym_block_comment] = STATE(2949), + [sym_compiler_directive_decl] = STATE(2949), + [sym_fsi_directive_decl] = STATE(2949), + [sym_preproc_line] = STATE(2949), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2964), + [anon_sym_LBRACK_LT] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_exception] = ACTIONS(2964), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2966), + [anon_sym_POUNDload] = ACTIONS(2966), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + }, + [2950] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7215), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2950), + [sym_compiler_directive_decl] = STATE(2950), + [sym_fsi_directive_decl] = STATE(2950), + [sym_preproc_line] = STATE(2950), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2951] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8400), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2951), + [sym_compiler_directive_decl] = STATE(2951), + [sym_fsi_directive_decl] = STATE(2951), + [sym_preproc_line] = STATE(2951), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2952] = { + [sym_block_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(5194), + [sym_identifier] = ACTIONS(5196), + [anon_sym_namespace] = ACTIONS(5196), + [anon_sym_module] = ACTIONS(5196), + [anon_sym_open] = ACTIONS(5196), + [anon_sym_LBRACK_LT] = ACTIONS(5194), + [anon_sym_return] = ACTIONS(5196), + [anon_sym_type] = ACTIONS(5196), + [anon_sym_do] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_let] = ACTIONS(5196), + [anon_sym_let_BANG] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_null] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_LBRACK_PIPE] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_LT_AT] = ACTIONS(5196), + [anon_sym_LT_AT_AT] = ACTIONS(5194), + [anon_sym_LBRACE_PIPE] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5196), + [anon_sym_return_BANG] = ACTIONS(5194), + [anon_sym_yield] = ACTIONS(5196), + [anon_sym_yield_BANG] = ACTIONS(5194), + [anon_sym_lazy] = ACTIONS(5196), + [anon_sym_assert] = ACTIONS(5196), + [anon_sym_upcast] = ACTIONS(5196), + [anon_sym_downcast] = ACTIONS(5196), + [anon_sym_for] = ACTIONS(5196), + [anon_sym_while] = ACTIONS(5196), + [anon_sym_if] = ACTIONS(5196), + [anon_sym_fun] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_match] = ACTIONS(5196), + [anon_sym_match_BANG] = ACTIONS(5194), + [anon_sym_function] = ACTIONS(5196), + [anon_sym_use] = ACTIONS(5196), + [anon_sym_use_BANG] = ACTIONS(5194), + [anon_sym_do_BANG] = ACTIONS(5194), + [anon_sym_begin] = ACTIONS(5196), + [anon_sym_exception] = ACTIONS(5196), + [aux_sym_char_token1] = ACTIONS(5194), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5196), + [anon_sym_DQUOTE] = ACTIONS(5196), + [anon_sym_AT_DQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5194), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5194), + [sym_bool] = ACTIONS(5196), + [sym_unit] = ACTIONS(5194), + [anon_sym_LPAREN_PIPE] = ACTIONS(5196), + [sym_op_identifier] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_PLUS_DOT] = ACTIONS(5194), + [anon_sym_DASH_DOT] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_AMP_AMP] = ACTIONS(5194), + [anon_sym_TILDE] = ACTIONS(5194), + [aux_sym_prefix_op_token1] = ACTIONS(5194), + [sym_int] = ACTIONS(5196), + [sym_xint] = ACTIONS(5194), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5194), + [anon_sym_POUNDload] = ACTIONS(5194), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5194), + }, + [2953] = { + [sym_block_comment] = STATE(2953), + [sym_compiler_directive_decl] = STATE(2953), + [sym_fsi_directive_decl] = STATE(2953), + [sym_preproc_line] = STATE(2953), + [aux_sym_long_identifier_repeat1] = STATE(2953), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(5292), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + }, + [2954] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7421), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2954), + [sym_compiler_directive_decl] = STATE(2954), + [sym_fsi_directive_decl] = STATE(2954), + [sym_preproc_line] = STATE(2954), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5295), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), }, [2955] = { [sym_block_comment] = STATE(2955), [sym_compiler_directive_decl] = STATE(2955), [sym_fsi_directive_decl] = STATE(2955), [sym_preproc_line] = STATE(2955), - [sym_identifier] = ACTIONS(2977), - [anon_sym_GT_RBRACK] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__newline] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(5297), + [sym_identifier] = ACTIONS(5299), + [anon_sym_namespace] = ACTIONS(5299), + [anon_sym_module] = ACTIONS(5299), + [anon_sym_open] = ACTIONS(5299), + [anon_sym_LBRACK_LT] = ACTIONS(5297), + [anon_sym_return] = ACTIONS(5299), + [anon_sym_type] = ACTIONS(5299), + [anon_sym_do] = ACTIONS(5299), + [anon_sym_and] = ACTIONS(5299), + [anon_sym_let] = ACTIONS(5299), + [anon_sym_let_BANG] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_null] = ACTIONS(5299), + [anon_sym_AMP] = ACTIONS(5299), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_LBRACK_PIPE] = ACTIONS(5297), + [anon_sym_LBRACE] = ACTIONS(5299), + [anon_sym_LT_AT] = ACTIONS(5299), + [anon_sym_LT_AT_AT] = ACTIONS(5297), + [anon_sym_LBRACE_PIPE] = ACTIONS(5297), + [anon_sym_new] = ACTIONS(5299), + [anon_sym_return_BANG] = ACTIONS(5297), + [anon_sym_yield] = ACTIONS(5299), + [anon_sym_yield_BANG] = ACTIONS(5297), + [anon_sym_lazy] = ACTIONS(5299), + [anon_sym_assert] = ACTIONS(5299), + [anon_sym_upcast] = ACTIONS(5299), + [anon_sym_downcast] = ACTIONS(5299), + [anon_sym_for] = ACTIONS(5299), + [anon_sym_while] = ACTIONS(5299), + [anon_sym_if] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5299), + [anon_sym_try] = ACTIONS(5299), + [anon_sym_match] = ACTIONS(5299), + [anon_sym_match_BANG] = ACTIONS(5297), + [anon_sym_function] = ACTIONS(5299), + [anon_sym_use] = ACTIONS(5299), + [anon_sym_use_BANG] = ACTIONS(5297), + [anon_sym_do_BANG] = ACTIONS(5297), + [anon_sym_begin] = ACTIONS(5299), + [anon_sym_exception] = ACTIONS(5299), + [aux_sym_char_token1] = ACTIONS(5297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5299), + [anon_sym_DQUOTE] = ACTIONS(5299), + [anon_sym_AT_DQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5297), + [sym_bool] = ACTIONS(5299), + [sym_unit] = ACTIONS(5297), + [anon_sym_LPAREN_PIPE] = ACTIONS(5299), + [sym_op_identifier] = ACTIONS(5297), + [anon_sym_PLUS] = ACTIONS(5299), + [anon_sym_DASH] = ACTIONS(5299), + [anon_sym_PLUS_DOT] = ACTIONS(5297), + [anon_sym_DASH_DOT] = ACTIONS(5297), + [anon_sym_PERCENT] = ACTIONS(5297), + [anon_sym_AMP_AMP] = ACTIONS(5297), + [anon_sym_TILDE] = ACTIONS(5297), + [aux_sym_prefix_op_token1] = ACTIONS(5297), + [sym_int] = ACTIONS(5299), + [sym_xint] = ACTIONS(5297), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5297), + [anon_sym_POUNDload] = ACTIONS(5297), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5297), }, [2956] = { [sym_block_comment] = STATE(2956), [sym_compiler_directive_decl] = STATE(2956), [sym_fsi_directive_decl] = STATE(2956), [sym_preproc_line] = STATE(2956), - [aux_sym_type_argument_repeat1] = STATE(2965), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(5336), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [aux_sym_long_identifier_repeat1] = STATE(2953), + [sym_identifier] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(5301), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), }, [2957] = { - [sym_type_arguments] = STATE(3078), - [sym_long_identifier] = STATE(3074), [sym_block_comment] = STATE(2957), [sym_compiler_directive_decl] = STATE(2957), [sym_fsi_directive_decl] = STATE(2957), [sym_preproc_line] = STATE(2957), - [aux_sym_compound_type_repeat1] = STATE(3058), - [sym_identifier] = ACTIONS(5334), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [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(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(5303), + [sym_identifier] = ACTIONS(5305), + [anon_sym_namespace] = ACTIONS(5305), + [anon_sym_module] = ACTIONS(5305), + [anon_sym_open] = ACTIONS(5305), + [anon_sym_LBRACK_LT] = ACTIONS(5303), + [anon_sym_return] = ACTIONS(5305), + [anon_sym_type] = ACTIONS(5305), + [anon_sym_do] = ACTIONS(5305), + [anon_sym_and] = ACTIONS(5305), + [anon_sym_let] = ACTIONS(5305), + [anon_sym_let_BANG] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_null] = ACTIONS(5305), + [anon_sym_AMP] = ACTIONS(5305), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LBRACK_PIPE] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5305), + [anon_sym_LT_AT] = ACTIONS(5305), + [anon_sym_LT_AT_AT] = ACTIONS(5303), + [anon_sym_LBRACE_PIPE] = ACTIONS(5303), + [anon_sym_new] = ACTIONS(5305), + [anon_sym_return_BANG] = ACTIONS(5303), + [anon_sym_yield] = ACTIONS(5305), + [anon_sym_yield_BANG] = ACTIONS(5303), + [anon_sym_lazy] = ACTIONS(5305), + [anon_sym_assert] = ACTIONS(5305), + [anon_sym_upcast] = ACTIONS(5305), + [anon_sym_downcast] = ACTIONS(5305), + [anon_sym_for] = ACTIONS(5305), + [anon_sym_while] = ACTIONS(5305), + [anon_sym_if] = ACTIONS(5305), + [anon_sym_fun] = ACTIONS(5305), + [anon_sym_try] = ACTIONS(5305), + [anon_sym_match] = ACTIONS(5305), + [anon_sym_match_BANG] = ACTIONS(5303), + [anon_sym_function] = ACTIONS(5305), + [anon_sym_use] = ACTIONS(5305), + [anon_sym_use_BANG] = ACTIONS(5303), + [anon_sym_do_BANG] = ACTIONS(5303), + [anon_sym_begin] = ACTIONS(5305), + [anon_sym_exception] = ACTIONS(5305), + [aux_sym_char_token1] = ACTIONS(5303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5305), + [anon_sym_DQUOTE] = ACTIONS(5305), + [anon_sym_AT_DQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5303), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5303), + [sym_bool] = ACTIONS(5305), + [sym_unit] = ACTIONS(5303), + [anon_sym_LPAREN_PIPE] = ACTIONS(5305), + [sym_op_identifier] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_PLUS_DOT] = ACTIONS(5303), + [anon_sym_DASH_DOT] = ACTIONS(5303), + [anon_sym_PERCENT] = ACTIONS(5303), + [anon_sym_AMP_AMP] = ACTIONS(5303), + [anon_sym_TILDE] = ACTIONS(5303), + [aux_sym_prefix_op_token1] = ACTIONS(5303), + [sym_int] = ACTIONS(5305), + [sym_xint] = ACTIONS(5303), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5303), + [anon_sym_POUNDload] = ACTIONS(5303), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5303), }, [2958] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7370), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2958), [sym_compiler_directive_decl] = STATE(2958), [sym_fsi_directive_decl] = STATE(2958), [sym_preproc_line] = STATE(2958), - [aux_sym_type_argument_repeat1] = STATE(2958), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(5338), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5307), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2959] = { - [sym_type_arguments] = STATE(3078), - [sym_long_identifier] = STATE(3074), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7506), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2959), [sym_compiler_directive_decl] = STATE(2959), [sym_fsi_directive_decl] = STATE(2959), [sym_preproc_line] = STATE(2959), - [aux_sym_compound_type_repeat1] = STATE(3058), - [sym_identifier] = ACTIONS(5334), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2960] = { - [sym_type_arguments] = STATE(3078), - [sym_long_identifier] = STATE(3074), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7547), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2960), [sym_compiler_directive_decl] = STATE(2960), [sym_fsi_directive_decl] = STATE(2960), [sym_preproc_line] = STATE(2960), - [aux_sym_compound_type_repeat1] = STATE(3058), - [sym_identifier] = ACTIONS(5334), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2910), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2113), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2115), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2910), - [anon_sym_DASH_DOT] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5311), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), }, [2961] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7224), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2961), [sym_compiler_directive_decl] = STATE(2961), [sym_fsi_directive_decl] = STATE(2961), [sym_preproc_line] = STATE(2961), - [ts_builtin_sym_end] = ACTIONS(5190), - [sym_identifier] = ACTIONS(5192), - [anon_sym_namespace] = ACTIONS(5192), - [anon_sym_module] = ACTIONS(5192), - [anon_sym_open] = ACTIONS(5192), - [anon_sym_LBRACK_LT] = ACTIONS(5190), - [anon_sym_return] = ACTIONS(5192), - [anon_sym_type] = ACTIONS(5192), - [anon_sym_do] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_let] = ACTIONS(5192), - [anon_sym_let_BANG] = ACTIONS(5190), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_null] = ACTIONS(5192), - [anon_sym_AMP] = ACTIONS(5192), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_LBRACK_PIPE] = ACTIONS(5190), - [anon_sym_LBRACE] = ACTIONS(5192), - [anon_sym_LT_AT] = ACTIONS(5192), - [anon_sym_LT_AT_AT] = ACTIONS(5190), - [anon_sym_LBRACE_PIPE] = ACTIONS(5190), - [anon_sym_new] = ACTIONS(5192), - [anon_sym_return_BANG] = ACTIONS(5190), - [anon_sym_yield] = ACTIONS(5192), - [anon_sym_yield_BANG] = ACTIONS(5190), - [anon_sym_lazy] = ACTIONS(5192), - [anon_sym_assert] = ACTIONS(5192), - [anon_sym_upcast] = ACTIONS(5192), - [anon_sym_downcast] = ACTIONS(5192), - [anon_sym_for] = ACTIONS(5192), - [anon_sym_while] = ACTIONS(5192), - [anon_sym_if] = ACTIONS(5192), - [anon_sym_fun] = ACTIONS(5192), - [anon_sym_try] = ACTIONS(5192), - [anon_sym_match] = ACTIONS(5192), - [anon_sym_match_BANG] = ACTIONS(5190), - [anon_sym_function] = ACTIONS(5192), - [anon_sym_use] = ACTIONS(5192), - [anon_sym_use_BANG] = ACTIONS(5190), - [anon_sym_do_BANG] = ACTIONS(5190), - [anon_sym_begin] = ACTIONS(5192), - [anon_sym_exception] = ACTIONS(5192), - [aux_sym_char_token1] = ACTIONS(5190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5192), - [anon_sym_DQUOTE] = ACTIONS(5192), - [anon_sym_AT_DQUOTE] = ACTIONS(5190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5190), - [sym_bool] = ACTIONS(5192), - [sym_unit] = ACTIONS(5190), - [anon_sym_LPAREN_PIPE] = ACTIONS(5192), - [sym_op_identifier] = ACTIONS(5190), - [anon_sym_PLUS] = ACTIONS(5192), - [anon_sym_DASH] = ACTIONS(5192), - [anon_sym_PLUS_DOT] = ACTIONS(5190), - [anon_sym_DASH_DOT] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [aux_sym_prefix_op_token1] = ACTIONS(5190), - [sym_int] = ACTIONS(5192), - [sym_xint] = ACTIONS(5190), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5190), - [anon_sym_POUNDload] = ACTIONS(5190), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5190), }, [2962] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7393), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2962), [sym_compiler_directive_decl] = STATE(2962), [sym_fsi_directive_decl] = STATE(2962), [sym_preproc_line] = STATE(2962), - [ts_builtin_sym_end] = ACTIONS(5341), - [sym_identifier] = ACTIONS(5343), - [anon_sym_namespace] = ACTIONS(5343), - [anon_sym_module] = ACTIONS(5343), - [anon_sym_open] = ACTIONS(5343), - [anon_sym_LBRACK_LT] = ACTIONS(5341), - [anon_sym_return] = ACTIONS(5343), - [anon_sym_type] = ACTIONS(5343), - [anon_sym_do] = ACTIONS(5343), - [anon_sym_and] = ACTIONS(5343), - [anon_sym_let] = ACTIONS(5343), - [anon_sym_let_BANG] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_null] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5343), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_LBRACK_PIPE] = ACTIONS(5341), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_LT_AT] = ACTIONS(5343), - [anon_sym_LT_AT_AT] = ACTIONS(5341), - [anon_sym_LBRACE_PIPE] = ACTIONS(5341), - [anon_sym_new] = ACTIONS(5343), - [anon_sym_return_BANG] = ACTIONS(5341), - [anon_sym_yield] = ACTIONS(5343), - [anon_sym_yield_BANG] = ACTIONS(5341), - [anon_sym_lazy] = ACTIONS(5343), - [anon_sym_assert] = ACTIONS(5343), - [anon_sym_upcast] = ACTIONS(5343), - [anon_sym_downcast] = ACTIONS(5343), - [anon_sym_for] = ACTIONS(5343), - [anon_sym_while] = ACTIONS(5343), - [anon_sym_if] = ACTIONS(5343), - [anon_sym_fun] = ACTIONS(5343), - [anon_sym_try] = ACTIONS(5343), - [anon_sym_match] = ACTIONS(5343), - [anon_sym_match_BANG] = ACTIONS(5341), - [anon_sym_function] = ACTIONS(5343), - [anon_sym_use] = ACTIONS(5343), - [anon_sym_use_BANG] = ACTIONS(5341), - [anon_sym_do_BANG] = ACTIONS(5341), - [anon_sym_begin] = ACTIONS(5343), - [anon_sym_exception] = ACTIONS(5343), - [aux_sym_char_token1] = ACTIONS(5341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5343), - [anon_sym_DQUOTE] = ACTIONS(5343), - [anon_sym_AT_DQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5341), - [sym_bool] = ACTIONS(5343), - [sym_unit] = ACTIONS(5341), - [anon_sym_LPAREN_PIPE] = ACTIONS(5343), - [sym_op_identifier] = ACTIONS(5341), - [anon_sym_PLUS] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5343), - [anon_sym_PLUS_DOT] = ACTIONS(5341), - [anon_sym_DASH_DOT] = ACTIONS(5341), - [anon_sym_PERCENT] = ACTIONS(5341), - [anon_sym_AMP_AMP] = ACTIONS(5341), - [anon_sym_TILDE] = ACTIONS(5341), - [aux_sym_prefix_op_token1] = ACTIONS(5341), - [sym_int] = ACTIONS(5343), - [sym_xint] = ACTIONS(5341), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5341), - [anon_sym_POUNDload] = ACTIONS(5341), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5341), - }, - [2963] = { - [sym_block_comment] = STATE(2963), - [sym_compiler_directive_decl] = STATE(2963), - [sym_fsi_directive_decl] = STATE(2963), - [sym_preproc_line] = STATE(2963), - [aux_sym_long_identifier_repeat1] = STATE(2950), - [sym_identifier] = ACTIONS(2973), - [anon_sym_GT_RBRACK] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(5345), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5315), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__newline] = ACTIONS(2971), + }, + [2963] = { + [sym_block_comment] = STATE(2963), + [sym_compiler_directive_decl] = STATE(2963), + [sym_fsi_directive_decl] = STATE(2963), + [sym_preproc_line] = STATE(2963), + [ts_builtin_sym_end] = ACTIONS(5317), + [sym_identifier] = ACTIONS(5319), + [anon_sym_namespace] = ACTIONS(5319), + [anon_sym_module] = ACTIONS(5319), + [anon_sym_open] = ACTIONS(5319), + [anon_sym_LBRACK_LT] = ACTIONS(5317), + [anon_sym_return] = ACTIONS(5319), + [anon_sym_type] = ACTIONS(5319), + [anon_sym_do] = ACTIONS(5319), + [anon_sym_and] = ACTIONS(5319), + [anon_sym_let] = ACTIONS(5319), + [anon_sym_let_BANG] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5319), + [anon_sym_AMP] = ACTIONS(5319), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5319), + [anon_sym_LBRACK_PIPE] = ACTIONS(5317), + [anon_sym_LBRACE] = ACTIONS(5319), + [anon_sym_LT_AT] = ACTIONS(5319), + [anon_sym_LT_AT_AT] = ACTIONS(5317), + [anon_sym_LBRACE_PIPE] = ACTIONS(5317), + [anon_sym_new] = ACTIONS(5319), + [anon_sym_return_BANG] = ACTIONS(5317), + [anon_sym_yield] = ACTIONS(5319), + [anon_sym_yield_BANG] = ACTIONS(5317), + [anon_sym_lazy] = ACTIONS(5319), + [anon_sym_assert] = ACTIONS(5319), + [anon_sym_upcast] = ACTIONS(5319), + [anon_sym_downcast] = ACTIONS(5319), + [anon_sym_for] = ACTIONS(5319), + [anon_sym_while] = ACTIONS(5319), + [anon_sym_if] = ACTIONS(5319), + [anon_sym_fun] = ACTIONS(5319), + [anon_sym_try] = ACTIONS(5319), + [anon_sym_match] = ACTIONS(5319), + [anon_sym_match_BANG] = ACTIONS(5317), + [anon_sym_function] = ACTIONS(5319), + [anon_sym_use] = ACTIONS(5319), + [anon_sym_use_BANG] = ACTIONS(5317), + [anon_sym_do_BANG] = ACTIONS(5317), + [anon_sym_begin] = ACTIONS(5319), + [anon_sym_exception] = ACTIONS(5319), + [aux_sym_char_token1] = ACTIONS(5317), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5319), + [anon_sym_DQUOTE] = ACTIONS(5319), + [anon_sym_AT_DQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5317), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5317), + [sym_bool] = ACTIONS(5319), + [sym_unit] = ACTIONS(5317), + [anon_sym_LPAREN_PIPE] = ACTIONS(5319), + [sym_op_identifier] = ACTIONS(5317), + [anon_sym_PLUS] = ACTIONS(5319), + [anon_sym_DASH] = ACTIONS(5319), + [anon_sym_PLUS_DOT] = ACTIONS(5317), + [anon_sym_DASH_DOT] = ACTIONS(5317), + [anon_sym_PERCENT] = ACTIONS(5317), + [anon_sym_AMP_AMP] = ACTIONS(5317), + [anon_sym_TILDE] = ACTIONS(5317), + [aux_sym_prefix_op_token1] = ACTIONS(5317), + [sym_int] = ACTIONS(5319), + [sym_xint] = ACTIONS(5317), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5317), + [anon_sym_POUNDload] = ACTIONS(5317), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5317), }, [2964] = { [sym_block_comment] = STATE(2964), [sym_compiler_directive_decl] = STATE(2964), [sym_fsi_directive_decl] = STATE(2964), [sym_preproc_line] = STATE(2964), - [ts_builtin_sym_end] = ACTIONS(5347), - [sym_identifier] = ACTIONS(5349), - [anon_sym_namespace] = ACTIONS(5349), - [anon_sym_module] = ACTIONS(5349), - [anon_sym_open] = ACTIONS(5349), - [anon_sym_LBRACK_LT] = ACTIONS(5347), - [anon_sym_return] = ACTIONS(5349), - [anon_sym_type] = ACTIONS(5349), - [anon_sym_do] = ACTIONS(5349), - [anon_sym_and] = ACTIONS(5349), - [anon_sym_let] = ACTIONS(5349), - [anon_sym_let_BANG] = ACTIONS(5347), - [anon_sym_LPAREN] = ACTIONS(5349), - [anon_sym_null] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_LBRACK_PIPE] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5349), - [anon_sym_LT_AT] = ACTIONS(5349), - [anon_sym_LT_AT_AT] = ACTIONS(5347), - [anon_sym_LBRACE_PIPE] = ACTIONS(5347), - [anon_sym_new] = ACTIONS(5349), - [anon_sym_return_BANG] = ACTIONS(5347), - [anon_sym_yield] = ACTIONS(5349), - [anon_sym_yield_BANG] = ACTIONS(5347), - [anon_sym_lazy] = ACTIONS(5349), - [anon_sym_assert] = ACTIONS(5349), - [anon_sym_upcast] = ACTIONS(5349), - [anon_sym_downcast] = ACTIONS(5349), - [anon_sym_for] = ACTIONS(5349), - [anon_sym_while] = ACTIONS(5349), - [anon_sym_if] = ACTIONS(5349), - [anon_sym_fun] = ACTIONS(5349), - [anon_sym_try] = ACTIONS(5349), - [anon_sym_match] = ACTIONS(5349), - [anon_sym_match_BANG] = ACTIONS(5347), - [anon_sym_function] = ACTIONS(5349), - [anon_sym_use] = ACTIONS(5349), - [anon_sym_use_BANG] = ACTIONS(5347), - [anon_sym_do_BANG] = ACTIONS(5347), - [anon_sym_begin] = ACTIONS(5349), - [anon_sym_exception] = ACTIONS(5349), - [aux_sym_char_token1] = ACTIONS(5347), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), - [anon_sym_DQUOTE] = ACTIONS(5349), - [anon_sym_AT_DQUOTE] = ACTIONS(5347), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5347), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5347), - [sym_bool] = ACTIONS(5349), - [sym_unit] = ACTIONS(5347), - [anon_sym_LPAREN_PIPE] = ACTIONS(5349), - [sym_op_identifier] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_PLUS_DOT] = ACTIONS(5347), - [anon_sym_DASH_DOT] = ACTIONS(5347), - [anon_sym_PERCENT] = ACTIONS(5347), - [anon_sym_AMP_AMP] = ACTIONS(5347), - [anon_sym_TILDE] = ACTIONS(5347), - [aux_sym_prefix_op_token1] = ACTIONS(5347), - [sym_int] = ACTIONS(5349), - [sym_xint] = ACTIONS(5347), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5347), - [anon_sym_POUNDload] = ACTIONS(5347), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5347), + [aux_sym_long_identifier_repeat1] = STATE(2964), + [sym_identifier] = ACTIONS(2964), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(5321), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [2965] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8022), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2965), [sym_compiler_directive_decl] = STATE(2965), [sym_fsi_directive_decl] = STATE(2965), [sym_preproc_line] = STATE(2965), - [aux_sym_type_argument_repeat1] = STATE(2958), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(5336), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [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(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), }, [2966] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8113), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2966), [sym_compiler_directive_decl] = STATE(2966), [sym_fsi_directive_decl] = STATE(2966), [sym_preproc_line] = STATE(2966), - [ts_builtin_sym_end] = ACTIONS(5351), - [sym_identifier] = ACTIONS(5353), - [anon_sym_namespace] = ACTIONS(5353), - [anon_sym_module] = ACTIONS(5353), - [anon_sym_open] = ACTIONS(5353), - [anon_sym_LBRACK_LT] = ACTIONS(5351), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_type] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_and] = ACTIONS(5353), - [anon_sym_let] = ACTIONS(5353), - [anon_sym_let_BANG] = ACTIONS(5351), - [anon_sym_LPAREN] = ACTIONS(5353), - [anon_sym_null] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_LBRACK_PIPE] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5353), - [anon_sym_LT_AT] = ACTIONS(5353), - [anon_sym_LT_AT_AT] = ACTIONS(5351), - [anon_sym_LBRACE_PIPE] = ACTIONS(5351), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_return_BANG] = ACTIONS(5351), - [anon_sym_yield] = ACTIONS(5353), - [anon_sym_yield_BANG] = ACTIONS(5351), - [anon_sym_lazy] = ACTIONS(5353), - [anon_sym_assert] = ACTIONS(5353), - [anon_sym_upcast] = ACTIONS(5353), - [anon_sym_downcast] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [anon_sym_fun] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_match] = ACTIONS(5353), - [anon_sym_match_BANG] = ACTIONS(5351), - [anon_sym_function] = ACTIONS(5353), - [anon_sym_use] = ACTIONS(5353), - [anon_sym_use_BANG] = ACTIONS(5351), - [anon_sym_do_BANG] = ACTIONS(5351), - [anon_sym_begin] = ACTIONS(5353), - [anon_sym_exception] = ACTIONS(5353), - [aux_sym_char_token1] = ACTIONS(5351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5353), - [anon_sym_AT_DQUOTE] = ACTIONS(5351), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5351), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5351), - [sym_bool] = ACTIONS(5353), - [sym_unit] = ACTIONS(5351), - [anon_sym_LPAREN_PIPE] = ACTIONS(5353), - [sym_op_identifier] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_PLUS_DOT] = ACTIONS(5351), - [anon_sym_DASH_DOT] = ACTIONS(5351), - [anon_sym_PERCENT] = ACTIONS(5351), - [anon_sym_AMP_AMP] = ACTIONS(5351), - [anon_sym_TILDE] = ACTIONS(5351), - [aux_sym_prefix_op_token1] = ACTIONS(5351), - [sym_int] = ACTIONS(5353), - [sym_xint] = ACTIONS(5351), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5351), - [anon_sym_POUNDload] = ACTIONS(5351), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5351), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5326), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2967] = { + [sym_type_arguments] = STATE(3097), + [sym_long_identifier] = STATE(3104), [sym_block_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(5355), - [sym_identifier] = ACTIONS(5357), - [anon_sym_namespace] = ACTIONS(5357), - [anon_sym_module] = ACTIONS(5357), - [anon_sym_open] = ACTIONS(5357), - [anon_sym_LBRACK_LT] = ACTIONS(5355), - [anon_sym_return] = ACTIONS(5357), - [anon_sym_type] = ACTIONS(5357), - [anon_sym_do] = ACTIONS(5357), - [anon_sym_and] = ACTIONS(5357), - [anon_sym_let] = ACTIONS(5357), - [anon_sym_let_BANG] = ACTIONS(5355), - [anon_sym_LPAREN] = ACTIONS(5357), - [anon_sym_null] = ACTIONS(5357), - [anon_sym_AMP] = ACTIONS(5357), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5357), - [anon_sym_LBRACK_PIPE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5357), - [anon_sym_LT_AT] = ACTIONS(5357), - [anon_sym_LT_AT_AT] = ACTIONS(5355), - [anon_sym_LBRACE_PIPE] = ACTIONS(5355), - [anon_sym_new] = ACTIONS(5357), - [anon_sym_return_BANG] = ACTIONS(5355), - [anon_sym_yield] = ACTIONS(5357), - [anon_sym_yield_BANG] = ACTIONS(5355), - [anon_sym_lazy] = ACTIONS(5357), - [anon_sym_assert] = ACTIONS(5357), - [anon_sym_upcast] = ACTIONS(5357), - [anon_sym_downcast] = ACTIONS(5357), - [anon_sym_for] = ACTIONS(5357), - [anon_sym_while] = ACTIONS(5357), - [anon_sym_if] = ACTIONS(5357), - [anon_sym_fun] = ACTIONS(5357), - [anon_sym_try] = ACTIONS(5357), - [anon_sym_match] = ACTIONS(5357), - [anon_sym_match_BANG] = ACTIONS(5355), - [anon_sym_function] = ACTIONS(5357), - [anon_sym_use] = ACTIONS(5357), - [anon_sym_use_BANG] = ACTIONS(5355), - [anon_sym_do_BANG] = ACTIONS(5355), - [anon_sym_begin] = ACTIONS(5357), - [anon_sym_exception] = ACTIONS(5357), - [aux_sym_char_token1] = ACTIONS(5355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5357), - [anon_sym_DQUOTE] = ACTIONS(5357), - [anon_sym_AT_DQUOTE] = ACTIONS(5355), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5355), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5355), - [sym_bool] = ACTIONS(5357), - [sym_unit] = ACTIONS(5355), - [anon_sym_LPAREN_PIPE] = ACTIONS(5357), - [sym_op_identifier] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_PLUS_DOT] = ACTIONS(5355), - [anon_sym_DASH_DOT] = ACTIONS(5355), - [anon_sym_PERCENT] = ACTIONS(5355), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_TILDE] = ACTIONS(5355), - [aux_sym_prefix_op_token1] = ACTIONS(5355), - [sym_int] = ACTIONS(5357), - [sym_xint] = ACTIONS(5355), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5355), - [anon_sym_POUNDload] = ACTIONS(5355), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5355), + [aux_sym_compound_type_repeat1] = STATE(3061), + [sym_identifier] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2904), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), + [sym__dedent] = ACTIONS(2904), }, [2968] = { [sym_block_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(5359), - [sym_identifier] = ACTIONS(5361), - [anon_sym_namespace] = ACTIONS(5361), - [anon_sym_module] = ACTIONS(5361), - [anon_sym_open] = ACTIONS(5361), - [anon_sym_LBRACK_LT] = ACTIONS(5359), - [anon_sym_return] = ACTIONS(5361), - [anon_sym_type] = ACTIONS(5361), - [anon_sym_do] = ACTIONS(5361), - [anon_sym_and] = ACTIONS(5361), - [anon_sym_let] = ACTIONS(5361), - [anon_sym_let_BANG] = ACTIONS(5359), - [anon_sym_LPAREN] = ACTIONS(5361), - [anon_sym_null] = ACTIONS(5361), - [anon_sym_AMP] = ACTIONS(5361), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5361), - [anon_sym_LBRACK_PIPE] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5361), - [anon_sym_LT_AT] = ACTIONS(5361), - [anon_sym_LT_AT_AT] = ACTIONS(5359), - [anon_sym_LBRACE_PIPE] = ACTIONS(5359), - [anon_sym_new] = ACTIONS(5361), - [anon_sym_return_BANG] = ACTIONS(5359), - [anon_sym_yield] = ACTIONS(5361), - [anon_sym_yield_BANG] = ACTIONS(5359), - [anon_sym_lazy] = ACTIONS(5361), - [anon_sym_assert] = ACTIONS(5361), - [anon_sym_upcast] = ACTIONS(5361), - [anon_sym_downcast] = ACTIONS(5361), - [anon_sym_for] = ACTIONS(5361), - [anon_sym_while] = ACTIONS(5361), - [anon_sym_if] = ACTIONS(5361), - [anon_sym_fun] = ACTIONS(5361), - [anon_sym_try] = ACTIONS(5361), - [anon_sym_match] = ACTIONS(5361), - [anon_sym_match_BANG] = ACTIONS(5359), - [anon_sym_function] = ACTIONS(5361), - [anon_sym_use] = ACTIONS(5361), - [anon_sym_use_BANG] = ACTIONS(5359), - [anon_sym_do_BANG] = ACTIONS(5359), - [anon_sym_begin] = ACTIONS(5361), - [anon_sym_exception] = ACTIONS(5361), - [aux_sym_char_token1] = ACTIONS(5359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5361), - [anon_sym_DQUOTE] = ACTIONS(5361), - [anon_sym_AT_DQUOTE] = ACTIONS(5359), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5359), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5359), - [sym_bool] = ACTIONS(5361), - [sym_unit] = ACTIONS(5359), - [anon_sym_LPAREN_PIPE] = ACTIONS(5361), - [sym_op_identifier] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_PLUS_DOT] = ACTIONS(5359), - [anon_sym_DASH_DOT] = ACTIONS(5359), - [anon_sym_PERCENT] = ACTIONS(5359), - [anon_sym_AMP_AMP] = ACTIONS(5359), - [anon_sym_TILDE] = ACTIONS(5359), - [aux_sym_prefix_op_token1] = ACTIONS(5359), - [sym_int] = ACTIONS(5361), - [sym_xint] = ACTIONS(5359), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5359), - [anon_sym_POUNDload] = ACTIONS(5359), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5359), + [ts_builtin_sym_end] = ACTIONS(5330), + [sym_identifier] = ACTIONS(5332), + [anon_sym_namespace] = ACTIONS(5332), + [anon_sym_module] = ACTIONS(5332), + [anon_sym_open] = ACTIONS(5332), + [anon_sym_LBRACK_LT] = ACTIONS(5330), + [anon_sym_return] = ACTIONS(5332), + [anon_sym_type] = ACTIONS(5332), + [anon_sym_do] = ACTIONS(5332), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_let] = ACTIONS(5332), + [anon_sym_let_BANG] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5332), + [anon_sym_null] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5332), + [anon_sym_LBRACK_PIPE] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5332), + [anon_sym_LT_AT] = ACTIONS(5332), + [anon_sym_LT_AT_AT] = ACTIONS(5330), + [anon_sym_LBRACE_PIPE] = ACTIONS(5330), + [anon_sym_new] = ACTIONS(5332), + [anon_sym_return_BANG] = ACTIONS(5330), + [anon_sym_yield] = ACTIONS(5332), + [anon_sym_yield_BANG] = ACTIONS(5330), + [anon_sym_lazy] = ACTIONS(5332), + [anon_sym_assert] = ACTIONS(5332), + [anon_sym_upcast] = ACTIONS(5332), + [anon_sym_downcast] = ACTIONS(5332), + [anon_sym_for] = ACTIONS(5332), + [anon_sym_while] = ACTIONS(5332), + [anon_sym_if] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5332), + [anon_sym_try] = ACTIONS(5332), + [anon_sym_match] = ACTIONS(5332), + [anon_sym_match_BANG] = ACTIONS(5330), + [anon_sym_function] = ACTIONS(5332), + [anon_sym_use] = ACTIONS(5332), + [anon_sym_use_BANG] = ACTIONS(5330), + [anon_sym_do_BANG] = ACTIONS(5330), + [anon_sym_begin] = ACTIONS(5332), + [anon_sym_exception] = ACTIONS(5332), + [aux_sym_char_token1] = ACTIONS(5330), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(5332), + [anon_sym_AT_DQUOTE] = ACTIONS(5330), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5330), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5330), + [sym_bool] = ACTIONS(5332), + [sym_unit] = ACTIONS(5330), + [anon_sym_LPAREN_PIPE] = ACTIONS(5332), + [sym_op_identifier] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_PLUS_DOT] = ACTIONS(5330), + [anon_sym_DASH_DOT] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5330), + [aux_sym_prefix_op_token1] = ACTIONS(5330), + [sym_int] = ACTIONS(5332), + [sym_xint] = ACTIONS(5330), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5330), + [anon_sym_POUNDload] = ACTIONS(5330), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5330), }, [2969] = { + [sym_type_arguments] = STATE(3097), + [sym_long_identifier] = STATE(3104), [sym_block_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(5363), - [sym_identifier] = ACTIONS(5365), - [anon_sym_namespace] = ACTIONS(5365), - [anon_sym_module] = ACTIONS(5365), - [anon_sym_open] = ACTIONS(5365), - [anon_sym_LBRACK_LT] = ACTIONS(5363), - [anon_sym_return] = ACTIONS(5365), - [anon_sym_type] = ACTIONS(5365), - [anon_sym_do] = ACTIONS(5365), - [anon_sym_and] = ACTIONS(5365), - [anon_sym_let] = ACTIONS(5365), - [anon_sym_let_BANG] = ACTIONS(5363), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_null] = ACTIONS(5365), - [anon_sym_AMP] = ACTIONS(5365), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_LBRACK_PIPE] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5365), - [anon_sym_LT_AT] = ACTIONS(5365), - [anon_sym_LT_AT_AT] = ACTIONS(5363), - [anon_sym_LBRACE_PIPE] = ACTIONS(5363), - [anon_sym_new] = ACTIONS(5365), - [anon_sym_return_BANG] = ACTIONS(5363), - [anon_sym_yield] = ACTIONS(5365), - [anon_sym_yield_BANG] = ACTIONS(5363), - [anon_sym_lazy] = ACTIONS(5365), - [anon_sym_assert] = ACTIONS(5365), - [anon_sym_upcast] = ACTIONS(5365), - [anon_sym_downcast] = ACTIONS(5365), - [anon_sym_for] = ACTIONS(5365), - [anon_sym_while] = ACTIONS(5365), - [anon_sym_if] = ACTIONS(5365), - [anon_sym_fun] = ACTIONS(5365), - [anon_sym_try] = ACTIONS(5365), - [anon_sym_match] = ACTIONS(5365), - [anon_sym_match_BANG] = ACTIONS(5363), - [anon_sym_function] = ACTIONS(5365), - [anon_sym_use] = ACTIONS(5365), - [anon_sym_use_BANG] = ACTIONS(5363), - [anon_sym_do_BANG] = ACTIONS(5363), - [anon_sym_begin] = ACTIONS(5365), - [anon_sym_exception] = ACTIONS(5365), - [aux_sym_char_token1] = ACTIONS(5363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5365), - [anon_sym_DQUOTE] = ACTIONS(5365), - [anon_sym_AT_DQUOTE] = ACTIONS(5363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5363), - [sym_bool] = ACTIONS(5365), - [sym_unit] = ACTIONS(5363), - [anon_sym_LPAREN_PIPE] = ACTIONS(5365), - [sym_op_identifier] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_PLUS_DOT] = ACTIONS(5363), - [anon_sym_DASH_DOT] = ACTIONS(5363), - [anon_sym_PERCENT] = ACTIONS(5363), - [anon_sym_AMP_AMP] = ACTIONS(5363), - [anon_sym_TILDE] = ACTIONS(5363), - [aux_sym_prefix_op_token1] = ACTIONS(5363), - [sym_int] = ACTIONS(5365), - [sym_xint] = ACTIONS(5363), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5363), - [anon_sym_POUNDload] = ACTIONS(5363), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5363), + [aux_sym_compound_type_repeat1] = STATE(3061), + [sym_identifier] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2908), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), + [sym__dedent] = ACTIONS(2908), }, [2970] = { + [sym_type_arguments] = STATE(3097), + [sym_long_identifier] = STATE(3104), [sym_block_comment] = STATE(2970), [sym_compiler_directive_decl] = STATE(2970), [sym_fsi_directive_decl] = STATE(2970), [sym_preproc_line] = STATE(2970), - [ts_builtin_sym_end] = ACTIONS(5367), - [sym_identifier] = ACTIONS(5369), - [anon_sym_namespace] = ACTIONS(5369), - [anon_sym_module] = ACTIONS(5369), - [anon_sym_open] = ACTIONS(5369), - [anon_sym_LBRACK_LT] = ACTIONS(5367), - [anon_sym_return] = ACTIONS(5369), - [anon_sym_type] = ACTIONS(5369), - [anon_sym_do] = ACTIONS(5369), - [anon_sym_and] = ACTIONS(5369), - [anon_sym_let] = ACTIONS(5369), - [anon_sym_let_BANG] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_null] = ACTIONS(5369), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_LBRACK_PIPE] = ACTIONS(5367), - [anon_sym_LBRACE] = ACTIONS(5369), - [anon_sym_LT_AT] = ACTIONS(5369), - [anon_sym_LT_AT_AT] = ACTIONS(5367), - [anon_sym_LBRACE_PIPE] = ACTIONS(5367), - [anon_sym_new] = ACTIONS(5369), - [anon_sym_return_BANG] = ACTIONS(5367), - [anon_sym_yield] = ACTIONS(5369), - [anon_sym_yield_BANG] = ACTIONS(5367), - [anon_sym_lazy] = ACTIONS(5369), - [anon_sym_assert] = ACTIONS(5369), - [anon_sym_upcast] = ACTIONS(5369), - [anon_sym_downcast] = ACTIONS(5369), - [anon_sym_for] = ACTIONS(5369), - [anon_sym_while] = ACTIONS(5369), - [anon_sym_if] = ACTIONS(5369), - [anon_sym_fun] = ACTIONS(5369), - [anon_sym_try] = ACTIONS(5369), - [anon_sym_match] = ACTIONS(5369), - [anon_sym_match_BANG] = ACTIONS(5367), - [anon_sym_function] = ACTIONS(5369), - [anon_sym_use] = ACTIONS(5369), - [anon_sym_use_BANG] = ACTIONS(5367), - [anon_sym_do_BANG] = ACTIONS(5367), - [anon_sym_begin] = ACTIONS(5369), - [anon_sym_exception] = ACTIONS(5369), - [aux_sym_char_token1] = ACTIONS(5367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5369), - [anon_sym_DQUOTE] = ACTIONS(5369), - [anon_sym_AT_DQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5367), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5367), - [sym_bool] = ACTIONS(5369), - [sym_unit] = ACTIONS(5367), - [anon_sym_LPAREN_PIPE] = ACTIONS(5369), - [sym_op_identifier] = ACTIONS(5367), - [anon_sym_PLUS] = ACTIONS(5369), - [anon_sym_DASH] = ACTIONS(5369), - [anon_sym_PLUS_DOT] = ACTIONS(5367), - [anon_sym_DASH_DOT] = ACTIONS(5367), - [anon_sym_PERCENT] = ACTIONS(5367), - [anon_sym_AMP_AMP] = ACTIONS(5367), - [anon_sym_TILDE] = ACTIONS(5367), - [aux_sym_prefix_op_token1] = ACTIONS(5367), - [sym_int] = ACTIONS(5369), - [sym_xint] = ACTIONS(5367), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5367), - [anon_sym_POUNDload] = ACTIONS(5367), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5367), + [aux_sym_compound_type_repeat1] = STATE(3061), + [sym_identifier] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, [2971] = { + [sym_type_arguments] = STATE(3097), + [sym_long_identifier] = STATE(3104), [sym_block_comment] = STATE(2971), [sym_compiler_directive_decl] = STATE(2971), [sym_fsi_directive_decl] = STATE(2971), [sym_preproc_line] = STATE(2971), - [ts_builtin_sym_end] = ACTIONS(5371), - [sym_identifier] = ACTIONS(5373), - [anon_sym_namespace] = ACTIONS(5373), - [anon_sym_module] = ACTIONS(5373), - [anon_sym_open] = ACTIONS(5373), - [anon_sym_LBRACK_LT] = ACTIONS(5371), - [anon_sym_return] = ACTIONS(5373), - [anon_sym_type] = ACTIONS(5373), - [anon_sym_do] = ACTIONS(5373), - [anon_sym_and] = ACTIONS(5373), - [anon_sym_let] = ACTIONS(5373), - [anon_sym_let_BANG] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_null] = ACTIONS(5373), - [anon_sym_AMP] = ACTIONS(5373), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_LBRACK_PIPE] = ACTIONS(5371), - [anon_sym_LBRACE] = ACTIONS(5373), - [anon_sym_LT_AT] = ACTIONS(5373), - [anon_sym_LT_AT_AT] = ACTIONS(5371), - [anon_sym_LBRACE_PIPE] = ACTIONS(5371), - [anon_sym_new] = ACTIONS(5373), - [anon_sym_return_BANG] = ACTIONS(5371), - [anon_sym_yield] = ACTIONS(5373), - [anon_sym_yield_BANG] = ACTIONS(5371), - [anon_sym_lazy] = ACTIONS(5373), - [anon_sym_assert] = ACTIONS(5373), - [anon_sym_upcast] = ACTIONS(5373), - [anon_sym_downcast] = ACTIONS(5373), - [anon_sym_for] = ACTIONS(5373), - [anon_sym_while] = ACTIONS(5373), - [anon_sym_if] = ACTIONS(5373), - [anon_sym_fun] = ACTIONS(5373), - [anon_sym_try] = ACTIONS(5373), - [anon_sym_match] = ACTIONS(5373), - [anon_sym_match_BANG] = ACTIONS(5371), - [anon_sym_function] = ACTIONS(5373), - [anon_sym_use] = ACTIONS(5373), - [anon_sym_use_BANG] = ACTIONS(5371), - [anon_sym_do_BANG] = ACTIONS(5371), - [anon_sym_begin] = ACTIONS(5373), - [anon_sym_exception] = ACTIONS(5373), - [aux_sym_char_token1] = ACTIONS(5371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5373), - [anon_sym_DQUOTE] = ACTIONS(5373), - [anon_sym_AT_DQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5371), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5371), - [sym_bool] = ACTIONS(5373), - [sym_unit] = ACTIONS(5371), - [anon_sym_LPAREN_PIPE] = ACTIONS(5373), - [sym_op_identifier] = ACTIONS(5371), - [anon_sym_PLUS] = ACTIONS(5373), - [anon_sym_DASH] = ACTIONS(5373), - [anon_sym_PLUS_DOT] = ACTIONS(5371), - [anon_sym_DASH_DOT] = ACTIONS(5371), - [anon_sym_PERCENT] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_TILDE] = ACTIONS(5371), - [aux_sym_prefix_op_token1] = ACTIONS(5371), - [sym_int] = ACTIONS(5373), - [sym_xint] = ACTIONS(5371), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5371), - [anon_sym_POUNDload] = ACTIONS(5371), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5371), + [aux_sym_compound_type_repeat1] = STATE(3061), + [sym_identifier] = ACTIONS(5328), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LT2] = ACTIONS(2109), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2111), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2900), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + [sym__dedent] = ACTIONS(2900), }, [2972] = { [sym_block_comment] = STATE(2972), [sym_compiler_directive_decl] = STATE(2972), [sym_fsi_directive_decl] = STATE(2972), [sym_preproc_line] = STATE(2972), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_exception] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3046), + [anon_sym_GT_RBRACK] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3044), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3044), + [anon_sym_DASH_DOT] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3044), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__newline] = ACTIONS(3044), }, [2973] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7853), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2973), [sym_compiler_directive_decl] = STATE(2973), [sym_fsi_directive_decl] = STATE(2973), [sym_preproc_line] = STATE(2973), - [aux_sym_long_identifier_repeat1] = STATE(2948), - [sym_identifier] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(5375), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5334), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), }, [2974] = { [sym_block_comment] = STATE(2974), [sym_compiler_directive_decl] = STATE(2974), [sym_fsi_directive_decl] = STATE(2974), [sym_preproc_line] = STATE(2974), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(5336), + [sym_identifier] = ACTIONS(5338), + [anon_sym_namespace] = ACTIONS(5338), + [anon_sym_module] = ACTIONS(5338), + [anon_sym_open] = ACTIONS(5338), + [anon_sym_LBRACK_LT] = ACTIONS(5336), + [anon_sym_return] = ACTIONS(5338), + [anon_sym_type] = ACTIONS(5338), + [anon_sym_do] = ACTIONS(5338), + [anon_sym_and] = ACTIONS(5338), + [anon_sym_let] = ACTIONS(5338), + [anon_sym_let_BANG] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_null] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5338), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_LBRACK_PIPE] = ACTIONS(5336), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LT_AT] = ACTIONS(5338), + [anon_sym_LT_AT_AT] = ACTIONS(5336), + [anon_sym_LBRACE_PIPE] = ACTIONS(5336), + [anon_sym_new] = ACTIONS(5338), + [anon_sym_return_BANG] = ACTIONS(5336), + [anon_sym_yield] = ACTIONS(5338), + [anon_sym_yield_BANG] = ACTIONS(5336), + [anon_sym_lazy] = ACTIONS(5338), + [anon_sym_assert] = ACTIONS(5338), + [anon_sym_upcast] = ACTIONS(5338), + [anon_sym_downcast] = ACTIONS(5338), + [anon_sym_for] = ACTIONS(5338), + [anon_sym_while] = ACTIONS(5338), + [anon_sym_if] = ACTIONS(5338), + [anon_sym_fun] = ACTIONS(5338), + [anon_sym_try] = ACTIONS(5338), + [anon_sym_match] = ACTIONS(5338), + [anon_sym_match_BANG] = ACTIONS(5336), + [anon_sym_function] = ACTIONS(5338), + [anon_sym_use] = ACTIONS(5338), + [anon_sym_use_BANG] = ACTIONS(5336), + [anon_sym_do_BANG] = ACTIONS(5336), + [anon_sym_begin] = ACTIONS(5338), + [anon_sym_exception] = ACTIONS(5338), + [aux_sym_char_token1] = ACTIONS(5336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5338), + [anon_sym_DQUOTE] = ACTIONS(5338), + [anon_sym_AT_DQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5336), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5336), + [sym_bool] = ACTIONS(5338), + [sym_unit] = ACTIONS(5336), + [anon_sym_LPAREN_PIPE] = ACTIONS(5338), + [sym_op_identifier] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [anon_sym_PLUS_DOT] = ACTIONS(5336), + [anon_sym_DASH_DOT] = ACTIONS(5336), + [anon_sym_PERCENT] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_TILDE] = ACTIONS(5336), + [aux_sym_prefix_op_token1] = ACTIONS(5336), + [sym_int] = ACTIONS(5338), + [sym_xint] = ACTIONS(5336), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5336), + [anon_sym_POUNDload] = ACTIONS(5336), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5336), }, [2975] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7555), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2975), [sym_compiler_directive_decl] = STATE(2975), [sym_fsi_directive_decl] = STATE(2975), [sym_preproc_line] = STATE(2975), - [aux_sym_long_identifier_repeat1] = STATE(2963), - [sym_identifier] = ACTIONS(2959), - [anon_sym_GT_RBRACK] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5345), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__newline] = ACTIONS(2957), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2976] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8091), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2976), [sym_compiler_directive_decl] = STATE(2976), [sym_fsi_directive_decl] = STATE(2976), [sym_preproc_line] = STATE(2976), - [aux_sym_long_identifier_repeat1] = STATE(2973), - [sym_identifier] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5375), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - }, - [2977] = { + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5342), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2977] = { [sym_block_comment] = STATE(2977), [sym_compiler_directive_decl] = STATE(2977), [sym_fsi_directive_decl] = STATE(2977), [sym_preproc_line] = STATE(2977), - [aux_sym_type_argument_repeat1] = STATE(3007), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(5377), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), + [ts_builtin_sym_end] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5346), + [anon_sym_namespace] = ACTIONS(5346), + [anon_sym_module] = ACTIONS(5346), + [anon_sym_open] = ACTIONS(5346), + [anon_sym_LBRACK_LT] = ACTIONS(5344), + [anon_sym_return] = ACTIONS(5346), + [anon_sym_type] = ACTIONS(5346), + [anon_sym_do] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_let] = ACTIONS(5346), + [anon_sym_let_BANG] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5346), + [anon_sym_AMP] = ACTIONS(5346), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_LBRACK_PIPE] = ACTIONS(5344), + [anon_sym_LBRACE] = ACTIONS(5346), + [anon_sym_LT_AT] = ACTIONS(5346), + [anon_sym_LT_AT_AT] = ACTIONS(5344), + [anon_sym_LBRACE_PIPE] = ACTIONS(5344), + [anon_sym_new] = ACTIONS(5346), + [anon_sym_return_BANG] = ACTIONS(5344), + [anon_sym_yield] = ACTIONS(5346), + [anon_sym_yield_BANG] = ACTIONS(5344), + [anon_sym_lazy] = ACTIONS(5346), + [anon_sym_assert] = ACTIONS(5346), + [anon_sym_upcast] = ACTIONS(5346), + [anon_sym_downcast] = ACTIONS(5346), + [anon_sym_for] = ACTIONS(5346), + [anon_sym_while] = ACTIONS(5346), + [anon_sym_if] = ACTIONS(5346), + [anon_sym_fun] = ACTIONS(5346), + [anon_sym_try] = ACTIONS(5346), + [anon_sym_match] = ACTIONS(5346), + [anon_sym_match_BANG] = ACTIONS(5344), + [anon_sym_function] = ACTIONS(5346), + [anon_sym_use] = ACTIONS(5346), + [anon_sym_use_BANG] = ACTIONS(5344), + [anon_sym_do_BANG] = ACTIONS(5344), + [anon_sym_begin] = ACTIONS(5346), + [anon_sym_exception] = ACTIONS(5346), + [aux_sym_char_token1] = ACTIONS(5344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5346), + [anon_sym_DQUOTE] = ACTIONS(5346), + [anon_sym_AT_DQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5344), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5344), + [sym_bool] = ACTIONS(5346), + [sym_unit] = ACTIONS(5344), + [anon_sym_LPAREN_PIPE] = ACTIONS(5346), + [sym_op_identifier] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5346), + [anon_sym_DASH] = ACTIONS(5346), + [anon_sym_PLUS_DOT] = ACTIONS(5344), + [anon_sym_DASH_DOT] = ACTIONS(5344), + [anon_sym_PERCENT] = ACTIONS(5344), + [anon_sym_AMP_AMP] = ACTIONS(5344), + [anon_sym_TILDE] = ACTIONS(5344), + [aux_sym_prefix_op_token1] = ACTIONS(5344), + [sym_int] = ACTIONS(5346), + [sym_xint] = ACTIONS(5344), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5344), + [anon_sym_POUNDload] = ACTIONS(5344), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5344), }, [2978] = { + [sym_argument_patterns] = STATE(6570), + [sym__atomic_pattern] = STATE(4289), + [sym_list_pattern] = STATE(4237), + [sym_array_pattern] = STATE(4237), + [sym_record_pattern] = STATE(4237), + [sym_type_arguments] = STATE(3214), + [sym_char] = STATE(4292), + [sym_format_string] = STATE(4293), + [sym__string_literal] = STATE(4293), + [sym_string] = STATE(4292), + [sym_verbatim_string] = STATE(4292), + [sym_bytearray] = STATE(4292), + [sym_verbatim_bytearray] = STATE(4292), + [sym_format_triple_quoted_string] = STATE(4295), + [sym_triple_quoted_string] = STATE(4292), + [sym_const] = STATE(4237), + [sym_long_identifier] = STATE(4237), + [sym_sbyte] = STATE(4292), + [sym_byte] = STATE(4292), + [sym_int16] = STATE(4292), + [sym_uint16] = STATE(4292), + [sym_int32] = STATE(4292), + [sym_uint32] = STATE(4292), + [sym_nativeint] = STATE(4292), + [sym_unativeint] = STATE(4292), + [sym_int64] = STATE(4292), + [sym_uint64] = STATE(4292), + [sym_ieee32] = STATE(4292), + [sym_ieee64] = STATE(4292), + [sym_bignum] = STATE(4292), + [sym_decimal] = STATE(4292), + [sym_float] = STATE(3920), [sym_block_comment] = STATE(2978), [sym_compiler_directive_decl] = STATE(2978), [sym_fsi_directive_decl] = STATE(2978), [sym_preproc_line] = STATE(2978), - [ts_builtin_sym_end] = ACTIONS(5379), - [sym_identifier] = ACTIONS(5381), - [anon_sym_namespace] = ACTIONS(5381), - [anon_sym_module] = ACTIONS(5381), - [anon_sym_open] = ACTIONS(5381), - [anon_sym_LBRACK_LT] = ACTIONS(5379), - [anon_sym_return] = ACTIONS(5381), - [anon_sym_type] = ACTIONS(5381), - [anon_sym_do] = ACTIONS(5381), - [anon_sym_let] = ACTIONS(5381), - [anon_sym_let_BANG] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_null] = ACTIONS(5381), - [anon_sym_AMP] = ACTIONS(5381), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_LBRACK_PIPE] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_LT_AT] = ACTIONS(5381), - [anon_sym_LT_AT_AT] = ACTIONS(5379), - [anon_sym_LBRACE_PIPE] = ACTIONS(5379), - [anon_sym_new] = ACTIONS(5381), - [anon_sym_return_BANG] = ACTIONS(5379), - [anon_sym_yield] = ACTIONS(5381), - [anon_sym_yield_BANG] = ACTIONS(5379), - [anon_sym_lazy] = ACTIONS(5381), - [anon_sym_assert] = ACTIONS(5381), - [anon_sym_upcast] = ACTIONS(5381), - [anon_sym_downcast] = ACTIONS(5381), - [anon_sym_for] = ACTIONS(5381), - [anon_sym_while] = ACTIONS(5381), - [anon_sym_if] = ACTIONS(5381), - [anon_sym_fun] = ACTIONS(5381), - [anon_sym_try] = ACTIONS(5381), - [anon_sym_match] = ACTIONS(5381), - [anon_sym_match_BANG] = ACTIONS(5379), - [anon_sym_function] = ACTIONS(5381), - [anon_sym_use] = ACTIONS(5381), - [anon_sym_use_BANG] = ACTIONS(5379), - [anon_sym_do_BANG] = ACTIONS(5379), - [anon_sym_begin] = ACTIONS(5381), - [anon_sym_exception] = ACTIONS(5381), - [aux_sym_char_token1] = ACTIONS(5379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5381), - [anon_sym_DQUOTE] = ACTIONS(5381), - [anon_sym_AT_DQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5379), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5379), - [sym_bool] = ACTIONS(5381), - [sym_unit] = ACTIONS(5379), - [anon_sym_LPAREN_PIPE] = ACTIONS(5381), - [sym_op_identifier] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_PLUS_DOT] = ACTIONS(5379), - [anon_sym_DASH_DOT] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5379), - [anon_sym_AMP_AMP] = ACTIONS(5379), - [anon_sym_TILDE] = ACTIONS(5379), - [aux_sym_prefix_op_token1] = ACTIONS(5379), - [sym_int] = ACTIONS(5381), - [sym_xint] = ACTIONS(5379), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5379), - [anon_sym_POUNDload] = ACTIONS(5379), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5379), + [aux_sym_argument_patterns_repeat1] = STATE(3205), + [sym_identifier] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_COLON_QMARK] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_LBRACK_PIPE] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LT2] = ACTIONS(5360), + [aux_sym_char_token1] = ACTIONS(5362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5366), + [anon_sym_AT_DQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5376), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3050), + [sym_int] = ACTIONS(5378), + [sym_xint] = ACTIONS(5380), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2979] = { [sym_block_comment] = STATE(2979), [sym_compiler_directive_decl] = STATE(2979), [sym_fsi_directive_decl] = STATE(2979), [sym_preproc_line] = STATE(2979), - [aux_sym_compound_type_repeat1] = STATE(2979), - [sym_identifier] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2916), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), + [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_and] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5384), + [anon_sym_LBRACK_PIPE] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5384), + [anon_sym_LT_AT] = ACTIONS(5384), + [anon_sym_LT_AT_AT] = ACTIONS(5382), + [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_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), + [anon_sym_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5382), + [anon_sym_POUNDload] = ACTIONS(5382), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5382), }, [2980] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7357), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2980), [sym_compiler_directive_decl] = STATE(2980), [sym_fsi_directive_decl] = STATE(2980), [sym_preproc_line] = STATE(2980), - [ts_builtin_sym_end] = ACTIONS(5386), - [sym_identifier] = ACTIONS(5388), - [anon_sym_namespace] = ACTIONS(5388), - [anon_sym_module] = ACTIONS(5388), - [anon_sym_open] = ACTIONS(5388), - [anon_sym_LBRACK_LT] = ACTIONS(5386), - [anon_sym_return] = ACTIONS(5388), - [anon_sym_type] = ACTIONS(5388), - [anon_sym_do] = ACTIONS(5388), - [anon_sym_let] = ACTIONS(5388), - [anon_sym_let_BANG] = ACTIONS(5386), - [anon_sym_LPAREN] = ACTIONS(5388), - [anon_sym_null] = ACTIONS(5388), - [anon_sym_AMP] = ACTIONS(5388), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5388), - [anon_sym_LBRACK_PIPE] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(5388), - [anon_sym_LT_AT] = ACTIONS(5388), - [anon_sym_LT_AT_AT] = ACTIONS(5386), - [anon_sym_LBRACE_PIPE] = ACTIONS(5386), - [anon_sym_new] = ACTIONS(5388), - [anon_sym_return_BANG] = ACTIONS(5386), - [anon_sym_yield] = ACTIONS(5388), - [anon_sym_yield_BANG] = ACTIONS(5386), - [anon_sym_lazy] = ACTIONS(5388), - [anon_sym_assert] = ACTIONS(5388), - [anon_sym_upcast] = ACTIONS(5388), - [anon_sym_downcast] = ACTIONS(5388), - [anon_sym_for] = ACTIONS(5388), - [anon_sym_while] = ACTIONS(5388), - [anon_sym_if] = ACTIONS(5388), - [anon_sym_fun] = ACTIONS(5388), - [anon_sym_try] = ACTIONS(5388), - [anon_sym_match] = ACTIONS(5388), - [anon_sym_match_BANG] = ACTIONS(5386), - [anon_sym_function] = ACTIONS(5388), - [anon_sym_use] = ACTIONS(5388), - [anon_sym_use_BANG] = ACTIONS(5386), - [anon_sym_do_BANG] = ACTIONS(5386), - [anon_sym_begin] = ACTIONS(5388), - [anon_sym_exception] = ACTIONS(5388), - [aux_sym_char_token1] = ACTIONS(5386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5388), - [anon_sym_DQUOTE] = ACTIONS(5388), - [anon_sym_AT_DQUOTE] = ACTIONS(5386), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5386), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5386), - [sym_bool] = ACTIONS(5388), - [sym_unit] = ACTIONS(5386), - [anon_sym_LPAREN_PIPE] = ACTIONS(5388), - [sym_op_identifier] = ACTIONS(5386), - [anon_sym_PLUS] = ACTIONS(5388), - [anon_sym_DASH] = ACTIONS(5388), - [anon_sym_PLUS_DOT] = ACTIONS(5386), - [anon_sym_DASH_DOT] = ACTIONS(5386), - [anon_sym_PERCENT] = ACTIONS(5386), - [anon_sym_AMP_AMP] = ACTIONS(5386), - [anon_sym_TILDE] = ACTIONS(5386), - [aux_sym_prefix_op_token1] = ACTIONS(5386), - [sym_int] = ACTIONS(5388), - [sym_xint] = ACTIONS(5386), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5386), - [anon_sym_POUNDload] = ACTIONS(5386), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5386), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5386), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2981] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7758), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2981), [sym_compiler_directive_decl] = STATE(2981), [sym_fsi_directive_decl] = STATE(2981), [sym_preproc_line] = STATE(2981), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2982] = { + [sym_block_comment] = STATE(2982), + [sym_compiler_directive_decl] = STATE(2982), + [sym_fsi_directive_decl] = STATE(2982), + [sym_preproc_line] = STATE(2982), [ts_builtin_sym_end] = ACTIONS(5390), [sym_identifier] = ACTIONS(5392), [anon_sym_namespace] = ACTIONS(5392), @@ -351400,6 +352063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), [anon_sym_LPAREN] = ACTIONS(5392), @@ -351462,1021 +352126,1342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5390), }, - [2982] = { - [sym_block_comment] = STATE(2982), - [sym_compiler_directive_decl] = STATE(2982), - [sym_fsi_directive_decl] = STATE(2982), - [sym_preproc_line] = STATE(2982), - [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_SEMI] = ACTIONS(3), - [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_exception] = 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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5394), - [anon_sym_POUNDload] = ACTIONS(5394), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5394), - }, [2983] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7337), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2983), [sym_compiler_directive_decl] = STATE(2983), [sym_fsi_directive_decl] = STATE(2983), [sym_preproc_line] = STATE(2983), - [sym_identifier] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3068), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3068), - [sym__dedent] = ACTIONS(3068), }, [2984] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7300), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2984), [sym_compiler_directive_decl] = STATE(2984), [sym_fsi_directive_decl] = STATE(2984), [sym_preproc_line] = STATE(2984), - [aux_sym_long_identifier_repeat1] = STATE(3006), - [sym_identifier] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5396), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2971), - [sym__dedent] = ACTIONS(2971), }, [2985] = { [sym_block_comment] = STATE(2985), [sym_compiler_directive_decl] = STATE(2985), [sym_fsi_directive_decl] = STATE(2985), [sym_preproc_line] = STATE(2985), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(191), - [anon_sym_namespace] = ACTIONS(191), - [anon_sym_module] = ACTIONS(191), - [anon_sym_open] = ACTIONS(191), - [anon_sym_LBRACK_LT] = ACTIONS(189), - [anon_sym_return] = ACTIONS(191), - [anon_sym_type] = ACTIONS(191), - [anon_sym_do] = ACTIONS(191), - [anon_sym_let] = ACTIONS(191), - [anon_sym_let_BANG] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_null] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LBRACK_PIPE] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_LT_AT] = ACTIONS(191), - [anon_sym_LT_AT_AT] = ACTIONS(189), - [anon_sym_LBRACE_PIPE] = ACTIONS(189), - [anon_sym_new] = ACTIONS(191), - [anon_sym_return_BANG] = ACTIONS(189), - [anon_sym_yield] = ACTIONS(191), - [anon_sym_yield_BANG] = ACTIONS(189), - [anon_sym_lazy] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_upcast] = ACTIONS(191), - [anon_sym_downcast] = ACTIONS(191), - [anon_sym_for] = ACTIONS(191), - [anon_sym_while] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_fun] = ACTIONS(191), - [anon_sym_try] = ACTIONS(191), - [anon_sym_match] = ACTIONS(191), - [anon_sym_match_BANG] = ACTIONS(189), - [anon_sym_function] = ACTIONS(191), - [anon_sym_use] = ACTIONS(191), - [anon_sym_use_BANG] = ACTIONS(189), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_exception] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_AT_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(189), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(189), - [sym_bool] = ACTIONS(191), - [sym_unit] = ACTIONS(189), - [anon_sym_LPAREN_PIPE] = ACTIONS(191), - [sym_op_identifier] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_PLUS_DOT] = ACTIONS(189), - [anon_sym_DASH_DOT] = ACTIONS(189), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(189), - [aux_sym_prefix_op_token1] = ACTIONS(189), - [sym_int] = ACTIONS(191), - [sym_xint] = ACTIONS(189), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(189), - [anon_sym_POUNDload] = ACTIONS(189), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(189), + [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), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_null] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_SEMI] = ACTIONS(3), + [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_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5398), + [anon_sym_POUNDload] = ACTIONS(5398), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5398), }, [2986] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7464), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2986), [sym_compiler_directive_decl] = STATE(2986), [sym_fsi_directive_decl] = STATE(2986), [sym_preproc_line] = STATE(2986), - [aux_sym_compound_type_repeat1] = STATE(2986), - [sym_identifier] = ACTIONS(2916), - [anon_sym_GT_RBRACK] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(5400), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2987] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8253), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2987), [sym_compiler_directive_decl] = STATE(2987), [sym_fsi_directive_decl] = STATE(2987), [sym_preproc_line] = STATE(2987), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), - [sym__dedent] = ACTIONS(2975), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5404), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2988] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7691), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2988), [sym_compiler_directive_decl] = STATE(2988), [sym_fsi_directive_decl] = STATE(2988), [sym_preproc_line] = STATE(2988), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(5403), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), }, [2989] = { - [sym_type_arguments] = STATE(3105), - [sym_long_identifier] = STATE(3106), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7481), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2989), [sym_compiler_directive_decl] = STATE(2989), [sym_fsi_directive_decl] = STATE(2989), [sym_preproc_line] = STATE(2989), - [aux_sym_compound_type_repeat1] = STATE(3091), - [sym_identifier] = ACTIONS(5405), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_LT_AT_AT] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2884), - [anon_sym_LPAREN_PIPE] = ACTIONS(2886), - [sym_op_identifier] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2884), - [anon_sym_DASH_DOT] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2884), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5408), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2884), }, [2990] = { [sym_block_comment] = STATE(2990), [sym_compiler_directive_decl] = STATE(2990), [sym_fsi_directive_decl] = STATE(2990), [sym_preproc_line] = STATE(2990), - [ts_builtin_sym_end] = ACTIONS(5407), - [sym_identifier] = ACTIONS(5409), - [anon_sym_namespace] = ACTIONS(5409), - [anon_sym_module] = ACTIONS(5409), - [anon_sym_open] = ACTIONS(5409), - [anon_sym_LBRACK_LT] = ACTIONS(5407), - [anon_sym_return] = ACTIONS(5409), - [anon_sym_type] = ACTIONS(5409), - [anon_sym_do] = ACTIONS(5409), - [anon_sym_let] = ACTIONS(5409), - [anon_sym_let_BANG] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_null] = ACTIONS(5409), - [anon_sym_AMP] = ACTIONS(5409), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_LBRACK_PIPE] = ACTIONS(5407), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_LT_AT] = ACTIONS(5409), - [anon_sym_LT_AT_AT] = ACTIONS(5407), - [anon_sym_LBRACE_PIPE] = ACTIONS(5407), - [anon_sym_new] = ACTIONS(5409), - [anon_sym_return_BANG] = ACTIONS(5407), - [anon_sym_yield] = ACTIONS(5409), - [anon_sym_yield_BANG] = ACTIONS(5407), - [anon_sym_lazy] = ACTIONS(5409), - [anon_sym_assert] = ACTIONS(5409), - [anon_sym_upcast] = ACTIONS(5409), - [anon_sym_downcast] = ACTIONS(5409), - [anon_sym_for] = ACTIONS(5409), - [anon_sym_while] = ACTIONS(5409), - [anon_sym_if] = ACTIONS(5409), - [anon_sym_fun] = ACTIONS(5409), - [anon_sym_try] = ACTIONS(5409), - [anon_sym_match] = ACTIONS(5409), - [anon_sym_match_BANG] = ACTIONS(5407), - [anon_sym_function] = ACTIONS(5409), - [anon_sym_use] = ACTIONS(5409), - [anon_sym_use_BANG] = ACTIONS(5407), - [anon_sym_do_BANG] = ACTIONS(5407), - [anon_sym_begin] = ACTIONS(5409), - [anon_sym_exception] = ACTIONS(5409), - [aux_sym_char_token1] = ACTIONS(5407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5409), - [anon_sym_DQUOTE] = ACTIONS(5409), - [anon_sym_AT_DQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5407), - [sym_bool] = ACTIONS(5409), - [sym_unit] = ACTIONS(5407), - [anon_sym_LPAREN_PIPE] = ACTIONS(5409), - [sym_op_identifier] = ACTIONS(5407), - [anon_sym_PLUS] = ACTIONS(5409), - [anon_sym_DASH] = ACTIONS(5409), - [anon_sym_PLUS_DOT] = ACTIONS(5407), - [anon_sym_DASH_DOT] = ACTIONS(5407), - [anon_sym_PERCENT] = ACTIONS(5407), - [anon_sym_AMP_AMP] = ACTIONS(5407), - [anon_sym_TILDE] = ACTIONS(5407), - [aux_sym_prefix_op_token1] = ACTIONS(5407), - [sym_int] = ACTIONS(5409), - [sym_xint] = ACTIONS(5407), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5407), - [anon_sym_POUNDload] = ACTIONS(5407), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5407), + [ts_builtin_sym_end] = ACTIONS(5410), + [sym_identifier] = ACTIONS(5412), + [anon_sym_namespace] = ACTIONS(5412), + [anon_sym_module] = ACTIONS(5412), + [anon_sym_open] = ACTIONS(5412), + [anon_sym_LBRACK_LT] = ACTIONS(5410), + [anon_sym_return] = ACTIONS(5412), + [anon_sym_type] = ACTIONS(5412), + [anon_sym_do] = ACTIONS(5412), + [anon_sym_and] = ACTIONS(5412), + [anon_sym_let] = ACTIONS(5412), + [anon_sym_let_BANG] = ACTIONS(5410), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_null] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(5412), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5412), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [anon_sym_LT_AT] = ACTIONS(5412), + [anon_sym_LT_AT_AT] = ACTIONS(5410), + [anon_sym_LBRACE_PIPE] = ACTIONS(5410), + [anon_sym_new] = ACTIONS(5412), + [anon_sym_return_BANG] = ACTIONS(5410), + [anon_sym_yield] = ACTIONS(5412), + [anon_sym_yield_BANG] = ACTIONS(5410), + [anon_sym_lazy] = ACTIONS(5412), + [anon_sym_assert] = ACTIONS(5412), + [anon_sym_upcast] = ACTIONS(5412), + [anon_sym_downcast] = ACTIONS(5412), + [anon_sym_for] = ACTIONS(5412), + [anon_sym_while] = ACTIONS(5412), + [anon_sym_if] = ACTIONS(5412), + [anon_sym_fun] = ACTIONS(5412), + [anon_sym_try] = ACTIONS(5412), + [anon_sym_match] = ACTIONS(5412), + [anon_sym_match_BANG] = ACTIONS(5410), + [anon_sym_function] = ACTIONS(5412), + [anon_sym_use] = ACTIONS(5412), + [anon_sym_use_BANG] = ACTIONS(5410), + [anon_sym_do_BANG] = ACTIONS(5410), + [anon_sym_begin] = ACTIONS(5412), + [anon_sym_exception] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5410), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5412), + [anon_sym_DQUOTE] = ACTIONS(5412), + [anon_sym_AT_DQUOTE] = ACTIONS(5410), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5410), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5410), + [sym_bool] = ACTIONS(5412), + [sym_unit] = ACTIONS(5410), + [anon_sym_LPAREN_PIPE] = ACTIONS(5412), + [sym_op_identifier] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_PLUS_DOT] = ACTIONS(5410), + [anon_sym_DASH_DOT] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5410), + [anon_sym_AMP_AMP] = ACTIONS(5410), + [anon_sym_TILDE] = ACTIONS(5410), + [aux_sym_prefix_op_token1] = ACTIONS(5410), + [sym_int] = ACTIONS(5412), + [sym_xint] = ACTIONS(5410), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5410), + [anon_sym_POUNDload] = ACTIONS(5410), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5410), }, [2991] = { [sym_block_comment] = STATE(2991), [sym_compiler_directive_decl] = STATE(2991), [sym_fsi_directive_decl] = STATE(2991), [sym_preproc_line] = STATE(2991), - [aux_sym_compound_type_repeat1] = STATE(2979), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [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(2984), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2984), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = 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_COLON_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(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(2990), + [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(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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), }, [2992] = { [sym_block_comment] = STATE(2992), [sym_compiler_directive_decl] = STATE(2992), [sym_fsi_directive_decl] = STATE(2992), [sym_preproc_line] = STATE(2992), - [sym_identifier] = ACTIONS(3064), - [anon_sym_GT_RBRACK] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(5411), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(5414), + [sym_identifier] = ACTIONS(5416), + [anon_sym_namespace] = ACTIONS(5416), + [anon_sym_module] = ACTIONS(5416), + [anon_sym_open] = ACTIONS(5416), + [anon_sym_LBRACK_LT] = ACTIONS(5414), + [anon_sym_return] = ACTIONS(5416), + [anon_sym_type] = ACTIONS(5416), + [anon_sym_do] = ACTIONS(5416), + [anon_sym_and] = ACTIONS(5416), + [anon_sym_let] = ACTIONS(5416), + [anon_sym_let_BANG] = ACTIONS(5414), + [anon_sym_LPAREN] = ACTIONS(5416), + [anon_sym_null] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_LBRACK_PIPE] = ACTIONS(5414), + [anon_sym_LBRACE] = ACTIONS(5416), + [anon_sym_LT_AT] = ACTIONS(5416), + [anon_sym_LT_AT_AT] = ACTIONS(5414), + [anon_sym_LBRACE_PIPE] = ACTIONS(5414), + [anon_sym_new] = ACTIONS(5416), + [anon_sym_return_BANG] = ACTIONS(5414), + [anon_sym_yield] = ACTIONS(5416), + [anon_sym_yield_BANG] = ACTIONS(5414), + [anon_sym_lazy] = ACTIONS(5416), + [anon_sym_assert] = ACTIONS(5416), + [anon_sym_upcast] = ACTIONS(5416), + [anon_sym_downcast] = ACTIONS(5416), + [anon_sym_for] = ACTIONS(5416), + [anon_sym_while] = ACTIONS(5416), + [anon_sym_if] = ACTIONS(5416), + [anon_sym_fun] = ACTIONS(5416), + [anon_sym_try] = ACTIONS(5416), + [anon_sym_match] = ACTIONS(5416), + [anon_sym_match_BANG] = ACTIONS(5414), + [anon_sym_function] = ACTIONS(5416), + [anon_sym_use] = ACTIONS(5416), + [anon_sym_use_BANG] = ACTIONS(5414), + [anon_sym_do_BANG] = ACTIONS(5414), + [anon_sym_begin] = ACTIONS(5416), + [anon_sym_exception] = ACTIONS(5416), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5416), + [anon_sym_AT_DQUOTE] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5414), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5414), + [sym_bool] = ACTIONS(5416), + [sym_unit] = ACTIONS(5414), + [anon_sym_LPAREN_PIPE] = ACTIONS(5416), + [sym_op_identifier] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_PLUS_DOT] = ACTIONS(5414), + [anon_sym_DASH_DOT] = ACTIONS(5414), + [anon_sym_PERCENT] = ACTIONS(5414), + [anon_sym_AMP_AMP] = ACTIONS(5414), + [anon_sym_TILDE] = ACTIONS(5414), + [aux_sym_prefix_op_token1] = ACTIONS(5414), + [sym_int] = ACTIONS(5416), + [sym_xint] = ACTIONS(5414), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5414), + [anon_sym_POUNDload] = ACTIONS(5414), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5414), }, [2993] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7448), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(2993), [sym_compiler_directive_decl] = STATE(2993), [sym_fsi_directive_decl] = STATE(2993), [sym_preproc_line] = STATE(2993), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), }, [2994] = { - [sym_type_arguments] = STATE(3105), - [sym_long_identifier] = STATE(3106), [sym_block_comment] = STATE(2994), [sym_compiler_directive_decl] = STATE(2994), [sym_fsi_directive_decl] = STATE(2994), [sym_preproc_line] = STATE(2994), - [aux_sym_compound_type_repeat1] = STATE(3091), - [sym_identifier] = ACTIONS(5405), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(5420), + [sym_identifier] = ACTIONS(5422), + [anon_sym_namespace] = ACTIONS(5422), + [anon_sym_module] = ACTIONS(5422), + [anon_sym_open] = ACTIONS(5422), + [anon_sym_LBRACK_LT] = ACTIONS(5420), + [anon_sym_return] = ACTIONS(5422), + [anon_sym_type] = ACTIONS(5422), + [anon_sym_do] = ACTIONS(5422), + [anon_sym_and] = ACTIONS(5422), + [anon_sym_let] = ACTIONS(5422), + [anon_sym_let_BANG] = ACTIONS(5420), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_null] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5422), + [anon_sym_LBRACK_PIPE] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5422), + [anon_sym_LT_AT] = ACTIONS(5422), + [anon_sym_LT_AT_AT] = ACTIONS(5420), + [anon_sym_LBRACE_PIPE] = ACTIONS(5420), + [anon_sym_new] = ACTIONS(5422), + [anon_sym_return_BANG] = ACTIONS(5420), + [anon_sym_yield] = ACTIONS(5422), + [anon_sym_yield_BANG] = ACTIONS(5420), + [anon_sym_lazy] = ACTIONS(5422), + [anon_sym_assert] = ACTIONS(5422), + [anon_sym_upcast] = ACTIONS(5422), + [anon_sym_downcast] = ACTIONS(5422), + [anon_sym_for] = ACTIONS(5422), + [anon_sym_while] = ACTIONS(5422), + [anon_sym_if] = ACTIONS(5422), + [anon_sym_fun] = ACTIONS(5422), + [anon_sym_try] = ACTIONS(5422), + [anon_sym_match] = ACTIONS(5422), + [anon_sym_match_BANG] = ACTIONS(5420), + [anon_sym_function] = ACTIONS(5422), + [anon_sym_use] = ACTIONS(5422), + [anon_sym_use_BANG] = ACTIONS(5420), + [anon_sym_do_BANG] = ACTIONS(5420), + [anon_sym_begin] = ACTIONS(5422), + [anon_sym_exception] = ACTIONS(5422), + [aux_sym_char_token1] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE] = ACTIONS(5422), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5420), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5420), + [sym_bool] = ACTIONS(5422), + [sym_unit] = ACTIONS(5420), + [anon_sym_LPAREN_PIPE] = ACTIONS(5422), + [sym_op_identifier] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_PLUS_DOT] = ACTIONS(5420), + [anon_sym_DASH_DOT] = ACTIONS(5420), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_TILDE] = ACTIONS(5420), + [aux_sym_prefix_op_token1] = ACTIONS(5420), + [sym_int] = ACTIONS(5422), + [sym_xint] = ACTIONS(5420), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5420), + [anon_sym_POUNDload] = ACTIONS(5420), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5420), + }, + [2995] = { + [sym_block_comment] = STATE(2995), + [sym_compiler_directive_decl] = STATE(2995), + [sym_fsi_directive_decl] = STATE(2995), + [sym_preproc_line] = STATE(2995), + [aux_sym_type_argument_repeat1] = STATE(3015), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(5424), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), + }, + [2996] = { + [sym_block_comment] = STATE(2996), + [sym_compiler_directive_decl] = STATE(2996), + [sym_fsi_directive_decl] = STATE(2996), + [sym_preproc_line] = STATE(2996), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [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(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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__newline] = ACTIONS(2992), + }, + [2997] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7502), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2997), + [sym_compiler_directive_decl] = STATE(2997), + [sym_fsi_directive_decl] = STATE(2997), + [sym_preproc_line] = STATE(2997), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5426), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), }, - [2995] = { - [sym_block_comment] = STATE(2995), - [sym_compiler_directive_decl] = STATE(2995), - [sym_fsi_directive_decl] = STATE(2995), - [sym_preproc_line] = STATE(2995), + [2998] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8074), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(2998), + [sym_compiler_directive_decl] = STATE(2998), + [sym_fsi_directive_decl] = STATE(2998), + [sym_preproc_line] = STATE(2998), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5428), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [2999] = { + [sym_block_comment] = STATE(2999), + [sym_compiler_directive_decl] = STATE(2999), + [sym_fsi_directive_decl] = STATE(2999), + [sym_preproc_line] = STATE(2999), + [aux_sym_type_argument_repeat1] = STATE(2999), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(5430), + [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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), + }, + [3000] = { + [sym_block_comment] = STATE(3000), + [sym_compiler_directive_decl] = STATE(3000), + [sym_fsi_directive_decl] = STATE(3000), + [sym_preproc_line] = STATE(3000), + [aux_sym_long_identifier_repeat1] = STATE(3017), [sym_identifier] = ACTIONS(2988), + [anon_sym_GT_RBRACK] = ACTIONS(2986), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_as] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5433), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -352485,38 +353470,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), + [anon_sym_DASH_GT] = ACTIONS(2986), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2986), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -352524,110 +353509,37 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), - }, - [2996] = { - [sym_block_comment] = STATE(2996), - [sym_compiler_directive_decl] = STATE(2996), - [sym_fsi_directive_decl] = STATE(2996), - [sym_preproc_line] = STATE(2996), - [ts_builtin_sym_end] = ACTIONS(5413), - [sym_identifier] = ACTIONS(5415), - [anon_sym_namespace] = ACTIONS(5415), - [anon_sym_module] = ACTIONS(5415), - [anon_sym_open] = ACTIONS(5415), - [anon_sym_LBRACK_LT] = ACTIONS(5413), - [anon_sym_return] = ACTIONS(5415), - [anon_sym_type] = ACTIONS(5415), - [anon_sym_do] = ACTIONS(5415), - [anon_sym_let] = ACTIONS(5415), - [anon_sym_let_BANG] = ACTIONS(5413), - [anon_sym_LPAREN] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(5415), - [anon_sym_AMP] = ACTIONS(5415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5415), - [anon_sym_LBRACK_PIPE] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5415), - [anon_sym_LT_AT] = ACTIONS(5415), - [anon_sym_LT_AT_AT] = ACTIONS(5413), - [anon_sym_LBRACE_PIPE] = ACTIONS(5413), - [anon_sym_new] = ACTIONS(5415), - [anon_sym_return_BANG] = ACTIONS(5413), - [anon_sym_yield] = ACTIONS(5415), - [anon_sym_yield_BANG] = ACTIONS(5413), - [anon_sym_lazy] = ACTIONS(5415), - [anon_sym_assert] = ACTIONS(5415), - [anon_sym_upcast] = ACTIONS(5415), - [anon_sym_downcast] = ACTIONS(5415), - [anon_sym_for] = ACTIONS(5415), - [anon_sym_while] = ACTIONS(5415), - [anon_sym_if] = ACTIONS(5415), - [anon_sym_fun] = ACTIONS(5415), - [anon_sym_try] = ACTIONS(5415), - [anon_sym_match] = ACTIONS(5415), - [anon_sym_match_BANG] = ACTIONS(5413), - [anon_sym_function] = ACTIONS(5415), - [anon_sym_use] = ACTIONS(5415), - [anon_sym_use_BANG] = ACTIONS(5413), - [anon_sym_do_BANG] = ACTIONS(5413), - [anon_sym_begin] = ACTIONS(5415), - [anon_sym_exception] = ACTIONS(5415), - [aux_sym_char_token1] = ACTIONS(5413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5415), - [anon_sym_DQUOTE] = ACTIONS(5415), - [anon_sym_AT_DQUOTE] = ACTIONS(5413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5413), - [sym_bool] = ACTIONS(5415), - [sym_unit] = ACTIONS(5413), - [anon_sym_LPAREN_PIPE] = ACTIONS(5415), - [sym_op_identifier] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_PLUS_DOT] = ACTIONS(5413), - [anon_sym_DASH_DOT] = ACTIONS(5413), - [anon_sym_PERCENT] = ACTIONS(5413), - [anon_sym_AMP_AMP] = ACTIONS(5413), - [anon_sym_TILDE] = ACTIONS(5413), - [aux_sym_prefix_op_token1] = ACTIONS(5413), - [sym_int] = ACTIONS(5415), - [sym_xint] = ACTIONS(5413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5413), - [anon_sym_POUNDload] = ACTIONS(5413), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5413), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(2986), }, - [2997] = { - [sym_block_comment] = STATE(2997), - [sym_compiler_directive_decl] = STATE(2997), - [sym_fsi_directive_decl] = STATE(2997), - [sym_preproc_line] = STATE(2997), + [3001] = { + [sym_block_comment] = STATE(3001), + [sym_compiler_directive_decl] = STATE(3001), + [sym_fsi_directive_decl] = STATE(3001), + [sym_preproc_line] = STATE(3001), + [aux_sym_long_identifier_repeat1] = STATE(2956), [sym_identifier] = ACTIONS(2988), - [anon_sym_GT_RBRACK] = ACTIONS(2990), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5301), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -352636,38 +353548,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), + [anon_sym_DASH_GT] = ACTIONS(2986), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2986), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -352675,683 +353587,308 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [2998] = { - [sym_block_comment] = STATE(2998), - [sym_compiler_directive_decl] = STATE(2998), - [sym_fsi_directive_decl] = STATE(2998), - [sym_preproc_line] = STATE(2998), - [aux_sym_compound_type_repeat1] = STATE(2986), - [sym_identifier] = ACTIONS(2986), - [anon_sym_GT_RBRACK] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [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(2984), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2984), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__newline] = ACTIONS(2984), - }, - [2999] = { - [sym_block_comment] = STATE(2999), - [sym_compiler_directive_decl] = STATE(2999), - [sym_fsi_directive_decl] = STATE(2999), - [sym_preproc_line] = STATE(2999), - [ts_builtin_sym_end] = ACTIONS(5417), - [sym_identifier] = ACTIONS(5419), - [anon_sym_namespace] = ACTIONS(5419), - [anon_sym_module] = ACTIONS(5419), - [anon_sym_open] = ACTIONS(5419), - [anon_sym_LBRACK_LT] = ACTIONS(5417), - [anon_sym_return] = ACTIONS(5419), - [anon_sym_type] = ACTIONS(5419), - [anon_sym_do] = ACTIONS(5419), - [anon_sym_let] = ACTIONS(5419), - [anon_sym_let_BANG] = ACTIONS(5417), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_null] = ACTIONS(5419), - [anon_sym_AMP] = ACTIONS(5419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_LBRACK_PIPE] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5419), - [anon_sym_LT_AT] = ACTIONS(5419), - [anon_sym_LT_AT_AT] = ACTIONS(5417), - [anon_sym_LBRACE_PIPE] = ACTIONS(5417), - [anon_sym_new] = ACTIONS(5419), - [anon_sym_return_BANG] = ACTIONS(5417), - [anon_sym_yield] = ACTIONS(5419), - [anon_sym_yield_BANG] = ACTIONS(5417), - [anon_sym_lazy] = ACTIONS(5419), - [anon_sym_assert] = ACTIONS(5419), - [anon_sym_upcast] = ACTIONS(5419), - [anon_sym_downcast] = ACTIONS(5419), - [anon_sym_for] = ACTIONS(5419), - [anon_sym_while] = ACTIONS(5419), - [anon_sym_if] = ACTIONS(5419), - [anon_sym_fun] = ACTIONS(5419), - [anon_sym_try] = ACTIONS(5419), - [anon_sym_match] = ACTIONS(5419), - [anon_sym_match_BANG] = ACTIONS(5417), - [anon_sym_function] = ACTIONS(5419), - [anon_sym_use] = ACTIONS(5419), - [anon_sym_use_BANG] = ACTIONS(5417), - [anon_sym_do_BANG] = ACTIONS(5417), - [anon_sym_begin] = ACTIONS(5419), - [anon_sym_exception] = ACTIONS(5419), - [aux_sym_char_token1] = ACTIONS(5417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5419), - [anon_sym_DQUOTE] = ACTIONS(5419), - [anon_sym_AT_DQUOTE] = ACTIONS(5417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5417), - [sym_bool] = ACTIONS(5419), - [sym_unit] = ACTIONS(5417), - [anon_sym_LPAREN_PIPE] = ACTIONS(5419), - [sym_op_identifier] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_PLUS_DOT] = ACTIONS(5417), - [anon_sym_DASH_DOT] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5417), - [anon_sym_AMP_AMP] = ACTIONS(5417), - [anon_sym_TILDE] = ACTIONS(5417), - [aux_sym_prefix_op_token1] = ACTIONS(5417), - [sym_int] = ACTIONS(5419), - [sym_xint] = ACTIONS(5417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5417), - [anon_sym_POUNDload] = ACTIONS(5417), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5417), - }, - [3000] = { - [sym_block_comment] = STATE(3000), - [sym_compiler_directive_decl] = STATE(3000), - [sym_fsi_directive_decl] = STATE(3000), - [sym_preproc_line] = STATE(3000), - [ts_builtin_sym_end] = ACTIONS(5421), - [sym_identifier] = ACTIONS(5423), - [anon_sym_namespace] = ACTIONS(5423), - [anon_sym_module] = ACTIONS(5423), - [anon_sym_open] = ACTIONS(5423), - [anon_sym_LBRACK_LT] = ACTIONS(5421), - [anon_sym_return] = ACTIONS(5423), - [anon_sym_type] = ACTIONS(5423), - [anon_sym_do] = ACTIONS(5423), - [anon_sym_let] = ACTIONS(5423), - [anon_sym_let_BANG] = ACTIONS(5421), - [anon_sym_LPAREN] = ACTIONS(5423), - [anon_sym_null] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5423), - [anon_sym_LBRACK_PIPE] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5423), - [anon_sym_LT_AT] = ACTIONS(5423), - [anon_sym_LT_AT_AT] = ACTIONS(5421), - [anon_sym_LBRACE_PIPE] = ACTIONS(5421), - [anon_sym_new] = ACTIONS(5423), - [anon_sym_return_BANG] = ACTIONS(5421), - [anon_sym_yield] = ACTIONS(5423), - [anon_sym_yield_BANG] = ACTIONS(5421), - [anon_sym_lazy] = ACTIONS(5423), - [anon_sym_assert] = ACTIONS(5423), - [anon_sym_upcast] = ACTIONS(5423), - [anon_sym_downcast] = ACTIONS(5423), - [anon_sym_for] = ACTIONS(5423), - [anon_sym_while] = ACTIONS(5423), - [anon_sym_if] = ACTIONS(5423), - [anon_sym_fun] = ACTIONS(5423), - [anon_sym_try] = ACTIONS(5423), - [anon_sym_match] = ACTIONS(5423), - [anon_sym_match_BANG] = ACTIONS(5421), - [anon_sym_function] = ACTIONS(5423), - [anon_sym_use] = ACTIONS(5423), - [anon_sym_use_BANG] = ACTIONS(5421), - [anon_sym_do_BANG] = ACTIONS(5421), - [anon_sym_begin] = ACTIONS(5423), - [anon_sym_exception] = ACTIONS(5423), - [aux_sym_char_token1] = ACTIONS(5421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [anon_sym_AT_DQUOTE] = ACTIONS(5421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5421), - [sym_bool] = ACTIONS(5423), - [sym_unit] = ACTIONS(5421), - [anon_sym_LPAREN_PIPE] = ACTIONS(5423), - [sym_op_identifier] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_PLUS_DOT] = ACTIONS(5421), - [anon_sym_DASH_DOT] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5421), - [anon_sym_TILDE] = ACTIONS(5421), - [aux_sym_prefix_op_token1] = ACTIONS(5421), - [sym_int] = ACTIONS(5423), - [sym_xint] = ACTIONS(5421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5421), - [anon_sym_POUNDload] = ACTIONS(5421), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5421), - }, - [3001] = { - [sym_block_comment] = STATE(3001), - [sym_compiler_directive_decl] = STATE(3001), - [sym_fsi_directive_decl] = STATE(3001), - [sym_preproc_line] = STATE(3001), - [aux_sym_type_argument_repeat1] = STATE(3001), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(5425), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), + [anon_sym_POUNDif] = ACTIONS(2986), }, [3002] = { [sym_block_comment] = STATE(3002), [sym_compiler_directive_decl] = STATE(3002), [sym_fsi_directive_decl] = STATE(3002), [sym_preproc_line] = STATE(3002), - [aux_sym_long_identifier_repeat1] = STATE(2984), - [sym_identifier] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), - [sym__dedent] = ACTIONS(2957), + [ts_builtin_sym_end] = ACTIONS(5176), + [sym_identifier] = ACTIONS(5178), + [anon_sym_namespace] = ACTIONS(5178), + [anon_sym_module] = ACTIONS(5178), + [anon_sym_open] = ACTIONS(5178), + [anon_sym_LBRACK_LT] = ACTIONS(5176), + [anon_sym_return] = ACTIONS(5178), + [anon_sym_type] = ACTIONS(5178), + [anon_sym_do] = ACTIONS(5178), + [anon_sym_and] = ACTIONS(5178), + [anon_sym_let] = ACTIONS(5178), + [anon_sym_let_BANG] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_null] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5178), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_LBRACK_PIPE] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_LT_AT] = ACTIONS(5178), + [anon_sym_LT_AT_AT] = ACTIONS(5176), + [anon_sym_LBRACE_PIPE] = ACTIONS(5176), + [anon_sym_new] = ACTIONS(5178), + [anon_sym_return_BANG] = ACTIONS(5176), + [anon_sym_yield] = ACTIONS(5178), + [anon_sym_yield_BANG] = ACTIONS(5176), + [anon_sym_lazy] = ACTIONS(5178), + [anon_sym_assert] = ACTIONS(5178), + [anon_sym_upcast] = ACTIONS(5178), + [anon_sym_downcast] = ACTIONS(5178), + [anon_sym_for] = ACTIONS(5178), + [anon_sym_while] = ACTIONS(5178), + [anon_sym_if] = ACTIONS(5178), + [anon_sym_fun] = ACTIONS(5178), + [anon_sym_try] = ACTIONS(5178), + [anon_sym_match] = ACTIONS(5178), + [anon_sym_match_BANG] = ACTIONS(5176), + [anon_sym_function] = ACTIONS(5178), + [anon_sym_use] = ACTIONS(5178), + [anon_sym_use_BANG] = ACTIONS(5176), + [anon_sym_do_BANG] = ACTIONS(5176), + [anon_sym_begin] = ACTIONS(5178), + [anon_sym_exception] = ACTIONS(5178), + [aux_sym_char_token1] = ACTIONS(5176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_AT_DQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5176), + [sym_bool] = ACTIONS(5178), + [sym_unit] = ACTIONS(5176), + [anon_sym_LPAREN_PIPE] = ACTIONS(5178), + [sym_op_identifier] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(5178), + [anon_sym_DASH] = ACTIONS(5178), + [anon_sym_PLUS_DOT] = ACTIONS(5176), + [anon_sym_DASH_DOT] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_TILDE] = ACTIONS(5176), + [aux_sym_prefix_op_token1] = ACTIONS(5176), + [sym_int] = ACTIONS(5178), + [sym_xint] = ACTIONS(5176), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5176), + [anon_sym_POUNDload] = ACTIONS(5176), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5176), }, [3003] = { - [sym_type_arguments] = STATE(3105), - [sym_long_identifier] = STATE(3106), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8038), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3003), [sym_compiler_directive_decl] = STATE(3003), [sym_fsi_directive_decl] = STATE(3003), [sym_preproc_line] = STATE(3003), - [aux_sym_compound_type_repeat1] = STATE(3091), - [sym_identifier] = ACTIONS(5405), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_LT_AT_AT] = ACTIONS(2910), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2910), - [anon_sym_LPAREN_PIPE] = ACTIONS(2912), - [sym_op_identifier] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2910), - [anon_sym_DASH_DOT] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2910), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2910), }, [3004] = { [sym_block_comment] = STATE(3004), [sym_compiler_directive_decl] = STATE(3004), [sym_fsi_directive_decl] = STATE(3004), [sym_preproc_line] = STATE(3004), - [ts_builtin_sym_end] = ACTIONS(5428), - [sym_identifier] = ACTIONS(5430), - [anon_sym_namespace] = ACTIONS(5430), - [anon_sym_module] = ACTIONS(5430), - [anon_sym_open] = ACTIONS(5430), - [anon_sym_LBRACK_LT] = ACTIONS(5428), - [anon_sym_return] = ACTIONS(5430), - [anon_sym_type] = ACTIONS(5430), - [anon_sym_do] = ACTIONS(5430), - [anon_sym_let] = ACTIONS(5430), - [anon_sym_let_BANG] = ACTIONS(5428), - [anon_sym_LPAREN] = ACTIONS(5430), - [anon_sym_null] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5430), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LBRACK_PIPE] = ACTIONS(5428), - [anon_sym_LBRACE] = ACTIONS(5430), - [anon_sym_LT_AT] = ACTIONS(5430), - [anon_sym_LT_AT_AT] = ACTIONS(5428), - [anon_sym_LBRACE_PIPE] = ACTIONS(5428), - [anon_sym_new] = ACTIONS(5430), - [anon_sym_return_BANG] = ACTIONS(5428), - [anon_sym_yield] = ACTIONS(5430), - [anon_sym_yield_BANG] = ACTIONS(5428), - [anon_sym_lazy] = ACTIONS(5430), - [anon_sym_assert] = ACTIONS(5430), - [anon_sym_upcast] = ACTIONS(5430), - [anon_sym_downcast] = ACTIONS(5430), - [anon_sym_for] = ACTIONS(5430), - [anon_sym_while] = ACTIONS(5430), - [anon_sym_if] = ACTIONS(5430), - [anon_sym_fun] = ACTIONS(5430), - [anon_sym_try] = ACTIONS(5430), - [anon_sym_match] = ACTIONS(5430), - [anon_sym_match_BANG] = ACTIONS(5428), - [anon_sym_function] = ACTIONS(5430), - [anon_sym_use] = ACTIONS(5430), - [anon_sym_use_BANG] = ACTIONS(5428), - [anon_sym_do_BANG] = ACTIONS(5428), - [anon_sym_begin] = ACTIONS(5430), - [anon_sym_exception] = ACTIONS(5430), - [aux_sym_char_token1] = ACTIONS(5428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5430), - [anon_sym_DQUOTE] = ACTIONS(5430), - [anon_sym_AT_DQUOTE] = ACTIONS(5428), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5428), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5428), - [sym_bool] = ACTIONS(5430), - [sym_unit] = ACTIONS(5428), - [anon_sym_LPAREN_PIPE] = ACTIONS(5430), - [sym_op_identifier] = ACTIONS(5428), - [anon_sym_PLUS] = ACTIONS(5430), - [anon_sym_DASH] = ACTIONS(5430), - [anon_sym_PLUS_DOT] = ACTIONS(5428), - [anon_sym_DASH_DOT] = ACTIONS(5428), - [anon_sym_PERCENT] = ACTIONS(5428), - [anon_sym_AMP_AMP] = ACTIONS(5428), - [anon_sym_TILDE] = ACTIONS(5428), - [aux_sym_prefix_op_token1] = ACTIONS(5428), - [sym_int] = ACTIONS(5430), - [sym_xint] = ACTIONS(5428), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5428), - [anon_sym_POUNDload] = ACTIONS(5428), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5428), + [ts_builtin_sym_end] = ACTIONS(5437), + [sym_identifier] = ACTIONS(5439), + [anon_sym_namespace] = ACTIONS(5439), + [anon_sym_module] = ACTIONS(5439), + [anon_sym_open] = ACTIONS(5439), + [anon_sym_LBRACK_LT] = ACTIONS(5437), + [anon_sym_return] = ACTIONS(5439), + [anon_sym_type] = ACTIONS(5439), + [anon_sym_do] = ACTIONS(5439), + [anon_sym_and] = ACTIONS(5439), + [anon_sym_let] = ACTIONS(5439), + [anon_sym_let_BANG] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5439), + [anon_sym_null] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym_LBRACK_PIPE] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_LT_AT] = ACTIONS(5439), + [anon_sym_LT_AT_AT] = ACTIONS(5437), + [anon_sym_LBRACE_PIPE] = ACTIONS(5437), + [anon_sym_new] = ACTIONS(5439), + [anon_sym_return_BANG] = ACTIONS(5437), + [anon_sym_yield] = ACTIONS(5439), + [anon_sym_yield_BANG] = ACTIONS(5437), + [anon_sym_lazy] = ACTIONS(5439), + [anon_sym_assert] = ACTIONS(5439), + [anon_sym_upcast] = ACTIONS(5439), + [anon_sym_downcast] = ACTIONS(5439), + [anon_sym_for] = ACTIONS(5439), + [anon_sym_while] = ACTIONS(5439), + [anon_sym_if] = ACTIONS(5439), + [anon_sym_fun] = ACTIONS(5439), + [anon_sym_try] = ACTIONS(5439), + [anon_sym_match] = ACTIONS(5439), + [anon_sym_match_BANG] = ACTIONS(5437), + [anon_sym_function] = ACTIONS(5439), + [anon_sym_use] = ACTIONS(5439), + [anon_sym_use_BANG] = ACTIONS(5437), + [anon_sym_do_BANG] = ACTIONS(5437), + [anon_sym_begin] = ACTIONS(5439), + [anon_sym_exception] = ACTIONS(5439), + [aux_sym_char_token1] = ACTIONS(5437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5439), + [anon_sym_DQUOTE] = ACTIONS(5439), + [anon_sym_AT_DQUOTE] = ACTIONS(5437), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5437), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5437), + [sym_bool] = ACTIONS(5439), + [sym_unit] = ACTIONS(5437), + [anon_sym_LPAREN_PIPE] = ACTIONS(5439), + [sym_op_identifier] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_PLUS_DOT] = ACTIONS(5437), + [anon_sym_DASH_DOT] = ACTIONS(5437), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_TILDE] = ACTIONS(5437), + [aux_sym_prefix_op_token1] = ACTIONS(5437), + [sym_int] = ACTIONS(5439), + [sym_xint] = ACTIONS(5437), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5437), + [anon_sym_POUNDload] = ACTIONS(5437), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5437), }, [3005] = { + [sym_argument_patterns] = STATE(6514), + [sym__atomic_pattern] = STATE(4289), + [sym_list_pattern] = STATE(4237), + [sym_array_pattern] = STATE(4237), + [sym_record_pattern] = STATE(4237), + [sym_type_arguments] = STATE(3211), + [sym_char] = STATE(4292), + [sym_format_string] = STATE(4293), + [sym__string_literal] = STATE(4293), + [sym_string] = STATE(4292), + [sym_verbatim_string] = STATE(4292), + [sym_bytearray] = STATE(4292), + [sym_verbatim_bytearray] = STATE(4292), + [sym_format_triple_quoted_string] = STATE(4295), + [sym_triple_quoted_string] = STATE(4292), + [sym_const] = STATE(4237), + [sym_long_identifier] = STATE(4237), + [sym_sbyte] = STATE(4292), + [sym_byte] = STATE(4292), + [sym_int16] = STATE(4292), + [sym_uint16] = STATE(4292), + [sym_int32] = STATE(4292), + [sym_uint32] = STATE(4292), + [sym_nativeint] = STATE(4292), + [sym_unativeint] = STATE(4292), + [sym_int64] = STATE(4292), + [sym_uint64] = STATE(4292), + [sym_ieee32] = STATE(4292), + [sym_ieee64] = STATE(4292), + [sym_bignum] = STATE(4292), + [sym_decimal] = STATE(4292), + [sym_float] = STATE(3920), [sym_block_comment] = STATE(3005), [sym_compiler_directive_decl] = STATE(3005), [sym_fsi_directive_decl] = STATE(3005), [sym_preproc_line] = STATE(3005), - [sym_identifier] = ACTIONS(3026), - [anon_sym_GT_RBRACK] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [3006] = { - [sym_block_comment] = STATE(3006), - [sym_compiler_directive_decl] = STATE(3006), - [sym_fsi_directive_decl] = STATE(3006), - [sym_preproc_line] = STATE(3006), - [aux_sym_long_identifier_repeat1] = STATE(3006), - [sym_identifier] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(5432), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [aux_sym_argument_patterns_repeat1] = STATE(3205), + [sym_identifier] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_COLON_QMARK] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_LBRACK_PIPE] = ACTIONS(5356), + [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LT2] = ACTIONS(5360), + [aux_sym_char_token1] = ACTIONS(5362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(5366), + [anon_sym_AT_DQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5376), + [anon_sym_LPAREN_PIPE] = ACTIONS(3052), + [sym_op_identifier] = ACTIONS(3050), + [sym_int] = ACTIONS(5378), + [sym_xint] = ACTIONS(5380), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -353359,1129 +353896,1232 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + }, + [3006] = { + [sym_block_comment] = STATE(3006), + [sym_compiler_directive_decl] = STATE(3006), + [sym_fsi_directive_decl] = STATE(3006), + [sym_preproc_line] = STATE(3006), + [ts_builtin_sym_end] = ACTIONS(5441), + [sym_identifier] = ACTIONS(5443), + [anon_sym_namespace] = ACTIONS(5443), + [anon_sym_module] = ACTIONS(5443), + [anon_sym_open] = ACTIONS(5443), + [anon_sym_LBRACK_LT] = ACTIONS(5441), + [anon_sym_return] = ACTIONS(5443), + [anon_sym_type] = ACTIONS(5443), + [anon_sym_do] = ACTIONS(5443), + [anon_sym_and] = ACTIONS(5443), + [anon_sym_let] = ACTIONS(5443), + [anon_sym_let_BANG] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5443), + [anon_sym_null] = ACTIONS(5443), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5443), + [anon_sym_LBRACK_PIPE] = ACTIONS(5441), + [anon_sym_LBRACE] = ACTIONS(5443), + [anon_sym_LT_AT] = ACTIONS(5443), + [anon_sym_LT_AT_AT] = ACTIONS(5441), + [anon_sym_LBRACE_PIPE] = ACTIONS(5441), + [anon_sym_new] = ACTIONS(5443), + [anon_sym_return_BANG] = ACTIONS(5441), + [anon_sym_yield] = ACTIONS(5443), + [anon_sym_yield_BANG] = ACTIONS(5441), + [anon_sym_lazy] = ACTIONS(5443), + [anon_sym_assert] = ACTIONS(5443), + [anon_sym_upcast] = ACTIONS(5443), + [anon_sym_downcast] = ACTIONS(5443), + [anon_sym_for] = ACTIONS(5443), + [anon_sym_while] = ACTIONS(5443), + [anon_sym_if] = ACTIONS(5443), + [anon_sym_fun] = ACTIONS(5443), + [anon_sym_try] = ACTIONS(5443), + [anon_sym_match] = ACTIONS(5443), + [anon_sym_match_BANG] = ACTIONS(5441), + [anon_sym_function] = ACTIONS(5443), + [anon_sym_use] = ACTIONS(5443), + [anon_sym_use_BANG] = ACTIONS(5441), + [anon_sym_do_BANG] = ACTIONS(5441), + [anon_sym_begin] = ACTIONS(5443), + [anon_sym_exception] = ACTIONS(5443), + [aux_sym_char_token1] = ACTIONS(5441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5443), + [anon_sym_DQUOTE] = ACTIONS(5443), + [anon_sym_AT_DQUOTE] = ACTIONS(5441), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5441), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5441), + [sym_bool] = ACTIONS(5443), + [sym_unit] = ACTIONS(5441), + [anon_sym_LPAREN_PIPE] = ACTIONS(5443), + [sym_op_identifier] = ACTIONS(5441), + [anon_sym_PLUS] = ACTIONS(5443), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_PLUS_DOT] = ACTIONS(5441), + [anon_sym_DASH_DOT] = ACTIONS(5441), + [anon_sym_PERCENT] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_TILDE] = ACTIONS(5441), + [aux_sym_prefix_op_token1] = ACTIONS(5441), + [sym_int] = ACTIONS(5443), + [sym_xint] = ACTIONS(5441), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5441), + [anon_sym_POUNDload] = ACTIONS(5441), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5441), }, [3007] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7592), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3007), [sym_compiler_directive_decl] = STATE(3007), [sym_fsi_directive_decl] = STATE(3007), [sym_preproc_line] = STATE(3007), - [aux_sym_type_argument_repeat1] = STATE(3001), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3015), - [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(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(5377), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [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(3017), - [sym_xint] = ACTIONS(3015), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5445), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3015), }, [3008] = { - [sym_type_arguments] = STATE(3105), - [sym_long_identifier] = STATE(3106), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8221), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3008), [sym_compiler_directive_decl] = STATE(3008), [sym_fsi_directive_decl] = STATE(3008), [sym_preproc_line] = STATE(3008), - [aux_sym_compound_type_repeat1] = STATE(3091), - [sym_identifier] = ACTIONS(5405), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_LT_AT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2928), - [anon_sym_assert] = ACTIONS(2928), - [anon_sym_upcast] = ACTIONS(2928), - [anon_sym_downcast] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_fun] = ACTIONS(2928), - [anon_sym_DASH_GT] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2928), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2133), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2928), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2928), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [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(2928), - [sym_xint] = ACTIONS(2926), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2926), }, [3009] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7550), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3009), [sym_compiler_directive_decl] = STATE(3009), [sym_fsi_directive_decl] = STATE(3009), [sym_preproc_line] = STATE(3009), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5441), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3044), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3044), + [anon_sym_DASH_DOT] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3044), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), }, [3010] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7207), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3010), [sym_compiler_directive_decl] = STATE(3010), [sym_fsi_directive_decl] = STATE(3010), [sym_preproc_line] = STATE(3010), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), + [ts_builtin_sym_end] = ACTIONS(5449), + [sym_identifier] = ACTIONS(5451), + [anon_sym_namespace] = ACTIONS(5451), + [anon_sym_module] = ACTIONS(5451), + [anon_sym_open] = ACTIONS(5451), + [anon_sym_LBRACK_LT] = ACTIONS(5449), + [anon_sym_return] = ACTIONS(5451), + [anon_sym_type] = ACTIONS(5451), + [anon_sym_do] = ACTIONS(5451), + [anon_sym_and] = ACTIONS(5451), + [anon_sym_let] = ACTIONS(5451), + [anon_sym_let_BANG] = ACTIONS(5449), + [anon_sym_LPAREN] = ACTIONS(5451), + [anon_sym_null] = ACTIONS(5451), + [anon_sym_AMP] = ACTIONS(5451), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_LBRACK_PIPE] = ACTIONS(5449), + [anon_sym_LBRACE] = ACTIONS(5451), + [anon_sym_LT_AT] = ACTIONS(5451), + [anon_sym_LT_AT_AT] = ACTIONS(5449), + [anon_sym_LBRACE_PIPE] = ACTIONS(5449), + [anon_sym_new] = ACTIONS(5451), + [anon_sym_return_BANG] = ACTIONS(5449), + [anon_sym_yield] = ACTIONS(5451), + [anon_sym_yield_BANG] = ACTIONS(5449), + [anon_sym_lazy] = ACTIONS(5451), + [anon_sym_assert] = ACTIONS(5451), + [anon_sym_upcast] = ACTIONS(5451), + [anon_sym_downcast] = ACTIONS(5451), + [anon_sym_for] = ACTIONS(5451), + [anon_sym_while] = ACTIONS(5451), + [anon_sym_if] = ACTIONS(5451), + [anon_sym_fun] = ACTIONS(5451), + [anon_sym_try] = ACTIONS(5451), + [anon_sym_match] = ACTIONS(5451), + [anon_sym_match_BANG] = ACTIONS(5449), + [anon_sym_function] = ACTIONS(5451), + [anon_sym_use] = ACTIONS(5451), + [anon_sym_use_BANG] = ACTIONS(5449), + [anon_sym_do_BANG] = ACTIONS(5449), + [anon_sym_begin] = ACTIONS(5451), + [anon_sym_exception] = ACTIONS(5451), + [aux_sym_char_token1] = ACTIONS(5449), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5451), [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [anon_sym_AT_DQUOTE] = ACTIONS(5449), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5449), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5449), + [sym_bool] = ACTIONS(5451), + [sym_unit] = ACTIONS(5449), + [anon_sym_LPAREN_PIPE] = ACTIONS(5451), + [sym_op_identifier] = ACTIONS(5449), + [anon_sym_PLUS] = ACTIONS(5451), + [anon_sym_DASH] = ACTIONS(5451), + [anon_sym_PLUS_DOT] = ACTIONS(5449), + [anon_sym_DASH_DOT] = ACTIONS(5449), + [anon_sym_PERCENT] = ACTIONS(5449), + [anon_sym_AMP_AMP] = ACTIONS(5449), + [anon_sym_TILDE] = ACTIONS(5449), + [aux_sym_prefix_op_token1] = ACTIONS(5449), + [sym_int] = ACTIONS(5451), + [sym_xint] = ACTIONS(5449), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(5449), + [anon_sym_POUNDload] = ACTIONS(5449), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5449), }, [3011] = { [sym_block_comment] = STATE(3011), [sym_compiler_directive_decl] = STATE(3011), [sym_fsi_directive_decl] = STATE(3011), [sym_preproc_line] = STATE(3011), - [sym_identifier] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3099), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3097), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), + [ts_builtin_sym_end] = ACTIONS(5453), + [sym_identifier] = ACTIONS(5455), + [anon_sym_namespace] = ACTIONS(5455), + [anon_sym_module] = ACTIONS(5455), + [anon_sym_open] = ACTIONS(5455), + [anon_sym_LBRACK_LT] = ACTIONS(5453), + [anon_sym_return] = ACTIONS(5455), + [anon_sym_type] = ACTIONS(5455), + [anon_sym_do] = ACTIONS(5455), + [anon_sym_and] = ACTIONS(5455), + [anon_sym_let] = ACTIONS(5455), + [anon_sym_let_BANG] = ACTIONS(5453), + [anon_sym_LPAREN] = ACTIONS(5455), + [anon_sym_null] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5455), + [anon_sym_LBRACK_PIPE] = ACTIONS(5453), + [anon_sym_LBRACE] = ACTIONS(5455), + [anon_sym_LT_AT] = ACTIONS(5455), + [anon_sym_LT_AT_AT] = ACTIONS(5453), + [anon_sym_LBRACE_PIPE] = ACTIONS(5453), + [anon_sym_new] = ACTIONS(5455), + [anon_sym_return_BANG] = ACTIONS(5453), + [anon_sym_yield] = ACTIONS(5455), + [anon_sym_yield_BANG] = ACTIONS(5453), + [anon_sym_lazy] = ACTIONS(5455), + [anon_sym_assert] = ACTIONS(5455), + [anon_sym_upcast] = ACTIONS(5455), + [anon_sym_downcast] = ACTIONS(5455), + [anon_sym_for] = ACTIONS(5455), + [anon_sym_while] = ACTIONS(5455), + [anon_sym_if] = ACTIONS(5455), + [anon_sym_fun] = ACTIONS(5455), + [anon_sym_try] = ACTIONS(5455), + [anon_sym_match] = ACTIONS(5455), + [anon_sym_match_BANG] = ACTIONS(5453), + [anon_sym_function] = ACTIONS(5455), + [anon_sym_use] = ACTIONS(5455), + [anon_sym_use_BANG] = ACTIONS(5453), + [anon_sym_do_BANG] = ACTIONS(5453), + [anon_sym_begin] = ACTIONS(5455), + [anon_sym_exception] = ACTIONS(5455), + [aux_sym_char_token1] = ACTIONS(5453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5455), + [anon_sym_DQUOTE] = ACTIONS(5455), + [anon_sym_AT_DQUOTE] = ACTIONS(5453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5453), + [sym_bool] = ACTIONS(5455), + [sym_unit] = ACTIONS(5453), + [anon_sym_LPAREN_PIPE] = ACTIONS(5455), + [sym_op_identifier] = ACTIONS(5453), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_PLUS_DOT] = ACTIONS(5453), + [anon_sym_DASH_DOT] = ACTIONS(5453), + [anon_sym_PERCENT] = ACTIONS(5453), + [anon_sym_AMP_AMP] = ACTIONS(5453), + [anon_sym_TILDE] = ACTIONS(5453), + [aux_sym_prefix_op_token1] = ACTIONS(5453), + [sym_int] = ACTIONS(5455), + [sym_xint] = ACTIONS(5453), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5453), + [anon_sym_POUNDload] = ACTIONS(5453), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5453), }, [3012] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7302), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3012), [sym_compiler_directive_decl] = STATE(3012), [sym_fsi_directive_decl] = STATE(3012), [sym_preproc_line] = STATE(3012), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), + [ts_builtin_sym_end] = ACTIONS(5457), + [sym_identifier] = ACTIONS(5459), + [anon_sym_namespace] = ACTIONS(5459), + [anon_sym_module] = ACTIONS(5459), + [anon_sym_open] = ACTIONS(5459), + [anon_sym_LBRACK_LT] = ACTIONS(5457), + [anon_sym_return] = ACTIONS(5459), + [anon_sym_type] = ACTIONS(5459), + [anon_sym_do] = ACTIONS(5459), + [anon_sym_and] = ACTIONS(5459), + [anon_sym_let] = ACTIONS(5459), + [anon_sym_let_BANG] = ACTIONS(5457), + [anon_sym_LPAREN] = ACTIONS(5459), + [anon_sym_null] = ACTIONS(5459), + [anon_sym_AMP] = ACTIONS(5459), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym_LBRACK_PIPE] = ACTIONS(5457), + [anon_sym_LBRACE] = ACTIONS(5459), + [anon_sym_LT_AT] = ACTIONS(5459), + [anon_sym_LT_AT_AT] = ACTIONS(5457), + [anon_sym_LBRACE_PIPE] = ACTIONS(5457), + [anon_sym_new] = ACTIONS(5459), + [anon_sym_return_BANG] = ACTIONS(5457), + [anon_sym_yield] = ACTIONS(5459), + [anon_sym_yield_BANG] = ACTIONS(5457), + [anon_sym_lazy] = ACTIONS(5459), + [anon_sym_assert] = ACTIONS(5459), + [anon_sym_upcast] = ACTIONS(5459), + [anon_sym_downcast] = ACTIONS(5459), + [anon_sym_for] = ACTIONS(5459), + [anon_sym_while] = ACTIONS(5459), + [anon_sym_if] = ACTIONS(5459), + [anon_sym_fun] = ACTIONS(5459), + [anon_sym_try] = ACTIONS(5459), + [anon_sym_match] = ACTIONS(5459), + [anon_sym_match_BANG] = ACTIONS(5457), + [anon_sym_function] = ACTIONS(5459), + [anon_sym_use] = ACTIONS(5459), + [anon_sym_use_BANG] = ACTIONS(5457), + [anon_sym_do_BANG] = ACTIONS(5457), + [anon_sym_begin] = ACTIONS(5459), + [anon_sym_exception] = ACTIONS(5459), + [aux_sym_char_token1] = ACTIONS(5457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5459), + [anon_sym_DQUOTE] = ACTIONS(5459), + [anon_sym_AT_DQUOTE] = ACTIONS(5457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_unit] = ACTIONS(5457), + [anon_sym_LPAREN_PIPE] = ACTIONS(5459), + [sym_op_identifier] = ACTIONS(5457), + [anon_sym_PLUS] = ACTIONS(5459), + [anon_sym_DASH] = ACTIONS(5459), + [anon_sym_PLUS_DOT] = ACTIONS(5457), + [anon_sym_DASH_DOT] = ACTIONS(5457), + [anon_sym_PERCENT] = ACTIONS(5457), + [anon_sym_AMP_AMP] = ACTIONS(5457), + [anon_sym_TILDE] = ACTIONS(5457), + [aux_sym_prefix_op_token1] = ACTIONS(5457), + [sym_int] = ACTIONS(5459), + [sym_xint] = ACTIONS(5457), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(5457), + [anon_sym_POUNDload] = ACTIONS(5457), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5457), }, [3013] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7089), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3013), [sym_compiler_directive_decl] = STATE(3013), [sym_fsi_directive_decl] = STATE(3013), [sym_preproc_line] = STATE(3013), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(5473), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5461), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), }, [3014] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7337), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3014), [sym_compiler_directive_decl] = STATE(3014), [sym_fsi_directive_decl] = STATE(3014), [sym_preproc_line] = STATE(3014), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5463), + [sym_identifier] = ACTIONS(5465), + [anon_sym_namespace] = ACTIONS(5465), + [anon_sym_module] = ACTIONS(5465), + [anon_sym_open] = ACTIONS(5465), + [anon_sym_LBRACK_LT] = ACTIONS(5463), + [anon_sym_return] = ACTIONS(5465), + [anon_sym_type] = ACTIONS(5465), + [anon_sym_do] = ACTIONS(5465), + [anon_sym_and] = ACTIONS(5465), + [anon_sym_let] = ACTIONS(5465), + [anon_sym_let_BANG] = ACTIONS(5463), + [anon_sym_LPAREN] = ACTIONS(5465), + [anon_sym_null] = ACTIONS(5465), + [anon_sym_AMP] = ACTIONS(5465), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5465), + [anon_sym_LBRACK_PIPE] = ACTIONS(5463), + [anon_sym_LBRACE] = ACTIONS(5465), + [anon_sym_LT_AT] = ACTIONS(5465), + [anon_sym_LT_AT_AT] = ACTIONS(5463), + [anon_sym_LBRACE_PIPE] = ACTIONS(5463), + [anon_sym_new] = ACTIONS(5465), + [anon_sym_return_BANG] = ACTIONS(5463), + [anon_sym_yield] = ACTIONS(5465), + [anon_sym_yield_BANG] = ACTIONS(5463), + [anon_sym_lazy] = ACTIONS(5465), + [anon_sym_assert] = ACTIONS(5465), + [anon_sym_upcast] = ACTIONS(5465), + [anon_sym_downcast] = ACTIONS(5465), + [anon_sym_for] = ACTIONS(5465), + [anon_sym_while] = ACTIONS(5465), + [anon_sym_if] = ACTIONS(5465), + [anon_sym_fun] = ACTIONS(5465), + [anon_sym_try] = ACTIONS(5465), + [anon_sym_match] = ACTIONS(5465), + [anon_sym_match_BANG] = ACTIONS(5463), + [anon_sym_function] = ACTIONS(5465), + [anon_sym_use] = ACTIONS(5465), + [anon_sym_use_BANG] = ACTIONS(5463), + [anon_sym_do_BANG] = ACTIONS(5463), + [anon_sym_begin] = ACTIONS(5465), + [anon_sym_exception] = ACTIONS(5465), + [aux_sym_char_token1] = ACTIONS(5463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5465), + [anon_sym_DQUOTE] = ACTIONS(5465), + [anon_sym_AT_DQUOTE] = ACTIONS(5463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5463), + [sym_bool] = ACTIONS(5465), + [sym_unit] = ACTIONS(5463), + [anon_sym_LPAREN_PIPE] = ACTIONS(5465), + [sym_op_identifier] = ACTIONS(5463), + [anon_sym_PLUS] = ACTIONS(5465), + [anon_sym_DASH] = ACTIONS(5465), + [anon_sym_PLUS_DOT] = ACTIONS(5463), + [anon_sym_DASH_DOT] = ACTIONS(5463), + [anon_sym_PERCENT] = ACTIONS(5463), + [anon_sym_AMP_AMP] = ACTIONS(5463), + [anon_sym_TILDE] = ACTIONS(5463), + [aux_sym_prefix_op_token1] = ACTIONS(5463), + [sym_int] = ACTIONS(5465), + [sym_xint] = ACTIONS(5463), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5463), + [anon_sym_POUNDload] = ACTIONS(5463), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5463), }, [3015] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7392), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3015), [sym_compiler_directive_decl] = STATE(3015), [sym_fsi_directive_decl] = STATE(3015), [sym_preproc_line] = STATE(3015), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_type_argument_repeat1] = STATE(2999), + [sym_identifier] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2960), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(5424), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2960), + [anon_sym_DASH_DOT] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2960), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), + [sym__dedent] = ACTIONS(2960), }, [3016] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7645), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3016), [sym_compiler_directive_decl] = STATE(3016), [sym_fsi_directive_decl] = STATE(3016), [sym_preproc_line] = STATE(3016), - [sym_identifier] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3076), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5467), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3076), }, [3017] = { [sym_block_comment] = STATE(3017), [sym_compiler_directive_decl] = STATE(3017), [sym_fsi_directive_decl] = STATE(3017), [sym_preproc_line] = STATE(3017), - [sym_identifier] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3103), - [anon_sym_DASH_DOT] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3103), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - }, - [3018] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8239), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), - [sym_block_comment] = STATE(3018), - [sym_compiler_directive_decl] = STATE(3018), - [sym_fsi_directive_decl] = STATE(3018), - [sym_preproc_line] = STATE(3018), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_long_identifier_repeat1] = STATE(2964), + [sym_identifier] = ACTIONS(2956), + [anon_sym_GT_RBRACK] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(5433), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__newline] = ACTIONS(2954), + }, + [3018] = { + [sym_block_comment] = STATE(3018), + [sym_compiler_directive_decl] = STATE(3018), + [sym_fsi_directive_decl] = STATE(3018), + [sym_preproc_line] = STATE(3018), + [ts_builtin_sym_end] = ACTIONS(5469), + [sym_identifier] = ACTIONS(5471), + [anon_sym_namespace] = ACTIONS(5471), + [anon_sym_module] = ACTIONS(5471), + [anon_sym_open] = ACTIONS(5471), + [anon_sym_LBRACK_LT] = ACTIONS(5469), + [anon_sym_return] = ACTIONS(5471), + [anon_sym_type] = ACTIONS(5471), + [anon_sym_do] = ACTIONS(5471), + [anon_sym_and] = ACTIONS(5471), + [anon_sym_let] = ACTIONS(5471), + [anon_sym_let_BANG] = ACTIONS(5469), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_null] = ACTIONS(5471), + [anon_sym_AMP] = ACTIONS(5471), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym_LBRACK_PIPE] = ACTIONS(5469), + [anon_sym_LBRACE] = ACTIONS(5471), + [anon_sym_LT_AT] = ACTIONS(5471), + [anon_sym_LT_AT_AT] = ACTIONS(5469), + [anon_sym_LBRACE_PIPE] = ACTIONS(5469), + [anon_sym_new] = ACTIONS(5471), + [anon_sym_return_BANG] = ACTIONS(5469), + [anon_sym_yield] = ACTIONS(5471), + [anon_sym_yield_BANG] = ACTIONS(5469), + [anon_sym_lazy] = ACTIONS(5471), + [anon_sym_assert] = ACTIONS(5471), + [anon_sym_upcast] = ACTIONS(5471), + [anon_sym_downcast] = ACTIONS(5471), + [anon_sym_for] = ACTIONS(5471), + [anon_sym_while] = ACTIONS(5471), + [anon_sym_if] = ACTIONS(5471), + [anon_sym_fun] = ACTIONS(5471), + [anon_sym_try] = ACTIONS(5471), + [anon_sym_match] = ACTIONS(5471), + [anon_sym_match_BANG] = ACTIONS(5469), + [anon_sym_function] = ACTIONS(5471), + [anon_sym_use] = ACTIONS(5471), + [anon_sym_use_BANG] = ACTIONS(5469), + [anon_sym_do_BANG] = ACTIONS(5469), + [anon_sym_begin] = ACTIONS(5471), + [anon_sym_exception] = ACTIONS(5471), + [aux_sym_char_token1] = ACTIONS(5469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5471), + [anon_sym_DQUOTE] = ACTIONS(5471), + [anon_sym_AT_DQUOTE] = ACTIONS(5469), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5469), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5469), + [sym_bool] = ACTIONS(5471), + [sym_unit] = ACTIONS(5469), + [anon_sym_LPAREN_PIPE] = ACTIONS(5471), + [sym_op_identifier] = ACTIONS(5469), + [anon_sym_PLUS] = ACTIONS(5471), + [anon_sym_DASH] = ACTIONS(5471), + [anon_sym_PLUS_DOT] = ACTIONS(5469), + [anon_sym_DASH_DOT] = ACTIONS(5469), + [anon_sym_PERCENT] = ACTIONS(5469), + [anon_sym_AMP_AMP] = ACTIONS(5469), + [anon_sym_TILDE] = ACTIONS(5469), + [aux_sym_prefix_op_token1] = ACTIONS(5469), + [sym_int] = ACTIONS(5471), + [sym_xint] = ACTIONS(5469), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5469), + [anon_sym_POUNDload] = ACTIONS(5469), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5469), }, [3019] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7569), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3019), [sym_compiler_directive_decl] = STATE(3019), [sym_fsi_directive_decl] = STATE(3019), [sym_preproc_line] = STATE(3019), - [sym_identifier] = ACTIONS(3064), - [anon_sym_GT_RBRACK] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5473), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), }, [3020] = { [sym_block_comment] = STATE(3020), [sym_compiler_directive_decl] = STATE(3020), [sym_fsi_directive_decl] = STATE(3020), [sym_preproc_line] = STATE(3020), - [sym_identifier] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_let_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_null] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_LT_AT] = ACTIONS(2977), - [anon_sym_LT_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACE_PIPE] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_return_BANG] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_yield_BANG] = ACTIONS(2975), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_upcast] = ACTIONS(2977), - [anon_sym_downcast] = ACTIONS(2977), - [anon_sym_COLON_GT] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_fun] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_match_BANG] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_use_BANG] = ACTIONS(2975), - [anon_sym_do_BANG] = ACTIONS(2975), - [anon_sym_begin] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_LT2] = ACTIONS(2977), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [aux_sym_char_token1] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_AT_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2975), - [sym_bool] = ACTIONS(2977), - [sym_unit] = ACTIONS(2975), - [anon_sym_LPAREN_PIPE] = ACTIONS(2977), - [sym_op_identifier] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [aux_sym_prefix_op_token1] = ACTIONS(2975), - [sym_int] = ACTIONS(2977), - [sym_xint] = ACTIONS(2975), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(5475), + [sym_identifier] = ACTIONS(5477), + [anon_sym_namespace] = ACTIONS(5477), + [anon_sym_module] = ACTIONS(5477), + [anon_sym_open] = ACTIONS(5477), + [anon_sym_LBRACK_LT] = ACTIONS(5475), + [anon_sym_return] = ACTIONS(5477), + [anon_sym_type] = ACTIONS(5477), + [anon_sym_do] = ACTIONS(5477), + [anon_sym_and] = ACTIONS(5477), + [anon_sym_let] = ACTIONS(5477), + [anon_sym_let_BANG] = ACTIONS(5475), + [anon_sym_LPAREN] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5477), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5477), + [anon_sym_LBRACK_PIPE] = ACTIONS(5475), + [anon_sym_LBRACE] = ACTIONS(5477), + [anon_sym_LT_AT] = ACTIONS(5477), + [anon_sym_LT_AT_AT] = ACTIONS(5475), + [anon_sym_LBRACE_PIPE] = ACTIONS(5475), + [anon_sym_new] = ACTIONS(5477), + [anon_sym_return_BANG] = ACTIONS(5475), + [anon_sym_yield] = ACTIONS(5477), + [anon_sym_yield_BANG] = ACTIONS(5475), + [anon_sym_lazy] = ACTIONS(5477), + [anon_sym_assert] = ACTIONS(5477), + [anon_sym_upcast] = ACTIONS(5477), + [anon_sym_downcast] = ACTIONS(5477), + [anon_sym_for] = ACTIONS(5477), + [anon_sym_while] = ACTIONS(5477), + [anon_sym_if] = ACTIONS(5477), + [anon_sym_fun] = ACTIONS(5477), + [anon_sym_try] = ACTIONS(5477), + [anon_sym_match] = ACTIONS(5477), + [anon_sym_match_BANG] = ACTIONS(5475), + [anon_sym_function] = ACTIONS(5477), + [anon_sym_use] = ACTIONS(5477), + [anon_sym_use_BANG] = ACTIONS(5475), + [anon_sym_do_BANG] = ACTIONS(5475), + [anon_sym_begin] = ACTIONS(5477), + [anon_sym_exception] = ACTIONS(5477), + [aux_sym_char_token1] = ACTIONS(5475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5477), + [anon_sym_DQUOTE] = ACTIONS(5477), + [anon_sym_AT_DQUOTE] = ACTIONS(5475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5475), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5475), + [sym_bool] = ACTIONS(5477), + [sym_unit] = ACTIONS(5475), + [anon_sym_LPAREN_PIPE] = ACTIONS(5477), + [sym_op_identifier] = ACTIONS(5475), + [anon_sym_PLUS] = ACTIONS(5477), + [anon_sym_DASH] = ACTIONS(5477), + [anon_sym_PLUS_DOT] = ACTIONS(5475), + [anon_sym_DASH_DOT] = ACTIONS(5475), + [anon_sym_PERCENT] = ACTIONS(5475), + [anon_sym_AMP_AMP] = ACTIONS(5475), + [anon_sym_TILDE] = ACTIONS(5475), + [aux_sym_prefix_op_token1] = ACTIONS(5475), + [sym_int] = ACTIONS(5477), + [sym_xint] = ACTIONS(5475), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5475), + [anon_sym_POUNDload] = ACTIONS(5475), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5475), }, [3021] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8118), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7936), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3021), [sym_compiler_directive_decl] = STATE(3021), [sym_fsi_directive_decl] = STATE(3021), [sym_preproc_line] = STATE(3021), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), @@ -354490,296 +355130,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [3022] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7615), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3022), [sym_compiler_directive_decl] = STATE(3022), [sym_fsi_directive_decl] = STATE(3022), [sym_preproc_line] = STATE(3022), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [aux_sym_type_argument_repeat1] = STATE(3039), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(5481), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), }, [3023] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8152), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3023), [sym_compiler_directive_decl] = STATE(3023), [sym_fsi_directive_decl] = STATE(3023), [sym_preproc_line] = STATE(3023), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5485), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = STATE(3049), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3015), + [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_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(2063), + [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_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__newline] = ACTIONS(3015), }, [3024] = { + [sym_type_arguments] = STATE(3135), + [sym_long_identifier] = STATE(3134), [sym_block_comment] = STATE(3024), [sym_compiler_directive_decl] = STATE(3024), [sym_fsi_directive_decl] = STATE(3024), [sym_preproc_line] = STATE(3024), - [sym_identifier] = ACTIONS(3058), - [anon_sym_GT_RBRACK] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_LT2] = ACTIONS(5487), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3056), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__newline] = ACTIONS(3056), + [aux_sym_compound_type_repeat1] = STATE(3102), + [sym_identifier] = ACTIONS(5483), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_let_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LT_AT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_return_BANG] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_yield_BANG] = ACTIONS(2908), + [anon_sym_lazy] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_upcast] = ACTIONS(2910), + [anon_sym_downcast] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_match_BANG] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_use_BANG] = ACTIONS(2908), + [anon_sym_do_BANG] = ACTIONS(2908), + [anon_sym_begin] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_AT_DQUOTE] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2908), + [sym_bool] = ACTIONS(2910), + [sym_unit] = ACTIONS(2908), + [anon_sym_LPAREN_PIPE] = ACTIONS(2910), + [sym_op_identifier] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [aux_sym_prefix_op_token1] = ACTIONS(2908), + [sym_int] = ACTIONS(2910), + [sym_xint] = ACTIONS(2908), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2908), }, [3025] = { [sym_block_comment] = STATE(3025), [sym_compiler_directive_decl] = STATE(3025), [sym_fsi_directive_decl] = STATE(3025), [sym_preproc_line] = STATE(3025), - [sym_identifier] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_let_BANG] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LT_AT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_return_BANG] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_yield_BANG] = ACTIONS(3068), - [anon_sym_lazy] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_upcast] = ACTIONS(3066), - [anon_sym_downcast] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_fun] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_match_BANG] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3066), - [anon_sym_use_BANG] = ACTIONS(3068), - [anon_sym_do_BANG] = ACTIONS(3068), - [anon_sym_begin] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_LT2] = ACTIONS(3066), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3066), - [aux_sym_char_token1] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_AT_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3068), - [sym_bool] = ACTIONS(3066), - [sym_unit] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [sym_op_identifier] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_prefix_op_token1] = ACTIONS(3068), - [sym_int] = ACTIONS(3066), - [sym_xint] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(5485), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -354787,709 +355431,642 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3068), + [anon_sym_POUNDif] = ACTIONS(3058), }, [3026] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7435), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3026), [sym_compiler_directive_decl] = STATE(3026), [sym_fsi_directive_decl] = STATE(3026), [sym_preproc_line] = STATE(3026), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5489), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5487), + [sym_identifier] = ACTIONS(5489), + [anon_sym_namespace] = ACTIONS(5489), + [anon_sym_module] = ACTIONS(5489), + [anon_sym_open] = ACTIONS(5489), + [anon_sym_LBRACK_LT] = ACTIONS(5487), + [anon_sym_return] = ACTIONS(5489), + [anon_sym_type] = ACTIONS(5489), + [anon_sym_do] = ACTIONS(5489), + [anon_sym_let] = ACTIONS(5489), + [anon_sym_let_BANG] = ACTIONS(5487), + [anon_sym_LPAREN] = ACTIONS(5489), + [anon_sym_null] = ACTIONS(5489), + [anon_sym_AMP] = ACTIONS(5489), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5489), + [anon_sym_LBRACK_PIPE] = ACTIONS(5487), + [anon_sym_LBRACE] = ACTIONS(5489), + [anon_sym_LT_AT] = ACTIONS(5489), + [anon_sym_LT_AT_AT] = ACTIONS(5487), + [anon_sym_LBRACE_PIPE] = ACTIONS(5487), + [anon_sym_new] = ACTIONS(5489), + [anon_sym_return_BANG] = ACTIONS(5487), + [anon_sym_yield] = ACTIONS(5489), + [anon_sym_yield_BANG] = ACTIONS(5487), + [anon_sym_lazy] = ACTIONS(5489), + [anon_sym_assert] = ACTIONS(5489), + [anon_sym_upcast] = ACTIONS(5489), + [anon_sym_downcast] = ACTIONS(5489), + [anon_sym_for] = ACTIONS(5489), + [anon_sym_while] = ACTIONS(5489), + [anon_sym_if] = ACTIONS(5489), + [anon_sym_fun] = ACTIONS(5489), + [anon_sym_try] = ACTIONS(5489), + [anon_sym_match] = ACTIONS(5489), + [anon_sym_match_BANG] = ACTIONS(5487), + [anon_sym_function] = ACTIONS(5489), + [anon_sym_use] = ACTIONS(5489), + [anon_sym_use_BANG] = ACTIONS(5487), + [anon_sym_do_BANG] = ACTIONS(5487), + [anon_sym_begin] = ACTIONS(5489), + [anon_sym_exception] = ACTIONS(5489), + [aux_sym_char_token1] = ACTIONS(5487), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5489), + [anon_sym_DQUOTE] = ACTIONS(5489), + [anon_sym_AT_DQUOTE] = ACTIONS(5487), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5487), + [sym_bool] = ACTIONS(5489), + [sym_unit] = ACTIONS(5487), + [anon_sym_LPAREN_PIPE] = ACTIONS(5489), + [sym_op_identifier] = ACTIONS(5487), + [anon_sym_PLUS] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5489), + [anon_sym_PLUS_DOT] = ACTIONS(5487), + [anon_sym_DASH_DOT] = ACTIONS(5487), + [anon_sym_PERCENT] = ACTIONS(5487), + [anon_sym_AMP_AMP] = ACTIONS(5487), + [anon_sym_TILDE] = ACTIONS(5487), + [aux_sym_prefix_op_token1] = ACTIONS(5487), + [sym_int] = ACTIONS(5489), + [sym_xint] = ACTIONS(5487), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5487), + [anon_sym_POUNDload] = ACTIONS(5487), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5487), }, [3027] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7376), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym_type_arguments] = STATE(3135), + [sym_long_identifier] = STATE(3134), [sym_block_comment] = STATE(3027), [sym_compiler_directive_decl] = STATE(3027), [sym_fsi_directive_decl] = STATE(3027), [sym_preproc_line] = STATE(3027), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = STATE(3102), + [sym_identifier] = ACTIONS(5483), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), }, [3028] = { [sym_block_comment] = STATE(3028), [sym_compiler_directive_decl] = STATE(3028), [sym_fsi_directive_decl] = STATE(3028), [sym_preproc_line] = STATE(3028), - [sym_identifier] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3084), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3084), - [anon_sym_DASH_DOT] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3084), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), }, [3029] = { [sym_block_comment] = STATE(3029), [sym_compiler_directive_decl] = STATE(3029), [sym_fsi_directive_decl] = STATE(3029), [sym_preproc_line] = STATE(3029), - [sym_identifier] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3052), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), + [ts_builtin_sym_end] = ACTIONS(5491), + [sym_identifier] = ACTIONS(5493), + [anon_sym_namespace] = ACTIONS(5493), + [anon_sym_module] = ACTIONS(5493), + [anon_sym_open] = ACTIONS(5493), + [anon_sym_LBRACK_LT] = ACTIONS(5491), + [anon_sym_return] = ACTIONS(5493), + [anon_sym_type] = ACTIONS(5493), + [anon_sym_do] = ACTIONS(5493), + [anon_sym_let] = ACTIONS(5493), + [anon_sym_let_BANG] = ACTIONS(5491), + [anon_sym_LPAREN] = ACTIONS(5493), + [anon_sym_null] = ACTIONS(5493), + [anon_sym_AMP] = ACTIONS(5493), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5493), + [anon_sym_LBRACK_PIPE] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_LT_AT] = ACTIONS(5493), + [anon_sym_LT_AT_AT] = ACTIONS(5491), + [anon_sym_LBRACE_PIPE] = ACTIONS(5491), + [anon_sym_new] = ACTIONS(5493), + [anon_sym_return_BANG] = ACTIONS(5491), + [anon_sym_yield] = ACTIONS(5493), + [anon_sym_yield_BANG] = ACTIONS(5491), + [anon_sym_lazy] = ACTIONS(5493), + [anon_sym_assert] = ACTIONS(5493), + [anon_sym_upcast] = ACTIONS(5493), + [anon_sym_downcast] = ACTIONS(5493), + [anon_sym_for] = ACTIONS(5493), + [anon_sym_while] = ACTIONS(5493), + [anon_sym_if] = ACTIONS(5493), + [anon_sym_fun] = ACTIONS(5493), + [anon_sym_try] = ACTIONS(5493), + [anon_sym_match] = ACTIONS(5493), + [anon_sym_match_BANG] = ACTIONS(5491), + [anon_sym_function] = ACTIONS(5493), + [anon_sym_use] = ACTIONS(5493), + [anon_sym_use_BANG] = ACTIONS(5491), + [anon_sym_do_BANG] = ACTIONS(5491), + [anon_sym_begin] = ACTIONS(5493), + [anon_sym_exception] = ACTIONS(5493), + [aux_sym_char_token1] = ACTIONS(5491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5493), + [anon_sym_DQUOTE] = ACTIONS(5493), + [anon_sym_AT_DQUOTE] = ACTIONS(5491), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5491), + [sym_bool] = ACTIONS(5493), + [sym_unit] = ACTIONS(5491), + [anon_sym_LPAREN_PIPE] = ACTIONS(5493), + [sym_op_identifier] = ACTIONS(5491), + [anon_sym_PLUS] = ACTIONS(5493), + [anon_sym_DASH] = ACTIONS(5493), + [anon_sym_PLUS_DOT] = ACTIONS(5491), + [anon_sym_DASH_DOT] = ACTIONS(5491), + [anon_sym_PERCENT] = ACTIONS(5491), + [anon_sym_AMP_AMP] = ACTIONS(5491), + [anon_sym_TILDE] = ACTIONS(5491), + [aux_sym_prefix_op_token1] = ACTIONS(5491), + [sym_int] = ACTIONS(5493), + [sym_xint] = ACTIONS(5491), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5491), + [anon_sym_POUNDload] = ACTIONS(5491), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5491), }, [3030] = { [sym_block_comment] = STATE(3030), [sym_compiler_directive_decl] = STATE(3030), [sym_fsi_directive_decl] = STATE(3030), [sym_preproc_line] = STATE(3030), - [sym_identifier] = ACTIONS(3044), - [anon_sym_GT_RBRACK] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3046), - [anon_sym_DASH_DOT] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [sym_identifier] = ACTIONS(2964), + [anon_sym_GT_RBRACK] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__newline] = ACTIONS(2966), }, [3031] = { [sym_block_comment] = STATE(3031), [sym_compiler_directive_decl] = STATE(3031), [sym_fsi_directive_decl] = STATE(3031), [sym_preproc_line] = STATE(3031), - [sym_identifier] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + [ts_builtin_sym_end] = ACTIONS(5495), + [sym_identifier] = ACTIONS(5497), + [anon_sym_namespace] = ACTIONS(5497), + [anon_sym_module] = ACTIONS(5497), + [anon_sym_open] = ACTIONS(5497), + [anon_sym_LBRACK_LT] = ACTIONS(5495), + [anon_sym_return] = ACTIONS(5497), + [anon_sym_type] = ACTIONS(5497), + [anon_sym_do] = ACTIONS(5497), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_let_BANG] = ACTIONS(5495), + [anon_sym_LPAREN] = ACTIONS(5497), + [anon_sym_null] = ACTIONS(5497), + [anon_sym_AMP] = ACTIONS(5497), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5497), + [anon_sym_LBRACK_PIPE] = ACTIONS(5495), + [anon_sym_LBRACE] = ACTIONS(5497), + [anon_sym_LT_AT] = ACTIONS(5497), + [anon_sym_LT_AT_AT] = ACTIONS(5495), + [anon_sym_LBRACE_PIPE] = ACTIONS(5495), + [anon_sym_new] = ACTIONS(5497), + [anon_sym_return_BANG] = ACTIONS(5495), + [anon_sym_yield] = ACTIONS(5497), + [anon_sym_yield_BANG] = ACTIONS(5495), + [anon_sym_lazy] = ACTIONS(5497), + [anon_sym_assert] = ACTIONS(5497), + [anon_sym_upcast] = ACTIONS(5497), + [anon_sym_downcast] = ACTIONS(5497), + [anon_sym_for] = ACTIONS(5497), + [anon_sym_while] = ACTIONS(5497), + [anon_sym_if] = ACTIONS(5497), + [anon_sym_fun] = ACTIONS(5497), + [anon_sym_try] = ACTIONS(5497), + [anon_sym_match] = ACTIONS(5497), + [anon_sym_match_BANG] = ACTIONS(5495), + [anon_sym_function] = ACTIONS(5497), + [anon_sym_use] = ACTIONS(5497), + [anon_sym_use_BANG] = ACTIONS(5495), + [anon_sym_do_BANG] = ACTIONS(5495), + [anon_sym_begin] = ACTIONS(5497), + [anon_sym_exception] = ACTIONS(5497), + [aux_sym_char_token1] = ACTIONS(5495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5497), + [anon_sym_DQUOTE] = ACTIONS(5497), + [anon_sym_AT_DQUOTE] = ACTIONS(5495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5495), + [sym_bool] = ACTIONS(5497), + [sym_unit] = ACTIONS(5495), + [anon_sym_LPAREN_PIPE] = ACTIONS(5497), + [sym_op_identifier] = ACTIONS(5495), + [anon_sym_PLUS] = ACTIONS(5497), + [anon_sym_DASH] = ACTIONS(5497), + [anon_sym_PLUS_DOT] = ACTIONS(5495), + [anon_sym_DASH_DOT] = ACTIONS(5495), + [anon_sym_PERCENT] = ACTIONS(5495), + [anon_sym_AMP_AMP] = ACTIONS(5495), + [anon_sym_TILDE] = ACTIONS(5495), + [aux_sym_prefix_op_token1] = ACTIONS(5495), + [sym_int] = ACTIONS(5497), + [sym_xint] = ACTIONS(5495), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5495), + [anon_sym_POUNDload] = ACTIONS(5495), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5495), }, [3032] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8220), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3032), [sym_compiler_directive_decl] = STATE(3032), [sym_fsi_directive_decl] = STATE(3032), [sym_preproc_line] = STATE(3032), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = STATE(3032), + [sym_identifier] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(5499), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), }, [3033] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7803), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3033), [sym_compiler_directive_decl] = STATE(3033), [sym_fsi_directive_decl] = STATE(3033), [sym_preproc_line] = STATE(3033), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5495), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [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_let] = ACTIONS(5504), + [anon_sym_let_BANG] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_SEMI] = ACTIONS(3), + [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_exception] = 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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5502), + [anon_sym_POUNDload] = ACTIONS(5502), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5502), }, [3034] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7929), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3034), [sym_compiler_directive_decl] = STATE(3034), [sym_fsi_directive_decl] = STATE(3034), [sym_preproc_line] = STATE(3034), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5497), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - }, - [3035] = { - [sym_block_comment] = STATE(3035), - [sym_compiler_directive_decl] = STATE(3035), - [sym_fsi_directive_decl] = STATE(3035), - [sym_preproc_line] = STATE(3035), - [aux_sym_long_identifier_repeat1] = STATE(3035), + [aux_sym_long_identifier_repeat1] = STATE(3052), [sym_identifier] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_null] = ACTIONS(2988), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(5499), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5506), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), @@ -355498,38 +356075,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), + [anon_sym_DASH_GT] = ACTIONS(2986), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2986), [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), + [sym_unit] = ACTIONS(2986), [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), + [sym_op_identifier] = ACTIONS(2986), [anon_sym_PLUS] = ACTIONS(2988), [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_xint] = ACTIONS(2986), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__dedent] = ACTIONS(2986), + }, + [3035] = { + [sym_block_comment] = STATE(3035), + [sym_compiler_directive_decl] = STATE(3035), + [sym_fsi_directive_decl] = STATE(3035), + [sym_preproc_line] = STATE(3035), + [sym_identifier] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3044), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3044), + [anon_sym_DASH_DOT] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3044), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -355537,524 +356190,532 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3044), + [sym__dedent] = ACTIONS(3044), }, [3036] = { [sym_block_comment] = STATE(3036), [sym_compiler_directive_decl] = STATE(3036), [sym_fsi_directive_decl] = STATE(3036), [sym_preproc_line] = STATE(3036), - [sym_identifier] = ACTIONS(3048), - [anon_sym_GT_RBRACK] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3048), + [ts_builtin_sym_end] = ACTIONS(5508), + [sym_identifier] = ACTIONS(5510), + [anon_sym_namespace] = ACTIONS(5510), + [anon_sym_module] = ACTIONS(5510), + [anon_sym_open] = ACTIONS(5510), + [anon_sym_LBRACK_LT] = ACTIONS(5508), + [anon_sym_return] = ACTIONS(5510), + [anon_sym_type] = ACTIONS(5510), + [anon_sym_do] = ACTIONS(5510), + [anon_sym_let] = ACTIONS(5510), + [anon_sym_let_BANG] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5510), + [anon_sym_null] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5510), + [anon_sym_LBRACK_PIPE] = ACTIONS(5508), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_LT_AT] = ACTIONS(5510), + [anon_sym_LT_AT_AT] = ACTIONS(5508), + [anon_sym_LBRACE_PIPE] = ACTIONS(5508), + [anon_sym_new] = ACTIONS(5510), + [anon_sym_return_BANG] = ACTIONS(5508), + [anon_sym_yield] = ACTIONS(5510), + [anon_sym_yield_BANG] = ACTIONS(5508), + [anon_sym_lazy] = ACTIONS(5510), + [anon_sym_assert] = ACTIONS(5510), + [anon_sym_upcast] = ACTIONS(5510), + [anon_sym_downcast] = ACTIONS(5510), + [anon_sym_for] = ACTIONS(5510), + [anon_sym_while] = ACTIONS(5510), + [anon_sym_if] = ACTIONS(5510), + [anon_sym_fun] = ACTIONS(5510), + [anon_sym_try] = ACTIONS(5510), + [anon_sym_match] = ACTIONS(5510), + [anon_sym_match_BANG] = ACTIONS(5508), + [anon_sym_function] = ACTIONS(5510), + [anon_sym_use] = ACTIONS(5510), + [anon_sym_use_BANG] = ACTIONS(5508), + [anon_sym_do_BANG] = ACTIONS(5508), + [anon_sym_begin] = ACTIONS(5510), + [anon_sym_exception] = ACTIONS(5510), + [aux_sym_char_token1] = ACTIONS(5508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5510), + [anon_sym_DQUOTE] = ACTIONS(5510), + [anon_sym_AT_DQUOTE] = ACTIONS(5508), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5508), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5508), + [sym_bool] = ACTIONS(5510), + [sym_unit] = ACTIONS(5508), + [anon_sym_LPAREN_PIPE] = ACTIONS(5510), + [sym_op_identifier] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_PLUS_DOT] = ACTIONS(5508), + [anon_sym_DASH_DOT] = ACTIONS(5508), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5508), + [aux_sym_prefix_op_token1] = ACTIONS(5508), + [sym_int] = ACTIONS(5510), + [sym_xint] = ACTIONS(5508), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5508), + [anon_sym_POUNDload] = ACTIONS(5508), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5508), + }, + [3037] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7737), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(3037), + [sym_compiler_directive_decl] = STATE(3037), + [sym_fsi_directive_decl] = STATE(3037), + [sym_preproc_line] = STATE(3037), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3050), - [anon_sym_DASH_DOT] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [3037] = { - [sym_block_comment] = STATE(3037), - [sym_compiler_directive_decl] = STATE(3037), - [sym_fsi_directive_decl] = STATE(3037), - [sym_preproc_line] = STATE(3037), - [aux_sym_long_identifier_repeat1] = STATE(3042), - [sym_identifier] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_let_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_LT_AT] = ACTIONS(2959), - [anon_sym_LT_AT_AT] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(5502), - [anon_sym_LBRACE_PIPE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_return_BANG] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_yield_BANG] = ACTIONS(2957), - [anon_sym_lazy] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_upcast] = ACTIONS(2959), - [anon_sym_downcast] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_fun] = ACTIONS(2959), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_match_BANG] = ACTIONS(2957), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_use_BANG] = ACTIONS(2957), - [anon_sym_do_BANG] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_LT2] = ACTIONS(2959), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2957), - [aux_sym_char_token1] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_AT_DQUOTE] = ACTIONS(2957), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2957), - [sym_bool] = ACTIONS(2959), - [sym_unit] = ACTIONS(2957), - [anon_sym_LPAREN_PIPE] = ACTIONS(2959), - [sym_op_identifier] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_PLUS_DOT] = ACTIONS(2957), - [anon_sym_DASH_DOT] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [aux_sym_prefix_op_token1] = ACTIONS(2957), - [sym_int] = ACTIONS(2959), - [sym_xint] = ACTIONS(2957), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2957), }, [3038] = { + [sym_type_arguments] = STATE(3135), + [sym_long_identifier] = STATE(3134), [sym_block_comment] = STATE(3038), [sym_compiler_directive_decl] = STATE(3038), [sym_fsi_directive_decl] = STATE(3038), [sym_preproc_line] = STATE(3038), - [sym_identifier] = ACTIONS(3101), - [anon_sym_GT_RBRACK] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3103), - [anon_sym_DASH_DOT] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3103), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__newline] = ACTIONS(3103), - }, - [3039] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7357), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), - [sym_block_comment] = STATE(3039), - [sym_compiler_directive_decl] = STATE(3039), - [sym_fsi_directive_decl] = STATE(3039), - [sym_preproc_line] = STATE(3039), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5504), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = STATE(3102), + [sym_identifier] = ACTIONS(5483), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_let_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LT_AT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_return_BANG] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_yield_BANG] = ACTIONS(2900), + [anon_sym_lazy] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_upcast] = ACTIONS(2902), + [anon_sym_downcast] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_match_BANG] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_use_BANG] = ACTIONS(2900), + [anon_sym_do_BANG] = ACTIONS(2900), + [anon_sym_begin] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_AT_DQUOTE] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), + [sym_bool] = ACTIONS(2902), + [sym_unit] = ACTIONS(2900), + [anon_sym_LPAREN_PIPE] = ACTIONS(2902), + [sym_op_identifier] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [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(2900), + [aux_sym_prefix_op_token1] = ACTIONS(2900), + [sym_int] = ACTIONS(2902), + [sym_xint] = ACTIONS(2900), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2900), + }, + [3039] = { + [sym_block_comment] = STATE(3039), + [sym_compiler_directive_decl] = STATE(3039), + [sym_fsi_directive_decl] = STATE(3039), + [sym_preproc_line] = STATE(3039), + [aux_sym_type_argument_repeat1] = STATE(3046), + [sym_identifier] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_LT_AT_AT] = ACTIONS(2960), + [anon_sym_LBRACE_PIPE] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2960), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_COLON_GT] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2960), + [anon_sym_do_BANG] = ACTIONS(2960), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_LT2] = ACTIONS(2962), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(5481), + [aux_sym_char_token1] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2960), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2960), + [anon_sym_LPAREN_PIPE] = ACTIONS(2962), + [sym_op_identifier] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2960), + [anon_sym_DASH_DOT] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [aux_sym_prefix_op_token1] = ACTIONS(2960), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2960), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2960), }, [3040] = { + [sym_type_arguments] = STATE(3135), + [sym_long_identifier] = STATE(3134), [sym_block_comment] = STATE(3040), [sym_compiler_directive_decl] = STATE(3040), [sym_fsi_directive_decl] = STATE(3040), [sym_preproc_line] = STATE(3040), - [aux_sym_compound_type_repeat1] = STATE(3040), - [sym_identifier] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(5506), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), + [aux_sym_compound_type_repeat1] = STATE(3102), + [sym_identifier] = ACTIONS(5483), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACK_PIPE] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LT_AT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_return_BANG] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_yield_BANG] = ACTIONS(2904), + [anon_sym_lazy] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_upcast] = ACTIONS(2906), + [anon_sym_downcast] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_fun] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_match_BANG] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_use_BANG] = ACTIONS(2904), + [anon_sym_do_BANG] = ACTIONS(2904), + [anon_sym_begin] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_LT2] = ACTIONS(2133), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2135), + [aux_sym_char_token1] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_AT_DQUOTE] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2904), + [sym_bool] = ACTIONS(2906), + [sym_unit] = ACTIONS(2904), + [anon_sym_LPAREN_PIPE] = ACTIONS(2906), + [sym_op_identifier] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [aux_sym_prefix_op_token1] = ACTIONS(2904), + [sym_int] = ACTIONS(2906), + [sym_xint] = ACTIONS(2904), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2904), }, [3041] = { [sym_block_comment] = STATE(3041), [sym_compiler_directive_decl] = STATE(3041), [sym_fsi_directive_decl] = STATE(3041), [sym_preproc_line] = STATE(3041), - [sym_identifier] = ACTIONS(3099), - [anon_sym_GT_RBRACK] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3097), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__newline] = ACTIONS(3097), + [ts_builtin_sym_end] = ACTIONS(5512), + [sym_identifier] = ACTIONS(5514), + [anon_sym_namespace] = ACTIONS(5514), + [anon_sym_module] = ACTIONS(5514), + [anon_sym_open] = ACTIONS(5514), + [anon_sym_LBRACK_LT] = ACTIONS(5512), + [anon_sym_return] = ACTIONS(5514), + [anon_sym_type] = ACTIONS(5514), + [anon_sym_do] = ACTIONS(5514), + [anon_sym_let] = ACTIONS(5514), + [anon_sym_let_BANG] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5514), + [anon_sym_null] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_LBRACK_PIPE] = ACTIONS(5512), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_LT_AT] = ACTIONS(5514), + [anon_sym_LT_AT_AT] = ACTIONS(5512), + [anon_sym_LBRACE_PIPE] = ACTIONS(5512), + [anon_sym_new] = ACTIONS(5514), + [anon_sym_return_BANG] = ACTIONS(5512), + [anon_sym_yield] = ACTIONS(5514), + [anon_sym_yield_BANG] = ACTIONS(5512), + [anon_sym_lazy] = ACTIONS(5514), + [anon_sym_assert] = ACTIONS(5514), + [anon_sym_upcast] = ACTIONS(5514), + [anon_sym_downcast] = ACTIONS(5514), + [anon_sym_for] = ACTIONS(5514), + [anon_sym_while] = ACTIONS(5514), + [anon_sym_if] = ACTIONS(5514), + [anon_sym_fun] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5514), + [anon_sym_match] = ACTIONS(5514), + [anon_sym_match_BANG] = ACTIONS(5512), + [anon_sym_function] = ACTIONS(5514), + [anon_sym_use] = ACTIONS(5514), + [anon_sym_use_BANG] = ACTIONS(5512), + [anon_sym_do_BANG] = ACTIONS(5512), + [anon_sym_begin] = ACTIONS(5514), + [anon_sym_exception] = ACTIONS(5514), + [aux_sym_char_token1] = ACTIONS(5512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5514), + [anon_sym_AT_DQUOTE] = ACTIONS(5512), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5512), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5512), + [sym_bool] = ACTIONS(5514), + [sym_unit] = ACTIONS(5512), + [anon_sym_LPAREN_PIPE] = ACTIONS(5514), + [sym_op_identifier] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_PLUS_DOT] = ACTIONS(5512), + [anon_sym_DASH_DOT] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_AMP_AMP] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5512), + [aux_sym_prefix_op_token1] = ACTIONS(5512), + [sym_int] = ACTIONS(5514), + [sym_xint] = ACTIONS(5512), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5512), + [anon_sym_POUNDload] = ACTIONS(5512), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5512), }, [3042] = { [sym_block_comment] = STATE(3042), [sym_compiler_directive_decl] = STATE(3042), [sym_fsi_directive_decl] = STATE(3042), [sym_preproc_line] = STATE(3042), - [aux_sym_long_identifier_repeat1] = STATE(3035), - [sym_identifier] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_let_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_LT_AT] = ACTIONS(2973), - [anon_sym_LT_AT_AT] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(5502), - [anon_sym_LBRACE_PIPE] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_return_BANG] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_yield_BANG] = ACTIONS(2971), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_upcast] = ACTIONS(2973), - [anon_sym_downcast] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_fun] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_match_BANG] = ACTIONS(2971), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_use_BANG] = ACTIONS(2971), - [anon_sym_do_BANG] = ACTIONS(2971), - [anon_sym_begin] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_LT2] = ACTIONS(2973), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2971), - [aux_sym_char_token1] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_AT_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2971), - [sym_bool] = ACTIONS(2973), - [sym_unit] = ACTIONS(2971), - [anon_sym_LPAREN_PIPE] = ACTIONS(2973), - [sym_op_identifier] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [aux_sym_prefix_op_token1] = ACTIONS(2971), - [sym_int] = ACTIONS(2973), - [sym_xint] = ACTIONS(2971), + [aux_sym_compound_type_repeat1] = STATE(3032), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = 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_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(2083), + [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_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -356062,524 +356723,530 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2971), + [anon_sym_POUNDif] = ACTIONS(3015), }, [3043] = { [sym_block_comment] = STATE(3043), [sym_compiler_directive_decl] = STATE(3043), [sym_fsi_directive_decl] = STATE(3043), [sym_preproc_line] = STATE(3043), - [sym_identifier] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3095), - [anon_sym_DASH_DOT] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3095), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), + [ts_builtin_sym_end] = ACTIONS(5516), + [sym_identifier] = ACTIONS(5518), + [anon_sym_namespace] = ACTIONS(5518), + [anon_sym_module] = ACTIONS(5518), + [anon_sym_open] = ACTIONS(5518), + [anon_sym_LBRACK_LT] = ACTIONS(5516), + [anon_sym_return] = ACTIONS(5518), + [anon_sym_type] = ACTIONS(5518), + [anon_sym_do] = ACTIONS(5518), + [anon_sym_let] = ACTIONS(5518), + [anon_sym_let_BANG] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_null] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_LBRACK_PIPE] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_LT_AT] = ACTIONS(5518), + [anon_sym_LT_AT_AT] = ACTIONS(5516), + [anon_sym_LBRACE_PIPE] = ACTIONS(5516), + [anon_sym_new] = ACTIONS(5518), + [anon_sym_return_BANG] = ACTIONS(5516), + [anon_sym_yield] = ACTIONS(5518), + [anon_sym_yield_BANG] = ACTIONS(5516), + [anon_sym_lazy] = ACTIONS(5518), + [anon_sym_assert] = ACTIONS(5518), + [anon_sym_upcast] = ACTIONS(5518), + [anon_sym_downcast] = ACTIONS(5518), + [anon_sym_for] = ACTIONS(5518), + [anon_sym_while] = ACTIONS(5518), + [anon_sym_if] = ACTIONS(5518), + [anon_sym_fun] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5518), + [anon_sym_match] = ACTIONS(5518), + [anon_sym_match_BANG] = ACTIONS(5516), + [anon_sym_function] = ACTIONS(5518), + [anon_sym_use] = ACTIONS(5518), + [anon_sym_use_BANG] = ACTIONS(5516), + [anon_sym_do_BANG] = ACTIONS(5516), + [anon_sym_begin] = ACTIONS(5518), + [anon_sym_exception] = ACTIONS(5518), + [aux_sym_char_token1] = ACTIONS(5516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [anon_sym_AT_DQUOTE] = ACTIONS(5516), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5516), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5516), + [sym_bool] = ACTIONS(5518), + [sym_unit] = ACTIONS(5516), + [anon_sym_LPAREN_PIPE] = ACTIONS(5518), + [sym_op_identifier] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_PLUS_DOT] = ACTIONS(5516), + [anon_sym_DASH_DOT] = ACTIONS(5516), + [anon_sym_PERCENT] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5516), + [aux_sym_prefix_op_token1] = ACTIONS(5516), + [sym_int] = ACTIONS(5518), + [sym_xint] = ACTIONS(5516), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5516), + [anon_sym_POUNDload] = ACTIONS(5516), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5516), }, [3044] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7420), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3044), [sym_compiler_directive_decl] = STATE(3044), [sym_fsi_directive_decl] = STATE(3044), [sym_preproc_line] = STATE(3044), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5509), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [ts_builtin_sym_end] = ACTIONS(197), + [sym_identifier] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(199), + [anon_sym_module] = ACTIONS(199), + [anon_sym_open] = ACTIONS(199), + [anon_sym_LBRACK_LT] = ACTIONS(197), + [anon_sym_return] = ACTIONS(199), + [anon_sym_type] = ACTIONS(199), + [anon_sym_do] = ACTIONS(199), + [anon_sym_let] = ACTIONS(199), + [anon_sym_let_BANG] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_null] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_LBRACK_PIPE] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_LT_AT] = ACTIONS(199), + [anon_sym_LT_AT_AT] = ACTIONS(197), + [anon_sym_LBRACE_PIPE] = ACTIONS(197), + [anon_sym_new] = ACTIONS(199), + [anon_sym_return_BANG] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_yield_BANG] = ACTIONS(197), + [anon_sym_lazy] = ACTIONS(199), + [anon_sym_assert] = ACTIONS(199), + [anon_sym_upcast] = ACTIONS(199), + [anon_sym_downcast] = ACTIONS(199), + [anon_sym_for] = ACTIONS(199), + [anon_sym_while] = ACTIONS(199), + [anon_sym_if] = ACTIONS(199), + [anon_sym_fun] = ACTIONS(199), + [anon_sym_try] = ACTIONS(199), + [anon_sym_match] = ACTIONS(199), + [anon_sym_match_BANG] = ACTIONS(197), + [anon_sym_function] = ACTIONS(199), + [anon_sym_use] = ACTIONS(199), + [anon_sym_use_BANG] = ACTIONS(197), + [anon_sym_do_BANG] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_exception] = ACTIONS(199), + [aux_sym_char_token1] = ACTIONS(197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_AT_DQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(197), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(197), + [sym_bool] = ACTIONS(199), + [sym_unit] = ACTIONS(197), + [anon_sym_LPAREN_PIPE] = ACTIONS(199), + [sym_op_identifier] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS_DOT] = ACTIONS(197), + [anon_sym_DASH_DOT] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(197), + [aux_sym_prefix_op_token1] = ACTIONS(197), + [sym_int] = ACTIONS(199), + [sym_xint] = ACTIONS(197), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(197), + [anon_sym_POUNDload] = ACTIONS(197), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(197), }, [3045] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7504), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3045), [sym_compiler_directive_decl] = STATE(3045), [sym_fsi_directive_decl] = STATE(3045), [sym_preproc_line] = STATE(3045), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_identifier] = ACTIONS(2979), + [anon_sym_GT_RBRACK] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__newline] = ACTIONS(2981), }, [3046] = { [sym_block_comment] = STATE(3046), [sym_compiler_directive_decl] = STATE(3046), [sym_fsi_directive_decl] = STATE(3046), [sym_preproc_line] = STATE(3046), - [sym_identifier] = ACTIONS(3054), - [anon_sym_GT_RBRACK] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3052), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__newline] = ACTIONS(3052), + [aux_sym_type_argument_repeat1] = STATE(3046), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(5520), + [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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), }, [3047] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7221), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3047), [sym_compiler_directive_decl] = STATE(3047), [sym_fsi_directive_decl] = STATE(3047), [sym_preproc_line] = STATE(3047), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5513), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [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(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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + [sym__dedent] = ACTIONS(2992), }, [3048] = { [sym_block_comment] = STATE(3048), [sym_compiler_directive_decl] = STATE(3048), [sym_fsi_directive_decl] = STATE(3048), [sym_preproc_line] = STATE(3048), - [sym_identifier] = ACTIONS(3082), - [anon_sym_GT_RBRACK] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3084), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3084), - [anon_sym_DASH_DOT] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3084), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__newline] = ACTIONS(3084), + [aux_sym_long_identifier_repeat1] = STATE(3048), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(5523), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [3049] = { [sym_block_comment] = STATE(3049), [sym_compiler_directive_decl] = STATE(3049), [sym_fsi_directive_decl] = STATE(3049), [sym_preproc_line] = STATE(3049), - [sym_identifier] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3046), - [anon_sym_DASH_DOT] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [aux_sym_compound_type_repeat1] = STATE(3049), + [sym_identifier] = ACTIONS(2886), + [anon_sym_GT_RBRACK] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(5526), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -356587,76 +357254,78 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [3050] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7066), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(8070), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3050), [sym_compiler_directive_decl] = STATE(3050), [sym_fsi_directive_decl] = STATE(3050), [sym_preproc_line] = STATE(3050), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5515), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), @@ -356665,73 +357334,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [3051] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7118), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7809), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3051), [sym_compiler_directive_decl] = STATE(3051), [sym_fsi_directive_decl] = STATE(3051), [sym_preproc_line] = STATE(3051), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5517), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), @@ -356740,148 +357410,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [3052] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7466), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3052), [sym_compiler_directive_decl] = STATE(3052), [sym_fsi_directive_decl] = STATE(3052), [sym_preproc_line] = STATE(3052), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_long_identifier_repeat1] = STATE(3048), + [sym_identifier] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(5506), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2954), + [sym__dedent] = ACTIONS(2954), }, [3053] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7412), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6348), + [sym_type_attributes] = STATE(7244), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), [sym_block_comment] = STATE(3053), [sym_compiler_directive_decl] = STATE(3053), [sym_fsi_directive_decl] = STATE(3053), [sym_preproc_line] = STATE(3053), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5521), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), @@ -356890,295 +357562,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), }, [3054] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7331), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3054), [sym_compiler_directive_decl] = STATE(3054), [sym_fsi_directive_decl] = STATE(3054), [sym_preproc_line] = STATE(3054), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5523), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3060), + [anon_sym_GT_RBRACK] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(5529), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [3055] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7806), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3055), [sym_compiler_directive_decl] = STATE(3055), [sym_fsi_directive_decl] = STATE(3055), [sym_preproc_line] = STATE(3055), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5525), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [ts_builtin_sym_end] = ACTIONS(5531), + [sym_identifier] = ACTIONS(5533), + [anon_sym_namespace] = ACTIONS(5533), + [anon_sym_module] = ACTIONS(5533), + [anon_sym_open] = ACTIONS(5533), + [anon_sym_LBRACK_LT] = ACTIONS(5531), + [anon_sym_return] = ACTIONS(5533), + [anon_sym_type] = ACTIONS(5533), + [anon_sym_do] = ACTIONS(5533), + [anon_sym_let] = ACTIONS(5533), + [anon_sym_let_BANG] = ACTIONS(5531), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_null] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5533), + [anon_sym_LBRACK_PIPE] = ACTIONS(5531), + [anon_sym_LBRACE] = ACTIONS(5533), + [anon_sym_LT_AT] = ACTIONS(5533), + [anon_sym_LT_AT_AT] = ACTIONS(5531), + [anon_sym_LBRACE_PIPE] = ACTIONS(5531), + [anon_sym_new] = ACTIONS(5533), + [anon_sym_return_BANG] = ACTIONS(5531), + [anon_sym_yield] = ACTIONS(5533), + [anon_sym_yield_BANG] = ACTIONS(5531), + [anon_sym_lazy] = ACTIONS(5533), + [anon_sym_assert] = ACTIONS(5533), + [anon_sym_upcast] = ACTIONS(5533), + [anon_sym_downcast] = ACTIONS(5533), + [anon_sym_for] = ACTIONS(5533), + [anon_sym_while] = ACTIONS(5533), + [anon_sym_if] = ACTIONS(5533), + [anon_sym_fun] = ACTIONS(5533), + [anon_sym_try] = ACTIONS(5533), + [anon_sym_match] = ACTIONS(5533), + [anon_sym_match_BANG] = ACTIONS(5531), + [anon_sym_function] = ACTIONS(5533), + [anon_sym_use] = ACTIONS(5533), + [anon_sym_use_BANG] = ACTIONS(5531), + [anon_sym_do_BANG] = ACTIONS(5531), + [anon_sym_begin] = ACTIONS(5533), + [anon_sym_exception] = ACTIONS(5533), + [aux_sym_char_token1] = ACTIONS(5531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(5533), + [anon_sym_AT_DQUOTE] = ACTIONS(5531), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5531), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5531), + [sym_bool] = ACTIONS(5533), + [sym_unit] = ACTIONS(5531), + [anon_sym_LPAREN_PIPE] = ACTIONS(5533), + [sym_op_identifier] = ACTIONS(5531), + [anon_sym_PLUS] = ACTIONS(5533), + [anon_sym_DASH] = ACTIONS(5533), + [anon_sym_PLUS_DOT] = ACTIONS(5531), + [anon_sym_DASH_DOT] = ACTIONS(5531), + [anon_sym_PERCENT] = ACTIONS(5531), + [anon_sym_AMP_AMP] = ACTIONS(5531), + [anon_sym_TILDE] = ACTIONS(5531), + [aux_sym_prefix_op_token1] = ACTIONS(5531), + [sym_int] = ACTIONS(5533), + [sym_xint] = ACTIONS(5531), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5531), + [anon_sym_POUNDload] = ACTIONS(5531), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5531), }, [3056] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7751), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3056), [sym_compiler_directive_decl] = STATE(3056), [sym_fsi_directive_decl] = STATE(3056), [sym_preproc_line] = STATE(3056), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, [3057] = { [sym_block_comment] = STATE(3057), [sym_compiler_directive_decl] = STATE(3057), [sym_fsi_directive_decl] = STATE(3057), [sym_preproc_line] = STATE(3057), - [sym_identifier] = ACTIONS(3042), - [anon_sym_GT_RBRACK] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LT_AT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_return_BANG] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3042), - [anon_sym_yield_BANG] = ACTIONS(3040), - [anon_sym_lazy] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_upcast] = ACTIONS(3042), - [anon_sym_downcast] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_DASH_GT] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_match_BANG] = ACTIONS(3040), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3042), - [anon_sym_use_BANG] = ACTIONS(3040), - [anon_sym_do_BANG] = ACTIONS(3040), - [anon_sym_begin] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_LT2] = ACTIONS(3042), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), - [aux_sym_char_token1] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE] = ACTIONS(3042), - [anon_sym_AT_DQUOTE] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), - [sym_bool] = ACTIONS(3042), - [sym_unit] = ACTIONS(3040), - [anon_sym_LPAREN_PIPE] = ACTIONS(3042), - [sym_op_identifier] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_prefix_op_token1] = ACTIONS(3040), - [sym_int] = ACTIONS(3042), - [sym_xint] = ACTIONS(3040), + [ts_builtin_sym_end] = ACTIONS(5535), + [sym_identifier] = ACTIONS(5537), + [anon_sym_namespace] = ACTIONS(5537), + [anon_sym_module] = ACTIONS(5537), + [anon_sym_open] = ACTIONS(5537), + [anon_sym_LBRACK_LT] = ACTIONS(5535), + [anon_sym_return] = ACTIONS(5537), + [anon_sym_type] = ACTIONS(5537), + [anon_sym_do] = ACTIONS(5537), + [anon_sym_let] = ACTIONS(5537), + [anon_sym_let_BANG] = ACTIONS(5535), + [anon_sym_LPAREN] = ACTIONS(5537), + [anon_sym_null] = ACTIONS(5537), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5537), + [anon_sym_LBRACK_PIPE] = ACTIONS(5535), + [anon_sym_LBRACE] = ACTIONS(5537), + [anon_sym_LT_AT] = ACTIONS(5537), + [anon_sym_LT_AT_AT] = ACTIONS(5535), + [anon_sym_LBRACE_PIPE] = ACTIONS(5535), + [anon_sym_new] = ACTIONS(5537), + [anon_sym_return_BANG] = ACTIONS(5535), + [anon_sym_yield] = ACTIONS(5537), + [anon_sym_yield_BANG] = ACTIONS(5535), + [anon_sym_lazy] = ACTIONS(5537), + [anon_sym_assert] = ACTIONS(5537), + [anon_sym_upcast] = ACTIONS(5537), + [anon_sym_downcast] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(5537), + [anon_sym_while] = ACTIONS(5537), + [anon_sym_if] = ACTIONS(5537), + [anon_sym_fun] = ACTIONS(5537), + [anon_sym_try] = ACTIONS(5537), + [anon_sym_match] = ACTIONS(5537), + [anon_sym_match_BANG] = ACTIONS(5535), + [anon_sym_function] = ACTIONS(5537), + [anon_sym_use] = ACTIONS(5537), + [anon_sym_use_BANG] = ACTIONS(5535), + [anon_sym_do_BANG] = ACTIONS(5535), + [anon_sym_begin] = ACTIONS(5537), + [anon_sym_exception] = ACTIONS(5537), + [aux_sym_char_token1] = ACTIONS(5535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5537), + [anon_sym_DQUOTE] = ACTIONS(5537), + [anon_sym_AT_DQUOTE] = ACTIONS(5535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5535), + [sym_bool] = ACTIONS(5537), + [sym_unit] = ACTIONS(5535), + [anon_sym_LPAREN_PIPE] = ACTIONS(5537), + [sym_op_identifier] = ACTIONS(5535), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS_DOT] = ACTIONS(5535), + [anon_sym_DASH_DOT] = ACTIONS(5535), + [anon_sym_PERCENT] = ACTIONS(5535), + [anon_sym_AMP_AMP] = ACTIONS(5535), + [anon_sym_TILDE] = ACTIONS(5535), + [aux_sym_prefix_op_token1] = ACTIONS(5535), + [sym_int] = ACTIONS(5537), + [sym_xint] = ACTIONS(5535), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5535), + [anon_sym_POUNDload] = ACTIONS(5535), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5535), + }, + [3058] = { + [sym_block_comment] = STATE(3058), + [sym_compiler_directive_decl] = STATE(3058), + [sym_fsi_directive_decl] = STATE(3058), + [sym_preproc_line] = STATE(3058), + [sym_identifier] = ACTIONS(3062), + [anon_sym_GT_RBRACK] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3064), + [anon_sym_DASH_DOT] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -357186,383 +357937,308 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3040), - [sym__newline] = ACTIONS(3040), - }, - [3058] = { - [sym_block_comment] = STATE(3058), - [sym_compiler_directive_decl] = STATE(3058), - [sym_fsi_directive_decl] = STATE(3058), - [sym_preproc_line] = STATE(3058), - [aux_sym_compound_type_repeat1] = STATE(3040), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [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(2984), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2984), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2984), - [sym__dedent] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [3059] = { [sym_block_comment] = STATE(3059), [sym_compiler_directive_decl] = STATE(3059), [sym_fsi_directive_decl] = STATE(3059), [sym_preproc_line] = STATE(3059), - [sym_identifier] = ACTIONS(3093), - [anon_sym_GT_RBRACK] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3095), - [anon_sym_DASH_DOT] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3095), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__newline] = ACTIONS(3095), + [aux_sym_long_identifier_repeat1] = STATE(3059), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(5539), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, [3060] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7604), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3060), [sym_compiler_directive_decl] = STATE(3060), [sym_fsi_directive_decl] = STATE(3060), [sym_preproc_line] = STATE(3060), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5529), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3064), + [anon_sym_DASH_DOT] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), }, [3061] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7729), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3061), [sym_compiler_directive_decl] = STATE(3061), [sym_fsi_directive_decl] = STATE(3061), [sym_preproc_line] = STATE(3061), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5531), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3015), + [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_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(2107), + [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_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3015), + [sym__dedent] = ACTIONS(3015), }, [3062] = { [sym_block_comment] = STATE(3062), [sym_compiler_directive_decl] = STATE(3062), [sym_fsi_directive_decl] = STATE(3062), [sym_preproc_line] = STATE(3062), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3060), + [anon_sym_GT_RBRACK] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__newline] = ACTIONS(3058), }, [3063] = { [sym_block_comment] = STATE(3063), @@ -357644,150 +358320,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3064), [sym_fsi_directive_decl] = STATE(3064), [sym_preproc_line] = STATE(3064), - [sym_identifier] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_LT2] = ACTIONS(5533), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3056), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3092), + [anon_sym_GT_RBRACK] = ACTIONS(3094), + [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_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3094), + [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_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3094), + [anon_sym_function] = 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_STAR] = ACTIONS(3094), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [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(3094), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3094), + [anon_sym_DASH_DOT] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_prefix_op_token1] = ACTIONS(3094), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3094), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__newline] = ACTIONS(3094), }, [3065] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7672), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3065), [sym_compiler_directive_decl] = STATE(3065), [sym_fsi_directive_decl] = STATE(3065), [sym_preproc_line] = STATE(3065), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3068), + [anon_sym_GT_RBRACK] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3066), + [anon_sym_DASH_DOT] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3066), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__newline] = ACTIONS(3066), }, [3066] = { [sym_block_comment] = STATE(3066), @@ -357795,25 +358471,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(3066), [sym_preproc_line] = STATE(3066), [sym_identifier] = ACTIONS(3072), - [anon_sym_GT_RBRACK] = ACTIONS(3076), + [anon_sym_GT_RBRACK] = ACTIONS(3070), [anon_sym_return] = ACTIONS(3072), [anon_sym_do] = ACTIONS(3072), [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3070), [anon_sym_LPAREN] = ACTIONS(3072), [anon_sym_null] = ACTIONS(3072), [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3070), [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3070), [anon_sym_lazy] = ACTIONS(3072), [anon_sym_assert] = ACTIONS(3072), [anon_sym_upcast] = ACTIONS(3072), @@ -357822,38 +358498,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3070), [anon_sym_try] = ACTIONS(3072), [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3070), [anon_sym_function] = ACTIONS(3072), [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), [anon_sym_begin] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3070), [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [aux_sym_char_token1] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [aux_sym_char_token1] = ACTIONS(3070), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), + [sym_unit] = ACTIONS(3070), [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3070), [anon_sym_PLUS] = ACTIONS(3072), [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3070), + [anon_sym_DASH_DOT] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3070), [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -357861,598 +358537,600 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__newline] = ACTIONS(3070), }, [3067] = { + [sym_attributes] = STATE(4692), + [sym__attribute_set] = STATE(4886), + [sym_function_or_value_defn] = STATE(6624), + [sym_access_modifier] = STATE(5327), + [sym__type] = STATE(5478), + [sym_simple_type] = STATE(4465), + [sym_generic_type] = STATE(4465), + [sym_paren_type] = STATE(4465), + [sym_function_type] = STATE(4465), + [sym_compound_type] = STATE(4465), + [sym_postfix_type] = STATE(4465), + [sym_list_type] = STATE(4465), + [sym_static_type] = STATE(4465), + [sym_constrained_type] = STATE(4465), + [sym_flexible_type] = STATE(4465), + [sym_anon_record_type] = STATE(4465), + [sym__static_type_identifier] = STATE(4210), + [sym_type_argument] = STATE(4362), + [sym_delegate_signature] = STATE(7638), + [sym__class_type_body_inner] = STATE(6257), + [sym__class_type_body] = STATE(7643), + [sym_enum_type_cases] = STATE(7528), + [sym_enum_type_case] = STATE(7786), + [sym_union_type_cases] = STATE(3786), + [sym_union_type_case] = STATE(4738), + [sym__class_function_or_value_defn] = STATE(6629), + [sym__type_defn_elements] = STATE(6629), + [sym_interface_implementation] = STATE(5965), + [sym__member_defns] = STATE(6149), + [sym_member_defn] = STATE(4439), + [sym_additional_constr_defn] = STATE(5014), + [sym_class_inherits_decl] = STATE(6629), + [sym_long_identifier] = STATE(4459), [sym_block_comment] = STATE(3067), [sym_compiler_directive_decl] = STATE(3067), [sym_fsi_directive_decl] = STATE(3067), [sym_preproc_line] = STATE(3067), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), + [sym_preproc_if_in_class_definition] = STATE(6629), + [aux_sym_attributes_repeat1] = STATE(4657), + [aux_sym__object_expression_inner_repeat1] = STATE(5894), + [sym_identifier] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_do] = ACTIONS(5546), + [anon_sym_let] = ACTIONS(5548), + [anon_sym_let_BANG] = ACTIONS(5550), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym__] = ACTIONS(5554), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_LBRACE_PIPE] = ACTIONS(5560), + [anon_sym_new] = ACTIONS(5562), + [anon_sym_POUND] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5566), + [anon_sym_SQUOTE] = ACTIONS(5566), + [anon_sym_delegate] = ACTIONS(5568), + [anon_sym_default] = ACTIONS(5570), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_member] = ACTIONS(5574), + [anon_sym_interface] = ACTIONS(5576), + [anon_sym_abstract] = ACTIONS(5578), + [anon_sym_override] = ACTIONS(5570), + [anon_sym_val] = ACTIONS(5580), + [anon_sym_inherit] = ACTIONS(5582), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5584), }, [3068] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7905), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3068), [sym_compiler_directive_decl] = STATE(3068), [sym_fsi_directive_decl] = STATE(3068), [sym_preproc_line] = STATE(3068), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5537), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [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(3088), + [sym_xint] = ACTIONS(3090), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3090), }, [3069] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7991), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), + [sym_attributes] = STATE(4692), + [sym__attribute_set] = STATE(4886), + [sym_function_or_value_defn] = STATE(6624), + [sym_access_modifier] = STATE(5439), + [sym__type] = STATE(5610), + [sym_simple_type] = STATE(4465), + [sym_generic_type] = STATE(4465), + [sym_paren_type] = STATE(4465), + [sym_function_type] = STATE(4465), + [sym_compound_type] = STATE(4465), + [sym_postfix_type] = STATE(4465), + [sym_list_type] = STATE(4465), + [sym_static_type] = STATE(4465), + [sym_constrained_type] = STATE(4465), + [sym_flexible_type] = STATE(4465), + [sym_anon_record_type] = STATE(4465), + [sym__static_type_identifier] = STATE(4210), + [sym_type_argument] = STATE(4362), + [sym_delegate_signature] = STATE(7352), + [sym__class_type_body_inner] = STATE(6257), + [sym__class_type_body] = STATE(7412), + [sym_enum_type_cases] = STATE(7346), + [sym_enum_type_case] = STATE(7786), + [sym_union_type_cases] = STATE(3808), + [sym_union_type_case] = STATE(4738), + [sym__class_function_or_value_defn] = STATE(6629), + [sym__type_defn_elements] = STATE(6629), + [sym_interface_implementation] = STATE(5965), + [sym__member_defns] = STATE(6149), + [sym_member_defn] = STATE(4439), + [sym_additional_constr_defn] = STATE(5014), + [sym_class_inherits_decl] = STATE(6629), + [sym_long_identifier] = STATE(4459), [sym_block_comment] = STATE(3069), [sym_compiler_directive_decl] = STATE(3069), [sym_fsi_directive_decl] = STATE(3069), [sym_preproc_line] = STATE(3069), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5539), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_preproc_if_in_class_definition] = STATE(6629), + [aux_sym_attributes_repeat1] = STATE(4657), + [aux_sym__object_expression_inner_repeat1] = STATE(5894), + [sym_identifier] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_do] = ACTIONS(5546), + [anon_sym_let] = ACTIONS(5548), + [anon_sym_let_BANG] = ACTIONS(5550), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym__] = ACTIONS(5554), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5586), + [anon_sym_LBRACE_PIPE] = ACTIONS(5560), + [anon_sym_new] = ACTIONS(5562), + [anon_sym_POUND] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5566), + [anon_sym_SQUOTE] = ACTIONS(5566), + [anon_sym_delegate] = ACTIONS(5568), + [anon_sym_default] = ACTIONS(5570), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_member] = ACTIONS(5574), + [anon_sym_interface] = ACTIONS(5576), + [anon_sym_abstract] = ACTIONS(5578), + [anon_sym_override] = ACTIONS(5570), + [anon_sym_val] = ACTIONS(5580), + [anon_sym_inherit] = ACTIONS(5582), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5584), }, [3070] = { [sym_block_comment] = STATE(3070), [sym_compiler_directive_decl] = STATE(3070), [sym_fsi_directive_decl] = STATE(3070), [sym_preproc_line] = STATE(3070), - [sym_identifier] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [aux_sym_char_token1] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), - [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3050), - [anon_sym_DASH_DOT] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), + [sym__dedent] = ACTIONS(2966), }, [3071] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7272), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3071), [sym_compiler_directive_decl] = STATE(3071), [sym_fsi_directive_decl] = STATE(3071), [sym_preproc_line] = STATE(3071), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5541), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), }, [3072] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8043), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3072), [sym_compiler_directive_decl] = STATE(3072), [sym_fsi_directive_decl] = STATE(3072), [sym_preproc_line] = STATE(3072), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5543), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_identifier] = 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_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = 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_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3094), + [anon_sym_function] = 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_STAR] = ACTIONS(3094), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [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(3094), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3094), + [anon_sym_DASH_DOT] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_prefix_op_token1] = ACTIONS(3094), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3094), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), }, [3073] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7623), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3073), [sym_compiler_directive_decl] = STATE(3073), [sym_fsi_directive_decl] = STATE(3073), [sym_preproc_line] = STATE(3073), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(5545), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_identifier] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3098), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3098), + [anon_sym_DASH_DOT] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3098), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), }, [3074] = { [sym_block_comment] = STATE(3074), [sym_compiler_directive_decl] = STATE(3074), [sym_fsi_directive_decl] = STATE(3074), [sym_preproc_line] = STATE(3074), - [sym_identifier] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), + [aux_sym_long_identifier_repeat1] = STATE(3080), + [sym_identifier] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3076), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_LT_AT_AT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(5588), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_LT2] = ACTIONS(2988), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2986), + [aux_sym_char_token1] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2986), + [anon_sym_LPAREN_PIPE] = ACTIONS(2988), + [sym_op_identifier] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [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(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -358460,221 +359138,223 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3076), - [sym__dedent] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(2986), }, [3075] = { [sym_block_comment] = STATE(3075), [sym_compiler_directive_decl] = STATE(3075), [sym_fsi_directive_decl] = STATE(3075), [sym_preproc_line] = STATE(3075), - [aux_sym_compound_type_repeat1] = STATE(3075), - [sym_identifier] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_LT_AT] = ACTIONS(2916), - [anon_sym_LT_AT_AT] = ACTIONS(2914), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2916), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_upcast] = ACTIONS(2916), - [anon_sym_downcast] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_fun] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_LT2] = ACTIONS(2916), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2914), - [aux_sym_char_token1] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2916), - [sym_unit] = ACTIONS(2914), - [anon_sym_LPAREN_PIPE] = ACTIONS(2916), - [sym_op_identifier] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_PLUS_DOT] = ACTIONS(2914), - [anon_sym_DASH_DOT] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [sym_int] = ACTIONS(2916), - [sym_xint] = ACTIONS(2914), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3096), + [anon_sym_GT_RBRACK] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3098), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3098), + [anon_sym_DASH_DOT] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3098), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__newline] = ACTIONS(3098), }, [3076] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(8126), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3076), [sym_compiler_directive_decl] = STATE(3076), [sym_fsi_directive_decl] = STATE(3076), [sym_preproc_line] = STATE(3076), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3076), + [anon_sym_GT_RBRACK] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3074), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3074), + [anon_sym_DASH_DOT] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3074), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__newline] = ACTIONS(3074), }, [3077] = { [sym_block_comment] = STATE(3077), [sym_compiler_directive_decl] = STATE(3077), [sym_fsi_directive_decl] = STATE(3077), [sym_preproc_line] = STATE(3077), - [sym_identifier] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3052), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(5590), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -358682,73 +359362,74 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3052), - [sym__dedent] = ACTIONS(3052), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), }, [3078] = { [sym_block_comment] = STATE(3078), [sym_compiler_directive_decl] = STATE(3078), [sym_fsi_directive_decl] = STATE(3078), [sym_preproc_line] = STATE(3078), - [sym_identifier] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3084), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3084), - [anon_sym_DASH_DOT] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3084), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3048), + [anon_sym_GT_RBRACK] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3054), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -358756,74 +359437,150 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3084), - [sym__dedent] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__newline] = ACTIONS(3054), }, [3079] = { [sym_block_comment] = STATE(3079), [sym_compiler_directive_decl] = STATE(3079), [sym_fsi_directive_decl] = STATE(3079), [sym_preproc_line] = STATE(3079), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_COLON_GT] = ACTIONS(5550), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3078), + [anon_sym_GT_RBRACK] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3080), + [anon_sym_DASH_DOT] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3080), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__newline] = ACTIONS(3080), + }, + [3080] = { + [sym_block_comment] = STATE(3080), + [sym_compiler_directive_decl] = STATE(3080), + [sym_fsi_directive_decl] = STATE(3080), + [sym_preproc_line] = STATE(3080), + [aux_sym_long_identifier_repeat1] = STATE(3059), + [sym_identifier] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_let_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACK_PIPE] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_LT_AT] = ACTIONS(2956), + [anon_sym_LT_AT_AT] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(5588), + [anon_sym_LBRACE_PIPE] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_return_BANG] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_yield_BANG] = ACTIONS(2954), + [anon_sym_lazy] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_upcast] = ACTIONS(2956), + [anon_sym_downcast] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_fun] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_match_BANG] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_use_BANG] = ACTIONS(2954), + [anon_sym_do_BANG] = ACTIONS(2954), + [anon_sym_begin] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LT2] = ACTIONS(2956), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2954), + [aux_sym_char_token1] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_AT_DQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), + [sym_bool] = ACTIONS(2956), + [sym_unit] = ACTIONS(2954), + [anon_sym_LPAREN_PIPE] = ACTIONS(2956), + [sym_op_identifier] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS_DOT] = ACTIONS(2954), + [anon_sym_DASH_DOT] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_prefix_op_token1] = ACTIONS(2954), + [sym_int] = ACTIONS(2956), + [sym_xint] = ACTIONS(2954), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -358831,220 +359588,73 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3062), - }, - [3080] = { - [sym_block_comment] = STATE(3080), - [sym_compiler_directive_decl] = STATE(3080), - [sym_fsi_directive_decl] = STATE(3080), - [sym_preproc_line] = STATE(3080), - [sym_identifier] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3095), - [anon_sym_DASH_DOT] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3095), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - [sym__dedent] = ACTIONS(3095), + [anon_sym_POUNDif] = ACTIONS(2954), }, [3081] = { [sym_block_comment] = STATE(3081), [sym_compiler_directive_decl] = STATE(3081), [sym_fsi_directive_decl] = STATE(3081), [sym_preproc_line] = STATE(3081), - [sym_identifier] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_LT_AT_AT] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LT2] = ACTIONS(3026), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3028), - [aux_sym_char_token1] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3026), - [sym_op_identifier] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3028), - [anon_sym_DASH_DOT] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3028), - }, - [3082] = { - [sym_block_comment] = STATE(3082), - [sym_compiler_directive_decl] = STATE(3082), - [sym_fsi_directive_decl] = STATE(3082), - [sym_preproc_line] = STATE(3082), - [sym_identifier] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3046), - [anon_sym_DASH_DOT] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3084), + [anon_sym_GT_RBRACK] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LT2] = ACTIONS(5592), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3082), + [anon_sym_DASH_DOT] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3082), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -359052,74 +359662,150 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__newline] = ACTIONS(3082), + }, + [3082] = { + [sym_attributes] = STATE(4692), + [sym__attribute_set] = STATE(4886), + [sym_function_or_value_defn] = STATE(6624), + [sym_access_modifier] = STATE(5253), + [sym__type] = STATE(5631), + [sym_simple_type] = STATE(4465), + [sym_generic_type] = STATE(4465), + [sym_paren_type] = STATE(4465), + [sym_function_type] = STATE(4465), + [sym_compound_type] = STATE(4465), + [sym_postfix_type] = STATE(4465), + [sym_list_type] = STATE(4465), + [sym_static_type] = STATE(4465), + [sym_constrained_type] = STATE(4465), + [sym_flexible_type] = STATE(4465), + [sym_anon_record_type] = STATE(4465), + [sym__static_type_identifier] = STATE(4210), + [sym_type_argument] = STATE(4362), + [sym_delegate_signature] = STATE(7906), + [sym__class_type_body_inner] = STATE(6257), + [sym__class_type_body] = STATE(7897), + [sym_enum_type_cases] = STATE(7894), + [sym_enum_type_case] = STATE(7786), + [sym_union_type_cases] = STATE(3787), + [sym_union_type_case] = STATE(4738), + [sym__class_function_or_value_defn] = STATE(6629), + [sym__type_defn_elements] = STATE(6629), + [sym_interface_implementation] = STATE(5965), + [sym__member_defns] = STATE(6149), + [sym_member_defn] = STATE(4439), + [sym_additional_constr_defn] = STATE(5014), + [sym_class_inherits_decl] = STATE(6629), + [sym_long_identifier] = STATE(4459), + [sym_block_comment] = STATE(3082), + [sym_compiler_directive_decl] = STATE(3082), + [sym_fsi_directive_decl] = STATE(3082), + [sym_preproc_line] = STATE(3082), + [sym_preproc_if_in_class_definition] = STATE(6629), + [aux_sym_attributes_repeat1] = STATE(4657), + [aux_sym__object_expression_inner_repeat1] = STATE(5894), + [sym_identifier] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_do] = ACTIONS(5546), + [anon_sym_let] = ACTIONS(5548), + [anon_sym_let_BANG] = ACTIONS(5550), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym__] = ACTIONS(5554), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5594), + [anon_sym_LBRACE_PIPE] = ACTIONS(5560), + [anon_sym_new] = ACTIONS(5562), + [anon_sym_POUND] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5566), + [anon_sym_SQUOTE] = ACTIONS(5566), + [anon_sym_delegate] = ACTIONS(5568), + [anon_sym_default] = ACTIONS(5570), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_member] = ACTIONS(5574), + [anon_sym_interface] = ACTIONS(5576), + [anon_sym_abstract] = ACTIONS(5578), + [anon_sym_override] = ACTIONS(5570), + [anon_sym_val] = ACTIONS(5580), + [anon_sym_inherit] = ACTIONS(5582), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5584), }, [3083] = { [sym_block_comment] = STATE(3083), [sym_compiler_directive_decl] = STATE(3083), [sym_fsi_directive_decl] = STATE(3083), [sym_preproc_line] = STATE(3083), - [sym_identifier] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2988), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2988), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [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(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3074), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3074), + [anon_sym_DASH_DOT] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3074), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -359127,221 +359813,149 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3074), }, [3084] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7332), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3084), [sym_compiler_directive_decl] = STATE(3084), [sym_fsi_directive_decl] = STATE(3084), [sym_preproc_line] = STATE(3084), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_let_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACK_PIPE] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LT_AT] = ACTIONS(3046), + [anon_sym_LT_AT_AT] = ACTIONS(3044), + [anon_sym_LBRACE_PIPE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_return_BANG] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_yield_BANG] = ACTIONS(3044), + [anon_sym_lazy] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_upcast] = ACTIONS(3046), + [anon_sym_downcast] = ACTIONS(3046), + [anon_sym_COLON_GT] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_fun] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_match_BANG] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_use_BANG] = ACTIONS(3044), + [anon_sym_do_BANG] = ACTIONS(3044), + [anon_sym_begin] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_LT2] = ACTIONS(3046), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [aux_sym_char_token1] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_AT_DQUOTE] = ACTIONS(3044), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3044), + [sym_bool] = ACTIONS(3046), + [sym_unit] = ACTIONS(3044), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_op_identifier] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_DOT] = ACTIONS(3044), + [anon_sym_DASH_DOT] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [aux_sym_prefix_op_token1] = ACTIONS(3044), + [sym_int] = ACTIONS(3046), + [sym_xint] = ACTIONS(3044), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3044), }, [3085] = { [sym_block_comment] = STATE(3085), [sym_compiler_directive_decl] = STATE(3085), [sym_fsi_directive_decl] = STATE(3085), [sym_preproc_line] = STATE(3085), - [sym_identifier] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3103), - [anon_sym_DASH_DOT] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3103), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), - [sym__dedent] = ACTIONS(3103), - }, - [3086] = { - [sym_block_comment] = STATE(3086), - [sym_compiler_directive_decl] = STATE(3086), - [sym_fsi_directive_decl] = STATE(3086), - [sym_preproc_line] = STATE(3086), - [sym_identifier] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3132), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3132), - [anon_sym_DASH_DOT] = ACTIONS(3132), - [anon_sym_PERCENT] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3132), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [aux_sym_float_token1] = ACTIONS(5552), + [sym_identifier] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3070), + [anon_sym_DASH_DOT] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3070), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -359349,94 +359963,321 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3132), - }, - [3087] = { - [sym_block_comment] = STATE(3087), - [sym_compiler_directive_decl] = STATE(3087), - [sym_fsi_directive_decl] = STATE(3087), - [sym_preproc_line] = STATE(3087), - [sym_identifier] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3097), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), - [sym__dedent] = ACTIONS(3097), + [anon_sym_POUNDif] = ACTIONS(3070), }, - [3088] = { - [sym_block_comment] = STATE(3088), - [sym_compiler_directive_decl] = STATE(3088), - [sym_fsi_directive_decl] = STATE(3088), - [sym_preproc_line] = STATE(3088), - [sym_identifier] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_let_BANG] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), + [3086] = { + [sym_block_comment] = STATE(3086), + [sym_compiler_directive_decl] = STATE(3086), + [sym_fsi_directive_decl] = STATE(3086), + [sym_preproc_line] = STATE(3086), + [sym_identifier] = ACTIONS(3088), + [anon_sym_GT_RBRACK] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [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(3088), + [sym_xint] = ACTIONS(3090), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + }, + [3087] = { + [sym_block_comment] = STATE(3087), + [sym_compiler_directive_decl] = STATE(3087), + [sym_fsi_directive_decl] = STATE(3087), + [sym_preproc_line] = STATE(3087), + [aux_sym_compound_type_repeat1] = STATE(3087), + [sym_identifier] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(5596), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), + }, + [3088] = { + [sym__type] = STATE(5363), + [sym_simple_type] = STATE(5400), + [sym_generic_type] = STATE(5400), + [sym_paren_type] = STATE(5400), + [sym_function_type] = STATE(5400), + [sym_compound_type] = STATE(5400), + [sym_postfix_type] = STATE(5400), + [sym_list_type] = STATE(5400), + [sym_static_type] = STATE(5400), + [sym_constrained_type] = STATE(5400), + [sym_flexible_type] = STATE(5400), + [sym_anon_record_type] = STATE(5400), + [sym__static_type_identifier] = STATE(4925), + [sym__static_parameter] = STATE(6551), + [sym_named_static_parameter] = STATE(6553), + [sym_type_attribute] = STATE(6680), + [sym_type_argument] = STATE(5222), + [sym_static_parameter_value] = STATE(6553), + [sym_char] = STATE(3187), + [sym_format_string] = STATE(3178), + [sym__string_literal] = STATE(3178), + [sym_string] = STATE(3187), + [sym_verbatim_string] = STATE(3187), + [sym_bytearray] = STATE(3187), + [sym_verbatim_bytearray] = STATE(3187), + [sym_format_triple_quoted_string] = STATE(3176), + [sym_triple_quoted_string] = STATE(3187), + [sym_const] = STATE(495), + [sym_long_identifier] = STATE(5389), + [sym_sbyte] = STATE(3187), + [sym_byte] = STATE(3187), + [sym_int16] = STATE(3187), + [sym_uint16] = STATE(3187), + [sym_int32] = STATE(3187), + [sym_uint32] = STATE(3187), + [sym_nativeint] = STATE(3187), + [sym_unativeint] = STATE(3187), + [sym_int64] = STATE(3187), + [sym_uint64] = STATE(3187), + [sym_ieee32] = STATE(3187), + [sym_ieee64] = STATE(3187), + [sym_bignum] = STATE(3187), + [sym_decimal] = STATE(3187), + [sym_float] = STATE(3115), + [sym_block_comment] = STATE(3088), + [sym_compiler_directive_decl] = STATE(3088), + [sym_fsi_directive_decl] = STATE(3088), + [sym_preproc_line] = STATE(3088), + [sym_identifier] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym__] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE_PIPE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_SQUOTE] = ACTIONS(5262), + [aux_sym_char_token1] = ACTIONS(5264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_AT_DQUOTE] = ACTIONS(5270), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5274), + [sym_bool] = ACTIONS(5276), + [sym_unit] = ACTIONS(5278), + [sym_int] = ACTIONS(5280), + [sym_xint] = ACTIONS(5282), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + }, + [3089] = { + [sym_block_comment] = STATE(3089), + [sym_compiler_directive_decl] = STATE(3089), + [sym_fsi_directive_decl] = STATE(3089), + [sym_preproc_line] = STATE(3089), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2981), + }, + [3090] = { + [sym_block_comment] = STATE(3090), + [sym_compiler_directive_decl] = STATE(3090), + [sym_fsi_directive_decl] = STATE(3090), + [sym_preproc_line] = STATE(3090), + [sym_identifier] = ACTIONS(3042), + [anon_sym_GT_RBRACK] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_null] = ACTIONS(3042), [anon_sym_AMP] = ACTIONS(3042), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3042), @@ -359497,106 +360338,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3040), - [sym__dedent] = ACTIONS(3040), - }, - [3089] = { - [sym_block_comment] = STATE(3089), - [sym_compiler_directive_decl] = STATE(3089), - [sym_fsi_directive_decl] = STATE(3089), - [sym_preproc_line] = STATE(3089), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), + [sym__newline] = ACTIONS(3040), }, - [3090] = { - [sym_block_comment] = STATE(3090), - [sym_compiler_directive_decl] = STATE(3090), - [sym_fsi_directive_decl] = STATE(3090), - [sym_preproc_line] = STATE(3090), + [3091] = { + [sym_block_comment] = STATE(3091), + [sym_compiler_directive_decl] = STATE(3091), + [sym_fsi_directive_decl] = STATE(3091), + [sym_preproc_line] = STATE(3091), [sym_identifier] = ACTIONS(3048), [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3048), [anon_sym_LPAREN] = ACTIONS(3048), [anon_sym_null] = ACTIONS(3048), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_with] = ACTIONS(3048), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), @@ -359605,113 +360374,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3050), + [anon_sym_DASH_GT] = ACTIONS(3054), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3054), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3050), + [sym_op_identifier] = ACTIONS(3054), [anon_sym_PLUS] = ACTIONS(3048), [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3050), - [anon_sym_DASH_DOT] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3054), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), - }, - [3091] = { - [sym_block_comment] = STATE(3091), - [sym_compiler_directive_decl] = STATE(3091), - [sym_fsi_directive_decl] = STATE(3091), - [sym_preproc_line] = STATE(3091), - [aux_sym_compound_type_repeat1] = STATE(3075), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2984), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [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(2984), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2984), - [anon_sym_do_BANG] = ACTIONS(2984), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [aux_sym_char_token1] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2984), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_prefix_op_token1] = ACTIONS(2984), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2984), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -359719,367 +360413,447 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2984), + [anon_sym_POUNDif] = ACTIONS(3054), }, [3092] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7566), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3092), [sym_compiler_directive_decl] = STATE(3092), [sym_fsi_directive_decl] = STATE(3092), [sym_preproc_line] = STATE(3092), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), + [sym_identifier] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3080), + [anon_sym_DASH_DOT] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3080), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), }, [3093] = { [sym_block_comment] = STATE(3093), [sym_compiler_directive_decl] = STATE(3093), [sym_fsi_directive_decl] = STATE(3093), [sym_preproc_line] = STATE(3093), - [sym_identifier] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_LT2] = ACTIONS(5554), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3056), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), - [sym__dedent] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3066), + [anon_sym_DASH_DOT] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3066), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), }, [3094] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6171), - [sym_type_attributes] = STATE(7638), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), [sym_block_comment] = STATE(3094), [sym_compiler_directive_decl] = STATE(3094), [sym_fsi_directive_decl] = STATE(3094), [sym_preproc_line] = STATE(3094), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LT2] = ACTIONS(5599), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3082), + [anon_sym_DASH_DOT] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3082), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), }, [3095] = { + [sym_attributes] = STATE(4692), + [sym__attribute_set] = STATE(4886), + [sym_function_or_value_defn] = STATE(6624), + [sym_access_modifier] = STATE(5381), + [sym__type] = STATE(5517), + [sym_simple_type] = STATE(4465), + [sym_generic_type] = STATE(4465), + [sym_paren_type] = STATE(4465), + [sym_function_type] = STATE(4465), + [sym_compound_type] = STATE(4465), + [sym_postfix_type] = STATE(4465), + [sym_list_type] = STATE(4465), + [sym_static_type] = STATE(4465), + [sym_constrained_type] = STATE(4465), + [sym_flexible_type] = STATE(4465), + [sym_anon_record_type] = STATE(4465), + [sym__static_type_identifier] = STATE(4210), + [sym_type_argument] = STATE(4362), + [sym_delegate_signature] = STATE(7991), + [sym__class_type_body_inner] = STATE(6257), + [sym__class_type_body] = STATE(7995), + [sym_enum_type_cases] = STATE(8027), + [sym_enum_type_case] = STATE(7786), + [sym_union_type_cases] = STATE(3805), + [sym_union_type_case] = STATE(4738), + [sym__class_function_or_value_defn] = STATE(6629), + [sym__type_defn_elements] = STATE(6629), + [sym_interface_implementation] = STATE(5965), + [sym__member_defns] = STATE(6149), + [sym_member_defn] = STATE(4439), + [sym_additional_constr_defn] = STATE(5014), + [sym_class_inherits_decl] = STATE(6629), + [sym_long_identifier] = STATE(4459), [sym_block_comment] = STATE(3095), [sym_compiler_directive_decl] = STATE(3095), [sym_fsi_directive_decl] = STATE(3095), [sym_preproc_line] = STATE(3095), - [aux_sym__function_or_value_defns_repeat1] = STATE(3095), - [sym_identifier] = ACTIONS(5015), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_do] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5556), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_let_BANG] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_PIPE] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LT_AT] = ACTIONS(5015), - [anon_sym_LT_AT_AT] = ACTIONS(5013), - [anon_sym_LBRACE_PIPE] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_return_BANG] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_yield_BANG] = ACTIONS(5013), - [anon_sym_lazy] = ACTIONS(5015), - [anon_sym_assert] = ACTIONS(5015), - [anon_sym_upcast] = ACTIONS(5015), - [anon_sym_downcast] = ACTIONS(5015), - [anon_sym_for] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_match] = ACTIONS(5015), - [anon_sym_match_BANG] = ACTIONS(5013), - [anon_sym_function] = ACTIONS(5015), - [anon_sym_use] = ACTIONS(5015), - [anon_sym_use_BANG] = ACTIONS(5013), - [anon_sym_do_BANG] = ACTIONS(5013), - [anon_sym_begin] = ACTIONS(5015), - [aux_sym_char_token1] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_AT_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [sym_bool] = ACTIONS(5015), - [sym_unit] = ACTIONS(5013), - [anon_sym_LPAREN_PIPE] = ACTIONS(5015), - [sym_op_identifier] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_PLUS_DOT] = ACTIONS(5013), - [anon_sym_DASH_DOT] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5013), - [aux_sym_prefix_op_token1] = ACTIONS(5013), - [sym_int] = ACTIONS(5015), - [sym_xint] = ACTIONS(5013), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5013), - [anon_sym_POUNDendif] = ACTIONS(5013), - [anon_sym_POUNDelse] = ACTIONS(5013), + [sym_preproc_if_in_class_definition] = STATE(6629), + [aux_sym_attributes_repeat1] = STATE(4657), + [aux_sym__object_expression_inner_repeat1] = STATE(5894), + [sym_identifier] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_do] = ACTIONS(5546), + [anon_sym_let] = ACTIONS(5548), + [anon_sym_let_BANG] = ACTIONS(5550), + [aux_sym_access_modifier_token1] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym__] = ACTIONS(5554), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5601), + [anon_sym_LBRACE_PIPE] = ACTIONS(5560), + [anon_sym_new] = ACTIONS(5562), + [anon_sym_POUND] = ACTIONS(5564), + [anon_sym_CARET] = ACTIONS(5566), + [anon_sym_SQUOTE] = ACTIONS(5566), + [anon_sym_delegate] = ACTIONS(5568), + [anon_sym_default] = ACTIONS(5570), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_member] = ACTIONS(5574), + [anon_sym_interface] = ACTIONS(5576), + [anon_sym_abstract] = ACTIONS(5578), + [anon_sym_override] = ACTIONS(5570), + [anon_sym_val] = ACTIONS(5580), + [anon_sym_inherit] = ACTIONS(5582), + [anon_sym_LPAREN_STAR] = ACTIONS(5284), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5584), }, [3096] = { [sym_block_comment] = STATE(3096), [sym_compiler_directive_decl] = STATE(3096), [sym_fsi_directive_decl] = STATE(3096), [sym_preproc_line] = STATE(3096), - [sym_identifier] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LT_AT] = ACTIONS(2990), + [anon_sym_LT_AT_AT] = ACTIONS(2992), + [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_COLON_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(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(2990), + [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(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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2992), + }, + [3097] = { + [sym_block_comment] = STATE(3097), + [sym_compiler_directive_decl] = STATE(3097), + [sym_fsi_directive_decl] = STATE(3097), + [sym_preproc_line] = STATE(3097), + [sym_identifier] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2526), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2526), - [anon_sym_DASH_DOT] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2526), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_f] = ACTIONS(5160), - [aux_sym_decimal_token1] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3070), + [anon_sym_DASH_DOT] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3070), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360087,437 +360861,370 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(2526), - }, - [3097] = { - [sym_block_comment] = STATE(3097), - [sym_compiler_directive_decl] = STATE(3097), - [sym_fsi_directive_decl] = STATE(3097), - [sym_preproc_line] = STATE(3097), - [sym_identifier] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_BANG] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_COMMA] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LBRACK_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_LT_AT] = ACTIONS(3146), - [anon_sym_LT_AT_AT] = ACTIONS(3148), - [anon_sym_LBRACE_PIPE] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_return_BANG] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_yield_BANG] = ACTIONS(3148), - [anon_sym_lazy] = ACTIONS(3146), - [anon_sym_assert] = ACTIONS(3146), - [anon_sym_upcast] = ACTIONS(3146), - [anon_sym_downcast] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_match_BANG] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_GT] = ACTIONS(3148), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_use_BANG] = ACTIONS(3148), - [anon_sym_do_BANG] = ACTIONS(3148), - [anon_sym_begin] = ACTIONS(3146), - [aux_sym_char_token1] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_AT_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3148), - [sym_bool] = ACTIONS(3146), - [sym_unit] = ACTIONS(3148), - [anon_sym_LPAREN_PIPE] = ACTIONS(3146), - [sym_op_identifier] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_DOT] = ACTIONS(3148), - [anon_sym_DASH_DOT] = ACTIONS(3148), - [anon_sym_PERCENT] = ACTIONS(3148), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [aux_sym_prefix_op_token1] = ACTIONS(3148), - [sym_int] = ACTIONS(5559), - [sym_xint] = ACTIONS(3148), - [anon_sym_f] = ACTIONS(3146), - [aux_sym_decimal_token1] = ACTIONS(3146), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3148), + [anon_sym_POUNDif] = ACTIONS(3070), + [sym__dedent] = ACTIONS(3070), }, [3098] = { - [sym_attributes] = STATE(4642), - [sym__attribute_set] = STATE(4782), - [sym_function_or_value_defn] = STATE(6621), - [sym_access_modifier] = STATE(5269), - [sym__type] = STATE(5486), - [sym_simple_type] = STATE(4410), - [sym_generic_type] = STATE(4410), - [sym_paren_type] = STATE(4410), - [sym_function_type] = STATE(4410), - [sym_compound_type] = STATE(4410), - [sym_postfix_type] = STATE(4410), - [sym_list_type] = STATE(4410), - [sym_static_type] = STATE(4410), - [sym_constrained_type] = STATE(4410), - [sym_flexible_type] = STATE(4410), - [sym__static_type_identifier] = STATE(3862), - [sym_type_argument] = STATE(4357), - [sym_delegate_signature] = STATE(7670), - [sym__class_type_body_inner] = STATE(6297), - [sym__class_type_body] = STATE(7668), - [sym_enum_type_cases] = STATE(7667), - [sym_enum_type_case] = STATE(7666), - [sym_union_type_cases] = STATE(3762), - [sym_union_type_case] = STATE(4754), - [sym__class_function_or_value_defn] = STATE(6624), - [sym__type_defn_elements] = STATE(6624), - [sym_interface_implementation] = STATE(5866), - [sym__member_defns] = STATE(6005), - [sym_member_defn] = STATE(4437), - [sym_additional_constr_defn] = STATE(5108), - [sym_class_inherits_decl] = STATE(6624), - [sym_long_identifier] = STATE(4406), [sym_block_comment] = STATE(3098), [sym_compiler_directive_decl] = STATE(3098), [sym_fsi_directive_decl] = STATE(3098), [sym_preproc_line] = STATE(3098), - [sym_preproc_if_in_class_definition] = STATE(6624), - [aux_sym_attributes_repeat1] = STATE(4628), - [aux_sym__object_expression_inner_repeat1] = STATE(5781), - [sym_identifier] = ACTIONS(5561), - [anon_sym_LBRACK_LT] = ACTIONS(5563), - [anon_sym_do] = ACTIONS(5565), - [anon_sym_let] = ACTIONS(5567), - [anon_sym_let_BANG] = ACTIONS(5569), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(5571), - [anon_sym__] = ACTIONS(5573), - [anon_sym_PIPE] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5577), - [anon_sym_new] = ACTIONS(5579), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_CARET] = ACTIONS(5583), - [anon_sym_SQUOTE] = ACTIONS(5583), - [anon_sym_delegate] = ACTIONS(5585), - [anon_sym_default] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5589), - [anon_sym_member] = ACTIONS(5591), - [anon_sym_interface] = ACTIONS(5593), - [anon_sym_abstract] = ACTIONS(5595), - [anon_sym_override] = ACTIONS(5587), - [anon_sym_val] = ACTIONS(5597), - [anon_sym_inherit] = ACTIONS(5599), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5601), + [sym_identifier] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3134), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3134), + [anon_sym_DASH_DOT] = ACTIONS(3134), + [anon_sym_PERCENT] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3134), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(5603), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), }, [3099] = { - [sym_attributes] = STATE(4642), - [sym__attribute_set] = STATE(4782), - [sym_function_or_value_defn] = STATE(6621), - [sym_access_modifier] = STATE(5287), - [sym__type] = STATE(5541), - [sym_simple_type] = STATE(4410), - [sym_generic_type] = STATE(4410), - [sym_paren_type] = STATE(4410), - [sym_function_type] = STATE(4410), - [sym_compound_type] = STATE(4410), - [sym_postfix_type] = STATE(4410), - [sym_list_type] = STATE(4410), - [sym_static_type] = STATE(4410), - [sym_constrained_type] = STATE(4410), - [sym_flexible_type] = STATE(4410), - [sym__static_type_identifier] = STATE(3862), - [sym_type_argument] = STATE(4357), - [sym_delegate_signature] = STATE(7394), - [sym__class_type_body_inner] = STATE(6297), - [sym__class_type_body] = STATE(7011), - [sym_enum_type_cases] = STATE(7239), - [sym_enum_type_case] = STATE(7666), - [sym_union_type_cases] = STATE(3733), - [sym_union_type_case] = STATE(4754), - [sym__class_function_or_value_defn] = STATE(6624), - [sym__type_defn_elements] = STATE(6624), - [sym_interface_implementation] = STATE(5866), - [sym__member_defns] = STATE(6005), - [sym_member_defn] = STATE(4437), - [sym_additional_constr_defn] = STATE(5108), - [sym_class_inherits_decl] = STATE(6624), - [sym_long_identifier] = STATE(4406), [sym_block_comment] = STATE(3099), [sym_compiler_directive_decl] = STATE(3099), [sym_fsi_directive_decl] = STATE(3099), [sym_preproc_line] = STATE(3099), - [sym_preproc_if_in_class_definition] = STATE(6624), - [aux_sym_attributes_repeat1] = STATE(4628), - [aux_sym__object_expression_inner_repeat1] = STATE(5781), - [sym_identifier] = ACTIONS(5561), - [anon_sym_LBRACK_LT] = ACTIONS(5563), - [anon_sym_do] = ACTIONS(5565), - [anon_sym_let] = ACTIONS(5567), - [anon_sym_let_BANG] = ACTIONS(5569), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(5571), - [anon_sym__] = ACTIONS(5573), - [anon_sym_PIPE] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5603), - [anon_sym_new] = ACTIONS(5579), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_CARET] = ACTIONS(5583), - [anon_sym_SQUOTE] = ACTIONS(5583), - [anon_sym_delegate] = ACTIONS(5585), - [anon_sym_default] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5589), - [anon_sym_member] = ACTIONS(5591), - [anon_sym_interface] = ACTIONS(5593), - [anon_sym_abstract] = ACTIONS(5595), - [anon_sym_override] = ACTIONS(5587), - [anon_sym_val] = ACTIONS(5597), - [anon_sym_inherit] = ACTIONS(5599), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5601), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), + [sym__dedent] = ACTIONS(3058), }, [3100] = { [sym_block_comment] = STATE(3100), [sym_compiler_directive_decl] = STATE(3100), [sym_fsi_directive_decl] = STATE(3100), [sym_preproc_line] = STATE(3100), - [aux_sym__function_or_value_defns_repeat1] = STATE(3114), - [sym_identifier] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_do] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(5605), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_let_BANG] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_PIPE] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_LT_AT] = ACTIONS(4999), - [anon_sym_LT_AT_AT] = ACTIONS(4997), - [anon_sym_LBRACE_PIPE] = ACTIONS(4997), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_return_BANG] = ACTIONS(4997), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_yield_BANG] = ACTIONS(4997), - [anon_sym_lazy] = ACTIONS(4999), - [anon_sym_assert] = ACTIONS(4999), - [anon_sym_upcast] = ACTIONS(4999), - [anon_sym_downcast] = ACTIONS(4999), - [anon_sym_for] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_match] = ACTIONS(4999), - [anon_sym_match_BANG] = ACTIONS(4997), - [anon_sym_function] = ACTIONS(4999), - [anon_sym_use] = ACTIONS(4999), - [anon_sym_use_BANG] = ACTIONS(4997), - [anon_sym_do_BANG] = ACTIONS(4997), - [anon_sym_begin] = ACTIONS(4999), - [aux_sym_char_token1] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_AT_DQUOTE] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [sym_bool] = ACTIONS(4999), - [sym_unit] = ACTIONS(4997), - [anon_sym_LPAREN_PIPE] = ACTIONS(4999), - [sym_op_identifier] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_PLUS_DOT] = ACTIONS(4997), - [anon_sym_DASH_DOT] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_TILDE] = ACTIONS(4997), - [aux_sym_prefix_op_token1] = ACTIONS(4997), - [sym_int] = ACTIONS(4999), - [sym_xint] = ACTIONS(4997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4997), - [sym__newline] = ACTIONS(4997), - [sym__dedent] = ACTIONS(4997), + [sym_identifier] = 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_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3094), + [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_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3094), + [anon_sym_function] = 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_STAR] = ACTIONS(3094), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [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(3094), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3094), + [anon_sym_DASH_DOT] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_prefix_op_token1] = ACTIONS(3094), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3094), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), + [sym__dedent] = ACTIONS(3094), }, [3101] = { [sym_block_comment] = STATE(3101), [sym_compiler_directive_decl] = STATE(3101), [sym_fsi_directive_decl] = STATE(3101), [sym_preproc_line] = STATE(3101), - [aux_sym__function_or_value_defns_repeat1] = STATE(3100), - [sym_identifier] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_do] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5605), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_let_BANG] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5034), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_LBRACK_PIPE] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_LT_AT] = ACTIONS(5034), - [anon_sym_LT_AT_AT] = ACTIONS(5032), - [anon_sym_LBRACE_PIPE] = ACTIONS(5032), - [anon_sym_new] = ACTIONS(5034), - [anon_sym_return_BANG] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_yield_BANG] = ACTIONS(5032), - [anon_sym_lazy] = ACTIONS(5034), - [anon_sym_assert] = ACTIONS(5034), - [anon_sym_upcast] = ACTIONS(5034), - [anon_sym_downcast] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_if] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_match] = ACTIONS(5034), - [anon_sym_match_BANG] = ACTIONS(5032), - [anon_sym_function] = ACTIONS(5034), - [anon_sym_use] = ACTIONS(5034), - [anon_sym_use_BANG] = ACTIONS(5032), - [anon_sym_do_BANG] = ACTIONS(5032), - [anon_sym_begin] = ACTIONS(5034), - [aux_sym_char_token1] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [anon_sym_AT_DQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [sym_bool] = ACTIONS(5034), - [sym_unit] = ACTIONS(5032), - [anon_sym_LPAREN_PIPE] = ACTIONS(5034), - [sym_op_identifier] = ACTIONS(5032), - [anon_sym_PLUS] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_PLUS_DOT] = ACTIONS(5032), - [anon_sym_DASH_DOT] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [aux_sym_prefix_op_token1] = ACTIONS(5032), - [sym_int] = ACTIONS(5034), - [sym_xint] = ACTIONS(5032), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5032), - [sym__newline] = ACTIONS(5032), - [sym__dedent] = ACTIONS(5032), + [sym_identifier] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_let_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACK_PIPE] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_LT_AT] = ACTIONS(2979), + [anon_sym_LT_AT_AT] = ACTIONS(2981), + [anon_sym_LBRACE_PIPE] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_return_BANG] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_yield_BANG] = ACTIONS(2981), + [anon_sym_lazy] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_upcast] = ACTIONS(2979), + [anon_sym_downcast] = ACTIONS(2979), + [anon_sym_COLON_GT] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_fun] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_match_BANG] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_use_BANG] = ACTIONS(2981), + [anon_sym_do_BANG] = ACTIONS(2981), + [anon_sym_begin] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_LT2] = ACTIONS(2979), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2981), + [aux_sym_char_token1] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_AT_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2981), + [sym_bool] = ACTIONS(2979), + [sym_unit] = ACTIONS(2981), + [anon_sym_LPAREN_PIPE] = ACTIONS(2979), + [sym_op_identifier] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS_DOT] = ACTIONS(2981), + [anon_sym_DASH_DOT] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [aux_sym_prefix_op_token1] = ACTIONS(2981), + [sym_int] = ACTIONS(2979), + [sym_xint] = ACTIONS(2981), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2981), }, [3102] = { [sym_block_comment] = STATE(3102), [sym_compiler_directive_decl] = STATE(3102), [sym_fsi_directive_decl] = STATE(3102), [sym_preproc_line] = STATE(3102), - [sym_identifier] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_LT_AT_AT] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LT2] = ACTIONS(3064), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3062), - [aux_sym_char_token1] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3062), - [anon_sym_LPAREN_PIPE] = ACTIONS(3064), - [sym_op_identifier] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3062), - [anon_sym_DASH_DOT] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3062), + [aux_sym_compound_type_repeat1] = STATE(3109), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACK_PIPE] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LT_AT] = ACTIONS(3013), + [anon_sym_LT_AT_AT] = ACTIONS(3015), + [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_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(2131), + [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_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360525,72 +361232,72 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3062), + [anon_sym_POUNDif] = ACTIONS(3015), }, [3103] = { [sym_block_comment] = STATE(3103), [sym_compiler_directive_decl] = STATE(3103), [sym_fsi_directive_decl] = STATE(3103), [sym_preproc_line] = STATE(3103), - [sym_identifier] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_let_BANG] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_let_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LBRACK_PIPE] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LT_AT] = ACTIONS(3188), - [anon_sym_LT_AT_AT] = ACTIONS(3190), - [anon_sym_LBRACE_PIPE] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_return_BANG] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_yield_BANG] = ACTIONS(3190), - [anon_sym_lazy] = ACTIONS(3188), - [anon_sym_assert] = ACTIONS(3188), - [anon_sym_upcast] = ACTIONS(3188), - [anon_sym_downcast] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_fun] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_match] = ACTIONS(3188), - [anon_sym_match_BANG] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_use] = ACTIONS(3188), - [anon_sym_use_BANG] = ACTIONS(3190), - [anon_sym_do_BANG] = ACTIONS(3190), - [anon_sym_begin] = ACTIONS(3188), - [aux_sym_char_token1] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_AT_DQUOTE] = ACTIONS(3190), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3190), - [sym_bool] = ACTIONS(3188), - [sym_unit] = ACTIONS(3190), - [anon_sym_LPAREN_PIPE] = ACTIONS(3188), - [sym_op_identifier] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_PLUS_DOT] = ACTIONS(3190), - [anon_sym_DASH_DOT] = ACTIONS(3190), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [aux_sym_prefix_op_token1] = ACTIONS(3190), - [sym_int] = ACTIONS(3188), - [sym_xint] = ACTIONS(3190), - [anon_sym_f] = ACTIONS(3188), - [aux_sym_decimal_token1] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACK_PIPE] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LT_AT] = ACTIONS(3042), + [anon_sym_LT_AT_AT] = ACTIONS(3040), + [anon_sym_LBRACE_PIPE] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_return_BANG] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_yield_BANG] = ACTIONS(3040), + [anon_sym_lazy] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_upcast] = ACTIONS(3042), + [anon_sym_downcast] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_match_BANG] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_use_BANG] = ACTIONS(3040), + [anon_sym_do_BANG] = ACTIONS(3040), + [anon_sym_begin] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_LT2] = ACTIONS(3042), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3040), + [aux_sym_char_token1] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_AT_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3040), + [sym_bool] = ACTIONS(3042), + [sym_unit] = ACTIONS(3040), + [anon_sym_LPAREN_PIPE] = ACTIONS(3042), + [sym_op_identifier] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_DOT] = ACTIONS(3040), + [anon_sym_DASH_DOT] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [aux_sym_prefix_op_token1] = ACTIONS(3040), + [sym_int] = ACTIONS(3042), + [sym_xint] = ACTIONS(3040), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360598,7 +361305,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(15), - [anon_sym_POUNDif] = ACTIONS(3190), + [anon_sym_POUNDif] = ACTIONS(3040), + [sym__dedent] = ACTIONS(3040), }, [3104] = { [sym_block_comment] = STATE(3104), @@ -360609,21 +361317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3048), [anon_sym_do] = ACTIONS(3048), [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_let_BANG] = ACTIONS(3054), [anon_sym_LPAREN] = ACTIONS(3048), [anon_sym_null] = ACTIONS(3048), [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), [anon_sym_LBRACE] = ACTIONS(3048), [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_LT_AT_AT] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_return_BANG] = ACTIONS(3054), [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_yield_BANG] = ACTIONS(3054), [anon_sym_lazy] = ACTIONS(3048), [anon_sym_assert] = ACTIONS(3048), [anon_sym_upcast] = ACTIONS(3048), @@ -360632,38 +361340,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3048), [anon_sym_if] = ACTIONS(3048), [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3050), + [anon_sym_DASH_GT] = ACTIONS(3054), [anon_sym_try] = ACTIONS(3048), [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_match_BANG] = ACTIONS(3054), [anon_sym_function] = ACTIONS(3048), [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), [anon_sym_begin] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3054), [anon_sym_LT2] = ACTIONS(3048), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3050), - [aux_sym_char_token1] = ACTIONS(3050), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [aux_sym_char_token1] = ACTIONS(3054), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3050), + [sym_unit] = ACTIONS(3054), [anon_sym_LPAREN_PIPE] = ACTIONS(3048), - [sym_op_identifier] = ACTIONS(3050), + [sym_op_identifier] = ACTIONS(3054), [anon_sym_PLUS] = ACTIONS(3048), [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3050), - [anon_sym_DASH_DOT] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3054), [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360671,72 +361379,73 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(3054), + [sym__dedent] = ACTIONS(3054), }, [3105] = { [sym_block_comment] = STATE(3105), [sym_compiler_directive_decl] = STATE(3105), [sym_fsi_directive_decl] = STATE(3105), [sym_preproc_line] = STATE(3105), - [sym_identifier] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_let_BANG] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LBRACK_PIPE] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LT_AT] = ACTIONS(3082), - [anon_sym_LT_AT_AT] = ACTIONS(3084), - [anon_sym_LBRACE_PIPE] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_return_BANG] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_yield_BANG] = ACTIONS(3084), - [anon_sym_lazy] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_upcast] = ACTIONS(3082), - [anon_sym_downcast] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_match_BANG] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_use] = ACTIONS(3082), - [anon_sym_use_BANG] = ACTIONS(3084), - [anon_sym_do_BANG] = ACTIONS(3084), - [anon_sym_begin] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_LT2] = ACTIONS(3082), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3084), - [aux_sym_char_token1] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_AT_DQUOTE] = ACTIONS(3084), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3084), - [sym_bool] = ACTIONS(3082), - [sym_unit] = ACTIONS(3084), - [anon_sym_LPAREN_PIPE] = ACTIONS(3082), - [sym_op_identifier] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_DOT] = ACTIONS(3084), - [anon_sym_DASH_DOT] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [aux_sym_prefix_op_token1] = ACTIONS(3084), - [sym_int] = ACTIONS(3082), - [sym_xint] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3066), + [anon_sym_DASH_DOT] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3066), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360744,72 +361453,74 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3084), + [anon_sym_POUNDif] = ACTIONS(3066), + [sym__dedent] = ACTIONS(3066), }, [3106] = { [sym_block_comment] = STATE(3106), [sym_compiler_directive_decl] = STATE(3106), [sym_fsi_directive_decl] = STATE(3106), [sym_preproc_line] = STATE(3106), - [sym_identifier] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3076), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3076), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3076), - [anon_sym_do_BANG] = ACTIONS(3076), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LT2] = ACTIONS(3072), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3076), - [aux_sym_char_token1] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3076), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3076), - [anon_sym_LPAREN_PIPE] = ACTIONS(3072), - [sym_op_identifier] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [aux_sym_prefix_op_token1] = ACTIONS(3076), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(5605), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360817,143 +361528,146 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3076), + [anon_sym_POUNDif] = ACTIONS(3058), }, [3107] = { [sym_block_comment] = STATE(3107), [sym_compiler_directive_decl] = STATE(3107), [sym_fsi_directive_decl] = STATE(3107), [sym_preproc_line] = STATE(3107), - [sym_identifier] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_let_BANG] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_LT_AT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_return_BANG] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_yield_BANG] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_upcast] = ACTIONS(3054), - [anon_sym_downcast] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_fun] = ACTIONS(3054), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_match_BANG] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3054), - [anon_sym_use_BANG] = ACTIONS(3052), - [anon_sym_do_BANG] = ACTIONS(3052), - [anon_sym_begin] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_LT2] = ACTIONS(3054), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3052), - [aux_sym_char_token1] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_AT_DQUOTE] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3052), - [sym_bool] = ACTIONS(3054), - [sym_unit] = ACTIONS(3052), - [anon_sym_LPAREN_PIPE] = ACTIONS(3054), - [sym_op_identifier] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_prefix_op_token1] = ACTIONS(3052), - [sym_int] = ACTIONS(3054), - [sym_xint] = ACTIONS(3052), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3098), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3098), + [anon_sym_DASH_DOT] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3098), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), + [sym__dedent] = ACTIONS(3098), }, [3108] = { [sym_block_comment] = STATE(3108), [sym_compiler_directive_decl] = STATE(3108), [sym_fsi_directive_decl] = STATE(3108), [sym_preproc_line] = STATE(3108), - [aux_sym__function_or_value_defns_repeat1] = STATE(3111), - [sym_identifier] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_do] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5607), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_let_BANG] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5034), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_LBRACK_PIPE] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_LT_AT] = ACTIONS(5034), - [anon_sym_LT_AT_AT] = ACTIONS(5032), - [anon_sym_LBRACE_PIPE] = ACTIONS(5032), - [anon_sym_new] = ACTIONS(5034), - [anon_sym_return_BANG] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_yield_BANG] = ACTIONS(5032), - [anon_sym_lazy] = ACTIONS(5034), - [anon_sym_assert] = ACTIONS(5034), - [anon_sym_upcast] = ACTIONS(5034), - [anon_sym_downcast] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_if] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_match] = ACTIONS(5034), - [anon_sym_match_BANG] = ACTIONS(5032), - [anon_sym_function] = ACTIONS(5034), - [anon_sym_use] = ACTIONS(5034), - [anon_sym_use_BANG] = ACTIONS(5032), - [anon_sym_do_BANG] = ACTIONS(5032), - [anon_sym_begin] = ACTIONS(5034), - [aux_sym_char_token1] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [anon_sym_AT_DQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [sym_bool] = ACTIONS(5034), - [sym_unit] = ACTIONS(5032), - [anon_sym_LPAREN_PIPE] = ACTIONS(5034), - [sym_op_identifier] = ACTIONS(5032), - [anon_sym_PLUS] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_PLUS_DOT] = ACTIONS(5032), - [anon_sym_DASH_DOT] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [aux_sym_prefix_op_token1] = ACTIONS(5032), - [sym_int] = ACTIONS(5034), - [sym_xint] = ACTIONS(5032), + [sym_identifier] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [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(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -360961,512 +361675,517 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(5032), - [anon_sym_POUNDendif] = ACTIONS(5032), - [anon_sym_POUNDelse] = ACTIONS(5032), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), }, [3109] = { [sym_block_comment] = STATE(3109), [sym_compiler_directive_decl] = STATE(3109), [sym_fsi_directive_decl] = STATE(3109), [sym_preproc_line] = STATE(3109), - [sym_identifier] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_let_BANG] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_LT_AT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACE_PIPE] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_return_BANG] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_yield_BANG] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_upcast] = ACTIONS(3093), - [anon_sym_downcast] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_fun] = ACTIONS(3093), - [anon_sym_DASH_GT] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_match_BANG] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3093), - [anon_sym_use_BANG] = ACTIONS(3095), - [anon_sym_do_BANG] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_LT2] = ACTIONS(3093), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3095), - [aux_sym_char_token1] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_AT_DQUOTE] = ACTIONS(3095), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym_bool] = ACTIONS(3093), - [sym_unit] = ACTIONS(3095), - [anon_sym_LPAREN_PIPE] = ACTIONS(3093), - [sym_op_identifier] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS_DOT] = ACTIONS(3095), - [anon_sym_DASH_DOT] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [aux_sym_prefix_op_token1] = ACTIONS(3095), - [sym_int] = ACTIONS(3093), - [sym_xint] = ACTIONS(3095), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3095), - }, - [3110] = { - [sym__type] = STATE(5267), - [sym_simple_type] = STATE(5322), - [sym_generic_type] = STATE(5322), - [sym_paren_type] = STATE(5322), - [sym_function_type] = STATE(5322), - [sym_compound_type] = STATE(5322), - [sym_postfix_type] = STATE(5322), - [sym_list_type] = STATE(5322), - [sym_static_type] = STATE(5322), - [sym_constrained_type] = STATE(5322), - [sym_flexible_type] = STATE(5322), - [sym__static_type_identifier] = STATE(4888), - [sym__static_parameter] = STATE(6531), - [sym_named_static_parameter] = STATE(6532), - [sym_type_attribute] = STATE(6681), - [sym_type_argument] = STATE(5137), - [sym_static_parameter_value] = STATE(6532), - [sym_char] = STATE(3162), - [sym_format_string] = STATE(3163), - [sym__string_literal] = STATE(3163), - [sym_string] = STATE(3162), - [sym_verbatim_string] = STATE(3162), - [sym_bytearray] = STATE(3162), - [sym_verbatim_bytearray] = STATE(3162), - [sym_format_triple_quoted_string] = STATE(3161), - [sym_triple_quoted_string] = STATE(3162), - [sym_const] = STATE(496), - [sym_long_identifier] = STATE(5348), - [sym_sbyte] = STATE(3162), - [sym_byte] = STATE(3162), - [sym_int16] = STATE(3162), - [sym_uint16] = STATE(3162), - [sym_int32] = STATE(3162), - [sym_uint32] = STATE(3162), - [sym_nativeint] = STATE(3162), - [sym_unativeint] = STATE(3162), - [sym_int64] = STATE(3162), - [sym_uint64] = STATE(3162), - [sym_ieee32] = STATE(3162), - [sym_ieee64] = STATE(3162), - [sym_bignum] = STATE(3162), - [sym_decimal] = STATE(3162), - [sym_float] = STATE(3096), - [sym_block_comment] = STATE(3110), - [sym_compiler_directive_decl] = STATE(3110), - [sym_fsi_directive_decl] = STATE(3110), - [sym_preproc_line] = STATE(3110), - [sym_identifier] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym__] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5445), - [anon_sym_SQUOTE] = ACTIONS(5445), - [aux_sym_char_token1] = ACTIONS(5447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5449), - [anon_sym_DQUOTE] = ACTIONS(5451), - [anon_sym_AT_DQUOTE] = ACTIONS(5453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5455), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5457), - [sym_bool] = ACTIONS(5459), - [sym_unit] = ACTIONS(5461), - [sym_int] = ACTIONS(5463), - [sym_xint] = ACTIONS(5465), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), + [aux_sym_compound_type_repeat1] = STATE(3109), + [sym_identifier] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_LT_AT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_upcast] = ACTIONS(2886), + [anon_sym_downcast] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_fun] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(5607), + [anon_sym_LT2] = ACTIONS(2886), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2882), + [aux_sym_char_token1] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2886), + [sym_unit] = ACTIONS(2882), + [anon_sym_LPAREN_PIPE] = ACTIONS(2886), + [sym_op_identifier] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_PLUS_DOT] = ACTIONS(2882), + [anon_sym_DASH_DOT] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [sym_int] = ACTIONS(2886), + [sym_xint] = ACTIONS(2882), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), [anon_sym_POUNDlight] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2882), + }, + [3110] = { + [sym_block_comment] = STATE(3110), + [sym_compiler_directive_decl] = STATE(3110), + [sym_fsi_directive_decl] = STATE(3110), + [sym_preproc_line] = STATE(3110), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_let_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LT_AT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_return_BANG] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_yield_BANG] = ACTIONS(2966), + [anon_sym_lazy] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_upcast] = ACTIONS(2964), + [anon_sym_downcast] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_fun] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_match_BANG] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_use_BANG] = ACTIONS(2966), + [anon_sym_do_BANG] = ACTIONS(2966), + [anon_sym_begin] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LT2] = ACTIONS(2964), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2966), + [aux_sym_char_token1] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_AT_DQUOTE] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), + [sym_bool] = ACTIONS(2964), + [sym_unit] = ACTIONS(2966), + [anon_sym_LPAREN_PIPE] = ACTIONS(2964), + [sym_op_identifier] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [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(2966), + [aux_sym_prefix_op_token1] = ACTIONS(2966), + [sym_int] = ACTIONS(2964), + [sym_xint] = ACTIONS(2966), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2966), }, [3111] = { [sym_block_comment] = STATE(3111), [sym_compiler_directive_decl] = STATE(3111), [sym_fsi_directive_decl] = STATE(3111), [sym_preproc_line] = STATE(3111), - [aux_sym__function_or_value_defns_repeat1] = STATE(3095), - [sym_identifier] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_do] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(5607), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_let_BANG] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_PIPE] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_LT_AT] = ACTIONS(4999), - [anon_sym_LT_AT_AT] = ACTIONS(4997), - [anon_sym_LBRACE_PIPE] = ACTIONS(4997), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_return_BANG] = ACTIONS(4997), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_yield_BANG] = ACTIONS(4997), - [anon_sym_lazy] = ACTIONS(4999), - [anon_sym_assert] = ACTIONS(4999), - [anon_sym_upcast] = ACTIONS(4999), - [anon_sym_downcast] = ACTIONS(4999), - [anon_sym_for] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_match] = ACTIONS(4999), - [anon_sym_match_BANG] = ACTIONS(4997), - [anon_sym_function] = ACTIONS(4999), - [anon_sym_use] = ACTIONS(4999), - [anon_sym_use_BANG] = ACTIONS(4997), - [anon_sym_do_BANG] = ACTIONS(4997), - [anon_sym_begin] = ACTIONS(4999), - [aux_sym_char_token1] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_AT_DQUOTE] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [sym_bool] = ACTIONS(4999), - [sym_unit] = ACTIONS(4997), - [anon_sym_LPAREN_PIPE] = ACTIONS(4999), - [sym_op_identifier] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_PLUS_DOT] = ACTIONS(4997), - [anon_sym_DASH_DOT] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_TILDE] = ACTIONS(4997), - [aux_sym_prefix_op_token1] = ACTIONS(4997), - [sym_int] = ACTIONS(4999), - [sym_xint] = ACTIONS(4997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4997), - [anon_sym_POUNDendif] = ACTIONS(4997), - [anon_sym_POUNDelse] = ACTIONS(4997), + [sym_identifier] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3080), + [anon_sym_DASH_DOT] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3080), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), + [sym__dedent] = ACTIONS(3080), }, [3112] = { [sym_block_comment] = STATE(3112), [sym_compiler_directive_decl] = STATE(3112), [sym_fsi_directive_decl] = STATE(3112), [sym_preproc_line] = STATE(3112), - [sym_identifier] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_let_BANG] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_LT_AT] = ACTIONS(3099), - [anon_sym_LT_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACE_PIPE] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_return_BANG] = ACTIONS(3097), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_yield_BANG] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_upcast] = ACTIONS(3099), - [anon_sym_downcast] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_fun] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_match_BANG] = ACTIONS(3097), - [anon_sym_function] = ACTIONS(3099), - [anon_sym_use] = ACTIONS(3099), - [anon_sym_use_BANG] = ACTIONS(3097), - [anon_sym_do_BANG] = ACTIONS(3097), - [anon_sym_begin] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_LT2] = ACTIONS(3099), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3097), - [aux_sym_char_token1] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [anon_sym_AT_DQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), - [sym_bool] = ACTIONS(3099), - [sym_unit] = ACTIONS(3097), - [anon_sym_LPAREN_PIPE] = ACTIONS(3099), - [sym_op_identifier] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [aux_sym_prefix_op_token1] = ACTIONS(3097), - [sym_int] = ACTIONS(3099), - [sym_xint] = ACTIONS(3097), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3074), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3074), + [anon_sym_DASH_DOT] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3074), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), + [sym__dedent] = ACTIONS(3074), }, [3113] = { [sym_block_comment] = STATE(3113), [sym_compiler_directive_decl] = STATE(3113), [sym_fsi_directive_decl] = STATE(3113), [sym_preproc_line] = STATE(3113), - [sym_identifier] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_let_BANG] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LT_AT] = ACTIONS(3101), - [anon_sym_LT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACE_PIPE] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_return_BANG] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_yield_BANG] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_upcast] = ACTIONS(3101), - [anon_sym_downcast] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_match_BANG] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3101), - [anon_sym_use] = ACTIONS(3101), - [anon_sym_use_BANG] = ACTIONS(3103), - [anon_sym_do_BANG] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_LT2] = ACTIONS(3101), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3103), - [aux_sym_char_token1] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_AT_DQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym_bool] = ACTIONS(3101), - [sym_unit] = ACTIONS(3103), - [anon_sym_LPAREN_PIPE] = ACTIONS(3101), - [sym_op_identifier] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS_DOT] = ACTIONS(3103), - [anon_sym_DASH_DOT] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [aux_sym_prefix_op_token1] = ACTIONS(3103), - [sym_int] = ACTIONS(3101), - [sym_xint] = ACTIONS(3103), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LT2] = ACTIONS(5610), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3082), + [anon_sym_DASH_DOT] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3082), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3082), + [sym__dedent] = ACTIONS(3082), }, [3114] = { [sym_block_comment] = STATE(3114), [sym_compiler_directive_decl] = STATE(3114), [sym_fsi_directive_decl] = STATE(3114), [sym_preproc_line] = STATE(3114), - [aux_sym__function_or_value_defns_repeat1] = STATE(3114), - [sym_identifier] = ACTIONS(5015), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_do] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5609), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_let_BANG] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_PIPE] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LT_AT] = ACTIONS(5015), - [anon_sym_LT_AT_AT] = ACTIONS(5013), - [anon_sym_LBRACE_PIPE] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_return_BANG] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_yield_BANG] = ACTIONS(5013), - [anon_sym_lazy] = ACTIONS(5015), - [anon_sym_assert] = ACTIONS(5015), - [anon_sym_upcast] = ACTIONS(5015), - [anon_sym_downcast] = ACTIONS(5015), - [anon_sym_for] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_match] = ACTIONS(5015), - [anon_sym_match_BANG] = ACTIONS(5013), - [anon_sym_function] = ACTIONS(5015), - [anon_sym_use] = ACTIONS(5015), - [anon_sym_use_BANG] = ACTIONS(5013), - [anon_sym_do_BANG] = ACTIONS(5013), - [anon_sym_begin] = ACTIONS(5015), - [aux_sym_char_token1] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_AT_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [sym_bool] = ACTIONS(5015), - [sym_unit] = ACTIONS(5013), - [anon_sym_LPAREN_PIPE] = ACTIONS(5015), - [sym_op_identifier] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_PLUS_DOT] = ACTIONS(5013), - [anon_sym_DASH_DOT] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5013), - [aux_sym_prefix_op_token1] = ACTIONS(5013), - [sym_int] = ACTIONS(5015), - [sym_xint] = ACTIONS(5013), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5013), - [sym__newline] = ACTIONS(5013), - [sym__dedent] = ACTIONS(5013), + [sym_identifier] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3064), + [anon_sym_DASH_DOT] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), }, [3115] = { [sym_block_comment] = STATE(3115), [sym_compiler_directive_decl] = STATE(3115), [sym_fsi_directive_decl] = STATE(3115), [sym_preproc_line] = STATE(3115), - [sym_identifier] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_LT_AT_AT] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LT2] = ACTIONS(3044), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3046), - [aux_sym_char_token1] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3046), - [anon_sym_LPAREN_PIPE] = ACTIONS(3044), - [sym_op_identifier] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3046), - [anon_sym_DASH_DOT] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), + [sym_identifier] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2526), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2526), + [anon_sym_DASH_DOT] = ACTIONS(2526), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2526), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_f] = ACTIONS(5140), + [aux_sym_decimal_token1] = ACTIONS(4893), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -361474,232 +362193,13 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3046), + [anon_sym_POUNDif] = ACTIONS(2526), }, [3116] = { - [sym_attributes] = STATE(4642), - [sym__attribute_set] = STATE(4782), - [sym_function_or_value_defn] = STATE(6621), - [sym_access_modifier] = STATE(5236), - [sym__type] = STATE(5445), - [sym_simple_type] = STATE(4410), - [sym_generic_type] = STATE(4410), - [sym_paren_type] = STATE(4410), - [sym_function_type] = STATE(4410), - [sym_compound_type] = STATE(4410), - [sym_postfix_type] = STATE(4410), - [sym_list_type] = STATE(4410), - [sym_static_type] = STATE(4410), - [sym_constrained_type] = STATE(4410), - [sym_flexible_type] = STATE(4410), - [sym__static_type_identifier] = STATE(3862), - [sym_type_argument] = STATE(4357), - [sym_delegate_signature] = STATE(7533), - [sym__class_type_body_inner] = STATE(6297), - [sym__class_type_body] = STATE(7534), - [sym_enum_type_cases] = STATE(7544), - [sym_enum_type_case] = STATE(7666), - [sym_union_type_cases] = STATE(3731), - [sym_union_type_case] = STATE(4754), - [sym__class_function_or_value_defn] = STATE(6624), - [sym__type_defn_elements] = STATE(6624), - [sym_interface_implementation] = STATE(5866), - [sym__member_defns] = STATE(6005), - [sym_member_defn] = STATE(4437), - [sym_additional_constr_defn] = STATE(5108), - [sym_class_inherits_decl] = STATE(6624), - [sym_long_identifier] = STATE(4406), [sym_block_comment] = STATE(3116), [sym_compiler_directive_decl] = STATE(3116), [sym_fsi_directive_decl] = STATE(3116), [sym_preproc_line] = STATE(3116), - [sym_preproc_if_in_class_definition] = STATE(6624), - [aux_sym_attributes_repeat1] = STATE(4628), - [aux_sym__object_expression_inner_repeat1] = STATE(5781), - [sym_identifier] = ACTIONS(5561), - [anon_sym_LBRACK_LT] = ACTIONS(5563), - [anon_sym_do] = ACTIONS(5565), - [anon_sym_let] = ACTIONS(5567), - [anon_sym_let_BANG] = ACTIONS(5569), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(5571), - [anon_sym__] = ACTIONS(5573), - [anon_sym_PIPE] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5612), - [anon_sym_new] = ACTIONS(5579), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_CARET] = ACTIONS(5583), - [anon_sym_SQUOTE] = ACTIONS(5583), - [anon_sym_delegate] = ACTIONS(5585), - [anon_sym_default] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5589), - [anon_sym_member] = ACTIONS(5591), - [anon_sym_interface] = ACTIONS(5593), - [anon_sym_abstract] = ACTIONS(5595), - [anon_sym_override] = ACTIONS(5587), - [anon_sym_val] = ACTIONS(5597), - [anon_sym_inherit] = ACTIONS(5599), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5601), - }, - [3117] = { - [sym_block_comment] = STATE(3117), - [sym_compiler_directive_decl] = STATE(3117), - [sym_fsi_directive_decl] = STATE(3117), - [sym_preproc_line] = STATE(3117), - [sym_identifier] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_let_BANG] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_COMMA] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LBRACK_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_LT_AT] = ACTIONS(3130), - [anon_sym_LT_AT_AT] = ACTIONS(3132), - [anon_sym_LBRACE_PIPE] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_return_BANG] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_yield_BANG] = ACTIONS(3132), - [anon_sym_lazy] = ACTIONS(3130), - [anon_sym_assert] = ACTIONS(3130), - [anon_sym_upcast] = ACTIONS(3130), - [anon_sym_downcast] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_fun] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_match] = ACTIONS(3130), - [anon_sym_match_BANG] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_GT] = ACTIONS(3132), - [anon_sym_use] = ACTIONS(3130), - [anon_sym_use_BANG] = ACTIONS(3132), - [anon_sym_do_BANG] = ACTIONS(3132), - [anon_sym_begin] = ACTIONS(3130), - [aux_sym_char_token1] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_AT_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3132), - [sym_bool] = ACTIONS(3130), - [sym_unit] = ACTIONS(3132), - [anon_sym_LPAREN_PIPE] = ACTIONS(3130), - [sym_op_identifier] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_DOT] = ACTIONS(3132), - [anon_sym_DASH_DOT] = ACTIONS(3132), - [anon_sym_PERCENT] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [aux_sym_prefix_op_token1] = ACTIONS(3132), - [sym_int] = ACTIONS(3130), - [sym_xint] = ACTIONS(3132), - [anon_sym_f] = ACTIONS(3130), - [aux_sym_decimal_token1] = ACTIONS(3130), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3132), - }, - [3118] = { - [sym_attributes] = STATE(4642), - [sym__attribute_set] = STATE(4782), - [sym_function_or_value_defn] = STATE(6621), - [sym_access_modifier] = STATE(5374), - [sym__type] = STATE(5438), - [sym_simple_type] = STATE(4410), - [sym_generic_type] = STATE(4410), - [sym_paren_type] = STATE(4410), - [sym_function_type] = STATE(4410), - [sym_compound_type] = STATE(4410), - [sym_postfix_type] = STATE(4410), - [sym_list_type] = STATE(4410), - [sym_static_type] = STATE(4410), - [sym_constrained_type] = STATE(4410), - [sym_flexible_type] = STATE(4410), - [sym__static_type_identifier] = STATE(3862), - [sym_type_argument] = STATE(4357), - [sym_delegate_signature] = STATE(8170), - [sym__class_type_body_inner] = STATE(6297), - [sym__class_type_body] = STATE(8164), - [sym_enum_type_cases] = STATE(8159), - [sym_enum_type_case] = STATE(7666), - [sym_union_type_cases] = STATE(3743), - [sym_union_type_case] = STATE(4754), - [sym__class_function_or_value_defn] = STATE(6624), - [sym__type_defn_elements] = STATE(6624), - [sym_interface_implementation] = STATE(5866), - [sym__member_defns] = STATE(6005), - [sym_member_defn] = STATE(4437), - [sym_additional_constr_defn] = STATE(5108), - [sym_class_inherits_decl] = STATE(6624), - [sym_long_identifier] = STATE(4406), - [sym_block_comment] = STATE(3118), - [sym_compiler_directive_decl] = STATE(3118), - [sym_fsi_directive_decl] = STATE(3118), - [sym_preproc_line] = STATE(3118), - [sym_preproc_if_in_class_definition] = STATE(6624), - [aux_sym_attributes_repeat1] = STATE(4628), - [aux_sym__object_expression_inner_repeat1] = STATE(5781), - [sym_identifier] = ACTIONS(5561), - [anon_sym_LBRACK_LT] = ACTIONS(5563), - [anon_sym_do] = ACTIONS(5565), - [anon_sym_let] = ACTIONS(5567), - [anon_sym_let_BANG] = ACTIONS(5569), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(5571), - [anon_sym__] = ACTIONS(5573), - [anon_sym_PIPE] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5614), - [anon_sym_new] = ACTIONS(5579), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_CARET] = ACTIONS(5583), - [anon_sym_SQUOTE] = ACTIONS(5583), - [anon_sym_delegate] = ACTIONS(5585), - [anon_sym_default] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5589), - [anon_sym_member] = ACTIONS(5591), - [anon_sym_interface] = ACTIONS(5593), - [anon_sym_abstract] = ACTIONS(5595), - [anon_sym_override] = ACTIONS(5587), - [anon_sym_val] = ACTIONS(5597), - [anon_sym_inherit] = ACTIONS(5599), - [anon_sym_LPAREN_STAR] = ACTIONS(5467), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5601), - }, - [3119] = { - [sym_block_comment] = STATE(3119), - [sym_compiler_directive_decl] = STATE(3119), - [sym_fsi_directive_decl] = STATE(3119), - [sym_preproc_line] = STATE(3119), [sym_identifier] = ACTIONS(3042), [anon_sym_return] = ACTIONS(3042), [anon_sym_do] = ACTIONS(3042), @@ -361768,572 +362268,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3040), }, + [3117] = { + [sym_block_comment] = STATE(3117), + [sym_compiler_directive_decl] = STATE(3117), + [sym_fsi_directive_decl] = STATE(3117), + [sym_preproc_line] = STATE(3117), + [aux_sym__function_or_value_defns_repeat1] = STATE(3129), + [sym_identifier] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_do] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(5612), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_let_BANG] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_PIPE] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LT_AT] = ACTIONS(4960), + [anon_sym_LT_AT_AT] = ACTIONS(4958), + [anon_sym_LBRACE_PIPE] = ACTIONS(4958), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_return_BANG] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_yield_BANG] = ACTIONS(4958), + [anon_sym_lazy] = ACTIONS(4960), + [anon_sym_assert] = ACTIONS(4960), + [anon_sym_upcast] = ACTIONS(4960), + [anon_sym_downcast] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_match_BANG] = ACTIONS(4958), + [anon_sym_function] = ACTIONS(4960), + [anon_sym_use] = ACTIONS(4960), + [anon_sym_use_BANG] = ACTIONS(4958), + [anon_sym_do_BANG] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4960), + [aux_sym_char_token1] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_AT_DQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [sym_bool] = ACTIONS(4960), + [sym_unit] = ACTIONS(4958), + [anon_sym_LPAREN_PIPE] = ACTIONS(4960), + [sym_op_identifier] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_PLUS_DOT] = ACTIONS(4958), + [anon_sym_DASH_DOT] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [aux_sym_prefix_op_token1] = ACTIONS(4958), + [sym_int] = ACTIONS(4960), + [sym_xint] = ACTIONS(4958), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4958), + [sym__newline] = ACTIONS(4958), + [sym__dedent] = ACTIONS(4958), + }, + [3118] = { + [sym_block_comment] = STATE(3118), + [sym_compiler_directive_decl] = STATE(3118), + [sym_fsi_directive_decl] = STATE(3118), + [sym_preproc_line] = STATE(3118), + [sym_identifier] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_let_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LBRACK_PIPE] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_LT_AT] = ACTIONS(3132), + [anon_sym_LT_AT_AT] = ACTIONS(3134), + [anon_sym_LBRACE_PIPE] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_return_BANG] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_yield_BANG] = ACTIONS(3134), + [anon_sym_lazy] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_upcast] = ACTIONS(3132), + [anon_sym_downcast] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_match_BANG] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3134), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_use_BANG] = ACTIONS(3134), + [anon_sym_do_BANG] = ACTIONS(3134), + [anon_sym_begin] = ACTIONS(3132), + [aux_sym_char_token1] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_AT_DQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3134), + [sym_bool] = ACTIONS(3132), + [sym_unit] = ACTIONS(3134), + [anon_sym_LPAREN_PIPE] = ACTIONS(3132), + [sym_op_identifier] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS_DOT] = ACTIONS(3134), + [anon_sym_DASH_DOT] = ACTIONS(3134), + [anon_sym_PERCENT] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [aux_sym_prefix_op_token1] = ACTIONS(3134), + [sym_int] = ACTIONS(3132), + [sym_xint] = ACTIONS(3134), + [anon_sym_f] = ACTIONS(3132), + [aux_sym_decimal_token1] = ACTIONS(3132), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3134), + }, + [3119] = { + [sym_block_comment] = STATE(3119), + [sym_compiler_directive_decl] = STATE(3119), + [sym_fsi_directive_decl] = STATE(3119), + [sym_preproc_line] = STATE(3119), + [aux_sym__function_or_value_defns_repeat1] = STATE(3121), + [sym_identifier] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_do] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_let_BANG] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_PIPE] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LT_AT] = ACTIONS(4960), + [anon_sym_LT_AT_AT] = ACTIONS(4958), + [anon_sym_LBRACE_PIPE] = ACTIONS(4958), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_return_BANG] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_yield_BANG] = ACTIONS(4958), + [anon_sym_lazy] = ACTIONS(4960), + [anon_sym_assert] = ACTIONS(4960), + [anon_sym_upcast] = ACTIONS(4960), + [anon_sym_downcast] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_match_BANG] = ACTIONS(4958), + [anon_sym_function] = ACTIONS(4960), + [anon_sym_use] = ACTIONS(4960), + [anon_sym_use_BANG] = ACTIONS(4958), + [anon_sym_do_BANG] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4960), + [aux_sym_char_token1] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_AT_DQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [sym_bool] = ACTIONS(4960), + [sym_unit] = ACTIONS(4958), + [anon_sym_LPAREN_PIPE] = ACTIONS(4960), + [sym_op_identifier] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_PLUS_DOT] = ACTIONS(4958), + [anon_sym_DASH_DOT] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [aux_sym_prefix_op_token1] = ACTIONS(4958), + [sym_int] = ACTIONS(4960), + [sym_xint] = ACTIONS(4958), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4958), + [anon_sym_POUNDendif] = ACTIONS(4958), + [anon_sym_POUNDelse] = ACTIONS(4958), + }, [3120] = { [sym_block_comment] = STATE(3120), [sym_compiler_directive_decl] = STATE(3120), [sym_fsi_directive_decl] = STATE(3120), [sym_preproc_line] = STATE(3120), - [sym_identifier] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_let_BANG] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LT_AT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_return_BANG] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3058), - [anon_sym_yield_BANG] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_upcast] = ACTIONS(3058), - [anon_sym_downcast] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_fun] = ACTIONS(3058), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_match_BANG] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3058), - [anon_sym_use_BANG] = ACTIONS(3056), - [anon_sym_do_BANG] = ACTIONS(3056), - [anon_sym_begin] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_LT2] = ACTIONS(5616), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3056), - [aux_sym_char_token1] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_AT_DQUOTE] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), - [sym_bool] = ACTIONS(3058), - [sym_unit] = ACTIONS(3056), - [anon_sym_LPAREN_PIPE] = ACTIONS(3058), - [sym_op_identifier] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_prefix_op_token1] = ACTIONS(3056), - [sym_int] = ACTIONS(3058), - [sym_xint] = ACTIONS(3056), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_let_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACK_PIPE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_LT_AT] = ACTIONS(3078), + [anon_sym_LT_AT_AT] = ACTIONS(3080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_return_BANG] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_yield_BANG] = ACTIONS(3080), + [anon_sym_lazy] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_upcast] = ACTIONS(3078), + [anon_sym_downcast] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_match_BANG] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_use_BANG] = ACTIONS(3080), + [anon_sym_do_BANG] = ACTIONS(3080), + [anon_sym_begin] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_LT2] = ACTIONS(3078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3080), + [aux_sym_char_token1] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_AT_DQUOTE] = ACTIONS(3080), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3080), + [sym_bool] = ACTIONS(3078), + [sym_unit] = ACTIONS(3080), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_op_identifier] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_DOT] = ACTIONS(3080), + [anon_sym_DASH_DOT] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [aux_sym_prefix_op_token1] = ACTIONS(3080), + [sym_int] = ACTIONS(3078), + [sym_xint] = ACTIONS(3080), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3080), }, [3121] = { [sym_block_comment] = STATE(3121), [sym_compiler_directive_decl] = STATE(3121), [sym_fsi_directive_decl] = STATE(3121), [sym_preproc_line] = STATE(3121), - [sym_identifier] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_do] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_let_BANG] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LBRACK_PIPE] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_LT_AT] = ACTIONS(5072), - [anon_sym_LT_AT_AT] = ACTIONS(5070), - [anon_sym_LBRACE_PIPE] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5072), - [anon_sym_return_BANG] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_yield_BANG] = ACTIONS(5070), - [anon_sym_lazy] = ACTIONS(5072), - [anon_sym_assert] = ACTIONS(5072), - [anon_sym_upcast] = ACTIONS(5072), - [anon_sym_downcast] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_fun] = ACTIONS(5072), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_match_BANG] = ACTIONS(5070), - [anon_sym_function] = ACTIONS(5072), - [anon_sym_use] = ACTIONS(5072), - [anon_sym_use_BANG] = ACTIONS(5070), - [anon_sym_do_BANG] = ACTIONS(5070), - [anon_sym_begin] = ACTIONS(5072), - [aux_sym_char_token1] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE] = ACTIONS(5072), - [anon_sym_AT_DQUOTE] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [sym_bool] = ACTIONS(5072), - [sym_unit] = ACTIONS(5070), - [anon_sym_LPAREN_PIPE] = ACTIONS(5072), - [sym_op_identifier] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5072), - [anon_sym_PLUS_DOT] = ACTIONS(5070), - [anon_sym_DASH_DOT] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [aux_sym_prefix_op_token1] = ACTIONS(5070), - [sym_int] = ACTIONS(5072), - [sym_xint] = ACTIONS(5070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5070), - [anon_sym_POUNDendif] = ACTIONS(5070), - [anon_sym_POUNDelse] = ACTIONS(5070), + [aux_sym__function_or_value_defns_repeat1] = STATE(3121), + [sym_identifier] = ACTIONS(4951), + [anon_sym_return] = ACTIONS(4951), + [anon_sym_do] = ACTIONS(4951), + [anon_sym_and] = ACTIONS(5616), + [anon_sym_let] = ACTIONS(4951), + [anon_sym_let_BANG] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LBRACK_PIPE] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LT_AT] = ACTIONS(4951), + [anon_sym_LT_AT_AT] = ACTIONS(4949), + [anon_sym_LBRACE_PIPE] = ACTIONS(4949), + [anon_sym_new] = ACTIONS(4951), + [anon_sym_return_BANG] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4951), + [anon_sym_yield_BANG] = ACTIONS(4949), + [anon_sym_lazy] = ACTIONS(4951), + [anon_sym_assert] = ACTIONS(4951), + [anon_sym_upcast] = ACTIONS(4951), + [anon_sym_downcast] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4951), + [anon_sym_while] = ACTIONS(4951), + [anon_sym_if] = ACTIONS(4951), + [anon_sym_fun] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4951), + [anon_sym_match] = ACTIONS(4951), + [anon_sym_match_BANG] = ACTIONS(4949), + [anon_sym_function] = ACTIONS(4951), + [anon_sym_use] = ACTIONS(4951), + [anon_sym_use_BANG] = ACTIONS(4949), + [anon_sym_do_BANG] = ACTIONS(4949), + [anon_sym_begin] = ACTIONS(4951), + [aux_sym_char_token1] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [anon_sym_AT_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [sym_bool] = ACTIONS(4951), + [sym_unit] = ACTIONS(4949), + [anon_sym_LPAREN_PIPE] = ACTIONS(4951), + [sym_op_identifier] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_PLUS_DOT] = ACTIONS(4949), + [anon_sym_DASH_DOT] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [aux_sym_prefix_op_token1] = ACTIONS(4949), + [sym_int] = ACTIONS(4951), + [sym_xint] = ACTIONS(4949), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4949), + [anon_sym_POUNDendif] = ACTIONS(4949), + [anon_sym_POUNDelse] = ACTIONS(4949), }, [3122] = { [sym_block_comment] = STATE(3122), [sym_compiler_directive_decl] = STATE(3122), [sym_fsi_directive_decl] = STATE(3122), [sym_preproc_line] = STATE(3122), - [aux_sym__function_or_value_defns_repeat1] = STATE(3124), - [sym_identifier] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_do] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5618), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_let_BANG] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5034), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_LBRACK_PIPE] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_LT_AT] = ACTIONS(5034), - [anon_sym_LT_AT_AT] = ACTIONS(5032), - [anon_sym_LBRACE_PIPE] = ACTIONS(5032), - [anon_sym_new] = ACTIONS(5034), - [anon_sym_return_BANG] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_yield_BANG] = ACTIONS(5032), - [anon_sym_lazy] = ACTIONS(5034), - [anon_sym_assert] = ACTIONS(5034), - [anon_sym_upcast] = ACTIONS(5034), - [anon_sym_downcast] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_if] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_match] = ACTIONS(5034), - [anon_sym_match_BANG] = ACTIONS(5032), - [anon_sym_function] = ACTIONS(5034), - [anon_sym_use] = ACTIONS(5034), - [anon_sym_use_BANG] = ACTIONS(5032), - [anon_sym_do_BANG] = ACTIONS(5032), - [anon_sym_begin] = ACTIONS(5034), - [aux_sym_char_token1] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [anon_sym_AT_DQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [sym_bool] = ACTIONS(5034), - [sym_unit] = ACTIONS(5032), - [anon_sym_LPAREN_PIPE] = ACTIONS(5034), - [sym_op_identifier] = ACTIONS(5032), - [anon_sym_PLUS] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_PLUS_DOT] = ACTIONS(5032), - [anon_sym_DASH_DOT] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [aux_sym_prefix_op_token1] = ACTIONS(5032), - [sym_int] = ACTIONS(5034), - [sym_xint] = ACTIONS(5032), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5032), - [anon_sym_POUNDendif] = ACTIONS(5032), + [sym_identifier] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_LT_AT_AT] = ACTIONS(3153), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [aux_sym_char_token1] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3153), + [anon_sym_LPAREN_PIPE] = ACTIONS(3151), + [sym_op_identifier] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3153), + [anon_sym_DASH_DOT] = ACTIONS(3153), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [sym_int] = ACTIONS(5619), + [sym_xint] = ACTIONS(3153), + [anon_sym_f] = ACTIONS(3151), + [aux_sym_decimal_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3153), }, [3123] = { [sym_block_comment] = STATE(3123), [sym_compiler_directive_decl] = STATE(3123), [sym_fsi_directive_decl] = STATE(3123), [sym_preproc_line] = STATE(3123), - [sym_identifier] = ACTIONS(5122), - [anon_sym_return] = ACTIONS(5122), - [anon_sym_do] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_let_BANG] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LBRACK_PIPE] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_LT_AT] = ACTIONS(5122), - [anon_sym_LT_AT_AT] = ACTIONS(5120), - [anon_sym_LBRACE_PIPE] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5122), - [anon_sym_return_BANG] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5122), - [anon_sym_yield_BANG] = ACTIONS(5120), - [anon_sym_lazy] = ACTIONS(5122), - [anon_sym_assert] = ACTIONS(5122), - [anon_sym_upcast] = ACTIONS(5122), - [anon_sym_downcast] = ACTIONS(5122), - [anon_sym_for] = ACTIONS(5122), - [anon_sym_while] = ACTIONS(5122), - [anon_sym_if] = ACTIONS(5122), - [anon_sym_fun] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5122), - [anon_sym_match] = ACTIONS(5122), - [anon_sym_match_BANG] = ACTIONS(5120), - [anon_sym_function] = ACTIONS(5122), - [anon_sym_use] = ACTIONS(5122), - [anon_sym_use_BANG] = ACTIONS(5120), - [anon_sym_do_BANG] = ACTIONS(5120), - [anon_sym_begin] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [anon_sym_AT_DQUOTE] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [sym_bool] = ACTIONS(5122), - [sym_unit] = ACTIONS(5120), - [anon_sym_LPAREN_PIPE] = ACTIONS(5122), - [sym_op_identifier] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_PLUS_DOT] = ACTIONS(5120), - [anon_sym_DASH_DOT] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5120), - [aux_sym_prefix_op_token1] = ACTIONS(5120), - [sym_int] = ACTIONS(5122), - [sym_xint] = ACTIONS(5120), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5120), - [anon_sym_POUNDendif] = ACTIONS(5120), - [anon_sym_POUNDelse] = ACTIONS(5120), + [aux_sym__function_or_value_defns_repeat1] = STATE(3119), + [sym_identifier] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_do] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_let_BANG] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_PIPE] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LT_AT] = ACTIONS(4972), + [anon_sym_LT_AT_AT] = ACTIONS(4970), + [anon_sym_LBRACE_PIPE] = ACTIONS(4970), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_return_BANG] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_yield_BANG] = ACTIONS(4970), + [anon_sym_lazy] = ACTIONS(4972), + [anon_sym_assert] = ACTIONS(4972), + [anon_sym_upcast] = ACTIONS(4972), + [anon_sym_downcast] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_match_BANG] = ACTIONS(4970), + [anon_sym_function] = ACTIONS(4972), + [anon_sym_use] = ACTIONS(4972), + [anon_sym_use_BANG] = ACTIONS(4970), + [anon_sym_do_BANG] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4972), + [aux_sym_char_token1] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_AT_DQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [sym_bool] = ACTIONS(4972), + [sym_unit] = ACTIONS(4970), + [anon_sym_LPAREN_PIPE] = ACTIONS(4972), + [sym_op_identifier] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_PLUS_DOT] = ACTIONS(4970), + [anon_sym_DASH_DOT] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [aux_sym_prefix_op_token1] = ACTIONS(4970), + [sym_int] = ACTIONS(4972), + [sym_xint] = ACTIONS(4970), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4970), + [anon_sym_POUNDendif] = ACTIONS(4970), + [anon_sym_POUNDelse] = ACTIONS(4970), }, [3124] = { [sym_block_comment] = STATE(3124), [sym_compiler_directive_decl] = STATE(3124), [sym_fsi_directive_decl] = STATE(3124), [sym_preproc_line] = STATE(3124), - [aux_sym__function_or_value_defns_repeat1] = STATE(3131), - [sym_identifier] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_do] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(5618), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_let_BANG] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_PIPE] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_LT_AT] = ACTIONS(4999), - [anon_sym_LT_AT_AT] = ACTIONS(4997), - [anon_sym_LBRACE_PIPE] = ACTIONS(4997), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_return_BANG] = ACTIONS(4997), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_yield_BANG] = ACTIONS(4997), - [anon_sym_lazy] = ACTIONS(4999), - [anon_sym_assert] = ACTIONS(4999), - [anon_sym_upcast] = ACTIONS(4999), - [anon_sym_downcast] = ACTIONS(4999), - [anon_sym_for] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_match] = ACTIONS(4999), - [anon_sym_match_BANG] = ACTIONS(4997), - [anon_sym_function] = ACTIONS(4999), - [anon_sym_use] = ACTIONS(4999), - [anon_sym_use_BANG] = ACTIONS(4997), - [anon_sym_do_BANG] = ACTIONS(4997), - [anon_sym_begin] = ACTIONS(4999), - [aux_sym_char_token1] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_AT_DQUOTE] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [sym_bool] = ACTIONS(4999), - [sym_unit] = ACTIONS(4997), - [anon_sym_LPAREN_PIPE] = ACTIONS(4999), - [sym_op_identifier] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_PLUS_DOT] = ACTIONS(4997), - [anon_sym_DASH_DOT] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_TILDE] = ACTIONS(4997), - [aux_sym_prefix_op_token1] = ACTIONS(4997), - [sym_int] = ACTIONS(4999), - [sym_xint] = ACTIONS(4997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4997), - [anon_sym_POUNDendif] = ACTIONS(4997), + [sym_identifier] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_let_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LT_AT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_return_BANG] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_yield_BANG] = ACTIONS(3058), + [anon_sym_lazy] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_upcast] = ACTIONS(3060), + [anon_sym_downcast] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_fun] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_match_BANG] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_use_BANG] = ACTIONS(3058), + [anon_sym_do_BANG] = ACTIONS(3058), + [anon_sym_begin] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LT2] = ACTIONS(3060), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3058), + [aux_sym_char_token1] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_AT_DQUOTE] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), + [sym_bool] = ACTIONS(3060), + [sym_unit] = ACTIONS(3058), + [anon_sym_LPAREN_PIPE] = ACTIONS(3060), + [sym_op_identifier] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_prefix_op_token1] = ACTIONS(3058), + [sym_int] = ACTIONS(3060), + [sym_xint] = ACTIONS(3058), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3058), }, [3125] = { [sym_block_comment] = STATE(3125), [sym_compiler_directive_decl] = STATE(3125), [sym_fsi_directive_decl] = STATE(3125), [sym_preproc_line] = STATE(3125), - [sym_identifier] = ACTIONS(5122), - [anon_sym_return] = ACTIONS(5122), - [anon_sym_do] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_let_BANG] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LBRACK_PIPE] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_LT_AT] = ACTIONS(5122), - [anon_sym_LT_AT_AT] = ACTIONS(5120), - [anon_sym_LBRACE_PIPE] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5122), - [anon_sym_return_BANG] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5122), - [anon_sym_yield_BANG] = ACTIONS(5120), - [anon_sym_lazy] = ACTIONS(5122), - [anon_sym_assert] = ACTIONS(5122), - [anon_sym_upcast] = ACTIONS(5122), - [anon_sym_downcast] = ACTIONS(5122), - [anon_sym_for] = ACTIONS(5122), - [anon_sym_while] = ACTIONS(5122), - [anon_sym_if] = ACTIONS(5122), - [anon_sym_fun] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5122), - [anon_sym_match] = ACTIONS(5122), - [anon_sym_match_BANG] = ACTIONS(5120), - [anon_sym_function] = ACTIONS(5122), - [anon_sym_use] = ACTIONS(5122), - [anon_sym_use_BANG] = ACTIONS(5120), - [anon_sym_do_BANG] = ACTIONS(5120), - [anon_sym_begin] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [anon_sym_AT_DQUOTE] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [sym_bool] = ACTIONS(5122), - [sym_unit] = ACTIONS(5120), - [anon_sym_LPAREN_PIPE] = ACTIONS(5122), - [sym_op_identifier] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_PLUS_DOT] = ACTIONS(5120), - [anon_sym_DASH_DOT] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5120), - [aux_sym_prefix_op_token1] = ACTIONS(5120), - [sym_int] = ACTIONS(5122), - [sym_xint] = ACTIONS(5120), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5120), - [sym__newline] = ACTIONS(5120), - [sym__dedent] = ACTIONS(5120), + [sym_identifier] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_let_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK_PIPE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LT_AT] = ACTIONS(3096), + [anon_sym_LT_AT_AT] = ACTIONS(3098), + [anon_sym_LBRACE_PIPE] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_return_BANG] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_yield_BANG] = ACTIONS(3098), + [anon_sym_lazy] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_upcast] = ACTIONS(3096), + [anon_sym_downcast] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_match_BANG] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_use_BANG] = ACTIONS(3098), + [anon_sym_do_BANG] = ACTIONS(3098), + [anon_sym_begin] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LT2] = ACTIONS(3096), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3098), + [aux_sym_char_token1] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3096), + [anon_sym_AT_DQUOTE] = ACTIONS(3098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3098), + [sym_bool] = ACTIONS(3096), + [sym_unit] = ACTIONS(3098), + [anon_sym_LPAREN_PIPE] = ACTIONS(3096), + [sym_op_identifier] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_PLUS_DOT] = ACTIONS(3098), + [anon_sym_DASH_DOT] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [aux_sym_prefix_op_token1] = ACTIONS(3098), + [sym_int] = ACTIONS(3096), + [sym_xint] = ACTIONS(3098), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3098), }, [3126] = { [sym_block_comment] = STATE(3126), [sym_compiler_directive_decl] = STATE(3126), [sym_fsi_directive_decl] = STATE(3126), [sym_preproc_line] = STATE(3126), - [sym_identifier] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [sym__newline] = ACTIONS(3167), - [sym__dedent] = ACTIONS(3167), + [sym_identifier] = 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_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3094), + [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_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3094), + [anon_sym_function] = 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_STAR] = ACTIONS(3094), + [anon_sym_LT2] = ACTIONS(3092), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3094), + [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(3094), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3094), + [anon_sym_DASH_DOT] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_prefix_op_token1] = ACTIONS(3094), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3094), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3094), }, [3127] = { [sym_block_comment] = STATE(3127), [sym_compiler_directive_decl] = STATE(3127), [sym_fsi_directive_decl] = STATE(3127), [sym_preproc_line] = STATE(3127), - [sym_identifier] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_LT_AT_AT] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_LT2] = ACTIONS(3062), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3064), + [aux_sym_char_token1] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3064), + [anon_sym_LPAREN_PIPE] = ACTIONS(3062), + [sym_op_identifier] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3064), + [anon_sym_DASH_DOT] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -362341,358 +363069,364 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), - [anon_sym_POUNDelse] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3064), }, [3128] = { [sym_block_comment] = STATE(3128), [sym_compiler_directive_decl] = STATE(3128), [sym_fsi_directive_decl] = STATE(3128), [sym_preproc_line] = STATE(3128), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [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_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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5124), - [anon_sym_POUNDendif] = ACTIONS(5124), - [anon_sym_POUNDelse] = ACTIONS(5124), + [sym_identifier] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_let_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACK_PIPE] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_LT_AT] = ACTIONS(3076), + [anon_sym_LT_AT_AT] = ACTIONS(3074), + [anon_sym_LBRACE_PIPE] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_return_BANG] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_yield_BANG] = ACTIONS(3074), + [anon_sym_lazy] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_upcast] = ACTIONS(3076), + [anon_sym_downcast] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_match_BANG] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_use_BANG] = ACTIONS(3074), + [anon_sym_do_BANG] = ACTIONS(3074), + [anon_sym_begin] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_LT2] = ACTIONS(3076), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3074), + [aux_sym_char_token1] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_AT_DQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), + [sym_bool] = ACTIONS(3076), + [sym_unit] = ACTIONS(3074), + [anon_sym_LPAREN_PIPE] = ACTIONS(3076), + [sym_op_identifier] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS_DOT] = ACTIONS(3074), + [anon_sym_DASH_DOT] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_prefix_op_token1] = ACTIONS(3074), + [sym_int] = ACTIONS(3076), + [sym_xint] = ACTIONS(3074), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3074), }, [3129] = { [sym_block_comment] = STATE(3129), [sym_compiler_directive_decl] = STATE(3129), [sym_fsi_directive_decl] = STATE(3129), [sym_preproc_line] = STATE(3129), - [sym_identifier] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_do] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_let_BANG] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LBRACK_PIPE] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_LT_AT] = ACTIONS(5072), - [anon_sym_LT_AT_AT] = ACTIONS(5070), - [anon_sym_LBRACE_PIPE] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5072), - [anon_sym_return_BANG] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_yield_BANG] = ACTIONS(5070), - [anon_sym_lazy] = ACTIONS(5072), - [anon_sym_assert] = ACTIONS(5072), - [anon_sym_upcast] = ACTIONS(5072), - [anon_sym_downcast] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_fun] = ACTIONS(5072), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_match_BANG] = ACTIONS(5070), - [anon_sym_function] = ACTIONS(5072), - [anon_sym_use] = ACTIONS(5072), - [anon_sym_use_BANG] = ACTIONS(5070), - [anon_sym_do_BANG] = ACTIONS(5070), - [anon_sym_begin] = ACTIONS(5072), - [aux_sym_char_token1] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE] = ACTIONS(5072), - [anon_sym_AT_DQUOTE] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [sym_bool] = ACTIONS(5072), - [sym_unit] = ACTIONS(5070), - [anon_sym_LPAREN_PIPE] = ACTIONS(5072), - [sym_op_identifier] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5072), - [anon_sym_PLUS_DOT] = ACTIONS(5070), - [anon_sym_DASH_DOT] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [aux_sym_prefix_op_token1] = ACTIONS(5070), - [sym_int] = ACTIONS(5072), - [sym_xint] = ACTIONS(5070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5070), - [sym__newline] = ACTIONS(5070), - [sym__dedent] = ACTIONS(5070), + [aux_sym__function_or_value_defns_repeat1] = STATE(3129), + [sym_identifier] = ACTIONS(4951), + [anon_sym_return] = ACTIONS(4951), + [anon_sym_do] = ACTIONS(4951), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_let] = ACTIONS(4951), + [anon_sym_let_BANG] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LBRACK_PIPE] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LT_AT] = ACTIONS(4951), + [anon_sym_LT_AT_AT] = ACTIONS(4949), + [anon_sym_LBRACE_PIPE] = ACTIONS(4949), + [anon_sym_new] = ACTIONS(4951), + [anon_sym_return_BANG] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4951), + [anon_sym_yield_BANG] = ACTIONS(4949), + [anon_sym_lazy] = ACTIONS(4951), + [anon_sym_assert] = ACTIONS(4951), + [anon_sym_upcast] = ACTIONS(4951), + [anon_sym_downcast] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4951), + [anon_sym_while] = ACTIONS(4951), + [anon_sym_if] = ACTIONS(4951), + [anon_sym_fun] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4951), + [anon_sym_match] = ACTIONS(4951), + [anon_sym_match_BANG] = ACTIONS(4949), + [anon_sym_function] = ACTIONS(4951), + [anon_sym_use] = ACTIONS(4951), + [anon_sym_use_BANG] = ACTIONS(4949), + [anon_sym_do_BANG] = ACTIONS(4949), + [anon_sym_begin] = ACTIONS(4951), + [aux_sym_char_token1] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [anon_sym_AT_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [sym_bool] = ACTIONS(4951), + [sym_unit] = ACTIONS(4949), + [anon_sym_LPAREN_PIPE] = ACTIONS(4951), + [sym_op_identifier] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_PLUS_DOT] = ACTIONS(4949), + [anon_sym_DASH_DOT] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [aux_sym_prefix_op_token1] = ACTIONS(4949), + [sym_int] = ACTIONS(4951), + [sym_xint] = ACTIONS(4949), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4949), + [sym__newline] = ACTIONS(4949), + [sym__dedent] = ACTIONS(4949), }, [3130] = { [sym_block_comment] = STATE(3130), [sym_compiler_directive_decl] = STATE(3130), [sym_fsi_directive_decl] = STATE(3130), [sym_preproc_line] = STATE(3130), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [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_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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5124), - [sym__newline] = ACTIONS(5124), - [sym__dedent] = ACTIONS(5124), + [sym_identifier] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_let_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACK_PIPE] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LT_AT] = ACTIONS(3068), + [anon_sym_LT_AT_AT] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_return_BANG] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_yield_BANG] = ACTIONS(3066), + [anon_sym_lazy] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_upcast] = ACTIONS(3068), + [anon_sym_downcast] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_fun] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_match_BANG] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_use_BANG] = ACTIONS(3066), + [anon_sym_do_BANG] = ACTIONS(3066), + [anon_sym_begin] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_LT2] = ACTIONS(3068), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3066), + [aux_sym_char_token1] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_AT_DQUOTE] = ACTIONS(3066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), + [sym_bool] = ACTIONS(3068), + [sym_unit] = ACTIONS(3066), + [anon_sym_LPAREN_PIPE] = ACTIONS(3068), + [sym_op_identifier] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_PLUS_DOT] = ACTIONS(3066), + [anon_sym_DASH_DOT] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_prefix_op_token1] = ACTIONS(3066), + [sym_int] = ACTIONS(3068), + [sym_xint] = ACTIONS(3066), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3066), }, [3131] = { [sym_block_comment] = STATE(3131), [sym_compiler_directive_decl] = STATE(3131), [sym_fsi_directive_decl] = STATE(3131), [sym_preproc_line] = STATE(3131), - [aux_sym__function_or_value_defns_repeat1] = STATE(3131), - [sym_identifier] = ACTIONS(5015), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_do] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5620), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_let_BANG] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_PIPE] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LT_AT] = ACTIONS(5015), - [anon_sym_LT_AT_AT] = ACTIONS(5013), - [anon_sym_LBRACE_PIPE] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_return_BANG] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_yield_BANG] = ACTIONS(5013), - [anon_sym_lazy] = ACTIONS(5015), - [anon_sym_assert] = ACTIONS(5015), - [anon_sym_upcast] = ACTIONS(5015), - [anon_sym_downcast] = ACTIONS(5015), - [anon_sym_for] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_match] = ACTIONS(5015), - [anon_sym_match_BANG] = ACTIONS(5013), - [anon_sym_function] = ACTIONS(5015), - [anon_sym_use] = ACTIONS(5015), - [anon_sym_use_BANG] = ACTIONS(5013), - [anon_sym_do_BANG] = ACTIONS(5013), - [anon_sym_begin] = ACTIONS(5015), - [aux_sym_char_token1] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_AT_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [sym_bool] = ACTIONS(5015), - [sym_unit] = ACTIONS(5013), - [anon_sym_LPAREN_PIPE] = ACTIONS(5015), - [sym_op_identifier] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_PLUS_DOT] = ACTIONS(5013), - [anon_sym_DASH_DOT] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5013), - [aux_sym_prefix_op_token1] = ACTIONS(5013), - [sym_int] = ACTIONS(5015), - [sym_xint] = ACTIONS(5013), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5013), - [anon_sym_POUNDendif] = ACTIONS(5013), + [aux_sym__function_or_value_defns_repeat1] = STATE(3117), + [sym_identifier] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_do] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(5612), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_let_BANG] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_PIPE] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LT_AT] = ACTIONS(4972), + [anon_sym_LT_AT_AT] = ACTIONS(4970), + [anon_sym_LBRACE_PIPE] = ACTIONS(4970), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_return_BANG] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_yield_BANG] = ACTIONS(4970), + [anon_sym_lazy] = ACTIONS(4972), + [anon_sym_assert] = ACTIONS(4972), + [anon_sym_upcast] = ACTIONS(4972), + [anon_sym_downcast] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_match_BANG] = ACTIONS(4970), + [anon_sym_function] = ACTIONS(4972), + [anon_sym_use] = ACTIONS(4972), + [anon_sym_use_BANG] = ACTIONS(4970), + [anon_sym_do_BANG] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4972), + [aux_sym_char_token1] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_AT_DQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [sym_bool] = ACTIONS(4972), + [sym_unit] = ACTIONS(4970), + [anon_sym_LPAREN_PIPE] = ACTIONS(4972), + [sym_op_identifier] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_PLUS_DOT] = ACTIONS(4970), + [anon_sym_DASH_DOT] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [aux_sym_prefix_op_token1] = ACTIONS(4970), + [sym_int] = ACTIONS(4972), + [sym_xint] = ACTIONS(4970), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4970), + [sym__newline] = ACTIONS(4970), + [sym__dedent] = ACTIONS(4970), }, [3132] = { [sym_block_comment] = STATE(3132), [sym_compiler_directive_decl] = STATE(3132), [sym_fsi_directive_decl] = STATE(3132), [sym_preproc_line] = STATE(3132), - [sym_identifier] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_do] = ACTIONS(5112), - [anon_sym_let] = ACTIONS(5112), - [anon_sym_let_BANG] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), + [sym_identifier] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_do] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_LBRACK_PIPE] = ACTIONS(5110), - [anon_sym_LBRACE] = ACTIONS(5112), - [anon_sym_LT_AT] = ACTIONS(5112), - [anon_sym_LT_AT_AT] = ACTIONS(5110), - [anon_sym_LBRACE_PIPE] = ACTIONS(5110), - [anon_sym_new] = ACTIONS(5112), - [anon_sym_return_BANG] = ACTIONS(5110), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_yield_BANG] = ACTIONS(5110), - [anon_sym_lazy] = ACTIONS(5112), - [anon_sym_assert] = ACTIONS(5112), - [anon_sym_upcast] = ACTIONS(5112), - [anon_sym_downcast] = ACTIONS(5112), - [anon_sym_for] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_match] = ACTIONS(5112), - [anon_sym_match_BANG] = ACTIONS(5110), - [anon_sym_function] = ACTIONS(5112), - [anon_sym_use] = ACTIONS(5112), - [anon_sym_use_BANG] = ACTIONS(5110), - [anon_sym_do_BANG] = ACTIONS(5110), - [anon_sym_begin] = ACTIONS(5112), - [aux_sym_char_token1] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), - [anon_sym_DQUOTE] = ACTIONS(5112), - [anon_sym_AT_DQUOTE] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [sym_bool] = ACTIONS(5112), - [sym_unit] = ACTIONS(5110), - [anon_sym_LPAREN_PIPE] = ACTIONS(5112), - [sym_op_identifier] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_PLUS_DOT] = ACTIONS(5110), - [anon_sym_DASH_DOT] = ACTIONS(5110), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [aux_sym_prefix_op_token1] = ACTIONS(5110), - [sym_int] = ACTIONS(5112), - [sym_xint] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LT_AT] = ACTIONS(3088), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_upcast] = ACTIONS(3088), + [anon_sym_downcast] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_LT2] = ACTIONS(3088), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3090), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3088), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3088), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [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(3088), + [sym_xint] = ACTIONS(3090), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -362700,143 +363434,145 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(5110), - [anon_sym_POUNDendif] = ACTIONS(5110), - [anon_sym_POUNDelse] = ACTIONS(5110), + [anon_sym_POUNDif] = ACTIONS(3090), }, [3133] = { [sym_block_comment] = STATE(3133), [sym_compiler_directive_decl] = STATE(3133), [sym_fsi_directive_decl] = STATE(3133), [sym_preproc_line] = STATE(3133), - [sym_identifier] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_let_BANG] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3708), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_LT_AT] = ACTIONS(3708), - [anon_sym_LT_AT_AT] = ACTIONS(3706), - [anon_sym_LBRACE_PIPE] = ACTIONS(3706), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_return_BANG] = ACTIONS(3706), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_yield_BANG] = ACTIONS(3706), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_assert] = ACTIONS(3708), - [anon_sym_upcast] = ACTIONS(3708), - [anon_sym_downcast] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_fun] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3708), - [anon_sym_match_BANG] = ACTIONS(3706), - [anon_sym_function] = ACTIONS(3708), - [anon_sym_GT] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3708), - [anon_sym_use_BANG] = ACTIONS(3706), - [anon_sym_do_BANG] = ACTIONS(3706), - [anon_sym_begin] = ACTIONS(3708), - [aux_sym_char_token1] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_AT_DQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym_bool] = ACTIONS(3708), - [sym_unit] = ACTIONS(3706), - [anon_sym_LPAREN_PIPE] = ACTIONS(3708), - [sym_op_identifier] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS_DOT] = ACTIONS(3706), - [anon_sym_DASH_DOT] = ACTIONS(3706), - [anon_sym_PERCENT] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_prefix_op_token1] = ACTIONS(3706), - [sym_int] = ACTIONS(3708), - [sym_xint] = ACTIONS(3706), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_let_BANG] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_PIPE] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LT_AT] = ACTIONS(3174), + [anon_sym_LT_AT_AT] = ACTIONS(3176), + [anon_sym_LBRACE_PIPE] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_return_BANG] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_yield_BANG] = ACTIONS(3176), + [anon_sym_lazy] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_upcast] = ACTIONS(3174), + [anon_sym_downcast] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_match_BANG] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3174), + [anon_sym_use_BANG] = ACTIONS(3176), + [anon_sym_do_BANG] = ACTIONS(3176), + [anon_sym_begin] = ACTIONS(3174), + [aux_sym_char_token1] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_AT_DQUOTE] = ACTIONS(3176), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3176), + [sym_bool] = ACTIONS(3174), + [sym_unit] = ACTIONS(3176), + [anon_sym_LPAREN_PIPE] = ACTIONS(3174), + [sym_op_identifier] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_DOT] = ACTIONS(3176), + [anon_sym_DASH_DOT] = ACTIONS(3176), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [aux_sym_prefix_op_token1] = ACTIONS(3176), + [sym_int] = ACTIONS(3174), + [sym_xint] = ACTIONS(3176), + [anon_sym_f] = ACTIONS(3174), + [aux_sym_decimal_token1] = ACTIONS(3174), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3176), }, [3134] = { [sym_block_comment] = STATE(3134), [sym_compiler_directive_decl] = STATE(3134), [sym_fsi_directive_decl] = STATE(3134), [sym_preproc_line] = STATE(3134), - [sym_identifier] = ACTIONS(3609), - [anon_sym_return] = ACTIONS(3609), - [anon_sym_do] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_let_BANG] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3607), - [anon_sym_null] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LT_AT] = ACTIONS(3609), - [anon_sym_LT_AT_AT] = ACTIONS(3607), - [anon_sym_LBRACE_PIPE] = ACTIONS(3607), - [anon_sym_new] = ACTIONS(3609), - [anon_sym_return_BANG] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3609), - [anon_sym_yield_BANG] = ACTIONS(3607), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_assert] = ACTIONS(3609), - [anon_sym_upcast] = ACTIONS(3609), - [anon_sym_downcast] = ACTIONS(3609), - [anon_sym_for] = ACTIONS(3609), - [anon_sym_while] = ACTIONS(3609), - [anon_sym_if] = ACTIONS(3609), - [anon_sym_fun] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3609), - [anon_sym_match] = ACTIONS(3609), - [anon_sym_match_BANG] = ACTIONS(3607), - [anon_sym_function] = ACTIONS(3609), - [anon_sym_GT] = ACTIONS(3607), - [anon_sym_use] = ACTIONS(3609), - [anon_sym_use_BANG] = ACTIONS(3607), - [anon_sym_do_BANG] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3609), - [aux_sym_char_token1] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [anon_sym_AT_DQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3607), - [sym_bool] = ACTIONS(3609), - [sym_unit] = ACTIONS(3607), - [anon_sym_LPAREN_PIPE] = ACTIONS(3609), - [sym_op_identifier] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_PLUS_DOT] = ACTIONS(3607), - [anon_sym_DASH_DOT] = ACTIONS(3607), - [anon_sym_PERCENT] = ACTIONS(3607), - [anon_sym_AMP_AMP] = ACTIONS(3607), - [anon_sym_TILDE] = ACTIONS(3607), - [aux_sym_prefix_op_token1] = ACTIONS(3607), - [sym_int] = ACTIONS(3609), - [sym_xint] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_lazy] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_upcast] = ACTIONS(3048), + [anon_sym_downcast] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_use_BANG] = ACTIONS(3054), + [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_begin] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_LT2] = ACTIONS(3048), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3054), + [aux_sym_char_token1] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_AT_DQUOTE] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [sym_bool] = ACTIONS(3048), + [sym_unit] = ACTIONS(3054), + [anon_sym_LPAREN_PIPE] = ACTIONS(3048), + [sym_op_identifier] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_prefix_op_token1] = ACTIONS(3054), + [sym_int] = ACTIONS(3048), + [sym_xint] = ACTIONS(3054), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -362844,70 +363580,72 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3607), + [anon_sym_POUNDif] = ACTIONS(3054), }, [3135] = { [sym_block_comment] = STATE(3135), [sym_compiler_directive_decl] = STATE(3135), [sym_fsi_directive_decl] = STATE(3135), [sym_preproc_line] = STATE(3135), - [sym_identifier] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_let_BANG] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_let_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LBRACK_PIPE] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LT_AT] = ACTIONS(3605), - [anon_sym_LT_AT_AT] = ACTIONS(3603), - [anon_sym_LBRACE_PIPE] = ACTIONS(3603), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_return_BANG] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3605), - [anon_sym_yield_BANG] = ACTIONS(3603), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_assert] = ACTIONS(3605), - [anon_sym_upcast] = ACTIONS(3605), - [anon_sym_downcast] = ACTIONS(3605), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_fun] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3605), - [anon_sym_match_BANG] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3605), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_use] = ACTIONS(3605), - [anon_sym_use_BANG] = ACTIONS(3603), - [anon_sym_do_BANG] = ACTIONS(3603), - [anon_sym_begin] = ACTIONS(3605), - [aux_sym_char_token1] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [anon_sym_AT_DQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3603), - [sym_bool] = ACTIONS(3605), - [sym_unit] = ACTIONS(3603), - [anon_sym_LPAREN_PIPE] = ACTIONS(3605), - [sym_op_identifier] = ACTIONS(3603), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS_DOT] = ACTIONS(3603), - [anon_sym_DASH_DOT] = ACTIONS(3603), - [anon_sym_PERCENT] = ACTIONS(3603), - [anon_sym_AMP_AMP] = ACTIONS(3603), - [anon_sym_TILDE] = ACTIONS(3603), - [aux_sym_prefix_op_token1] = ACTIONS(3603), - [sym_int] = ACTIONS(3605), - [sym_xint] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACK_PIPE] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LT_AT] = ACTIONS(3072), + [anon_sym_LT_AT_AT] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_return_BANG] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_yield_BANG] = ACTIONS(3070), + [anon_sym_lazy] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_upcast] = ACTIONS(3072), + [anon_sym_downcast] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_match_BANG] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_use_BANG] = ACTIONS(3070), + [anon_sym_do_BANG] = ACTIONS(3070), + [anon_sym_begin] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_LT2] = ACTIONS(3072), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3070), + [aux_sym_char_token1] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_AT_DQUOTE] = ACTIONS(3070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), + [sym_bool] = ACTIONS(3072), + [sym_unit] = ACTIONS(3070), + [anon_sym_LPAREN_PIPE] = ACTIONS(3072), + [sym_op_identifier] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_PLUS_DOT] = ACTIONS(3070), + [anon_sym_DASH_DOT] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_prefix_op_token1] = ACTIONS(3070), + [sym_int] = ACTIONS(3072), + [sym_xint] = ACTIONS(3070), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -362915,141 +363653,72 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3603), + [anon_sym_POUNDif] = ACTIONS(3070), }, [3136] = { [sym_block_comment] = STATE(3136), [sym_compiler_directive_decl] = STATE(3136), [sym_fsi_directive_decl] = STATE(3136), [sym_preproc_line] = STATE(3136), - [sym_identifier] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_let] = ACTIONS(3554), - [anon_sym_let_BANG] = ACTIONS(3552), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_COMMA] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LBRACK_PIPE] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_LT_AT] = ACTIONS(3554), - [anon_sym_LT_AT_AT] = ACTIONS(3552), - [anon_sym_LBRACE_PIPE] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_return_BANG] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_yield_BANG] = ACTIONS(3552), - [anon_sym_lazy] = ACTIONS(3554), - [anon_sym_assert] = ACTIONS(3554), - [anon_sym_upcast] = ACTIONS(3554), - [anon_sym_downcast] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [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(3552), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_GT] = ACTIONS(3552), - [anon_sym_use] = ACTIONS(3554), - [anon_sym_use_BANG] = ACTIONS(3552), - [anon_sym_do_BANG] = ACTIONS(3552), - [anon_sym_begin] = ACTIONS(3554), - [aux_sym_char_token1] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_AT_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3552), - [sym_bool] = ACTIONS(3554), - [sym_unit] = ACTIONS(3552), - [anon_sym_LPAREN_PIPE] = ACTIONS(3554), - [sym_op_identifier] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_PLUS_DOT] = ACTIONS(3552), - [anon_sym_DASH_DOT] = ACTIONS(3552), - [anon_sym_PERCENT] = ACTIONS(3552), - [anon_sym_AMP_AMP] = ACTIONS(3552), - [anon_sym_TILDE] = ACTIONS(3552), - [aux_sym_prefix_op_token1] = ACTIONS(3552), - [sym_int] = ACTIONS(3554), - [sym_xint] = ACTIONS(3552), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3552), - }, - [3137] = { - [sym_block_comment] = STATE(3137), - [sym_compiler_directive_decl] = STATE(3137), - [sym_fsi_directive_decl] = STATE(3137), - [sym_preproc_line] = STATE(3137), - [sym_identifier] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_do] = ACTIONS(3663), - [anon_sym_let] = ACTIONS(3663), - [anon_sym_let_BANG] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3663), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LBRACK_PIPE] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LT_AT] = ACTIONS(3663), - [anon_sym_LT_AT_AT] = ACTIONS(3661), - [anon_sym_LBRACE_PIPE] = ACTIONS(3661), - [anon_sym_new] = ACTIONS(3663), - [anon_sym_return_BANG] = ACTIONS(3661), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_yield_BANG] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3663), - [anon_sym_assert] = ACTIONS(3663), - [anon_sym_upcast] = ACTIONS(3663), - [anon_sym_downcast] = ACTIONS(3663), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_fun] = ACTIONS(3663), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_match_BANG] = ACTIONS(3661), - [anon_sym_function] = ACTIONS(3663), - [anon_sym_GT] = ACTIONS(3661), - [anon_sym_use] = ACTIONS(3663), - [anon_sym_use_BANG] = ACTIONS(3661), - [anon_sym_do_BANG] = ACTIONS(3661), - [anon_sym_begin] = ACTIONS(3663), - [aux_sym_char_token1] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [anon_sym_AT_DQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3661), - [sym_bool] = ACTIONS(3663), - [sym_unit] = ACTIONS(3661), - [anon_sym_LPAREN_PIPE] = ACTIONS(3663), - [sym_op_identifier] = ACTIONS(3661), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_PLUS_DOT] = ACTIONS(3661), - [anon_sym_DASH_DOT] = ACTIONS(3661), - [anon_sym_PERCENT] = ACTIONS(3661), - [anon_sym_AMP_AMP] = ACTIONS(3661), - [anon_sym_TILDE] = ACTIONS(3661), - [aux_sym_prefix_op_token1] = ACTIONS(3661), - [sym_int] = ACTIONS(3663), - [sym_xint] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_let_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACK_PIPE] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_LT_AT] = ACTIONS(3084), + [anon_sym_LT_AT_AT] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_return_BANG] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_yield_BANG] = ACTIONS(3082), + [anon_sym_lazy] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_upcast] = ACTIONS(3084), + [anon_sym_downcast] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_match_BANG] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_use_BANG] = ACTIONS(3082), + [anon_sym_do_BANG] = ACTIONS(3082), + [anon_sym_begin] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LT2] = ACTIONS(5624), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3082), + [aux_sym_char_token1] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_AT_DQUOTE] = ACTIONS(3082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3082), + [sym_bool] = ACTIONS(3084), + [sym_unit] = ACTIONS(3082), + [anon_sym_LPAREN_PIPE] = ACTIONS(3084), + [sym_op_identifier] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_PLUS_DOT] = ACTIONS(3082), + [anon_sym_DASH_DOT] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_prefix_op_token1] = ACTIONS(3082), + [sym_int] = ACTIONS(3084), + [sym_xint] = ACTIONS(3082), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -363057,70 +363726,141 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3661), + [anon_sym_POUNDif] = ACTIONS(3082), + }, + [3137] = { + [sym_block_comment] = STATE(3137), + [sym_compiler_directive_decl] = STATE(3137), + [sym_fsi_directive_decl] = STATE(3137), + [sym_preproc_line] = STATE(3137), + [sym_identifier] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5128), + [anon_sym_do] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_let_BANG] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LBRACK_PIPE] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LT_AT] = ACTIONS(5128), + [anon_sym_LT_AT_AT] = ACTIONS(5126), + [anon_sym_LBRACE_PIPE] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5128), + [anon_sym_return_BANG] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5128), + [anon_sym_yield_BANG] = ACTIONS(5126), + [anon_sym_lazy] = ACTIONS(5128), + [anon_sym_assert] = ACTIONS(5128), + [anon_sym_upcast] = ACTIONS(5128), + [anon_sym_downcast] = ACTIONS(5128), + [anon_sym_for] = ACTIONS(5128), + [anon_sym_while] = ACTIONS(5128), + [anon_sym_if] = ACTIONS(5128), + [anon_sym_fun] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5128), + [anon_sym_match_BANG] = ACTIONS(5126), + [anon_sym_function] = ACTIONS(5128), + [anon_sym_use] = ACTIONS(5128), + [anon_sym_use_BANG] = ACTIONS(5126), + [anon_sym_do_BANG] = ACTIONS(5126), + [anon_sym_begin] = ACTIONS(5128), + [aux_sym_char_token1] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [anon_sym_AT_DQUOTE] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [sym_bool] = ACTIONS(5128), + [sym_unit] = ACTIONS(5126), + [anon_sym_LPAREN_PIPE] = ACTIONS(5128), + [sym_op_identifier] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS_DOT] = ACTIONS(5126), + [anon_sym_DASH_DOT] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [aux_sym_prefix_op_token1] = ACTIONS(5126), + [sym_int] = ACTIONS(5128), + [sym_xint] = ACTIONS(5126), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5126), + [anon_sym_POUNDendif] = ACTIONS(5126), + [anon_sym_POUNDelse] = ACTIONS(5126), }, [3138] = { [sym_block_comment] = STATE(3138), [sym_compiler_directive_decl] = STATE(3138), [sym_fsi_directive_decl] = STATE(3138), [sym_preproc_line] = STATE(3138), - [sym_identifier] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_let_BANG] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_null] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_LT_AT] = ACTIONS(3399), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_return_BANG] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_yield_BANG] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_upcast] = ACTIONS(3399), - [anon_sym_downcast] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_fun] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_match_BANG] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3399), - [anon_sym_use_BANG] = ACTIONS(3397), - [anon_sym_do_BANG] = ACTIONS(3397), - [anon_sym_begin] = ACTIONS(3399), - [aux_sym_char_token1] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_AT_DQUOTE] = ACTIONS(3397), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3397), - [sym_bool] = ACTIONS(3399), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3399), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [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(3397), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [sym_int] = ACTIONS(3399), - [sym_xint] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_and] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3219), + [anon_sym_DASH_DOT] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3219), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -363128,1205 +363868,1217 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3397), + [anon_sym_POUNDif] = ACTIONS(3219), + [sym__newline] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3219), }, [3139] = { [sym_block_comment] = STATE(3139), [sym_compiler_directive_decl] = STATE(3139), [sym_fsi_directive_decl] = STATE(3139), [sym_preproc_line] = STATE(3139), - [sym_identifier] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_let_BANG] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_null] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LT_AT] = ACTIONS(3403), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_return_BANG] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_yield_BANG] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_upcast] = ACTIONS(3403), - [anon_sym_downcast] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_fun] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_match_BANG] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3403), - [anon_sym_use_BANG] = ACTIONS(3401), - [anon_sym_do_BANG] = ACTIONS(3401), - [anon_sym_begin] = ACTIONS(3403), - [aux_sym_char_token1] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_AT_DQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3401), - [sym_bool] = ACTIONS(3403), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3403), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [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(3401), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [sym_int] = ACTIONS(3403), - [sym_xint] = ACTIONS(3401), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3401), + [aux_sym__function_or_value_defns_repeat1] = STATE(3147), + [sym_identifier] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_do] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_let_BANG] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_PIPE] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LT_AT] = ACTIONS(4960), + [anon_sym_LT_AT_AT] = ACTIONS(4958), + [anon_sym_LBRACE_PIPE] = ACTIONS(4958), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_return_BANG] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_yield_BANG] = ACTIONS(4958), + [anon_sym_lazy] = ACTIONS(4960), + [anon_sym_assert] = ACTIONS(4960), + [anon_sym_upcast] = ACTIONS(4960), + [anon_sym_downcast] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_match_BANG] = ACTIONS(4958), + [anon_sym_function] = ACTIONS(4960), + [anon_sym_use] = ACTIONS(4960), + [anon_sym_use_BANG] = ACTIONS(4958), + [anon_sym_do_BANG] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4960), + [aux_sym_char_token1] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_AT_DQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [sym_bool] = ACTIONS(4960), + [sym_unit] = ACTIONS(4958), + [anon_sym_LPAREN_PIPE] = ACTIONS(4960), + [sym_op_identifier] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_PLUS_DOT] = ACTIONS(4958), + [anon_sym_DASH_DOT] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [aux_sym_prefix_op_token1] = ACTIONS(4958), + [sym_int] = ACTIONS(4960), + [sym_xint] = ACTIONS(4958), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4958), + [anon_sym_POUNDendif] = ACTIONS(4958), }, [3140] = { [sym_block_comment] = STATE(3140), [sym_compiler_directive_decl] = STATE(3140), [sym_fsi_directive_decl] = STATE(3140), [sym_preproc_line] = STATE(3140), - [sym_identifier] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_let_BANG] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_LT_AT] = ACTIONS(3415), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_return_BANG] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_yield_BANG] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_upcast] = ACTIONS(3415), - [anon_sym_downcast] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_fun] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_match_BANG] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3415), - [anon_sym_use_BANG] = ACTIONS(3413), - [anon_sym_do_BANG] = ACTIONS(3413), - [anon_sym_begin] = ACTIONS(3415), - [aux_sym_char_token1] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_AT_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3413), - [sym_bool] = ACTIONS(3415), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3415), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [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(3413), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [sym_int] = ACTIONS(3415), - [sym_xint] = ACTIONS(3413), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3413), + [sym_identifier] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5116), + [anon_sym_do] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_let_BANG] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LBRACK_PIPE] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_LT_AT] = ACTIONS(5116), + [anon_sym_LT_AT_AT] = ACTIONS(5114), + [anon_sym_LBRACE_PIPE] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5116), + [anon_sym_return_BANG] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5116), + [anon_sym_yield_BANG] = ACTIONS(5114), + [anon_sym_lazy] = ACTIONS(5116), + [anon_sym_assert] = ACTIONS(5116), + [anon_sym_upcast] = ACTIONS(5116), + [anon_sym_downcast] = ACTIONS(5116), + [anon_sym_for] = ACTIONS(5116), + [anon_sym_while] = ACTIONS(5116), + [anon_sym_if] = ACTIONS(5116), + [anon_sym_fun] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5116), + [anon_sym_match_BANG] = ACTIONS(5114), + [anon_sym_function] = ACTIONS(5116), + [anon_sym_use] = ACTIONS(5116), + [anon_sym_use_BANG] = ACTIONS(5114), + [anon_sym_do_BANG] = ACTIONS(5114), + [anon_sym_begin] = ACTIONS(5116), + [aux_sym_char_token1] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_AT_DQUOTE] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [sym_bool] = ACTIONS(5116), + [sym_unit] = ACTIONS(5114), + [anon_sym_LPAREN_PIPE] = ACTIONS(5116), + [sym_op_identifier] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS_DOT] = ACTIONS(5114), + [anon_sym_DASH_DOT] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [aux_sym_prefix_op_token1] = ACTIONS(5114), + [sym_int] = ACTIONS(5116), + [sym_xint] = ACTIONS(5114), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5114), + [sym__newline] = ACTIONS(5114), + [sym__dedent] = ACTIONS(5114), }, [3141] = { [sym_block_comment] = STATE(3141), [sym_compiler_directive_decl] = STATE(3141), [sym_fsi_directive_decl] = STATE(3141), [sym_preproc_line] = STATE(3141), - [sym_identifier] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_let_BANG] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_LT_AT] = ACTIONS(3419), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_return_BANG] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_yield_BANG] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_upcast] = ACTIONS(3419), - [anon_sym_downcast] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_fun] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_match_BANG] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3419), - [anon_sym_use_BANG] = ACTIONS(3417), - [anon_sym_do_BANG] = ACTIONS(3417), - [anon_sym_begin] = ACTIONS(3419), - [aux_sym_char_token1] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_AT_DQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3417), - [sym_bool] = ACTIONS(3419), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [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(3417), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [sym_int] = ACTIONS(3419), - [sym_xint] = ACTIONS(3417), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3417), + [sym_identifier] = ACTIONS(5064), + [anon_sym_return] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_PIPE] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LT_AT] = ACTIONS(5064), + [anon_sym_LT_AT_AT] = ACTIONS(5062), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5062), + [sym__newline] = ACTIONS(5062), + [sym__dedent] = ACTIONS(5062), }, [3142] = { [sym_block_comment] = STATE(3142), [sym_compiler_directive_decl] = STATE(3142), [sym_fsi_directive_decl] = STATE(3142), [sym_preproc_line] = STATE(3142), - [sym_identifier] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_let_BANG] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_null] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_LT_AT] = ACTIONS(3423), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_return_BANG] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_yield_BANG] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_upcast] = ACTIONS(3423), - [anon_sym_downcast] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_fun] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_match_BANG] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3423), - [anon_sym_use_BANG] = ACTIONS(3421), - [anon_sym_do_BANG] = ACTIONS(3421), - [anon_sym_begin] = ACTIONS(3423), - [aux_sym_char_token1] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_AT_DQUOTE] = ACTIONS(3421), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3421), - [sym_bool] = ACTIONS(3423), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3423), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [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(3421), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [sym_int] = ACTIONS(3423), - [sym_xint] = ACTIONS(3421), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3421), + [aux_sym__function_or_value_defns_repeat1] = STATE(3139), + [sym_identifier] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_do] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(5626), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_let_BANG] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_PIPE] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LT_AT] = ACTIONS(4972), + [anon_sym_LT_AT_AT] = ACTIONS(4970), + [anon_sym_LBRACE_PIPE] = ACTIONS(4970), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_return_BANG] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_yield_BANG] = ACTIONS(4970), + [anon_sym_lazy] = ACTIONS(4972), + [anon_sym_assert] = ACTIONS(4972), + [anon_sym_upcast] = ACTIONS(4972), + [anon_sym_downcast] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_match_BANG] = ACTIONS(4970), + [anon_sym_function] = ACTIONS(4972), + [anon_sym_use] = ACTIONS(4972), + [anon_sym_use_BANG] = ACTIONS(4970), + [anon_sym_do_BANG] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4972), + [aux_sym_char_token1] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_AT_DQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [sym_bool] = ACTIONS(4972), + [sym_unit] = ACTIONS(4970), + [anon_sym_LPAREN_PIPE] = ACTIONS(4972), + [sym_op_identifier] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_PLUS_DOT] = ACTIONS(4970), + [anon_sym_DASH_DOT] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [aux_sym_prefix_op_token1] = ACTIONS(4970), + [sym_int] = ACTIONS(4972), + [sym_xint] = ACTIONS(4970), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4970), + [anon_sym_POUNDendif] = ACTIONS(4970), }, [3143] = { [sym_block_comment] = STATE(3143), [sym_compiler_directive_decl] = STATE(3143), [sym_fsi_directive_decl] = STATE(3143), [sym_preproc_line] = STATE(3143), - [sym_identifier] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_let_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LT_AT] = ACTIONS(3427), - [anon_sym_LT_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACE_PIPE] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_return_BANG] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_yield_BANG] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_upcast] = ACTIONS(3427), - [anon_sym_downcast] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_fun] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_match_BANG] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_use] = ACTIONS(3427), - [anon_sym_use_BANG] = ACTIONS(3425), - [anon_sym_do_BANG] = ACTIONS(3425), - [anon_sym_begin] = ACTIONS(3427), - [aux_sym_char_token1] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_AT_DQUOTE] = ACTIONS(3425), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3425), - [sym_bool] = ACTIONS(3427), - [sym_unit] = ACTIONS(3425), - [anon_sym_LPAREN_PIPE] = ACTIONS(3427), - [sym_op_identifier] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [anon_sym_PERCENT] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [aux_sym_prefix_op_token1] = ACTIONS(3425), - [sym_int] = ACTIONS(3427), - [sym_xint] = ACTIONS(3425), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3425), + [sym_identifier] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5128), + [anon_sym_do] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_let_BANG] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LBRACK_PIPE] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LT_AT] = ACTIONS(5128), + [anon_sym_LT_AT_AT] = ACTIONS(5126), + [anon_sym_LBRACE_PIPE] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5128), + [anon_sym_return_BANG] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5128), + [anon_sym_yield_BANG] = ACTIONS(5126), + [anon_sym_lazy] = ACTIONS(5128), + [anon_sym_assert] = ACTIONS(5128), + [anon_sym_upcast] = ACTIONS(5128), + [anon_sym_downcast] = ACTIONS(5128), + [anon_sym_for] = ACTIONS(5128), + [anon_sym_while] = ACTIONS(5128), + [anon_sym_if] = ACTIONS(5128), + [anon_sym_fun] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5128), + [anon_sym_match_BANG] = ACTIONS(5126), + [anon_sym_function] = ACTIONS(5128), + [anon_sym_use] = ACTIONS(5128), + [anon_sym_use_BANG] = ACTIONS(5126), + [anon_sym_do_BANG] = ACTIONS(5126), + [anon_sym_begin] = ACTIONS(5128), + [aux_sym_char_token1] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [anon_sym_AT_DQUOTE] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [sym_bool] = ACTIONS(5128), + [sym_unit] = ACTIONS(5126), + [anon_sym_LPAREN_PIPE] = ACTIONS(5128), + [sym_op_identifier] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS_DOT] = ACTIONS(5126), + [anon_sym_DASH_DOT] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [aux_sym_prefix_op_token1] = ACTIONS(5126), + [sym_int] = ACTIONS(5128), + [sym_xint] = ACTIONS(5126), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5126), + [sym__newline] = ACTIONS(5126), + [sym__dedent] = ACTIONS(5126), }, [3144] = { [sym_block_comment] = STATE(3144), [sym_compiler_directive_decl] = STATE(3144), [sym_fsi_directive_decl] = STATE(3144), [sym_preproc_line] = STATE(3144), - [sym_identifier] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_let_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_LT_AT] = ACTIONS(3431), - [anon_sym_LT_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACE_PIPE] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_return_BANG] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_yield_BANG] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_upcast] = ACTIONS(3431), - [anon_sym_downcast] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_fun] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_match_BANG] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_use] = ACTIONS(3431), - [anon_sym_use_BANG] = ACTIONS(3429), - [anon_sym_do_BANG] = ACTIONS(3429), - [anon_sym_begin] = ACTIONS(3431), - [aux_sym_char_token1] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_AT_DQUOTE] = ACTIONS(3429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3429), - [sym_bool] = ACTIONS(3431), - [sym_unit] = ACTIONS(3429), - [anon_sym_LPAREN_PIPE] = ACTIONS(3431), - [sym_op_identifier] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [aux_sym_prefix_op_token1] = ACTIONS(3429), - [sym_int] = ACTIONS(3431), - [sym_xint] = ACTIONS(3429), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3429), + [sym_identifier] = ACTIONS(5064), + [anon_sym_return] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_PIPE] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LT_AT] = ACTIONS(5064), + [anon_sym_LT_AT_AT] = ACTIONS(5062), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5062), + [anon_sym_POUNDendif] = ACTIONS(5062), + [anon_sym_POUNDelse] = ACTIONS(5062), }, [3145] = { [sym_block_comment] = STATE(3145), [sym_compiler_directive_decl] = STATE(3145), [sym_fsi_directive_decl] = STATE(3145), [sym_preproc_line] = STATE(3145), - [sym_identifier] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_let_BANG] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_null] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LBRACK_PIPE] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LT_AT] = ACTIONS(3454), - [anon_sym_LT_AT_AT] = ACTIONS(3452), - [anon_sym_LBRACE_PIPE] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_return_BANG] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_yield_BANG] = ACTIONS(3452), - [anon_sym_lazy] = ACTIONS(3454), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_upcast] = ACTIONS(3454), - [anon_sym_downcast] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_fun] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_match] = ACTIONS(3454), - [anon_sym_match_BANG] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_GT] = ACTIONS(3452), - [anon_sym_use] = ACTIONS(3454), - [anon_sym_use_BANG] = ACTIONS(3452), - [anon_sym_do_BANG] = ACTIONS(3452), - [anon_sym_begin] = ACTIONS(3454), - [aux_sym_char_token1] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_AT_DQUOTE] = ACTIONS(3452), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3452), - [sym_bool] = ACTIONS(3454), - [sym_unit] = ACTIONS(3452), - [anon_sym_LPAREN_PIPE] = ACTIONS(3454), - [sym_op_identifier] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_PLUS_DOT] = ACTIONS(3452), - [anon_sym_DASH_DOT] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [aux_sym_prefix_op_token1] = ACTIONS(3452), - [sym_int] = ACTIONS(3454), - [sym_xint] = ACTIONS(3452), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3452), + [sym_identifier] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5116), + [anon_sym_do] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_let_BANG] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LBRACK_PIPE] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_LT_AT] = ACTIONS(5116), + [anon_sym_LT_AT_AT] = ACTIONS(5114), + [anon_sym_LBRACE_PIPE] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5116), + [anon_sym_return_BANG] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5116), + [anon_sym_yield_BANG] = ACTIONS(5114), + [anon_sym_lazy] = ACTIONS(5116), + [anon_sym_assert] = ACTIONS(5116), + [anon_sym_upcast] = ACTIONS(5116), + [anon_sym_downcast] = ACTIONS(5116), + [anon_sym_for] = ACTIONS(5116), + [anon_sym_while] = ACTIONS(5116), + [anon_sym_if] = ACTIONS(5116), + [anon_sym_fun] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5116), + [anon_sym_match_BANG] = ACTIONS(5114), + [anon_sym_function] = ACTIONS(5116), + [anon_sym_use] = ACTIONS(5116), + [anon_sym_use_BANG] = ACTIONS(5114), + [anon_sym_do_BANG] = ACTIONS(5114), + [anon_sym_begin] = ACTIONS(5116), + [aux_sym_char_token1] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_AT_DQUOTE] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [sym_bool] = ACTIONS(5116), + [sym_unit] = ACTIONS(5114), + [anon_sym_LPAREN_PIPE] = ACTIONS(5116), + [sym_op_identifier] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS_DOT] = ACTIONS(5114), + [anon_sym_DASH_DOT] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [aux_sym_prefix_op_token1] = ACTIONS(5114), + [sym_int] = ACTIONS(5116), + [sym_xint] = ACTIONS(5114), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5114), + [anon_sym_POUNDendif] = ACTIONS(5114), + [anon_sym_POUNDelse] = ACTIONS(5114), }, [3146] = { [sym_block_comment] = STATE(3146), [sym_compiler_directive_decl] = STATE(3146), [sym_fsi_directive_decl] = STATE(3146), [sym_preproc_line] = STATE(3146), - [sym_identifier] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_let_BANG] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LBRACK_PIPE] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_LT_AT] = ACTIONS(3458), - [anon_sym_LT_AT_AT] = ACTIONS(3456), - [anon_sym_LBRACE_PIPE] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_return_BANG] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_yield_BANG] = ACTIONS(3456), - [anon_sym_lazy] = ACTIONS(3458), - [anon_sym_assert] = ACTIONS(3458), - [anon_sym_upcast] = ACTIONS(3458), - [anon_sym_downcast] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_fun] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3458), - [anon_sym_match_BANG] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3458), - [anon_sym_GT] = ACTIONS(3456), - [anon_sym_use] = ACTIONS(3458), - [anon_sym_use_BANG] = ACTIONS(3456), - [anon_sym_do_BANG] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(3458), - [aux_sym_char_token1] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_AT_DQUOTE] = ACTIONS(3456), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3456), - [sym_bool] = ACTIONS(3458), - [sym_unit] = ACTIONS(3456), - [anon_sym_LPAREN_PIPE] = ACTIONS(3458), - [sym_op_identifier] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_PLUS_DOT] = ACTIONS(3456), - [anon_sym_DASH_DOT] = ACTIONS(3456), - [anon_sym_PERCENT] = ACTIONS(3456), - [anon_sym_AMP_AMP] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [aux_sym_prefix_op_token1] = ACTIONS(3456), - [sym_int] = ACTIONS(3458), - [sym_xint] = ACTIONS(3456), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_and] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3219), + [anon_sym_DASH_DOT] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3219), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), + [anon_sym_POUNDelse] = ACTIONS(3219), }, [3147] = { [sym_block_comment] = STATE(3147), [sym_compiler_directive_decl] = STATE(3147), [sym_fsi_directive_decl] = STATE(3147), [sym_preproc_line] = STATE(3147), - [sym_identifier] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_let_BANG] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3460), - [anon_sym_null] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LBRACK_PIPE] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_LT_AT] = ACTIONS(3462), - [anon_sym_LT_AT_AT] = ACTIONS(3460), - [anon_sym_LBRACE_PIPE] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_return_BANG] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_yield_BANG] = ACTIONS(3460), - [anon_sym_lazy] = ACTIONS(3462), - [anon_sym_assert] = ACTIONS(3462), - [anon_sym_upcast] = ACTIONS(3462), - [anon_sym_downcast] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_fun] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_match] = ACTIONS(3462), - [anon_sym_match_BANG] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_GT] = ACTIONS(3460), - [anon_sym_use] = ACTIONS(3462), - [anon_sym_use_BANG] = ACTIONS(3460), - [anon_sym_do_BANG] = ACTIONS(3460), - [anon_sym_begin] = ACTIONS(3462), - [aux_sym_char_token1] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_AT_DQUOTE] = ACTIONS(3460), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3460), - [sym_bool] = ACTIONS(3462), - [sym_unit] = ACTIONS(3460), - [anon_sym_LPAREN_PIPE] = ACTIONS(3462), - [sym_op_identifier] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_PLUS_DOT] = ACTIONS(3460), - [anon_sym_DASH_DOT] = ACTIONS(3460), - [anon_sym_PERCENT] = ACTIONS(3460), - [anon_sym_AMP_AMP] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [aux_sym_prefix_op_token1] = ACTIONS(3460), - [sym_int] = ACTIONS(3462), - [sym_xint] = ACTIONS(3460), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3460), + [aux_sym__function_or_value_defns_repeat1] = STATE(3147), + [sym_identifier] = ACTIONS(4951), + [anon_sym_return] = ACTIONS(4951), + [anon_sym_do] = ACTIONS(4951), + [anon_sym_and] = ACTIONS(5628), + [anon_sym_let] = ACTIONS(4951), + [anon_sym_let_BANG] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LBRACK_PIPE] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LT_AT] = ACTIONS(4951), + [anon_sym_LT_AT_AT] = ACTIONS(4949), + [anon_sym_LBRACE_PIPE] = ACTIONS(4949), + [anon_sym_new] = ACTIONS(4951), + [anon_sym_return_BANG] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4951), + [anon_sym_yield_BANG] = ACTIONS(4949), + [anon_sym_lazy] = ACTIONS(4951), + [anon_sym_assert] = ACTIONS(4951), + [anon_sym_upcast] = ACTIONS(4951), + [anon_sym_downcast] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4951), + [anon_sym_while] = ACTIONS(4951), + [anon_sym_if] = ACTIONS(4951), + [anon_sym_fun] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4951), + [anon_sym_match] = ACTIONS(4951), + [anon_sym_match_BANG] = ACTIONS(4949), + [anon_sym_function] = ACTIONS(4951), + [anon_sym_use] = ACTIONS(4951), + [anon_sym_use_BANG] = ACTIONS(4949), + [anon_sym_do_BANG] = ACTIONS(4949), + [anon_sym_begin] = ACTIONS(4951), + [aux_sym_char_token1] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [anon_sym_AT_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [sym_bool] = ACTIONS(4951), + [sym_unit] = ACTIONS(4949), + [anon_sym_LPAREN_PIPE] = ACTIONS(4951), + [sym_op_identifier] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_PLUS_DOT] = ACTIONS(4949), + [anon_sym_DASH_DOT] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [aux_sym_prefix_op_token1] = ACTIONS(4949), + [sym_int] = ACTIONS(4951), + [sym_xint] = ACTIONS(4949), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4949), + [anon_sym_POUNDendif] = ACTIONS(4949), }, [3148] = { [sym_block_comment] = STATE(3148), [sym_compiler_directive_decl] = STATE(3148), [sym_fsi_directive_decl] = STATE(3148), [sym_preproc_line] = STATE(3148), - [sym_identifier] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_let_BANG] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_null] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LBRACK_PIPE] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_LT_AT] = ACTIONS(3470), - [anon_sym_LT_AT_AT] = ACTIONS(3468), - [anon_sym_LBRACE_PIPE] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_return_BANG] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_yield_BANG] = ACTIONS(3468), - [anon_sym_lazy] = ACTIONS(3470), - [anon_sym_assert] = ACTIONS(3470), - [anon_sym_upcast] = ACTIONS(3470), - [anon_sym_downcast] = ACTIONS(3470), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_fun] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_match] = ACTIONS(3470), - [anon_sym_match_BANG] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3470), - [anon_sym_GT] = ACTIONS(3468), - [anon_sym_use] = ACTIONS(3470), - [anon_sym_use_BANG] = ACTIONS(3468), - [anon_sym_do_BANG] = ACTIONS(3468), - [anon_sym_begin] = ACTIONS(3470), - [aux_sym_char_token1] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_AT_DQUOTE] = ACTIONS(3468), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3468), - [sym_bool] = ACTIONS(3470), - [sym_unit] = ACTIONS(3468), - [anon_sym_LPAREN_PIPE] = ACTIONS(3470), - [sym_op_identifier] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_PLUS_DOT] = ACTIONS(3468), - [anon_sym_DASH_DOT] = ACTIONS(3468), - [anon_sym_PERCENT] = ACTIONS(3468), - [anon_sym_AMP_AMP] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3468), - [aux_sym_prefix_op_token1] = ACTIONS(3468), - [sym_int] = ACTIONS(3470), - [sym_xint] = ACTIONS(3468), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_let_BANG] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3684), + [anon_sym_null] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LBRACK_PIPE] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_LT_AT] = ACTIONS(3686), + [anon_sym_LT_AT_AT] = ACTIONS(3684), + [anon_sym_LBRACE_PIPE] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_return_BANG] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_yield_BANG] = ACTIONS(3684), + [anon_sym_lazy] = ACTIONS(3686), + [anon_sym_assert] = ACTIONS(3686), + [anon_sym_upcast] = ACTIONS(3686), + [anon_sym_downcast] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_fun] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_match_BANG] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_use] = ACTIONS(3686), + [anon_sym_use_BANG] = ACTIONS(3684), + [anon_sym_do_BANG] = ACTIONS(3684), + [anon_sym_begin] = ACTIONS(3686), + [aux_sym_char_token1] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_AT_DQUOTE] = ACTIONS(3684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3684), + [sym_bool] = ACTIONS(3686), + [sym_unit] = ACTIONS(3684), + [anon_sym_LPAREN_PIPE] = ACTIONS(3686), + [sym_op_identifier] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS_DOT] = ACTIONS(3684), + [anon_sym_DASH_DOT] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [aux_sym_prefix_op_token1] = ACTIONS(3684), + [sym_int] = ACTIONS(3686), + [sym_xint] = ACTIONS(3684), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3684), }, [3149] = { [sym_block_comment] = STATE(3149), [sym_compiler_directive_decl] = STATE(3149), [sym_fsi_directive_decl] = STATE(3149), [sym_preproc_line] = STATE(3149), - [sym_identifier] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_do] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_let_BANG] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LBRACK_PIPE] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_LT_AT] = ACTIONS(5072), - [anon_sym_LT_AT_AT] = ACTIONS(5070), - [anon_sym_LBRACE_PIPE] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5072), - [anon_sym_return_BANG] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_yield_BANG] = ACTIONS(5070), - [anon_sym_lazy] = ACTIONS(5072), - [anon_sym_assert] = ACTIONS(5072), - [anon_sym_upcast] = ACTIONS(5072), - [anon_sym_downcast] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_fun] = ACTIONS(5072), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_match_BANG] = ACTIONS(5070), - [anon_sym_function] = ACTIONS(5072), - [anon_sym_use] = ACTIONS(5072), - [anon_sym_use_BANG] = ACTIONS(5070), - [anon_sym_do_BANG] = ACTIONS(5070), - [anon_sym_begin] = ACTIONS(5072), - [aux_sym_char_token1] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE] = ACTIONS(5072), - [anon_sym_AT_DQUOTE] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [sym_bool] = ACTIONS(5072), - [sym_unit] = ACTIONS(5070), - [anon_sym_LPAREN_PIPE] = ACTIONS(5072), - [sym_op_identifier] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5072), - [anon_sym_PLUS_DOT] = ACTIONS(5070), - [anon_sym_DASH_DOT] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [aux_sym_prefix_op_token1] = ACTIONS(5070), - [sym_int] = ACTIONS(5072), - [sym_xint] = ACTIONS(5070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5070), - [anon_sym_POUNDendif] = ACTIONS(5070), + [sym_identifier] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_let_BANG] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_COMMA] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LBRACK_PIPE] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_LT_AT] = ACTIONS(3568), + [anon_sym_LT_AT_AT] = ACTIONS(3566), + [anon_sym_LBRACE_PIPE] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_return_BANG] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_yield_BANG] = ACTIONS(3566), + [anon_sym_lazy] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_upcast] = ACTIONS(3568), + [anon_sym_downcast] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_fun] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_match_BANG] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_GT] = ACTIONS(3566), + [anon_sym_use] = ACTIONS(3568), + [anon_sym_use_BANG] = ACTIONS(3566), + [anon_sym_do_BANG] = ACTIONS(3566), + [anon_sym_begin] = ACTIONS(3568), + [aux_sym_char_token1] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_AT_DQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3566), + [sym_bool] = ACTIONS(3568), + [sym_unit] = ACTIONS(3566), + [anon_sym_LPAREN_PIPE] = ACTIONS(3568), + [sym_op_identifier] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [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(3566), + [aux_sym_prefix_op_token1] = ACTIONS(3566), + [sym_int] = ACTIONS(3568), + [sym_xint] = ACTIONS(3566), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3566), }, [3150] = { [sym_block_comment] = STATE(3150), [sym_compiler_directive_decl] = STATE(3150), [sym_fsi_directive_decl] = STATE(3150), [sym_preproc_line] = STATE(3150), - [aux_sym__function_or_value_defns_repeat1] = STATE(3164), - [sym_identifier] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_do] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(5623), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_let_BANG] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_PIPE] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_LT_AT] = ACTIONS(4999), - [anon_sym_LT_AT_AT] = ACTIONS(4997), - [anon_sym_LBRACE_PIPE] = ACTIONS(4997), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_return_BANG] = ACTIONS(4997), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_yield_BANG] = ACTIONS(4997), - [anon_sym_lazy] = ACTIONS(4999), - [anon_sym_assert] = ACTIONS(4999), - [anon_sym_upcast] = ACTIONS(4999), - [anon_sym_downcast] = ACTIONS(4999), - [anon_sym_for] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_match] = ACTIONS(4999), - [anon_sym_match_BANG] = ACTIONS(4997), - [anon_sym_function] = ACTIONS(4999), - [anon_sym_use] = ACTIONS(4999), - [anon_sym_use_BANG] = ACTIONS(4997), - [anon_sym_do_BANG] = ACTIONS(4997), - [anon_sym_begin] = ACTIONS(4999), - [aux_sym_char_token1] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_AT_DQUOTE] = ACTIONS(4997), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4997), - [sym_bool] = ACTIONS(4999), - [sym_unit] = ACTIONS(4997), - [anon_sym_LPAREN_PIPE] = ACTIONS(4999), - [sym_op_identifier] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_PLUS_DOT] = ACTIONS(4997), - [anon_sym_DASH_DOT] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_TILDE] = ACTIONS(4997), - [aux_sym_prefix_op_token1] = ACTIONS(4997), - [sym_int] = ACTIONS(4999), - [sym_xint] = ACTIONS(4997), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(4997), + [sym_identifier] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_let] = ACTIONS(3635), + [anon_sym_let_BANG] = ACTIONS(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LBRACK_PIPE] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_LT_AT] = ACTIONS(3635), + [anon_sym_LT_AT_AT] = ACTIONS(3633), + [anon_sym_LBRACE_PIPE] = ACTIONS(3633), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_return_BANG] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_yield_BANG] = ACTIONS(3633), + [anon_sym_lazy] = ACTIONS(3635), + [anon_sym_assert] = ACTIONS(3635), + [anon_sym_upcast] = ACTIONS(3635), + [anon_sym_downcast] = ACTIONS(3635), + [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(3633), + [anon_sym_function] = ACTIONS(3635), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_use] = ACTIONS(3635), + [anon_sym_use_BANG] = ACTIONS(3633), + [anon_sym_do_BANG] = ACTIONS(3633), + [anon_sym_begin] = ACTIONS(3635), + [aux_sym_char_token1] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), + [anon_sym_DQUOTE] = ACTIONS(3635), + [anon_sym_AT_DQUOTE] = ACTIONS(3633), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), + [sym_bool] = ACTIONS(3635), + [sym_unit] = ACTIONS(3633), + [anon_sym_LPAREN_PIPE] = ACTIONS(3635), + [sym_op_identifier] = ACTIONS(3633), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS_DOT] = ACTIONS(3633), + [anon_sym_DASH_DOT] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [aux_sym_prefix_op_token1] = ACTIONS(3633), + [sym_int] = ACTIONS(3635), + [sym_xint] = ACTIONS(3633), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3633), }, [3151] = { [sym_block_comment] = STATE(3151), [sym_compiler_directive_decl] = STATE(3151), [sym_fsi_directive_decl] = STATE(3151), [sym_preproc_line] = STATE(3151), - [sym_identifier] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_do] = ACTIONS(5112), - [anon_sym_let] = ACTIONS(5112), - [anon_sym_let_BANG] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_LBRACK_PIPE] = ACTIONS(5110), - [anon_sym_LBRACE] = ACTIONS(5112), - [anon_sym_LT_AT] = ACTIONS(5112), - [anon_sym_LT_AT_AT] = ACTIONS(5110), - [anon_sym_LBRACE_PIPE] = ACTIONS(5110), - [anon_sym_new] = ACTIONS(5112), - [anon_sym_return_BANG] = ACTIONS(5110), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_yield_BANG] = ACTIONS(5110), - [anon_sym_lazy] = ACTIONS(5112), - [anon_sym_assert] = ACTIONS(5112), - [anon_sym_upcast] = ACTIONS(5112), - [anon_sym_downcast] = ACTIONS(5112), - [anon_sym_for] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_match] = ACTIONS(5112), - [anon_sym_match_BANG] = ACTIONS(5110), - [anon_sym_function] = ACTIONS(5112), - [anon_sym_use] = ACTIONS(5112), - [anon_sym_use_BANG] = ACTIONS(5110), - [anon_sym_do_BANG] = ACTIONS(5110), - [anon_sym_begin] = ACTIONS(5112), - [aux_sym_char_token1] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), - [anon_sym_DQUOTE] = ACTIONS(5112), - [anon_sym_AT_DQUOTE] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [sym_bool] = ACTIONS(5112), - [sym_unit] = ACTIONS(5110), - [anon_sym_LPAREN_PIPE] = ACTIONS(5112), - [sym_op_identifier] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_PLUS_DOT] = ACTIONS(5110), - [anon_sym_DASH_DOT] = ACTIONS(5110), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [aux_sym_prefix_op_token1] = ACTIONS(5110), - [sym_int] = ACTIONS(5112), - [sym_xint] = ACTIONS(5110), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5110), - [sym__newline] = ACTIONS(5110), - [sym__dedent] = ACTIONS(5110), + [sym_identifier] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_let] = ACTIONS(3631), + [anon_sym_let_BANG] = ACTIONS(3629), + [anon_sym_LPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(3629), + [anon_sym_null] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LBRACK_PIPE] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LT_AT] = ACTIONS(3631), + [anon_sym_LT_AT_AT] = ACTIONS(3629), + [anon_sym_LBRACE_PIPE] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_return_BANG] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_yield_BANG] = ACTIONS(3629), + [anon_sym_lazy] = ACTIONS(3631), + [anon_sym_assert] = ACTIONS(3631), + [anon_sym_upcast] = ACTIONS(3631), + [anon_sym_downcast] = ACTIONS(3631), + [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(3629), + [anon_sym_function] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3629), + [anon_sym_use] = ACTIONS(3631), + [anon_sym_use_BANG] = ACTIONS(3629), + [anon_sym_do_BANG] = ACTIONS(3629), + [anon_sym_begin] = ACTIONS(3631), + [aux_sym_char_token1] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [anon_sym_AT_DQUOTE] = ACTIONS(3629), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3629), + [sym_bool] = ACTIONS(3631), + [sym_unit] = ACTIONS(3629), + [anon_sym_LPAREN_PIPE] = ACTIONS(3631), + [sym_op_identifier] = ACTIONS(3629), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS_DOT] = ACTIONS(3629), + [anon_sym_DASH_DOT] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [aux_sym_prefix_op_token1] = ACTIONS(3629), + [sym_int] = ACTIONS(3631), + [sym_xint] = ACTIONS(3629), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3629), }, [3152] = { [sym_block_comment] = STATE(3152), [sym_compiler_directive_decl] = STATE(3152), [sym_fsi_directive_decl] = STATE(3152), [sym_preproc_line] = STATE(3152), - [sym_identifier] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_let] = ACTIONS(3712), - [anon_sym_let_BANG] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3712), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_LT_AT] = ACTIONS(3712), - [anon_sym_LT_AT_AT] = ACTIONS(3710), - [anon_sym_LBRACE_PIPE] = ACTIONS(3710), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_return_BANG] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3712), - [anon_sym_yield_BANG] = ACTIONS(3710), - [anon_sym_lazy] = ACTIONS(3712), - [anon_sym_assert] = ACTIONS(3712), - [anon_sym_upcast] = ACTIONS(3712), - [anon_sym_downcast] = ACTIONS(3712), - [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(3710), - [anon_sym_function] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_use] = ACTIONS(3712), - [anon_sym_use_BANG] = ACTIONS(3710), - [anon_sym_do_BANG] = ACTIONS(3710), - [anon_sym_begin] = ACTIONS(3712), - [aux_sym_char_token1] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3712), - [anon_sym_AT_DQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym_bool] = ACTIONS(3712), - [sym_unit] = ACTIONS(3710), - [anon_sym_LPAREN_PIPE] = ACTIONS(3712), - [sym_op_identifier] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS_DOT] = ACTIONS(3710), - [anon_sym_DASH_DOT] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [aux_sym_prefix_op_token1] = ACTIONS(3710), - [sym_int] = ACTIONS(3712), - [sym_xint] = ACTIONS(3710), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_let] = ACTIONS(3627), + [anon_sym_let_BANG] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_LBRACK_PIPE] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3627), + [anon_sym_LT_AT] = ACTIONS(3627), + [anon_sym_LT_AT_AT] = ACTIONS(3625), + [anon_sym_LBRACE_PIPE] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_return_BANG] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_yield_BANG] = ACTIONS(3625), + [anon_sym_lazy] = ACTIONS(3627), + [anon_sym_assert] = ACTIONS(3627), + [anon_sym_upcast] = ACTIONS(3627), + [anon_sym_downcast] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_fun] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_match_BANG] = ACTIONS(3625), + [anon_sym_function] = ACTIONS(3627), + [anon_sym_GT] = ACTIONS(3625), + [anon_sym_use] = ACTIONS(3627), + [anon_sym_use_BANG] = ACTIONS(3625), + [anon_sym_do_BANG] = ACTIONS(3625), + [anon_sym_begin] = ACTIONS(3627), + [aux_sym_char_token1] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_DQUOTE] = ACTIONS(3627), + [anon_sym_AT_DQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3625), + [sym_bool] = ACTIONS(3627), + [sym_unit] = ACTIONS(3625), + [anon_sym_LPAREN_PIPE] = ACTIONS(3627), + [sym_op_identifier] = ACTIONS(3625), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS_DOT] = ACTIONS(3625), + [anon_sym_DASH_DOT] = ACTIONS(3625), + [anon_sym_PERCENT] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [aux_sym_prefix_op_token1] = ACTIONS(3625), + [sym_int] = ACTIONS(3627), + [sym_xint] = ACTIONS(3625), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3625), }, [3153] = { [sym_block_comment] = STATE(3153), [sym_compiler_directive_decl] = STATE(3153), [sym_fsi_directive_decl] = STATE(3153), [sym_preproc_line] = STATE(3153), - [sym_identifier] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_let_BANG] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_null] = ACTIONS(3716), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_LBRACK_PIPE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LT_AT] = ACTIONS(3716), - [anon_sym_LT_AT_AT] = ACTIONS(3714), - [anon_sym_LBRACE_PIPE] = ACTIONS(3714), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_return_BANG] = ACTIONS(3714), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_yield_BANG] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3716), - [anon_sym_assert] = ACTIONS(3716), - [anon_sym_upcast] = ACTIONS(3716), - [anon_sym_downcast] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_fun] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3716), - [anon_sym_match_BANG] = ACTIONS(3714), - [anon_sym_function] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3714), - [anon_sym_use] = ACTIONS(3716), - [anon_sym_use_BANG] = ACTIONS(3714), - [anon_sym_do_BANG] = ACTIONS(3714), - [anon_sym_begin] = ACTIONS(3716), - [aux_sym_char_token1] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3716), - [anon_sym_AT_DQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), - [sym_bool] = ACTIONS(3716), - [sym_unit] = ACTIONS(3714), - [anon_sym_LPAREN_PIPE] = ACTIONS(3716), - [sym_op_identifier] = ACTIONS(3714), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS_DOT] = ACTIONS(3714), - [anon_sym_DASH_DOT] = ACTIONS(3714), - [anon_sym_PERCENT] = ACTIONS(3714), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_prefix_op_token1] = ACTIONS(3714), - [sym_int] = ACTIONS(3716), - [sym_xint] = ACTIONS(3714), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_let] = ACTIONS(3619), + [anon_sym_let_BANG] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_COMMA] = ACTIONS(3617), + [anon_sym_null] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LBRACK_PIPE] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LT_AT] = ACTIONS(3619), + [anon_sym_LT_AT_AT] = ACTIONS(3617), + [anon_sym_LBRACE_PIPE] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_return_BANG] = ACTIONS(3617), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_yield_BANG] = ACTIONS(3617), + [anon_sym_lazy] = ACTIONS(3619), + [anon_sym_assert] = ACTIONS(3619), + [anon_sym_upcast] = ACTIONS(3619), + [anon_sym_downcast] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_fun] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_match_BANG] = ACTIONS(3617), + [anon_sym_function] = ACTIONS(3619), + [anon_sym_GT] = ACTIONS(3617), + [anon_sym_use] = ACTIONS(3619), + [anon_sym_use_BANG] = ACTIONS(3617), + [anon_sym_do_BANG] = ACTIONS(3617), + [anon_sym_begin] = ACTIONS(3619), + [aux_sym_char_token1] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [anon_sym_AT_DQUOTE] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3617), + [sym_bool] = ACTIONS(3619), + [sym_unit] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(3619), + [sym_op_identifier] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS_DOT] = ACTIONS(3617), + [anon_sym_DASH_DOT] = ACTIONS(3617), + [anon_sym_PERCENT] = ACTIONS(3617), + [anon_sym_AMP_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [aux_sym_prefix_op_token1] = ACTIONS(3617), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(3617), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3617), }, [3154] = { [sym_block_comment] = STATE(3154), [sym_compiler_directive_decl] = STATE(3154), [sym_fsi_directive_decl] = STATE(3154), [sym_preproc_line] = STATE(3154), - [sym_identifier] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_do] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_let_BANG] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_LBRACK_PIPE] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_LT_AT] = ACTIONS(5066), - [anon_sym_LT_AT_AT] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5064), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_return_BANG] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_yield_BANG] = ACTIONS(5064), - [anon_sym_lazy] = ACTIONS(5066), - [anon_sym_assert] = ACTIONS(5066), - [anon_sym_upcast] = ACTIONS(5066), - [anon_sym_downcast] = ACTIONS(5066), - [anon_sym_for] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_match] = ACTIONS(5066), - [anon_sym_match_BANG] = ACTIONS(5064), - [anon_sym_function] = ACTIONS(5066), - [anon_sym_use] = ACTIONS(5066), - [anon_sym_use_BANG] = ACTIONS(5064), - [anon_sym_do_BANG] = ACTIONS(5064), - [anon_sym_begin] = ACTIONS(5066), - [aux_sym_char_token1] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [anon_sym_AT_DQUOTE] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [sym_bool] = ACTIONS(5066), - [sym_unit] = ACTIONS(5064), - [anon_sym_LPAREN_PIPE] = ACTIONS(5066), - [sym_op_identifier] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_PLUS_DOT] = ACTIONS(5064), - [anon_sym_DASH_DOT] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_prefix_op_token1] = ACTIONS(5064), - [sym_int] = ACTIONS(5066), - [sym_xint] = ACTIONS(5064), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5064), - [anon_sym_POUNDendif] = ACTIONS(5064), - [anon_sym_POUNDelse] = ACTIONS(5064), + [sym_identifier] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_do] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_let_BANG] = ACTIONS(3613), + [anon_sym_LPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3615), + [anon_sym_LBRACK_PIPE] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LT_AT] = ACTIONS(3615), + [anon_sym_LT_AT_AT] = ACTIONS(3613), + [anon_sym_LBRACE_PIPE] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3615), + [anon_sym_return_BANG] = ACTIONS(3613), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_yield_BANG] = ACTIONS(3613), + [anon_sym_lazy] = ACTIONS(3615), + [anon_sym_assert] = ACTIONS(3615), + [anon_sym_upcast] = ACTIONS(3615), + [anon_sym_downcast] = ACTIONS(3615), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_fun] = ACTIONS(3615), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_match_BANG] = ACTIONS(3613), + [anon_sym_function] = ACTIONS(3615), + [anon_sym_GT] = ACTIONS(3613), + [anon_sym_use] = ACTIONS(3615), + [anon_sym_use_BANG] = ACTIONS(3613), + [anon_sym_do_BANG] = ACTIONS(3613), + [anon_sym_begin] = ACTIONS(3615), + [aux_sym_char_token1] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [anon_sym_AT_DQUOTE] = ACTIONS(3613), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), + [sym_bool] = ACTIONS(3615), + [sym_unit] = ACTIONS(3613), + [anon_sym_LPAREN_PIPE] = ACTIONS(3615), + [sym_op_identifier] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS_DOT] = ACTIONS(3613), + [anon_sym_DASH_DOT] = ACTIONS(3613), + [anon_sym_PERCENT] = ACTIONS(3613), + [anon_sym_AMP_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [aux_sym_prefix_op_token1] = ACTIONS(3613), + [sym_int] = ACTIONS(3615), + [sym_xint] = ACTIONS(3613), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3613), }, [3155] = { [sym_block_comment] = STATE(3155), [sym_compiler_directive_decl] = STATE(3155), [sym_fsi_directive_decl] = STATE(3155), [sym_preproc_line] = STATE(3155), - [sym_identifier] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_do] = ACTIONS(3611), + [anon_sym_let] = ACTIONS(3611), + [anon_sym_let_BANG] = ACTIONS(3609), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3611), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3611), + [anon_sym_LBRACK_PIPE] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_LT_AT] = ACTIONS(3611), + [anon_sym_LT_AT_AT] = ACTIONS(3609), + [anon_sym_LBRACE_PIPE] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3611), + [anon_sym_return_BANG] = ACTIONS(3609), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_yield_BANG] = ACTIONS(3609), + [anon_sym_lazy] = ACTIONS(3611), + [anon_sym_assert] = ACTIONS(3611), + [anon_sym_upcast] = ACTIONS(3611), + [anon_sym_downcast] = ACTIONS(3611), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_fun] = ACTIONS(3611), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_match_BANG] = ACTIONS(3609), + [anon_sym_function] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3609), + [anon_sym_use] = ACTIONS(3611), + [anon_sym_use_BANG] = ACTIONS(3609), + [anon_sym_do_BANG] = ACTIONS(3609), + [anon_sym_begin] = ACTIONS(3611), + [aux_sym_char_token1] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [anon_sym_AT_DQUOTE] = ACTIONS(3609), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3609), + [sym_bool] = ACTIONS(3611), + [sym_unit] = ACTIONS(3609), + [anon_sym_LPAREN_PIPE] = ACTIONS(3611), + [sym_op_identifier] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3611), + [anon_sym_PLUS_DOT] = ACTIONS(3609), + [anon_sym_DASH_DOT] = ACTIONS(3609), + [anon_sym_PERCENT] = ACTIONS(3609), + [anon_sym_AMP_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [aux_sym_prefix_op_token1] = ACTIONS(3609), + [sym_int] = ACTIONS(3611), + [sym_xint] = ACTIONS(3609), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -364334,213 +365086,141 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3167), - [anon_sym_POUNDendif] = ACTIONS(3167), + [anon_sym_POUNDif] = ACTIONS(3609), }, [3156] = { [sym_block_comment] = STATE(3156), [sym_compiler_directive_decl] = STATE(3156), [sym_fsi_directive_decl] = STATE(3156), [sym_preproc_line] = STATE(3156), - [sym_identifier] = 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_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3), - [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(3640), - [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_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_GT] = ACTIONS(3640), - [anon_sym_use] = ACTIONS(3638), - [anon_sym_use_BANG] = ACTIONS(3640), - [anon_sym_do_BANG] = ACTIONS(3640), - [anon_sym_begin] = 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(3640), - [anon_sym_LPAREN_PIPE] = ACTIONS(3638), - [sym_op_identifier] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS_DOT] = ACTIONS(3640), - [anon_sym_DASH_DOT] = ACTIONS(3640), - [anon_sym_PERCENT] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [aux_sym_prefix_op_token1] = ACTIONS(3640), - [sym_int] = ACTIONS(3638), - [sym_xint] = ACTIONS(3640), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_let_BANG] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK_PIPE] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_LT_AT] = ACTIONS(3682), + [anon_sym_LT_AT_AT] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_return_BANG] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_yield_BANG] = ACTIONS(3680), + [anon_sym_lazy] = ACTIONS(3682), + [anon_sym_assert] = ACTIONS(3682), + [anon_sym_upcast] = ACTIONS(3682), + [anon_sym_downcast] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_fun] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_match_BANG] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_use] = ACTIONS(3682), + [anon_sym_use_BANG] = ACTIONS(3680), + [anon_sym_do_BANG] = ACTIONS(3680), + [anon_sym_begin] = ACTIONS(3682), + [aux_sym_char_token1] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_AT_DQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3680), + [sym_bool] = ACTIONS(3682), + [sym_unit] = ACTIONS(3680), + [anon_sym_LPAREN_PIPE] = ACTIONS(3682), + [sym_op_identifier] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS_DOT] = ACTIONS(3680), + [anon_sym_DASH_DOT] = ACTIONS(3680), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [aux_sym_prefix_op_token1] = ACTIONS(3680), + [sym_int] = ACTIONS(3682), + [sym_xint] = ACTIONS(3680), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3680), }, [3157] = { [sym_block_comment] = STATE(3157), [sym_compiler_directive_decl] = STATE(3157), [sym_fsi_directive_decl] = STATE(3157), [sym_preproc_line] = STATE(3157), - [sym_identifier] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_do] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_let_BANG] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_LBRACK_PIPE] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_LT_AT] = ACTIONS(5066), - [anon_sym_LT_AT_AT] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5064), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_return_BANG] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_yield_BANG] = ACTIONS(5064), - [anon_sym_lazy] = ACTIONS(5066), - [anon_sym_assert] = ACTIONS(5066), - [anon_sym_upcast] = ACTIONS(5066), - [anon_sym_downcast] = ACTIONS(5066), - [anon_sym_for] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_match] = ACTIONS(5066), - [anon_sym_match_BANG] = ACTIONS(5064), - [anon_sym_function] = ACTIONS(5066), - [anon_sym_use] = ACTIONS(5066), - [anon_sym_use_BANG] = ACTIONS(5064), - [anon_sym_do_BANG] = ACTIONS(5064), - [anon_sym_begin] = ACTIONS(5066), - [aux_sym_char_token1] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [anon_sym_AT_DQUOTE] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [sym_bool] = ACTIONS(5066), - [sym_unit] = ACTIONS(5064), - [anon_sym_LPAREN_PIPE] = ACTIONS(5066), - [sym_op_identifier] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_PLUS_DOT] = ACTIONS(5064), - [anon_sym_DASH_DOT] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_prefix_op_token1] = ACTIONS(5064), - [sym_int] = ACTIONS(5066), - [sym_xint] = ACTIONS(5064), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5064), - [sym__newline] = ACTIONS(5064), - [sym__dedent] = ACTIONS(5064), - }, - [3158] = { - [sym_block_comment] = STATE(3158), - [sym_compiler_directive_decl] = STATE(3158), - [sym_fsi_directive_decl] = STATE(3158), - [sym_preproc_line] = STATE(3158), - [aux_sym__function_or_value_defns_repeat1] = STATE(3150), - [sym_identifier] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_do] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5623), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_let_BANG] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_null] = ACTIONS(5034), - [anon_sym_AMP] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_LBRACK_PIPE] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5034), - [anon_sym_LT_AT] = ACTIONS(5034), - [anon_sym_LT_AT_AT] = ACTIONS(5032), - [anon_sym_LBRACE_PIPE] = ACTIONS(5032), - [anon_sym_new] = ACTIONS(5034), - [anon_sym_return_BANG] = ACTIONS(5032), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_yield_BANG] = ACTIONS(5032), - [anon_sym_lazy] = ACTIONS(5034), - [anon_sym_assert] = ACTIONS(5034), - [anon_sym_upcast] = ACTIONS(5034), - [anon_sym_downcast] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_if] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_try] = ACTIONS(5034), - [anon_sym_match] = ACTIONS(5034), - [anon_sym_match_BANG] = ACTIONS(5032), - [anon_sym_function] = ACTIONS(5034), - [anon_sym_use] = ACTIONS(5034), - [anon_sym_use_BANG] = ACTIONS(5032), - [anon_sym_do_BANG] = ACTIONS(5032), - [anon_sym_begin] = ACTIONS(5034), - [aux_sym_char_token1] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE] = ACTIONS(5034), - [anon_sym_AT_DQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5032), - [sym_bool] = ACTIONS(5034), - [sym_unit] = ACTIONS(5032), - [anon_sym_LPAREN_PIPE] = ACTIONS(5034), - [sym_op_identifier] = ACTIONS(5032), - [anon_sym_PLUS] = ACTIONS(5034), - [anon_sym_DASH] = ACTIONS(5034), - [anon_sym_PLUS_DOT] = ACTIONS(5032), - [anon_sym_DASH_DOT] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [aux_sym_prefix_op_token1] = ACTIONS(5032), - [sym_int] = ACTIONS(5034), - [sym_xint] = ACTIONS(5032), + [sym_identifier] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_let_BANG] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_LBRACK_PIPE] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_LT_AT] = ACTIONS(3603), + [anon_sym_LT_AT_AT] = ACTIONS(3601), + [anon_sym_LBRACE_PIPE] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_return_BANG] = ACTIONS(3601), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_yield_BANG] = ACTIONS(3601), + [anon_sym_lazy] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3603), + [anon_sym_upcast] = ACTIONS(3603), + [anon_sym_downcast] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_fun] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_match_BANG] = ACTIONS(3601), + [anon_sym_function] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3601), + [anon_sym_use] = ACTIONS(3603), + [anon_sym_use_BANG] = ACTIONS(3601), + [anon_sym_do_BANG] = ACTIONS(3601), + [anon_sym_begin] = ACTIONS(3603), + [aux_sym_char_token1] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [anon_sym_AT_DQUOTE] = ACTIONS(3601), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3601), + [sym_bool] = ACTIONS(3603), + [sym_unit] = ACTIONS(3601), + [anon_sym_LPAREN_PIPE] = ACTIONS(3603), + [sym_op_identifier] = ACTIONS(3601), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS_DOT] = ACTIONS(3601), + [anon_sym_DASH_DOT] = ACTIONS(3601), + [anon_sym_PERCENT] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [aux_sym_prefix_op_token1] = ACTIONS(3601), + [sym_int] = ACTIONS(3603), + [sym_xint] = ACTIONS(3601), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -364548,78 +365228,149 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(5032), + [anon_sym_POUNDif] = ACTIONS(3601), + }, + [3158] = { + [sym_block_comment] = STATE(3158), + [sym_compiler_directive_decl] = STATE(3158), + [sym_fsi_directive_decl] = STATE(3158), + [sym_preproc_line] = STATE(3158), + [sym_identifier] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_let_BANG] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_null] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LBRACK_PIPE] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LT_AT] = ACTIONS(3572), + [anon_sym_LT_AT_AT] = ACTIONS(3570), + [anon_sym_LBRACE_PIPE] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_return_BANG] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_yield_BANG] = ACTIONS(3570), + [anon_sym_lazy] = ACTIONS(3572), + [anon_sym_assert] = ACTIONS(3572), + [anon_sym_upcast] = ACTIONS(3572), + [anon_sym_downcast] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_fun] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3572), + [anon_sym_match_BANG] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3570), + [anon_sym_use] = ACTIONS(3572), + [anon_sym_use_BANG] = ACTIONS(3570), + [anon_sym_do_BANG] = ACTIONS(3570), + [anon_sym_begin] = ACTIONS(3572), + [aux_sym_char_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_AT_DQUOTE] = ACTIONS(3570), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3570), + [sym_bool] = ACTIONS(3572), + [sym_unit] = ACTIONS(3570), + [anon_sym_LPAREN_PIPE] = ACTIONS(3572), + [sym_op_identifier] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [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(3570), + [aux_sym_prefix_op_token1] = ACTIONS(3570), + [sym_int] = ACTIONS(3572), + [sym_xint] = ACTIONS(3570), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3570), }, [3159] = { [sym_block_comment] = STATE(3159), [sym_compiler_directive_decl] = STATE(3159), [sym_fsi_directive_decl] = STATE(3159), [sym_preproc_line] = STATE(3159), - [sym_identifier] = 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_AMP] = ACTIONS(3718), - [anon_sym_SEMI] = ACTIONS(3), - [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(3720), - [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_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_GT] = ACTIONS(3720), - [anon_sym_use] = ACTIONS(3718), - [anon_sym_use_BANG] = ACTIONS(3720), - [anon_sym_do_BANG] = ACTIONS(3720), - [anon_sym_begin] = 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(3720), - [anon_sym_LPAREN_PIPE] = ACTIONS(3718), - [sym_op_identifier] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3718), - [anon_sym_PLUS_DOT] = ACTIONS(3720), - [anon_sym_DASH_DOT] = ACTIONS(3720), - [anon_sym_PERCENT] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_TILDE] = ACTIONS(3720), - [aux_sym_prefix_op_token1] = ACTIONS(3720), - [sym_int] = ACTIONS(3718), - [sym_xint] = ACTIONS(3720), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3720), + [sym_identifier] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5120), + [anon_sym_do] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_let_BANG] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LBRACK_PIPE] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_LT_AT] = ACTIONS(5120), + [anon_sym_LT_AT_AT] = ACTIONS(5118), + [anon_sym_LBRACE_PIPE] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5120), + [anon_sym_return_BANG] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5120), + [anon_sym_yield_BANG] = ACTIONS(5118), + [anon_sym_lazy] = ACTIONS(5120), + [anon_sym_assert] = ACTIONS(5120), + [anon_sym_upcast] = ACTIONS(5120), + [anon_sym_downcast] = ACTIONS(5120), + [anon_sym_for] = ACTIONS(5120), + [anon_sym_while] = ACTIONS(5120), + [anon_sym_if] = ACTIONS(5120), + [anon_sym_fun] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5120), + [anon_sym_match_BANG] = ACTIONS(5118), + [anon_sym_function] = ACTIONS(5120), + [anon_sym_use] = ACTIONS(5120), + [anon_sym_use_BANG] = ACTIONS(5118), + [anon_sym_do_BANG] = ACTIONS(5118), + [anon_sym_begin] = ACTIONS(5120), + [aux_sym_char_token1] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [anon_sym_AT_DQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [sym_bool] = ACTIONS(5120), + [sym_unit] = ACTIONS(5118), + [anon_sym_LPAREN_PIPE] = ACTIONS(5120), + [sym_op_identifier] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS_DOT] = ACTIONS(5118), + [anon_sym_DASH_DOT] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [aux_sym_prefix_op_token1] = ACTIONS(5118), + [sym_int] = ACTIONS(5120), + [sym_xint] = ACTIONS(5118), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5118), + [anon_sym_POUNDendif] = ACTIONS(5118), + [anon_sym_POUNDelse] = ACTIONS(5118), }, [3160] = { [sym_block_comment] = STATE(3160), @@ -364697,63 +365448,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3161), [sym_fsi_directive_decl] = STATE(3161), [sym_preproc_line] = STATE(3161), - [sym_identifier] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_let_BANG] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_LT_AT] = ACTIONS(3543), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_return_BANG] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_yield_BANG] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3543), - [anon_sym_assert] = ACTIONS(3543), - [anon_sym_upcast] = ACTIONS(3543), - [anon_sym_downcast] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_fun] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_match_BANG] = ACTIONS(3541), - [anon_sym_function] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3543), - [anon_sym_use_BANG] = ACTIONS(3541), - [anon_sym_do_BANG] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3543), - [aux_sym_char_token1] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [anon_sym_AT_DQUOTE] = ACTIONS(3541), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3541), - [sym_bool] = ACTIONS(3543), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3543), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [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(3541), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [sym_int] = ACTIONS(3543), - [sym_xint] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_do] = ACTIONS(3667), + [anon_sym_let] = ACTIONS(3667), + [anon_sym_let_BANG] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3667), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_LBRACK_PIPE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_LT_AT] = ACTIONS(3667), + [anon_sym_LT_AT_AT] = ACTIONS(3665), + [anon_sym_LBRACE_PIPE] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3667), + [anon_sym_return_BANG] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_yield_BANG] = ACTIONS(3665), + [anon_sym_lazy] = ACTIONS(3667), + [anon_sym_assert] = ACTIONS(3667), + [anon_sym_upcast] = ACTIONS(3667), + [anon_sym_downcast] = ACTIONS(3667), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_fun] = ACTIONS(3667), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_match_BANG] = ACTIONS(3665), + [anon_sym_function] = ACTIONS(3667), + [anon_sym_GT] = ACTIONS(3665), + [anon_sym_use] = ACTIONS(3667), + [anon_sym_use_BANG] = ACTIONS(3665), + [anon_sym_do_BANG] = ACTIONS(3665), + [anon_sym_begin] = ACTIONS(3667), + [aux_sym_char_token1] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3667), + [anon_sym_AT_DQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3665), + [sym_bool] = ACTIONS(3667), + [sym_unit] = ACTIONS(3665), + [anon_sym_LPAREN_PIPE] = ACTIONS(3667), + [sym_op_identifier] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_PLUS_DOT] = ACTIONS(3665), + [anon_sym_DASH_DOT] = ACTIONS(3665), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_TILDE] = ACTIONS(3665), + [aux_sym_prefix_op_token1] = ACTIONS(3665), + [sym_int] = ACTIONS(3667), + [sym_xint] = ACTIONS(3665), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -364761,297 +365512,84 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3541), + [anon_sym_POUNDif] = ACTIONS(3665), }, [3162] = { [sym_block_comment] = STATE(3162), [sym_compiler_directive_decl] = STATE(3162), [sym_fsi_directive_decl] = STATE(3162), [sym_preproc_line] = STATE(3162), - [sym_identifier] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACK_PIPE] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LT_AT] = ACTIONS(2528), - [anon_sym_LT_AT_AT] = ACTIONS(2526), - [anon_sym_LBRACE_PIPE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_return_BANG] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_yield_BANG] = ACTIONS(2526), - [anon_sym_lazy] = ACTIONS(2528), - [anon_sym_assert] = ACTIONS(2528), - [anon_sym_upcast] = ACTIONS(2528), - [anon_sym_downcast] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_fun] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_match_BANG] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_use_BANG] = ACTIONS(2526), - [anon_sym_do_BANG] = ACTIONS(2526), - [anon_sym_begin] = ACTIONS(2528), - [aux_sym_char_token1] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_AT_DQUOTE] = ACTIONS(2526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), - [sym_bool] = ACTIONS(2528), - [sym_unit] = ACTIONS(2526), - [anon_sym_LPAREN_PIPE] = ACTIONS(2528), - [sym_op_identifier] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_DOT] = ACTIONS(2526), - [anon_sym_DASH_DOT] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2526), - [aux_sym_prefix_op_token1] = ACTIONS(2526), - [sym_int] = ACTIONS(2528), - [sym_xint] = ACTIONS(2526), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_do] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_let_BANG] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3659), + [anon_sym_LBRACK_PIPE] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LT_AT] = ACTIONS(3659), + [anon_sym_LT_AT_AT] = ACTIONS(3657), + [anon_sym_LBRACE_PIPE] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3659), + [anon_sym_return_BANG] = ACTIONS(3657), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_yield_BANG] = ACTIONS(3657), + [anon_sym_lazy] = ACTIONS(3659), + [anon_sym_assert] = ACTIONS(3659), + [anon_sym_upcast] = ACTIONS(3659), + [anon_sym_downcast] = ACTIONS(3659), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_fun] = ACTIONS(3659), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_match_BANG] = ACTIONS(3657), + [anon_sym_function] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3657), + [anon_sym_use] = ACTIONS(3659), + [anon_sym_use_BANG] = ACTIONS(3657), + [anon_sym_do_BANG] = ACTIONS(3657), + [anon_sym_begin] = ACTIONS(3659), + [aux_sym_char_token1] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [anon_sym_AT_DQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3657), + [sym_bool] = ACTIONS(3659), + [sym_unit] = ACTIONS(3657), + [anon_sym_LPAREN_PIPE] = ACTIONS(3659), + [sym_op_identifier] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_PLUS_DOT] = ACTIONS(3657), + [anon_sym_DASH_DOT] = ACTIONS(3657), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_TILDE] = ACTIONS(3657), + [aux_sym_prefix_op_token1] = ACTIONS(3657), + [sym_int] = ACTIONS(3659), + [sym_xint] = ACTIONS(3657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3657), }, [3163] = { [sym_block_comment] = STATE(3163), [sym_compiler_directive_decl] = STATE(3163), [sym_fsi_directive_decl] = STATE(3163), [sym_preproc_line] = STATE(3163), - [sym_identifier] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_let_BANG] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_LT_AT] = ACTIONS(3539), - [anon_sym_LT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACE_PIPE] = ACTIONS(3537), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_return_BANG] = ACTIONS(3537), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_yield_BANG] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3539), - [anon_sym_assert] = ACTIONS(3539), - [anon_sym_upcast] = ACTIONS(3539), - [anon_sym_downcast] = ACTIONS(3539), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_fun] = ACTIONS(3539), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_match_BANG] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(3539), - [anon_sym_GT] = ACTIONS(3537), - [anon_sym_use] = ACTIONS(3539), - [anon_sym_use_BANG] = ACTIONS(3537), - [anon_sym_do_BANG] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3539), - [aux_sym_char_token1] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_AT_DQUOTE] = ACTIONS(3537), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3537), - [sym_bool] = ACTIONS(3539), - [sym_unit] = ACTIONS(3537), - [anon_sym_LPAREN_PIPE] = ACTIONS(3539), - [sym_op_identifier] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_PLUS_DOT] = ACTIONS(3537), - [anon_sym_DASH_DOT] = ACTIONS(3537), - [anon_sym_PERCENT] = ACTIONS(3537), - [anon_sym_AMP_AMP] = ACTIONS(3537), - [anon_sym_TILDE] = ACTIONS(3537), - [aux_sym_prefix_op_token1] = ACTIONS(3537), - [sym_int] = ACTIONS(3539), - [sym_xint] = ACTIONS(3537), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3537), - }, - [3164] = { - [sym_block_comment] = STATE(3164), - [sym_compiler_directive_decl] = STATE(3164), - [sym_fsi_directive_decl] = STATE(3164), - [sym_preproc_line] = STATE(3164), - [aux_sym__function_or_value_defns_repeat1] = STATE(3164), - [sym_identifier] = ACTIONS(5015), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_do] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5625), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_let_BANG] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_PIPE] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LT_AT] = ACTIONS(5015), - [anon_sym_LT_AT_AT] = ACTIONS(5013), - [anon_sym_LBRACE_PIPE] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_return_BANG] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_yield_BANG] = ACTIONS(5013), - [anon_sym_lazy] = ACTIONS(5015), - [anon_sym_assert] = ACTIONS(5015), - [anon_sym_upcast] = ACTIONS(5015), - [anon_sym_downcast] = ACTIONS(5015), - [anon_sym_for] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_match] = ACTIONS(5015), - [anon_sym_match_BANG] = ACTIONS(5013), - [anon_sym_function] = ACTIONS(5015), - [anon_sym_use] = ACTIONS(5015), - [anon_sym_use_BANG] = ACTIONS(5013), - [anon_sym_do_BANG] = ACTIONS(5013), - [anon_sym_begin] = ACTIONS(5015), - [aux_sym_char_token1] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_AT_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5013), - [sym_bool] = ACTIONS(5015), - [sym_unit] = ACTIONS(5013), - [anon_sym_LPAREN_PIPE] = ACTIONS(5015), - [sym_op_identifier] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_PLUS_DOT] = ACTIONS(5013), - [anon_sym_DASH_DOT] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5013), - [aux_sym_prefix_op_token1] = ACTIONS(5013), - [sym_int] = ACTIONS(5015), - [sym_xint] = ACTIONS(5013), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5013), - }, - [3165] = { - [sym_block_comment] = STATE(3165), - [sym_compiler_directive_decl] = STATE(3165), - [sym_fsi_directive_decl] = STATE(3165), - [sym_preproc_line] = STATE(3165), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [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_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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5124), - [anon_sym_POUNDendif] = ACTIONS(5124), - }, - [3166] = { - [sym_block_comment] = STATE(3166), - [sym_compiler_directive_decl] = STATE(3166), - [sym_fsi_directive_decl] = STATE(3166), - [sym_preproc_line] = STATE(3166), [sym_identifier] = ACTIONS(3655), [anon_sym_return] = ACTIONS(3655), [anon_sym_do] = ACTIONS(3655), @@ -365118,210 +365656,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(3653), }, + [3164] = { + [sym_block_comment] = STATE(3164), + [sym_compiler_directive_decl] = STATE(3164), + [sym_fsi_directive_decl] = STATE(3164), + [sym_preproc_line] = STATE(3164), + [sym_identifier] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_do] = ACTIONS(3651), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_let_BANG] = ACTIONS(3649), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3649), + [anon_sym_null] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACK_PIPE] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_LT_AT] = ACTIONS(3651), + [anon_sym_LT_AT_AT] = ACTIONS(3649), + [anon_sym_LBRACE_PIPE] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_return_BANG] = ACTIONS(3649), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_yield_BANG] = ACTIONS(3649), + [anon_sym_lazy] = ACTIONS(3651), + [anon_sym_assert] = ACTIONS(3651), + [anon_sym_upcast] = ACTIONS(3651), + [anon_sym_downcast] = ACTIONS(3651), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_fun] = ACTIONS(3651), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_match_BANG] = ACTIONS(3649), + [anon_sym_function] = ACTIONS(3651), + [anon_sym_GT] = ACTIONS(3649), + [anon_sym_use] = ACTIONS(3651), + [anon_sym_use_BANG] = ACTIONS(3649), + [anon_sym_do_BANG] = ACTIONS(3649), + [anon_sym_begin] = ACTIONS(3651), + [aux_sym_char_token1] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [anon_sym_AT_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3649), + [sym_bool] = ACTIONS(3651), + [sym_unit] = ACTIONS(3649), + [anon_sym_LPAREN_PIPE] = ACTIONS(3651), + [sym_op_identifier] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3651), + [anon_sym_PLUS_DOT] = ACTIONS(3649), + [anon_sym_DASH_DOT] = ACTIONS(3649), + [anon_sym_PERCENT] = ACTIONS(3649), + [anon_sym_AMP_AMP] = ACTIONS(3649), + [anon_sym_TILDE] = ACTIONS(3649), + [aux_sym_prefix_op_token1] = ACTIONS(3649), + [sym_int] = ACTIONS(3651), + [sym_xint] = ACTIONS(3649), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3649), + }, + [3165] = { + [sym_block_comment] = STATE(3165), + [sym_compiler_directive_decl] = STATE(3165), + [sym_fsi_directive_decl] = STATE(3165), + [sym_preproc_line] = STATE(3165), + [sym_identifier] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5120), + [anon_sym_do] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_let_BANG] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LBRACK_PIPE] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_LT_AT] = ACTIONS(5120), + [anon_sym_LT_AT_AT] = ACTIONS(5118), + [anon_sym_LBRACE_PIPE] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5120), + [anon_sym_return_BANG] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5120), + [anon_sym_yield_BANG] = ACTIONS(5118), + [anon_sym_lazy] = ACTIONS(5120), + [anon_sym_assert] = ACTIONS(5120), + [anon_sym_upcast] = ACTIONS(5120), + [anon_sym_downcast] = ACTIONS(5120), + [anon_sym_for] = ACTIONS(5120), + [anon_sym_while] = ACTIONS(5120), + [anon_sym_if] = ACTIONS(5120), + [anon_sym_fun] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5120), + [anon_sym_match_BANG] = ACTIONS(5118), + [anon_sym_function] = ACTIONS(5120), + [anon_sym_use] = ACTIONS(5120), + [anon_sym_use_BANG] = ACTIONS(5118), + [anon_sym_do_BANG] = ACTIONS(5118), + [anon_sym_begin] = ACTIONS(5120), + [aux_sym_char_token1] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [anon_sym_AT_DQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [sym_bool] = ACTIONS(5120), + [sym_unit] = ACTIONS(5118), + [anon_sym_LPAREN_PIPE] = ACTIONS(5120), + [sym_op_identifier] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS_DOT] = ACTIONS(5118), + [anon_sym_DASH_DOT] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [aux_sym_prefix_op_token1] = ACTIONS(5118), + [sym_int] = ACTIONS(5120), + [sym_xint] = ACTIONS(5118), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5118), + [sym__newline] = ACTIONS(5118), + [sym__dedent] = ACTIONS(5118), + }, + [3166] = { + [sym_block_comment] = STATE(3166), + [sym_compiler_directive_decl] = STATE(3166), + [sym_fsi_directive_decl] = STATE(3166), + [sym_preproc_line] = STATE(3166), + [sym_identifier] = ACTIONS(3717), + [anon_sym_return] = ACTIONS(3717), + [anon_sym_do] = ACTIONS(3717), + [anon_sym_let] = ACTIONS(3717), + [anon_sym_let_BANG] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3715), + [anon_sym_null] = ACTIONS(3717), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_LBRACK_PIPE] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_LT_AT] = ACTIONS(3717), + [anon_sym_LT_AT_AT] = ACTIONS(3715), + [anon_sym_LBRACE_PIPE] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3717), + [anon_sym_return_BANG] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3717), + [anon_sym_yield_BANG] = ACTIONS(3715), + [anon_sym_lazy] = ACTIONS(3717), + [anon_sym_assert] = ACTIONS(3717), + [anon_sym_upcast] = ACTIONS(3717), + [anon_sym_downcast] = ACTIONS(3717), + [anon_sym_for] = ACTIONS(3717), + [anon_sym_while] = ACTIONS(3717), + [anon_sym_if] = ACTIONS(3717), + [anon_sym_fun] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3717), + [anon_sym_match] = ACTIONS(3717), + [anon_sym_match_BANG] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3715), + [anon_sym_use] = ACTIONS(3717), + [anon_sym_use_BANG] = ACTIONS(3715), + [anon_sym_do_BANG] = ACTIONS(3715), + [anon_sym_begin] = ACTIONS(3717), + [aux_sym_char_token1] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_AT_DQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3715), + [sym_bool] = ACTIONS(3717), + [sym_unit] = ACTIONS(3715), + [anon_sym_LPAREN_PIPE] = ACTIONS(3717), + [sym_op_identifier] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_PLUS_DOT] = ACTIONS(3715), + [anon_sym_DASH_DOT] = ACTIONS(3715), + [anon_sym_PERCENT] = ACTIONS(3715), + [anon_sym_AMP_AMP] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_prefix_op_token1] = ACTIONS(3715), + [sym_int] = ACTIONS(3717), + [sym_xint] = ACTIONS(3715), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3715), + }, [3167] = { [sym_block_comment] = STATE(3167), [sym_compiler_directive_decl] = STATE(3167), [sym_fsi_directive_decl] = STATE(3167), [sym_preproc_line] = STATE(3167), - [sym_identifier] = ACTIONS(5122), - [anon_sym_return] = ACTIONS(5122), - [anon_sym_do] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_let_BANG] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LBRACK_PIPE] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_LT_AT] = ACTIONS(5122), - [anon_sym_LT_AT_AT] = ACTIONS(5120), - [anon_sym_LBRACE_PIPE] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5122), - [anon_sym_return_BANG] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5122), - [anon_sym_yield_BANG] = ACTIONS(5120), - [anon_sym_lazy] = ACTIONS(5122), - [anon_sym_assert] = ACTIONS(5122), - [anon_sym_upcast] = ACTIONS(5122), - [anon_sym_downcast] = ACTIONS(5122), - [anon_sym_for] = ACTIONS(5122), - [anon_sym_while] = ACTIONS(5122), - [anon_sym_if] = ACTIONS(5122), - [anon_sym_fun] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5122), - [anon_sym_match] = ACTIONS(5122), - [anon_sym_match_BANG] = ACTIONS(5120), - [anon_sym_function] = ACTIONS(5122), - [anon_sym_use] = ACTIONS(5122), - [anon_sym_use_BANG] = ACTIONS(5120), - [anon_sym_do_BANG] = ACTIONS(5120), - [anon_sym_begin] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [anon_sym_AT_DQUOTE] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [sym_bool] = ACTIONS(5122), - [sym_unit] = ACTIONS(5120), - [anon_sym_LPAREN_PIPE] = ACTIONS(5122), - [sym_op_identifier] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_PLUS_DOT] = ACTIONS(5120), - [anon_sym_DASH_DOT] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5120), - [aux_sym_prefix_op_token1] = ACTIONS(5120), - [sym_int] = ACTIONS(5122), - [sym_xint] = ACTIONS(5120), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5120), - [anon_sym_POUNDendif] = ACTIONS(5120), + [aux_sym__function_or_value_defns_repeat1] = STATE(3167), + [sym_identifier] = ACTIONS(4951), + [anon_sym_return] = ACTIONS(4951), + [anon_sym_do] = ACTIONS(4951), + [anon_sym_and] = ACTIONS(5631), + [anon_sym_let] = ACTIONS(4951), + [anon_sym_let_BANG] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LBRACK_PIPE] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LT_AT] = ACTIONS(4951), + [anon_sym_LT_AT_AT] = ACTIONS(4949), + [anon_sym_LBRACE_PIPE] = ACTIONS(4949), + [anon_sym_new] = ACTIONS(4951), + [anon_sym_return_BANG] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4951), + [anon_sym_yield_BANG] = ACTIONS(4949), + [anon_sym_lazy] = ACTIONS(4951), + [anon_sym_assert] = ACTIONS(4951), + [anon_sym_upcast] = ACTIONS(4951), + [anon_sym_downcast] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4951), + [anon_sym_while] = ACTIONS(4951), + [anon_sym_if] = ACTIONS(4951), + [anon_sym_fun] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4951), + [anon_sym_match] = ACTIONS(4951), + [anon_sym_match_BANG] = ACTIONS(4949), + [anon_sym_function] = ACTIONS(4951), + [anon_sym_use] = ACTIONS(4951), + [anon_sym_use_BANG] = ACTIONS(4949), + [anon_sym_do_BANG] = ACTIONS(4949), + [anon_sym_begin] = ACTIONS(4951), + [aux_sym_char_token1] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [anon_sym_AT_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4949), + [sym_bool] = ACTIONS(4951), + [sym_unit] = ACTIONS(4949), + [anon_sym_LPAREN_PIPE] = ACTIONS(4951), + [sym_op_identifier] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_PLUS_DOT] = ACTIONS(4949), + [anon_sym_DASH_DOT] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [aux_sym_prefix_op_token1] = ACTIONS(4949), + [sym_int] = ACTIONS(4951), + [sym_xint] = ACTIONS(4949), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4949), }, [3168] = { [sym_block_comment] = STATE(3168), [sym_compiler_directive_decl] = STATE(3168), [sym_fsi_directive_decl] = STATE(3168), [sym_preproc_line] = STATE(3168), - [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_SEMI] = ACTIONS(3), - [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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3644), + [sym_identifier] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5116), + [anon_sym_do] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_let_BANG] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LBRACK_PIPE] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_LT_AT] = ACTIONS(5116), + [anon_sym_LT_AT_AT] = ACTIONS(5114), + [anon_sym_LBRACE_PIPE] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5116), + [anon_sym_return_BANG] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5116), + [anon_sym_yield_BANG] = ACTIONS(5114), + [anon_sym_lazy] = ACTIONS(5116), + [anon_sym_assert] = ACTIONS(5116), + [anon_sym_upcast] = ACTIONS(5116), + [anon_sym_downcast] = ACTIONS(5116), + [anon_sym_for] = ACTIONS(5116), + [anon_sym_while] = ACTIONS(5116), + [anon_sym_if] = ACTIONS(5116), + [anon_sym_fun] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5116), + [anon_sym_match_BANG] = ACTIONS(5114), + [anon_sym_function] = ACTIONS(5116), + [anon_sym_use] = ACTIONS(5116), + [anon_sym_use_BANG] = ACTIONS(5114), + [anon_sym_do_BANG] = ACTIONS(5114), + [anon_sym_begin] = ACTIONS(5116), + [aux_sym_char_token1] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_AT_DQUOTE] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [sym_bool] = ACTIONS(5116), + [sym_unit] = ACTIONS(5114), + [anon_sym_LPAREN_PIPE] = ACTIONS(5116), + [sym_op_identifier] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS_DOT] = ACTIONS(5114), + [anon_sym_DASH_DOT] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [aux_sym_prefix_op_token1] = ACTIONS(5114), + [sym_int] = ACTIONS(5116), + [sym_xint] = ACTIONS(5114), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5114), + [anon_sym_POUNDendif] = ACTIONS(5114), }, [3169] = { [sym_block_comment] = STATE(3169), [sym_compiler_directive_decl] = STATE(3169), [sym_fsi_directive_decl] = STATE(3169), [sym_preproc_line] = STATE(3169), - [sym_identifier] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_let_BANG] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LBRACK_PIPE] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_LT_AT] = ACTIONS(3704), - [anon_sym_LT_AT_AT] = ACTIONS(3702), - [anon_sym_LBRACE_PIPE] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_return_BANG] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_yield_BANG] = ACTIONS(3702), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_assert] = ACTIONS(3704), - [anon_sym_upcast] = ACTIONS(3704), - [anon_sym_downcast] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_fun] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_match] = ACTIONS(3704), - [anon_sym_match_BANG] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_use] = ACTIONS(3704), - [anon_sym_use_BANG] = ACTIONS(3702), - [anon_sym_do_BANG] = ACTIONS(3702), - [anon_sym_begin] = ACTIONS(3704), - [aux_sym_char_token1] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_AT_DQUOTE] = ACTIONS(3702), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym_bool] = ACTIONS(3704), - [sym_unit] = ACTIONS(3702), - [anon_sym_LPAREN_PIPE] = ACTIONS(3704), - [sym_op_identifier] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS_DOT] = ACTIONS(3702), - [anon_sym_DASH_DOT] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [aux_sym_prefix_op_token1] = ACTIONS(3702), - [sym_int] = ACTIONS(3704), - [sym_xint] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LBRACK_PIPE] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_LT_AT] = ACTIONS(3725), + [anon_sym_LT_AT_AT] = ACTIONS(3723), + [anon_sym_LBRACE_PIPE] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_return_BANG] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_yield_BANG] = ACTIONS(3723), + [anon_sym_lazy] = ACTIONS(3725), + [anon_sym_assert] = ACTIONS(3725), + [anon_sym_upcast] = ACTIONS(3725), + [anon_sym_downcast] = ACTIONS(3725), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_fun] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_match_BANG] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3725), + [anon_sym_GT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_use_BANG] = ACTIONS(3723), + [anon_sym_do_BANG] = ACTIONS(3723), + [anon_sym_begin] = ACTIONS(3725), + [aux_sym_char_token1] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [anon_sym_AT_DQUOTE] = ACTIONS(3723), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3723), + [sym_bool] = ACTIONS(3725), + [sym_unit] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(3725), + [sym_op_identifier] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_PLUS_DOT] = ACTIONS(3723), + [anon_sym_DASH_DOT] = ACTIONS(3723), + [anon_sym_PERCENT] = ACTIONS(3723), + [anon_sym_AMP_AMP] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(3723), + [aux_sym_prefix_op_token1] = ACTIONS(3723), + [sym_int] = ACTIONS(3725), + [sym_xint] = ACTIONS(3723), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3723), + }, + [3170] = { + [sym_block_comment] = STATE(3170), + [sym_compiler_directive_decl] = STATE(3170), + [sym_fsi_directive_decl] = STATE(3170), + [sym_preproc_line] = STATE(3170), + [sym_identifier] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_and] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3219), + [anon_sym_DASH_DOT] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3219), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -365329,491 +366150,426 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(3702), - }, - [3170] = { - [sym_block_comment] = STATE(3170), - [sym_compiler_directive_decl] = STATE(3170), - [sym_fsi_directive_decl] = STATE(3170), - [sym_preproc_line] = STATE(3170), - [sym_identifier] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_let_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_COMMA] = ACTIONS(3632), - [anon_sym_null] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LBRACK_PIPE] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_LT_AT] = ACTIONS(3630), - [anon_sym_LT_AT_AT] = ACTIONS(3632), - [anon_sym_LBRACE_PIPE] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_return_BANG] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_yield_BANG] = ACTIONS(3632), - [anon_sym_lazy] = ACTIONS(3630), - [anon_sym_assert] = ACTIONS(3630), - [anon_sym_upcast] = ACTIONS(3630), - [anon_sym_downcast] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_fun] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_match] = ACTIONS(3630), - [anon_sym_match_BANG] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_GT] = ACTIONS(3632), - [anon_sym_use] = ACTIONS(3630), - [anon_sym_use_BANG] = ACTIONS(3632), - [anon_sym_do_BANG] = ACTIONS(3632), - [anon_sym_begin] = ACTIONS(3630), - [aux_sym_char_token1] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_AT_DQUOTE] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3632), - [sym_bool] = ACTIONS(3630), - [sym_unit] = ACTIONS(3632), - [anon_sym_LPAREN_PIPE] = ACTIONS(3630), - [sym_op_identifier] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS_DOT] = ACTIONS(3632), - [anon_sym_DASH_DOT] = ACTIONS(3632), - [anon_sym_PERCENT] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [aux_sym_prefix_op_token1] = ACTIONS(3632), - [sym_int] = ACTIONS(3630), - [sym_xint] = ACTIONS(3632), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3632), + [anon_sym_POUNDif] = ACTIONS(3219), + [anon_sym_POUNDendif] = ACTIONS(3219), }, [3171] = { [sym_block_comment] = STATE(3171), [sym_compiler_directive_decl] = STATE(3171), [sym_fsi_directive_decl] = STATE(3171), [sym_preproc_line] = STATE(3171), - [sym_identifier] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_let_BANG] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LBRACK_PIPE] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_LT_AT] = ACTIONS(3626), - [anon_sym_LT_AT_AT] = ACTIONS(3628), - [anon_sym_LBRACE_PIPE] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_return_BANG] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_yield_BANG] = ACTIONS(3628), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_assert] = ACTIONS(3626), - [anon_sym_upcast] = ACTIONS(3626), - [anon_sym_downcast] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_fun] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_match] = ACTIONS(3626), - [anon_sym_match_BANG] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_GT] = ACTIONS(3628), - [anon_sym_use] = ACTIONS(3626), - [anon_sym_use_BANG] = ACTIONS(3628), - [anon_sym_do_BANG] = ACTIONS(3628), - [anon_sym_begin] = ACTIONS(3626), - [aux_sym_char_token1] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_AT_DQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3628), - [sym_bool] = ACTIONS(3626), - [sym_unit] = ACTIONS(3628), - [anon_sym_LPAREN_PIPE] = ACTIONS(3626), - [sym_op_identifier] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS_DOT] = ACTIONS(3628), - [anon_sym_DASH_DOT] = ACTIONS(3628), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [aux_sym_prefix_op_token1] = ACTIONS(3628), - [sym_int] = ACTIONS(3626), - [sym_xint] = ACTIONS(3628), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3628), + [sym_identifier] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_do] = ACTIONS(5056), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_PIPE] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LT_AT] = ACTIONS(5056), + [anon_sym_LT_AT_AT] = ACTIONS(5054), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5054), + [sym__newline] = ACTIONS(5054), + [sym__dedent] = ACTIONS(5054), }, [3172] = { [sym_block_comment] = STATE(3172), [sym_compiler_directive_decl] = STATE(3172), [sym_fsi_directive_decl] = STATE(3172), [sym_preproc_line] = STATE(3172), - [sym_identifier] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_do] = ACTIONS(3611), - [anon_sym_let] = ACTIONS(3611), - [anon_sym_let_BANG] = ACTIONS(3613), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_LBRACK_PIPE] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_LT_AT] = ACTIONS(3611), - [anon_sym_LT_AT_AT] = ACTIONS(3613), - [anon_sym_LBRACE_PIPE] = ACTIONS(3613), - [anon_sym_new] = ACTIONS(3611), - [anon_sym_return_BANG] = ACTIONS(3613), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_yield_BANG] = ACTIONS(3613), - [anon_sym_lazy] = ACTIONS(3611), - [anon_sym_assert] = ACTIONS(3611), - [anon_sym_upcast] = ACTIONS(3611), - [anon_sym_downcast] = ACTIONS(3611), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_fun] = ACTIONS(3611), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_match_BANG] = ACTIONS(3613), - [anon_sym_function] = ACTIONS(3611), - [anon_sym_GT] = ACTIONS(3613), - [anon_sym_use] = ACTIONS(3611), - [anon_sym_use_BANG] = ACTIONS(3613), - [anon_sym_do_BANG] = ACTIONS(3613), - [anon_sym_begin] = ACTIONS(3611), - [aux_sym_char_token1] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3611), - [anon_sym_DQUOTE] = ACTIONS(3611), - [anon_sym_AT_DQUOTE] = ACTIONS(3613), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3613), - [sym_bool] = ACTIONS(3611), - [sym_unit] = ACTIONS(3613), - [anon_sym_LPAREN_PIPE] = ACTIONS(3611), - [sym_op_identifier] = ACTIONS(3613), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_PLUS_DOT] = ACTIONS(3613), - [anon_sym_DASH_DOT] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3613), - [anon_sym_AMP_AMP] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(3613), - [aux_sym_prefix_op_token1] = ACTIONS(3613), - [sym_int] = ACTIONS(3611), - [sym_xint] = ACTIONS(3613), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3613), + [sym_identifier] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5128), + [anon_sym_do] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_let_BANG] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LBRACK_PIPE] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LT_AT] = ACTIONS(5128), + [anon_sym_LT_AT_AT] = ACTIONS(5126), + [anon_sym_LBRACE_PIPE] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5128), + [anon_sym_return_BANG] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5128), + [anon_sym_yield_BANG] = ACTIONS(5126), + [anon_sym_lazy] = ACTIONS(5128), + [anon_sym_assert] = ACTIONS(5128), + [anon_sym_upcast] = ACTIONS(5128), + [anon_sym_downcast] = ACTIONS(5128), + [anon_sym_for] = ACTIONS(5128), + [anon_sym_while] = ACTIONS(5128), + [anon_sym_if] = ACTIONS(5128), + [anon_sym_fun] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5128), + [anon_sym_match_BANG] = ACTIONS(5126), + [anon_sym_function] = ACTIONS(5128), + [anon_sym_use] = ACTIONS(5128), + [anon_sym_use_BANG] = ACTIONS(5126), + [anon_sym_do_BANG] = ACTIONS(5126), + [anon_sym_begin] = ACTIONS(5128), + [aux_sym_char_token1] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [anon_sym_AT_DQUOTE] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [sym_bool] = ACTIONS(5128), + [sym_unit] = ACTIONS(5126), + [anon_sym_LPAREN_PIPE] = ACTIONS(5128), + [sym_op_identifier] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS_DOT] = ACTIONS(5126), + [anon_sym_DASH_DOT] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [aux_sym_prefix_op_token1] = ACTIONS(5126), + [sym_int] = ACTIONS(5128), + [sym_xint] = ACTIONS(5126), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5126), + [anon_sym_POUNDendif] = ACTIONS(5126), }, [3173] = { [sym_block_comment] = STATE(3173), [sym_compiler_directive_decl] = STATE(3173), [sym_fsi_directive_decl] = STATE(3173), [sym_preproc_line] = STATE(3173), - [sym_identifier] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5072), - [anon_sym_do] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_let_BANG] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LBRACK_PIPE] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_LT_AT] = ACTIONS(5072), - [anon_sym_LT_AT_AT] = ACTIONS(5070), - [anon_sym_LBRACE_PIPE] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5072), - [anon_sym_return_BANG] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5072), - [anon_sym_yield_BANG] = ACTIONS(5070), - [anon_sym_lazy] = ACTIONS(5072), - [anon_sym_assert] = ACTIONS(5072), - [anon_sym_upcast] = ACTIONS(5072), - [anon_sym_downcast] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5072), - [anon_sym_while] = ACTIONS(5072), - [anon_sym_if] = ACTIONS(5072), - [anon_sym_fun] = ACTIONS(5072), - [anon_sym_try] = ACTIONS(5072), - [anon_sym_match] = ACTIONS(5072), - [anon_sym_match_BANG] = ACTIONS(5070), - [anon_sym_function] = ACTIONS(5072), - [anon_sym_use] = ACTIONS(5072), - [anon_sym_use_BANG] = ACTIONS(5070), - [anon_sym_do_BANG] = ACTIONS(5070), - [anon_sym_begin] = ACTIONS(5072), - [aux_sym_char_token1] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE] = ACTIONS(5072), - [anon_sym_AT_DQUOTE] = ACTIONS(5070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5070), - [sym_bool] = ACTIONS(5072), - [sym_unit] = ACTIONS(5070), - [anon_sym_LPAREN_PIPE] = ACTIONS(5072), - [sym_op_identifier] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5072), - [anon_sym_PLUS_DOT] = ACTIONS(5070), - [anon_sym_DASH_DOT] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5070), - [aux_sym_prefix_op_token1] = ACTIONS(5070), - [sym_int] = ACTIONS(5072), - [sym_xint] = ACTIONS(5070), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5070), + [aux_sym__function_or_value_defns_repeat1] = STATE(3186), + [sym_identifier] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_do] = ACTIONS(4972), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_let_BANG] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_LBRACK_PIPE] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LT_AT] = ACTIONS(4972), + [anon_sym_LT_AT_AT] = ACTIONS(4970), + [anon_sym_LBRACE_PIPE] = ACTIONS(4970), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_return_BANG] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_yield_BANG] = ACTIONS(4970), + [anon_sym_lazy] = ACTIONS(4972), + [anon_sym_assert] = ACTIONS(4972), + [anon_sym_upcast] = ACTIONS(4972), + [anon_sym_downcast] = ACTIONS(4972), + [anon_sym_for] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_match] = ACTIONS(4972), + [anon_sym_match_BANG] = ACTIONS(4970), + [anon_sym_function] = ACTIONS(4972), + [anon_sym_use] = ACTIONS(4972), + [anon_sym_use_BANG] = ACTIONS(4970), + [anon_sym_do_BANG] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4972), + [aux_sym_char_token1] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4972), + [anon_sym_DQUOTE] = ACTIONS(4972), + [anon_sym_AT_DQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4970), + [sym_bool] = ACTIONS(4972), + [sym_unit] = ACTIONS(4970), + [anon_sym_LPAREN_PIPE] = ACTIONS(4972), + [sym_op_identifier] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_PLUS_DOT] = ACTIONS(4970), + [anon_sym_DASH_DOT] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_TILDE] = ACTIONS(4970), + [aux_sym_prefix_op_token1] = ACTIONS(4970), + [sym_int] = ACTIONS(4972), + [sym_xint] = ACTIONS(4970), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4970), }, [3174] = { [sym_block_comment] = STATE(3174), [sym_compiler_directive_decl] = STATE(3174), [sym_fsi_directive_decl] = STATE(3174), [sym_preproc_line] = STATE(3174), - [sym_identifier] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_let_BANG] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_LT_AT] = ACTIONS(3165), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_return_BANG] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_yield_BANG] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_upcast] = ACTIONS(3165), - [anon_sym_downcast] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_fun] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_match_BANG] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_use] = ACTIONS(3165), - [anon_sym_use_BANG] = ACTIONS(3167), - [anon_sym_do_BANG] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [aux_sym_char_token1] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [anon_sym_AT_DQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3167), - [sym_bool] = ACTIONS(3165), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3165), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [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(3167), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [sym_int] = ACTIONS(3165), - [sym_xint] = ACTIONS(3167), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_do] = ACTIONS(3647), + [anon_sym_let] = ACTIONS(3647), + [anon_sym_let_BANG] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3647), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3647), + [anon_sym_LBRACK_PIPE] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LT_AT] = ACTIONS(3647), + [anon_sym_LT_AT_AT] = ACTIONS(3645), + [anon_sym_LBRACE_PIPE] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_return_BANG] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_yield_BANG] = ACTIONS(3645), + [anon_sym_lazy] = ACTIONS(3647), + [anon_sym_assert] = ACTIONS(3647), + [anon_sym_upcast] = ACTIONS(3647), + [anon_sym_downcast] = ACTIONS(3647), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_fun] = ACTIONS(3647), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_match_BANG] = ACTIONS(3645), + [anon_sym_function] = ACTIONS(3647), + [anon_sym_GT] = ACTIONS(3645), + [anon_sym_use] = ACTIONS(3647), + [anon_sym_use_BANG] = ACTIONS(3645), + [anon_sym_do_BANG] = ACTIONS(3645), + [anon_sym_begin] = ACTIONS(3647), + [aux_sym_char_token1] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(3647), + [anon_sym_AT_DQUOTE] = ACTIONS(3645), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), + [sym_bool] = ACTIONS(3647), + [sym_unit] = ACTIONS(3645), + [anon_sym_LPAREN_PIPE] = ACTIONS(3647), + [sym_op_identifier] = ACTIONS(3645), + [anon_sym_PLUS] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_PLUS_DOT] = ACTIONS(3645), + [anon_sym_DASH_DOT] = ACTIONS(3645), + [anon_sym_PERCENT] = ACTIONS(3645), + [anon_sym_AMP_AMP] = ACTIONS(3645), + [anon_sym_TILDE] = ACTIONS(3645), + [aux_sym_prefix_op_token1] = ACTIONS(3645), + [sym_int] = ACTIONS(3647), + [sym_xint] = ACTIONS(3645), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3645), }, [3175] = { [sym_block_comment] = STATE(3175), [sym_compiler_directive_decl] = STATE(3175), [sym_fsi_directive_decl] = STATE(3175), [sym_preproc_line] = STATE(3175), - [aux_sym_prefix_op_repeat1] = STATE(3180), - [sym_identifier] = ACTIONS(5628), - [anon_sym_return] = ACTIONS(5628), - [anon_sym_do] = ACTIONS(5628), - [anon_sym_let] = ACTIONS(5628), - [anon_sym_let_BANG] = ACTIONS(5630), - [anon_sym_LPAREN] = ACTIONS(5628), - [anon_sym_null] = ACTIONS(5628), - [anon_sym_AMP] = ACTIONS(5628), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5628), - [anon_sym_LBRACK_PIPE] = ACTIONS(5630), - [anon_sym_LBRACE] = ACTIONS(5628), - [anon_sym_LT_AT] = ACTIONS(5628), - [anon_sym_LT_AT_AT] = ACTIONS(5630), - [anon_sym_LBRACE_PIPE] = ACTIONS(5630), - [anon_sym_new] = ACTIONS(5628), - [anon_sym_return_BANG] = ACTIONS(5630), - [anon_sym_yield] = ACTIONS(5628), - [anon_sym_yield_BANG] = ACTIONS(5630), - [anon_sym_lazy] = ACTIONS(5628), - [anon_sym_assert] = ACTIONS(5628), - [anon_sym_upcast] = ACTIONS(5628), - [anon_sym_downcast] = ACTIONS(5628), - [anon_sym_for] = ACTIONS(5628), - [anon_sym_while] = ACTIONS(5628), - [anon_sym_if] = ACTIONS(5628), - [anon_sym_fun] = ACTIONS(5628), - [anon_sym_try] = ACTIONS(5628), - [anon_sym_match] = ACTIONS(5628), - [anon_sym_match_BANG] = ACTIONS(5630), - [anon_sym_function] = ACTIONS(5628), - [anon_sym_use] = ACTIONS(5628), - [anon_sym_use_BANG] = ACTIONS(5630), - [anon_sym_do_BANG] = ACTIONS(5630), - [anon_sym_begin] = ACTIONS(5628), - [aux_sym_char_token1] = ACTIONS(5630), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5628), - [anon_sym_DQUOTE] = ACTIONS(5628), - [anon_sym_AT_DQUOTE] = ACTIONS(5630), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5630), - [sym_bool] = ACTIONS(5628), - [sym_unit] = ACTIONS(5630), - [anon_sym_LPAREN_PIPE] = ACTIONS(5628), - [sym_op_identifier] = ACTIONS(5630), - [anon_sym_PLUS] = ACTIONS(5628), - [anon_sym_DASH] = ACTIONS(5628), - [anon_sym_PLUS_DOT] = ACTIONS(5630), - [anon_sym_DASH_DOT] = ACTIONS(5630), - [anon_sym_PERCENT] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_TILDE] = ACTIONS(5630), - [aux_sym_prefix_op_token1] = ACTIONS(5630), - [sym_int] = ACTIONS(5628), - [sym_xint] = ACTIONS(5630), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5630), + [sym_identifier] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_BANG] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LBRACK_PIPE] = ACTIONS(3739), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_LT_AT] = ACTIONS(3741), + [anon_sym_LT_AT_AT] = ACTIONS(3739), + [anon_sym_LBRACE_PIPE] = ACTIONS(3739), + [anon_sym_new] = ACTIONS(3741), + [anon_sym_return_BANG] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3741), + [anon_sym_yield_BANG] = ACTIONS(3739), + [anon_sym_lazy] = ACTIONS(3741), + [anon_sym_assert] = ACTIONS(3741), + [anon_sym_upcast] = ACTIONS(3741), + [anon_sym_downcast] = ACTIONS(3741), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_fun] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_match_BANG] = ACTIONS(3739), + [anon_sym_function] = ACTIONS(3741), + [anon_sym_GT] = ACTIONS(3739), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_use_BANG] = ACTIONS(3739), + [anon_sym_do_BANG] = ACTIONS(3739), + [anon_sym_begin] = ACTIONS(3741), + [aux_sym_char_token1] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [anon_sym_AT_DQUOTE] = ACTIONS(3739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3739), + [sym_bool] = ACTIONS(3741), + [sym_unit] = ACTIONS(3739), + [anon_sym_LPAREN_PIPE] = ACTIONS(3741), + [sym_op_identifier] = ACTIONS(3739), + [anon_sym_PLUS] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_PLUS_DOT] = ACTIONS(3739), + [anon_sym_DASH_DOT] = ACTIONS(3739), + [anon_sym_PERCENT] = ACTIONS(3739), + [anon_sym_AMP_AMP] = ACTIONS(3739), + [anon_sym_TILDE] = ACTIONS(3739), + [aux_sym_prefix_op_token1] = ACTIONS(3739), + [sym_int] = ACTIONS(3741), + [sym_xint] = ACTIONS(3739), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3739), }, [3176] = { [sym_block_comment] = STATE(3176), [sym_compiler_directive_decl] = STATE(3176), [sym_fsi_directive_decl] = STATE(3176), [sym_preproc_line] = STATE(3176), - [sym_identifier] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_do] = ACTIONS(5112), - [anon_sym_let] = ACTIONS(5112), - [anon_sym_let_BANG] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_LBRACK_PIPE] = ACTIONS(5110), - [anon_sym_LBRACE] = ACTIONS(5112), - [anon_sym_LT_AT] = ACTIONS(5112), - [anon_sym_LT_AT_AT] = ACTIONS(5110), - [anon_sym_LBRACE_PIPE] = ACTIONS(5110), - [anon_sym_new] = ACTIONS(5112), - [anon_sym_return_BANG] = ACTIONS(5110), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_yield_BANG] = ACTIONS(5110), - [anon_sym_lazy] = ACTIONS(5112), - [anon_sym_assert] = ACTIONS(5112), - [anon_sym_upcast] = ACTIONS(5112), - [anon_sym_downcast] = ACTIONS(5112), - [anon_sym_for] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_match] = ACTIONS(5112), - [anon_sym_match_BANG] = ACTIONS(5110), - [anon_sym_function] = ACTIONS(5112), - [anon_sym_use] = ACTIONS(5112), - [anon_sym_use_BANG] = ACTIONS(5110), - [anon_sym_do_BANG] = ACTIONS(5110), - [anon_sym_begin] = ACTIONS(5112), - [aux_sym_char_token1] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), - [anon_sym_DQUOTE] = ACTIONS(5112), - [anon_sym_AT_DQUOTE] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [sym_bool] = ACTIONS(5112), - [sym_unit] = ACTIONS(5110), - [anon_sym_LPAREN_PIPE] = ACTIONS(5112), - [sym_op_identifier] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_PLUS_DOT] = ACTIONS(5110), - [anon_sym_DASH_DOT] = ACTIONS(5110), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [aux_sym_prefix_op_token1] = ACTIONS(5110), - [sym_int] = ACTIONS(5112), - [sym_xint] = ACTIONS(5110), + [sym_identifier] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_let_BANG] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3700), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LBRACK_PIPE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_LT_AT] = ACTIONS(3702), + [anon_sym_LT_AT_AT] = ACTIONS(3700), + [anon_sym_LBRACE_PIPE] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_return_BANG] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_yield_BANG] = ACTIONS(3700), + [anon_sym_lazy] = ACTIONS(3702), + [anon_sym_assert] = ACTIONS(3702), + [anon_sym_upcast] = ACTIONS(3702), + [anon_sym_downcast] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_fun] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_match_BANG] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3700), + [anon_sym_use] = ACTIONS(3702), + [anon_sym_use_BANG] = ACTIONS(3700), + [anon_sym_do_BANG] = ACTIONS(3700), + [anon_sym_begin] = ACTIONS(3702), + [aux_sym_char_token1] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_AT_DQUOTE] = ACTIONS(3700), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3700), + [sym_bool] = ACTIONS(3702), + [sym_unit] = ACTIONS(3700), + [anon_sym_LPAREN_PIPE] = ACTIONS(3702), + [sym_op_identifier] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS_DOT] = ACTIONS(3700), + [anon_sym_DASH_DOT] = ACTIONS(3700), + [anon_sym_PERCENT] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_prefix_op_token1] = ACTIONS(3700), + [sym_int] = ACTIONS(3702), + [sym_xint] = ACTIONS(3700), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -365821,501 +366577,1425 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(5110), - [anon_sym_POUNDendif] = ACTIONS(5110), + [anon_sym_POUNDif] = ACTIONS(3700), }, [3177] = { [sym_block_comment] = STATE(3177), [sym_compiler_directive_decl] = STATE(3177), [sym_fsi_directive_decl] = STATE(3177), [sym_preproc_line] = STATE(3177), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [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_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [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_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_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5124), + [sym_identifier] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_do] = ACTIONS(5056), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_PIPE] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LT_AT] = ACTIONS(5056), + [anon_sym_LT_AT_AT] = ACTIONS(5054), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5054), + [anon_sym_POUNDendif] = ACTIONS(5054), + [anon_sym_POUNDelse] = ACTIONS(5054), }, [3178] = { [sym_block_comment] = STATE(3178), [sym_compiler_directive_decl] = STATE(3178), [sym_fsi_directive_decl] = STATE(3178), [sym_preproc_line] = STATE(3178), - [sym_identifier] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_do] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_let_BANG] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_LBRACK_PIPE] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_LT_AT] = ACTIONS(5066), - [anon_sym_LT_AT_AT] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5064), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_return_BANG] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_yield_BANG] = ACTIONS(5064), - [anon_sym_lazy] = ACTIONS(5066), - [anon_sym_assert] = ACTIONS(5066), - [anon_sym_upcast] = ACTIONS(5066), - [anon_sym_downcast] = ACTIONS(5066), - [anon_sym_for] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_match] = ACTIONS(5066), - [anon_sym_match_BANG] = ACTIONS(5064), - [anon_sym_function] = ACTIONS(5066), - [anon_sym_use] = ACTIONS(5066), - [anon_sym_use_BANG] = ACTIONS(5064), - [anon_sym_do_BANG] = ACTIONS(5064), - [anon_sym_begin] = ACTIONS(5066), - [aux_sym_char_token1] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [anon_sym_AT_DQUOTE] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [sym_bool] = ACTIONS(5066), - [sym_unit] = ACTIONS(5064), - [anon_sym_LPAREN_PIPE] = ACTIONS(5066), - [sym_op_identifier] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_PLUS_DOT] = ACTIONS(5064), - [anon_sym_DASH_DOT] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_prefix_op_token1] = ACTIONS(5064), - [sym_int] = ACTIONS(5066), - [sym_xint] = ACTIONS(5064), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5064), - [anon_sym_POUNDendif] = ACTIONS(5064), + [sym_identifier] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_let_BANG] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_null] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LBRACK_PIPE] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LT_AT] = ACTIONS(3696), + [anon_sym_LT_AT_AT] = ACTIONS(3694), + [anon_sym_LBRACE_PIPE] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_return_BANG] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_yield_BANG] = ACTIONS(3694), + [anon_sym_lazy] = ACTIONS(3696), + [anon_sym_assert] = ACTIONS(3696), + [anon_sym_upcast] = ACTIONS(3696), + [anon_sym_downcast] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_fun] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_match] = ACTIONS(3696), + [anon_sym_match_BANG] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3694), + [anon_sym_use] = ACTIONS(3696), + [anon_sym_use_BANG] = ACTIONS(3694), + [anon_sym_do_BANG] = ACTIONS(3694), + [anon_sym_begin] = ACTIONS(3696), + [aux_sym_char_token1] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_AT_DQUOTE] = ACTIONS(3694), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3694), + [sym_bool] = ACTIONS(3696), + [sym_unit] = ACTIONS(3694), + [anon_sym_LPAREN_PIPE] = ACTIONS(3696), + [sym_op_identifier] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS_DOT] = ACTIONS(3694), + [anon_sym_DASH_DOT] = ACTIONS(3694), + [anon_sym_PERCENT] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [aux_sym_prefix_op_token1] = ACTIONS(3694), + [sym_int] = ACTIONS(3696), + [sym_xint] = ACTIONS(3694), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3694), }, [3179] = { [sym_block_comment] = STATE(3179), [sym_compiler_directive_decl] = STATE(3179), [sym_fsi_directive_decl] = STATE(3179), [sym_preproc_line] = STATE(3179), - [sym_identifier] = ACTIONS(5122), - [anon_sym_return] = ACTIONS(5122), - [anon_sym_do] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_let_BANG] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LBRACK_PIPE] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_LT_AT] = ACTIONS(5122), - [anon_sym_LT_AT_AT] = ACTIONS(5120), - [anon_sym_LBRACE_PIPE] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5122), - [anon_sym_return_BANG] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5122), - [anon_sym_yield_BANG] = ACTIONS(5120), - [anon_sym_lazy] = ACTIONS(5122), - [anon_sym_assert] = ACTIONS(5122), - [anon_sym_upcast] = ACTIONS(5122), - [anon_sym_downcast] = ACTIONS(5122), - [anon_sym_for] = ACTIONS(5122), - [anon_sym_while] = ACTIONS(5122), - [anon_sym_if] = ACTIONS(5122), - [anon_sym_fun] = ACTIONS(5122), - [anon_sym_try] = ACTIONS(5122), - [anon_sym_match] = ACTIONS(5122), - [anon_sym_match_BANG] = ACTIONS(5120), - [anon_sym_function] = ACTIONS(5122), - [anon_sym_use] = ACTIONS(5122), - [anon_sym_use_BANG] = ACTIONS(5120), - [anon_sym_do_BANG] = ACTIONS(5120), - [anon_sym_begin] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5122), - [anon_sym_DQUOTE] = ACTIONS(5122), - [anon_sym_AT_DQUOTE] = ACTIONS(5120), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), - [sym_bool] = ACTIONS(5122), - [sym_unit] = ACTIONS(5120), - [anon_sym_LPAREN_PIPE] = ACTIONS(5122), - [sym_op_identifier] = ACTIONS(5120), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_PLUS_DOT] = ACTIONS(5120), - [anon_sym_DASH_DOT] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5120), - [aux_sym_prefix_op_token1] = ACTIONS(5120), - [sym_int] = ACTIONS(5122), - [sym_xint] = ACTIONS(5120), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5120), + [sym_identifier] = ACTIONS(3549), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_let_BANG] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_null] = ACTIONS(3549), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LBRACK_PIPE] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LT_AT] = ACTIONS(3549), + [anon_sym_LT_AT_AT] = ACTIONS(3547), + [anon_sym_LBRACE_PIPE] = ACTIONS(3547), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_return_BANG] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_yield_BANG] = ACTIONS(3547), + [anon_sym_lazy] = ACTIONS(3549), + [anon_sym_assert] = ACTIONS(3549), + [anon_sym_upcast] = ACTIONS(3549), + [anon_sym_downcast] = ACTIONS(3549), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_fun] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_match] = ACTIONS(3549), + [anon_sym_match_BANG] = ACTIONS(3547), + [anon_sym_function] = ACTIONS(3549), + [anon_sym_GT] = ACTIONS(3547), + [anon_sym_use] = ACTIONS(3549), + [anon_sym_use_BANG] = ACTIONS(3547), + [anon_sym_do_BANG] = ACTIONS(3547), + [anon_sym_begin] = ACTIONS(3549), + [aux_sym_char_token1] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [anon_sym_AT_DQUOTE] = ACTIONS(3547), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), + [sym_bool] = ACTIONS(3549), + [sym_unit] = ACTIONS(3547), + [anon_sym_LPAREN_PIPE] = ACTIONS(3549), + [sym_op_identifier] = ACTIONS(3547), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_DOT] = ACTIONS(3547), + [anon_sym_DASH_DOT] = ACTIONS(3547), + [anon_sym_PERCENT] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [aux_sym_prefix_op_token1] = ACTIONS(3547), + [sym_int] = ACTIONS(3549), + [sym_xint] = ACTIONS(3547), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3547), }, [3180] = { [sym_block_comment] = STATE(3180), [sym_compiler_directive_decl] = STATE(3180), [sym_fsi_directive_decl] = STATE(3180), [sym_preproc_line] = STATE(3180), - [aux_sym_prefix_op_repeat1] = STATE(3180), - [sym_identifier] = ACTIONS(5632), - [anon_sym_return] = ACTIONS(5632), - [anon_sym_do] = ACTIONS(5632), - [anon_sym_let] = ACTIONS(5632), - [anon_sym_let_BANG] = ACTIONS(5634), - [anon_sym_LPAREN] = ACTIONS(5632), - [anon_sym_null] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(5632), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5632), - [anon_sym_LBRACK_PIPE] = ACTIONS(5634), - [anon_sym_LBRACE] = ACTIONS(5632), - [anon_sym_LT_AT] = ACTIONS(5632), - [anon_sym_LT_AT_AT] = ACTIONS(5634), - [anon_sym_LBRACE_PIPE] = ACTIONS(5634), - [anon_sym_new] = ACTIONS(5632), - [anon_sym_return_BANG] = ACTIONS(5634), - [anon_sym_yield] = ACTIONS(5632), - [anon_sym_yield_BANG] = ACTIONS(5634), - [anon_sym_lazy] = ACTIONS(5632), - [anon_sym_assert] = ACTIONS(5632), - [anon_sym_upcast] = ACTIONS(5632), - [anon_sym_downcast] = ACTIONS(5632), - [anon_sym_for] = ACTIONS(5632), - [anon_sym_while] = ACTIONS(5632), - [anon_sym_if] = ACTIONS(5632), - [anon_sym_fun] = ACTIONS(5632), - [anon_sym_try] = ACTIONS(5632), - [anon_sym_match] = ACTIONS(5632), - [anon_sym_match_BANG] = ACTIONS(5634), - [anon_sym_function] = ACTIONS(5632), - [anon_sym_use] = ACTIONS(5632), - [anon_sym_use_BANG] = ACTIONS(5634), - [anon_sym_do_BANG] = ACTIONS(5634), - [anon_sym_begin] = ACTIONS(5632), - [aux_sym_char_token1] = ACTIONS(5634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5632), - [anon_sym_DQUOTE] = ACTIONS(5632), - [anon_sym_AT_DQUOTE] = ACTIONS(5634), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5634), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5634), - [sym_bool] = ACTIONS(5632), - [sym_unit] = ACTIONS(5634), - [anon_sym_LPAREN_PIPE] = ACTIONS(5632), - [sym_op_identifier] = ACTIONS(5634), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_PLUS_DOT] = ACTIONS(5634), - [anon_sym_DASH_DOT] = ACTIONS(5634), - [anon_sym_PERCENT] = ACTIONS(5634), - [anon_sym_AMP_AMP] = ACTIONS(5634), - [anon_sym_TILDE] = ACTIONS(5636), - [aux_sym_prefix_op_token1] = ACTIONS(5634), - [sym_int] = ACTIONS(5632), - [sym_xint] = ACTIONS(5634), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5634), + [sym_identifier] = 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_AMP] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LBRACK_PIPE] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_LT_AT] = ACTIONS(3594), + [anon_sym_LT_AT_AT] = ACTIONS(3596), + [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_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_GT] = ACTIONS(3596), + [anon_sym_use] = ACTIONS(3594), + [anon_sym_use_BANG] = ACTIONS(3596), + [anon_sym_do_BANG] = ACTIONS(3596), + [anon_sym_begin] = 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(3596), + [anon_sym_LPAREN_PIPE] = ACTIONS(3594), + [sym_op_identifier] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_PLUS_DOT] = ACTIONS(3596), + [anon_sym_DASH_DOT] = ACTIONS(3596), + [anon_sym_PERCENT] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [aux_sym_prefix_op_token1] = ACTIONS(3596), + [sym_int] = ACTIONS(3594), + [sym_xint] = ACTIONS(3596), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3596), }, [3181] = { [sym_block_comment] = STATE(3181), [sym_compiler_directive_decl] = STATE(3181), [sym_fsi_directive_decl] = STATE(3181), [sym_preproc_line] = STATE(3181), - [sym_identifier] = ACTIONS(5639), - [anon_sym_return] = ACTIONS(5639), - [anon_sym_do] = ACTIONS(5639), - [anon_sym_let] = ACTIONS(5639), - [anon_sym_let_BANG] = ACTIONS(5641), - [anon_sym_LPAREN] = ACTIONS(5639), - [anon_sym_null] = ACTIONS(5639), - [anon_sym_AMP] = ACTIONS(5639), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5639), - [anon_sym_LBRACK_PIPE] = ACTIONS(5641), - [anon_sym_LBRACE] = ACTIONS(5639), - [anon_sym_LT_AT] = ACTIONS(5639), - [anon_sym_LT_AT_AT] = ACTIONS(5641), - [anon_sym_LBRACE_PIPE] = ACTIONS(5641), - [anon_sym_new] = ACTIONS(5639), - [anon_sym_return_BANG] = ACTIONS(5641), - [anon_sym_yield] = ACTIONS(5639), - [anon_sym_yield_BANG] = ACTIONS(5641), - [anon_sym_lazy] = ACTIONS(5639), - [anon_sym_assert] = ACTIONS(5639), - [anon_sym_upcast] = ACTIONS(5639), - [anon_sym_downcast] = ACTIONS(5639), - [anon_sym_for] = ACTIONS(5639), - [anon_sym_while] = ACTIONS(5639), - [anon_sym_if] = ACTIONS(5639), - [anon_sym_fun] = ACTIONS(5639), - [anon_sym_try] = ACTIONS(5639), - [anon_sym_match] = ACTIONS(5639), - [anon_sym_match_BANG] = ACTIONS(5641), - [anon_sym_function] = ACTIONS(5639), - [anon_sym_use] = ACTIONS(5639), - [anon_sym_use_BANG] = ACTIONS(5641), - [anon_sym_do_BANG] = ACTIONS(5641), - [anon_sym_begin] = ACTIONS(5639), - [aux_sym_char_token1] = ACTIONS(5641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5639), - [anon_sym_DQUOTE] = ACTIONS(5639), - [anon_sym_AT_DQUOTE] = ACTIONS(5641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5641), - [sym_bool] = ACTIONS(5639), - [sym_unit] = ACTIONS(5641), - [anon_sym_LPAREN_PIPE] = ACTIONS(5639), - [sym_op_identifier] = ACTIONS(5641), - [anon_sym_PLUS] = ACTIONS(5639), - [anon_sym_DASH] = ACTIONS(5639), - [anon_sym_PLUS_DOT] = ACTIONS(5641), - [anon_sym_DASH_DOT] = ACTIONS(5641), - [anon_sym_PERCENT] = ACTIONS(5641), - [anon_sym_AMP_AMP] = ACTIONS(5641), - [anon_sym_TILDE] = ACTIONS(5641), - [aux_sym_prefix_op_token1] = ACTIONS(5641), - [sym_int] = ACTIONS(5639), - [sym_xint] = ACTIONS(5641), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5641), + [sym_identifier] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_let_BANG] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LBRACK_PIPE] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_LT_AT] = ACTIONS(3592), + [anon_sym_LT_AT_AT] = ACTIONS(3590), + [anon_sym_LBRACE_PIPE] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_return_BANG] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_yield_BANG] = ACTIONS(3590), + [anon_sym_lazy] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_upcast] = ACTIONS(3592), + [anon_sym_downcast] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_fun] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_match_BANG] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_GT] = ACTIONS(3590), + [anon_sym_use] = ACTIONS(3592), + [anon_sym_use_BANG] = ACTIONS(3590), + [anon_sym_do_BANG] = ACTIONS(3590), + [anon_sym_begin] = ACTIONS(3592), + [aux_sym_char_token1] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_AT_DQUOTE] = ACTIONS(3590), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3590), + [sym_bool] = ACTIONS(3592), + [sym_unit] = ACTIONS(3590), + [anon_sym_LPAREN_PIPE] = ACTIONS(3592), + [sym_op_identifier] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [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(3590), + [aux_sym_prefix_op_token1] = ACTIONS(3590), + [sym_int] = ACTIONS(3592), + [sym_xint] = ACTIONS(3590), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3590), }, [3182] = { [sym_block_comment] = STATE(3182), [sym_compiler_directive_decl] = STATE(3182), [sym_fsi_directive_decl] = STATE(3182), [sym_preproc_line] = STATE(3182), - [sym_identifier] = ACTIONS(5643), - [anon_sym_return] = ACTIONS(5643), - [anon_sym_do] = ACTIONS(5643), - [anon_sym_let] = ACTIONS(5643), - [anon_sym_let_BANG] = ACTIONS(5645), - [anon_sym_LPAREN] = ACTIONS(5643), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5643), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_LBRACK_PIPE] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_LT_AT] = ACTIONS(5643), - [anon_sym_LT_AT_AT] = ACTIONS(5645), - [anon_sym_LBRACE_PIPE] = ACTIONS(5645), - [anon_sym_new] = ACTIONS(5643), - [anon_sym_return_BANG] = ACTIONS(5645), - [anon_sym_yield] = ACTIONS(5643), - [anon_sym_yield_BANG] = ACTIONS(5645), - [anon_sym_lazy] = ACTIONS(5643), - [anon_sym_assert] = ACTIONS(5643), - [anon_sym_upcast] = ACTIONS(5643), - [anon_sym_downcast] = ACTIONS(5643), - [anon_sym_for] = ACTIONS(5643), - [anon_sym_while] = ACTIONS(5643), - [anon_sym_if] = ACTIONS(5643), - [anon_sym_fun] = ACTIONS(5643), - [anon_sym_try] = ACTIONS(5643), - [anon_sym_match] = ACTIONS(5643), - [anon_sym_match_BANG] = ACTIONS(5645), - [anon_sym_function] = ACTIONS(5643), - [anon_sym_use] = ACTIONS(5643), - [anon_sym_use_BANG] = ACTIONS(5645), - [anon_sym_do_BANG] = ACTIONS(5645), - [anon_sym_begin] = ACTIONS(5643), - [aux_sym_char_token1] = ACTIONS(5645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5643), - [anon_sym_DQUOTE] = ACTIONS(5643), - [anon_sym_AT_DQUOTE] = ACTIONS(5645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5645), - [sym_bool] = ACTIONS(5643), - [sym_unit] = ACTIONS(5645), - [anon_sym_LPAREN_PIPE] = ACTIONS(5643), - [sym_op_identifier] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5643), - [anon_sym_PLUS_DOT] = ACTIONS(5645), - [anon_sym_DASH_DOT] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_AMP_AMP] = ACTIONS(5645), - [anon_sym_TILDE] = ACTIONS(5645), - [aux_sym_prefix_op_token1] = ACTIONS(5645), - [sym_int] = ACTIONS(5643), - [sym_xint] = ACTIONS(5645), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5645), + [sym_identifier] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_let] = ACTIONS(3475), + [anon_sym_let_BANG] = ACTIONS(3477), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_null] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LBRACK_PIPE] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_LT_AT] = ACTIONS(3475), + [anon_sym_LT_AT_AT] = ACTIONS(3477), + [anon_sym_LBRACE_PIPE] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_return_BANG] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_yield_BANG] = ACTIONS(3477), + [anon_sym_lazy] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_upcast] = ACTIONS(3475), + [anon_sym_downcast] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_fun] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_match_BANG] = ACTIONS(3477), + [anon_sym_function] = ACTIONS(3475), + [anon_sym_GT] = ACTIONS(3477), + [anon_sym_use] = ACTIONS(3475), + [anon_sym_use_BANG] = ACTIONS(3477), + [anon_sym_do_BANG] = ACTIONS(3477), + [anon_sym_begin] = ACTIONS(3475), + [aux_sym_char_token1] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [anon_sym_AT_DQUOTE] = ACTIONS(3477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3477), + [sym_bool] = ACTIONS(3475), + [sym_unit] = ACTIONS(3477), + [anon_sym_LPAREN_PIPE] = ACTIONS(3475), + [sym_op_identifier] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [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(3477), + [aux_sym_prefix_op_token1] = ACTIONS(3477), + [sym_int] = ACTIONS(3475), + [sym_xint] = ACTIONS(3477), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3477), }, [3183] = { [sym_block_comment] = STATE(3183), [sym_compiler_directive_decl] = STATE(3183), [sym_fsi_directive_decl] = STATE(3183), [sym_preproc_line] = STATE(3183), - [sym_identifier] = ACTIONS(5643), - [anon_sym_return] = ACTIONS(5643), - [anon_sym_do] = ACTIONS(5643), - [anon_sym_let] = ACTIONS(5643), - [anon_sym_let_BANG] = ACTIONS(5645), - [anon_sym_LPAREN] = ACTIONS(5643), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5643), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_LBRACK_PIPE] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_LT_AT] = ACTIONS(5643), - [anon_sym_LT_AT_AT] = ACTIONS(5645), - [anon_sym_LBRACE_PIPE] = ACTIONS(5645), - [anon_sym_new] = ACTIONS(5643), - [anon_sym_return_BANG] = ACTIONS(5645), - [anon_sym_yield] = ACTIONS(5643), - [anon_sym_yield_BANG] = ACTIONS(5645), - [anon_sym_lazy] = ACTIONS(5643), - [anon_sym_assert] = ACTIONS(5643), - [anon_sym_upcast] = ACTIONS(5643), - [anon_sym_downcast] = ACTIONS(5643), - [anon_sym_for] = ACTIONS(5643), - [anon_sym_while] = ACTIONS(5643), - [anon_sym_if] = ACTIONS(5643), - [anon_sym_fun] = ACTIONS(5643), - [anon_sym_try] = ACTIONS(5643), - [anon_sym_match] = ACTIONS(5643), - [anon_sym_match_BANG] = ACTIONS(5645), - [anon_sym_function] = ACTIONS(5643), - [anon_sym_use] = ACTIONS(5643), - [anon_sym_use_BANG] = ACTIONS(5645), - [anon_sym_do_BANG] = ACTIONS(5645), - [anon_sym_begin] = ACTIONS(5643), - [aux_sym_char_token1] = ACTIONS(5645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5643), - [anon_sym_DQUOTE] = ACTIONS(5643), - [anon_sym_AT_DQUOTE] = ACTIONS(5645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5645), - [sym_bool] = ACTIONS(5643), - [sym_unit] = ACTIONS(5645), - [anon_sym_LPAREN_PIPE] = ACTIONS(5643), - [sym_op_identifier] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5643), - [anon_sym_PLUS_DOT] = ACTIONS(5645), - [anon_sym_DASH_DOT] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_AMP_AMP] = ACTIONS(5645), - [anon_sym_TILDE] = ACTIONS(5645), - [aux_sym_prefix_op_token1] = ACTIONS(5645), - [sym_int] = ACTIONS(5643), - [sym_xint] = ACTIONS(5645), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5645), + [sym_identifier] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_do] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_let_BANG] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_COMMA] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3743), + [anon_sym_AMP] = ACTIONS(3743), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LBRACK_PIPE] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_LT_AT] = ACTIONS(3743), + [anon_sym_LT_AT_AT] = ACTIONS(3745), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_new] = ACTIONS(3743), + [anon_sym_return_BANG] = ACTIONS(3745), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_yield_BANG] = ACTIONS(3745), + [anon_sym_lazy] = ACTIONS(3743), + [anon_sym_assert] = ACTIONS(3743), + [anon_sym_upcast] = ACTIONS(3743), + [anon_sym_downcast] = ACTIONS(3743), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_fun] = ACTIONS(3743), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_match_BANG] = ACTIONS(3745), + [anon_sym_function] = ACTIONS(3743), + [anon_sym_GT] = ACTIONS(3745), + [anon_sym_use] = ACTIONS(3743), + [anon_sym_use_BANG] = ACTIONS(3745), + [anon_sym_do_BANG] = ACTIONS(3745), + [anon_sym_begin] = ACTIONS(3743), + [aux_sym_char_token1] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [anon_sym_AT_DQUOTE] = ACTIONS(3745), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3745), + [sym_bool] = ACTIONS(3743), + [sym_unit] = ACTIONS(3745), + [anon_sym_LPAREN_PIPE] = ACTIONS(3743), + [sym_op_identifier] = ACTIONS(3745), + [anon_sym_PLUS] = ACTIONS(3743), + [anon_sym_DASH] = ACTIONS(3743), + [anon_sym_PLUS_DOT] = ACTIONS(3745), + [anon_sym_DASH_DOT] = ACTIONS(3745), + [anon_sym_PERCENT] = ACTIONS(3745), + [anon_sym_AMP_AMP] = ACTIONS(3745), + [anon_sym_TILDE] = ACTIONS(3745), + [aux_sym_prefix_op_token1] = ACTIONS(3745), + [sym_int] = ACTIONS(3743), + [sym_xint] = ACTIONS(3745), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3745), }, [3184] = { [sym_block_comment] = STATE(3184), [sym_compiler_directive_decl] = STATE(3184), [sym_fsi_directive_decl] = STATE(3184), [sym_preproc_line] = STATE(3184), + [sym_identifier] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3732), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [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(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3732), + [anon_sym_DASH_DOT] = ACTIONS(3732), + [anon_sym_PERCENT] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3732), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3732), + }, + [3185] = { + [sym_block_comment] = STATE(3185), + [sym_compiler_directive_decl] = STATE(3185), + [sym_fsi_directive_decl] = STATE(3185), + [sym_preproc_line] = STATE(3185), + [sym_identifier] = ACTIONS(5064), + [anon_sym_return] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_PIPE] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LT_AT] = ACTIONS(5064), + [anon_sym_LT_AT_AT] = ACTIONS(5062), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5062), + [anon_sym_POUNDendif] = ACTIONS(5062), + }, + [3186] = { + [sym_block_comment] = STATE(3186), + [sym_compiler_directive_decl] = STATE(3186), + [sym_fsi_directive_decl] = STATE(3186), + [sym_preproc_line] = STATE(3186), + [aux_sym__function_or_value_defns_repeat1] = STATE(3167), + [sym_identifier] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_do] = ACTIONS(4960), + [anon_sym_and] = ACTIONS(5634), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_let_BANG] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK_PIPE] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LT_AT] = ACTIONS(4960), + [anon_sym_LT_AT_AT] = ACTIONS(4958), + [anon_sym_LBRACE_PIPE] = ACTIONS(4958), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_return_BANG] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_yield_BANG] = ACTIONS(4958), + [anon_sym_lazy] = ACTIONS(4960), + [anon_sym_assert] = ACTIONS(4960), + [anon_sym_upcast] = ACTIONS(4960), + [anon_sym_downcast] = ACTIONS(4960), + [anon_sym_for] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_match] = ACTIONS(4960), + [anon_sym_match_BANG] = ACTIONS(4958), + [anon_sym_function] = ACTIONS(4960), + [anon_sym_use] = ACTIONS(4960), + [anon_sym_use_BANG] = ACTIONS(4958), + [anon_sym_do_BANG] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4960), + [aux_sym_char_token1] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(4960), + [anon_sym_AT_DQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4958), + [sym_bool] = ACTIONS(4960), + [sym_unit] = ACTIONS(4958), + [anon_sym_LPAREN_PIPE] = ACTIONS(4960), + [sym_op_identifier] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_PLUS_DOT] = ACTIONS(4958), + [anon_sym_DASH_DOT] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_TILDE] = ACTIONS(4958), + [aux_sym_prefix_op_token1] = ACTIONS(4958), + [sym_int] = ACTIONS(4960), + [sym_xint] = ACTIONS(4958), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(4958), + }, + [3187] = { + [sym_block_comment] = STATE(3187), + [sym_compiler_directive_decl] = STATE(3187), + [sym_fsi_directive_decl] = STATE(3187), + [sym_preproc_line] = STATE(3187), + [sym_identifier] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACK_PIPE] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LT_AT] = ACTIONS(2528), + [anon_sym_LT_AT_AT] = ACTIONS(2526), + [anon_sym_LBRACE_PIPE] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_return_BANG] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_yield_BANG] = ACTIONS(2526), + [anon_sym_lazy] = ACTIONS(2528), + [anon_sym_assert] = ACTIONS(2528), + [anon_sym_upcast] = ACTIONS(2528), + [anon_sym_downcast] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_fun] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_match_BANG] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_GT] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_use_BANG] = ACTIONS(2526), + [anon_sym_do_BANG] = ACTIONS(2526), + [anon_sym_begin] = ACTIONS(2528), + [aux_sym_char_token1] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_AT_DQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2526), + [sym_bool] = ACTIONS(2528), + [sym_unit] = ACTIONS(2526), + [anon_sym_LPAREN_PIPE] = ACTIONS(2528), + [sym_op_identifier] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_DOT] = ACTIONS(2526), + [anon_sym_DASH_DOT] = ACTIONS(2526), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_prefix_op_token1] = ACTIONS(2526), + [sym_int] = ACTIONS(2528), + [sym_xint] = ACTIONS(2526), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(2526), + }, + [3188] = { + [sym_block_comment] = STATE(3188), + [sym_compiler_directive_decl] = STATE(3188), + [sym_fsi_directive_decl] = STATE(3188), + [sym_preproc_line] = STATE(3188), + [sym_identifier] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_let_BANG] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LT_AT] = ACTIONS(3457), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_return_BANG] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_yield_BANG] = ACTIONS(3455), + [anon_sym_lazy] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_upcast] = ACTIONS(3457), + [anon_sym_downcast] = ACTIONS(3457), + [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(3455), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_GT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_use_BANG] = ACTIONS(3455), + [anon_sym_do_BANG] = ACTIONS(3455), + [anon_sym_begin] = ACTIONS(3457), + [aux_sym_char_token1] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_AT_DQUOTE] = ACTIONS(3455), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3455), + [sym_bool] = ACTIONS(3457), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3457), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [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(3455), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [sym_int] = ACTIONS(3457), + [sym_xint] = ACTIONS(3455), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3455), + }, + [3189] = { + [sym_block_comment] = STATE(3189), + [sym_compiler_directive_decl] = STATE(3189), + [sym_fsi_directive_decl] = STATE(3189), + [sym_preproc_line] = STATE(3189), + [sym_identifier] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_and] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_let_BANG] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK_PIPE] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_LT_AT] = ACTIONS(3221), + [anon_sym_LT_AT_AT] = ACTIONS(3219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_return_BANG] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_yield_BANG] = ACTIONS(3219), + [anon_sym_lazy] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_upcast] = ACTIONS(3221), + [anon_sym_downcast] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_fun] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_match_BANG] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_use] = ACTIONS(3221), + [anon_sym_use_BANG] = ACTIONS(3219), + [anon_sym_do_BANG] = ACTIONS(3219), + [anon_sym_begin] = ACTIONS(3221), + [aux_sym_char_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_AT_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3219), + [sym_bool] = ACTIONS(3221), + [sym_unit] = ACTIONS(3219), + [anon_sym_LPAREN_PIPE] = ACTIONS(3221), + [sym_op_identifier] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_PLUS_DOT] = ACTIONS(3219), + [anon_sym_DASH_DOT] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [aux_sym_prefix_op_token1] = ACTIONS(3219), + [sym_int] = ACTIONS(3221), + [sym_xint] = ACTIONS(3219), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(3219), + }, + [3190] = { + [sym_block_comment] = STATE(3190), + [sym_compiler_directive_decl] = STATE(3190), + [sym_fsi_directive_decl] = STATE(3190), + [sym_preproc_line] = STATE(3190), + [aux_sym_prefix_op_repeat1] = STATE(3196), + [sym_identifier] = ACTIONS(5636), + [anon_sym_return] = ACTIONS(5636), + [anon_sym_do] = ACTIONS(5636), + [anon_sym_let] = ACTIONS(5636), + [anon_sym_let_BANG] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_null] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_LBRACK_PIPE] = ACTIONS(5638), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_LT_AT] = ACTIONS(5636), + [anon_sym_LT_AT_AT] = ACTIONS(5638), + [anon_sym_LBRACE_PIPE] = ACTIONS(5638), + [anon_sym_new] = ACTIONS(5636), + [anon_sym_return_BANG] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5636), + [anon_sym_yield_BANG] = ACTIONS(5638), + [anon_sym_lazy] = ACTIONS(5636), + [anon_sym_assert] = ACTIONS(5636), + [anon_sym_upcast] = ACTIONS(5636), + [anon_sym_downcast] = ACTIONS(5636), + [anon_sym_for] = ACTIONS(5636), + [anon_sym_while] = ACTIONS(5636), + [anon_sym_if] = ACTIONS(5636), + [anon_sym_fun] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5636), + [anon_sym_match] = ACTIONS(5636), + [anon_sym_match_BANG] = ACTIONS(5638), + [anon_sym_function] = ACTIONS(5636), + [anon_sym_use] = ACTIONS(5636), + [anon_sym_use_BANG] = ACTIONS(5638), + [anon_sym_do_BANG] = ACTIONS(5638), + [anon_sym_begin] = ACTIONS(5636), + [aux_sym_char_token1] = ACTIONS(5638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [anon_sym_AT_DQUOTE] = ACTIONS(5638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5638), + [sym_bool] = ACTIONS(5636), + [sym_unit] = ACTIONS(5638), + [anon_sym_LPAREN_PIPE] = ACTIONS(5636), + [sym_op_identifier] = ACTIONS(5638), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS_DOT] = ACTIONS(5638), + [anon_sym_DASH_DOT] = ACTIONS(5638), + [anon_sym_PERCENT] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5638), + [aux_sym_prefix_op_token1] = ACTIONS(5638), + [sym_int] = ACTIONS(5636), + [sym_xint] = ACTIONS(5638), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5638), + }, + [3191] = { + [sym_block_comment] = STATE(3191), + [sym_compiler_directive_decl] = STATE(3191), + [sym_fsi_directive_decl] = STATE(3191), + [sym_preproc_line] = STATE(3191), + [sym_identifier] = ACTIONS(5064), + [anon_sym_return] = 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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_LBRACK_PIPE] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LT_AT] = ACTIONS(5064), + [anon_sym_LT_AT_AT] = ACTIONS(5062), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5062), + }, + [3192] = { + [sym_block_comment] = STATE(3192), + [sym_compiler_directive_decl] = STATE(3192), + [sym_fsi_directive_decl] = STATE(3192), + [sym_preproc_line] = STATE(3192), + [sym_identifier] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5120), + [anon_sym_do] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_let_BANG] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LBRACK_PIPE] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_LT_AT] = ACTIONS(5120), + [anon_sym_LT_AT_AT] = ACTIONS(5118), + [anon_sym_LBRACE_PIPE] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5120), + [anon_sym_return_BANG] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5120), + [anon_sym_yield_BANG] = ACTIONS(5118), + [anon_sym_lazy] = ACTIONS(5120), + [anon_sym_assert] = ACTIONS(5120), + [anon_sym_upcast] = ACTIONS(5120), + [anon_sym_downcast] = ACTIONS(5120), + [anon_sym_for] = ACTIONS(5120), + [anon_sym_while] = ACTIONS(5120), + [anon_sym_if] = ACTIONS(5120), + [anon_sym_fun] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5120), + [anon_sym_match_BANG] = ACTIONS(5118), + [anon_sym_function] = ACTIONS(5120), + [anon_sym_use] = ACTIONS(5120), + [anon_sym_use_BANG] = ACTIONS(5118), + [anon_sym_do_BANG] = ACTIONS(5118), + [anon_sym_begin] = ACTIONS(5120), + [aux_sym_char_token1] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [anon_sym_AT_DQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [sym_bool] = ACTIONS(5120), + [sym_unit] = ACTIONS(5118), + [anon_sym_LPAREN_PIPE] = ACTIONS(5120), + [sym_op_identifier] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS_DOT] = ACTIONS(5118), + [anon_sym_DASH_DOT] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [aux_sym_prefix_op_token1] = ACTIONS(5118), + [sym_int] = ACTIONS(5120), + [sym_xint] = ACTIONS(5118), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5118), + [anon_sym_POUNDendif] = ACTIONS(5118), + }, + [3193] = { + [sym_block_comment] = STATE(3193), + [sym_compiler_directive_decl] = STATE(3193), + [sym_fsi_directive_decl] = STATE(3193), + [sym_preproc_line] = STATE(3193), + [sym_identifier] = ACTIONS(5116), + [anon_sym_return] = ACTIONS(5116), + [anon_sym_do] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_let_BANG] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LBRACK_PIPE] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_LT_AT] = ACTIONS(5116), + [anon_sym_LT_AT_AT] = ACTIONS(5114), + [anon_sym_LBRACE_PIPE] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5116), + [anon_sym_return_BANG] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5116), + [anon_sym_yield_BANG] = ACTIONS(5114), + [anon_sym_lazy] = ACTIONS(5116), + [anon_sym_assert] = ACTIONS(5116), + [anon_sym_upcast] = ACTIONS(5116), + [anon_sym_downcast] = ACTIONS(5116), + [anon_sym_for] = ACTIONS(5116), + [anon_sym_while] = ACTIONS(5116), + [anon_sym_if] = ACTIONS(5116), + [anon_sym_fun] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_match] = ACTIONS(5116), + [anon_sym_match_BANG] = ACTIONS(5114), + [anon_sym_function] = ACTIONS(5116), + [anon_sym_use] = ACTIONS(5116), + [anon_sym_use_BANG] = ACTIONS(5114), + [anon_sym_do_BANG] = ACTIONS(5114), + [anon_sym_begin] = ACTIONS(5116), + [aux_sym_char_token1] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_AT_DQUOTE] = ACTIONS(5114), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5114), + [sym_bool] = ACTIONS(5116), + [sym_unit] = ACTIONS(5114), + [anon_sym_LPAREN_PIPE] = ACTIONS(5116), + [sym_op_identifier] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS_DOT] = ACTIONS(5114), + [anon_sym_DASH_DOT] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [aux_sym_prefix_op_token1] = ACTIONS(5114), + [sym_int] = ACTIONS(5116), + [sym_xint] = ACTIONS(5114), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5114), + }, + [3194] = { + [sym_block_comment] = STATE(3194), + [sym_compiler_directive_decl] = STATE(3194), + [sym_fsi_directive_decl] = STATE(3194), + [sym_preproc_line] = STATE(3194), + [sym_identifier] = ACTIONS(5128), + [anon_sym_return] = ACTIONS(5128), + [anon_sym_do] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_let_BANG] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LBRACK_PIPE] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LT_AT] = ACTIONS(5128), + [anon_sym_LT_AT_AT] = ACTIONS(5126), + [anon_sym_LBRACE_PIPE] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5128), + [anon_sym_return_BANG] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5128), + [anon_sym_yield_BANG] = ACTIONS(5126), + [anon_sym_lazy] = ACTIONS(5128), + [anon_sym_assert] = ACTIONS(5128), + [anon_sym_upcast] = ACTIONS(5128), + [anon_sym_downcast] = ACTIONS(5128), + [anon_sym_for] = ACTIONS(5128), + [anon_sym_while] = ACTIONS(5128), + [anon_sym_if] = ACTIONS(5128), + [anon_sym_fun] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_match] = ACTIONS(5128), + [anon_sym_match_BANG] = ACTIONS(5126), + [anon_sym_function] = ACTIONS(5128), + [anon_sym_use] = ACTIONS(5128), + [anon_sym_use_BANG] = ACTIONS(5126), + [anon_sym_do_BANG] = ACTIONS(5126), + [anon_sym_begin] = ACTIONS(5128), + [aux_sym_char_token1] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(5128), + [anon_sym_AT_DQUOTE] = ACTIONS(5126), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5126), + [sym_bool] = ACTIONS(5128), + [sym_unit] = ACTIONS(5126), + [anon_sym_LPAREN_PIPE] = ACTIONS(5128), + [sym_op_identifier] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS_DOT] = ACTIONS(5126), + [anon_sym_DASH_DOT] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [aux_sym_prefix_op_token1] = ACTIONS(5126), + [sym_int] = ACTIONS(5128), + [sym_xint] = ACTIONS(5126), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5126), + }, + [3195] = { + [sym_block_comment] = STATE(3195), + [sym_compiler_directive_decl] = STATE(3195), + [sym_fsi_directive_decl] = STATE(3195), + [sym_preproc_line] = STATE(3195), + [sym_identifier] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_do] = ACTIONS(5056), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_PIPE] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LT_AT] = ACTIONS(5056), + [anon_sym_LT_AT_AT] = ACTIONS(5054), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5054), + [anon_sym_POUNDendif] = ACTIONS(5054), + }, + [3196] = { + [sym_block_comment] = STATE(3196), + [sym_compiler_directive_decl] = STATE(3196), + [sym_fsi_directive_decl] = STATE(3196), + [sym_preproc_line] = STATE(3196), + [aux_sym_prefix_op_repeat1] = STATE(3196), + [sym_identifier] = ACTIONS(5640), + [anon_sym_return] = ACTIONS(5640), + [anon_sym_do] = ACTIONS(5640), + [anon_sym_let] = ACTIONS(5640), + [anon_sym_let_BANG] = ACTIONS(5642), + [anon_sym_LPAREN] = ACTIONS(5640), + [anon_sym_null] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_LBRACK_PIPE] = ACTIONS(5642), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_LT_AT] = ACTIONS(5640), + [anon_sym_LT_AT_AT] = ACTIONS(5642), + [anon_sym_LBRACE_PIPE] = ACTIONS(5642), + [anon_sym_new] = ACTIONS(5640), + [anon_sym_return_BANG] = ACTIONS(5642), + [anon_sym_yield] = ACTIONS(5640), + [anon_sym_yield_BANG] = ACTIONS(5642), + [anon_sym_lazy] = ACTIONS(5640), + [anon_sym_assert] = ACTIONS(5640), + [anon_sym_upcast] = ACTIONS(5640), + [anon_sym_downcast] = ACTIONS(5640), + [anon_sym_for] = ACTIONS(5640), + [anon_sym_while] = ACTIONS(5640), + [anon_sym_if] = ACTIONS(5640), + [anon_sym_fun] = ACTIONS(5640), + [anon_sym_try] = ACTIONS(5640), + [anon_sym_match] = ACTIONS(5640), + [anon_sym_match_BANG] = ACTIONS(5642), + [anon_sym_function] = ACTIONS(5640), + [anon_sym_use] = ACTIONS(5640), + [anon_sym_use_BANG] = ACTIONS(5642), + [anon_sym_do_BANG] = ACTIONS(5642), + [anon_sym_begin] = ACTIONS(5640), + [aux_sym_char_token1] = ACTIONS(5642), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5640), + [anon_sym_DQUOTE] = ACTIONS(5640), + [anon_sym_AT_DQUOTE] = ACTIONS(5642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5642), + [sym_bool] = ACTIONS(5640), + [sym_unit] = ACTIONS(5642), + [anon_sym_LPAREN_PIPE] = ACTIONS(5640), + [sym_op_identifier] = ACTIONS(5642), + [anon_sym_PLUS] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5640), + [anon_sym_PLUS_DOT] = ACTIONS(5642), + [anon_sym_DASH_DOT] = ACTIONS(5642), + [anon_sym_PERCENT] = ACTIONS(5642), + [anon_sym_AMP_AMP] = ACTIONS(5642), + [anon_sym_TILDE] = ACTIONS(5644), + [aux_sym_prefix_op_token1] = ACTIONS(5642), + [sym_int] = ACTIONS(5640), + [sym_xint] = ACTIONS(5642), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5642), + }, + [3197] = { + [sym_block_comment] = STATE(3197), + [sym_compiler_directive_decl] = STATE(3197), + [sym_fsi_directive_decl] = STATE(3197), + [sym_preproc_line] = STATE(3197), [sym_identifier] = ACTIONS(5647), [anon_sym_return] = ACTIONS(5647), [anon_sym_do] = ACTIONS(5647), @@ -366380,135 +368060,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(15), [anon_sym_POUNDif] = ACTIONS(5649), }, - [3185] = { - [sym_block_comment] = STATE(3185), - [sym_compiler_directive_decl] = STATE(3185), - [sym_fsi_directive_decl] = STATE(3185), - [sym_preproc_line] = STATE(3185), - [sym_identifier] = ACTIONS(5628), - [anon_sym_return] = ACTIONS(5628), - [anon_sym_do] = ACTIONS(5628), - [anon_sym_let] = ACTIONS(5628), - [anon_sym_let_BANG] = ACTIONS(5630), - [anon_sym_LPAREN] = ACTIONS(5628), - [anon_sym_null] = ACTIONS(5628), - [anon_sym_AMP] = ACTIONS(5628), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5628), - [anon_sym_LBRACK_PIPE] = ACTIONS(5630), - [anon_sym_LBRACE] = ACTIONS(5628), - [anon_sym_LT_AT] = ACTIONS(5628), - [anon_sym_LT_AT_AT] = ACTIONS(5630), - [anon_sym_LBRACE_PIPE] = ACTIONS(5630), - [anon_sym_new] = ACTIONS(5628), - [anon_sym_return_BANG] = ACTIONS(5630), - [anon_sym_yield] = ACTIONS(5628), - [anon_sym_yield_BANG] = ACTIONS(5630), - [anon_sym_lazy] = ACTIONS(5628), - [anon_sym_assert] = ACTIONS(5628), - [anon_sym_upcast] = ACTIONS(5628), - [anon_sym_downcast] = ACTIONS(5628), - [anon_sym_for] = ACTIONS(5628), - [anon_sym_while] = ACTIONS(5628), - [anon_sym_if] = ACTIONS(5628), - [anon_sym_fun] = ACTIONS(5628), - [anon_sym_try] = ACTIONS(5628), - [anon_sym_match] = ACTIONS(5628), - [anon_sym_match_BANG] = ACTIONS(5630), - [anon_sym_function] = ACTIONS(5628), - [anon_sym_use] = ACTIONS(5628), - [anon_sym_use_BANG] = ACTIONS(5630), - [anon_sym_do_BANG] = ACTIONS(5630), - [anon_sym_begin] = ACTIONS(5628), - [aux_sym_char_token1] = ACTIONS(5630), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5628), - [anon_sym_DQUOTE] = ACTIONS(5628), - [anon_sym_AT_DQUOTE] = ACTIONS(5630), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5630), - [sym_bool] = ACTIONS(5628), - [sym_unit] = ACTIONS(5630), - [anon_sym_LPAREN_PIPE] = ACTIONS(5628), - [sym_op_identifier] = ACTIONS(5630), - [anon_sym_PLUS] = ACTIONS(5628), - [anon_sym_DASH] = ACTIONS(5628), - [anon_sym_PLUS_DOT] = ACTIONS(5630), - [anon_sym_DASH_DOT] = ACTIONS(5630), - [anon_sym_PERCENT] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_TILDE] = ACTIONS(5630), - [aux_sym_prefix_op_token1] = ACTIONS(5630), - [sym_int] = ACTIONS(5628), - [sym_xint] = ACTIONS(5630), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5630), - }, - [3186] = { - [sym_block_comment] = STATE(3186), - [sym_compiler_directive_decl] = STATE(3186), - [sym_fsi_directive_decl] = STATE(3186), - [sym_preproc_line] = STATE(3186), - [sym_identifier] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_do] = ACTIONS(5112), - [anon_sym_let] = ACTIONS(5112), - [anon_sym_let_BANG] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), + [3198] = { + [sym_block_comment] = STATE(3198), + [sym_compiler_directive_decl] = STATE(3198), + [sym_fsi_directive_decl] = STATE(3198), + [sym_preproc_line] = STATE(3198), + [sym_identifier] = ACTIONS(5651), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5653), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5653), + [anon_sym_LBRACE_PIPE] = ACTIONS(5653), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5653), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5653), + [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(5653), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5653), + [anon_sym_do_BANG] = ACTIONS(5653), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5653), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5653), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5653), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5653), + [anon_sym_DASH_DOT] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_AMP_AMP] = ACTIONS(5653), + [anon_sym_TILDE] = ACTIONS(5653), + [aux_sym_prefix_op_token1] = ACTIONS(5653), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5653), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5653), + }, + [3199] = { + [sym_block_comment] = STATE(3199), + [sym_compiler_directive_decl] = STATE(3199), + [sym_fsi_directive_decl] = STATE(3199), + [sym_preproc_line] = STATE(3199), + [sym_identifier] = ACTIONS(5655), + [anon_sym_return] = ACTIONS(5655), + [anon_sym_do] = ACTIONS(5655), + [anon_sym_let] = ACTIONS(5655), + [anon_sym_let_BANG] = ACTIONS(5657), + [anon_sym_LPAREN] = ACTIONS(5655), + [anon_sym_null] = ACTIONS(5655), + [anon_sym_AMP] = ACTIONS(5655), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_LBRACK_PIPE] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(5655), + [anon_sym_LT_AT] = ACTIONS(5655), + [anon_sym_LT_AT_AT] = ACTIONS(5657), + [anon_sym_LBRACE_PIPE] = ACTIONS(5657), + [anon_sym_new] = ACTIONS(5655), + [anon_sym_return_BANG] = ACTIONS(5657), + [anon_sym_yield] = ACTIONS(5655), + [anon_sym_yield_BANG] = ACTIONS(5657), + [anon_sym_lazy] = ACTIONS(5655), + [anon_sym_assert] = ACTIONS(5655), + [anon_sym_upcast] = ACTIONS(5655), + [anon_sym_downcast] = ACTIONS(5655), + [anon_sym_for] = ACTIONS(5655), + [anon_sym_while] = ACTIONS(5655), + [anon_sym_if] = ACTIONS(5655), + [anon_sym_fun] = ACTIONS(5655), + [anon_sym_try] = ACTIONS(5655), + [anon_sym_match] = ACTIONS(5655), + [anon_sym_match_BANG] = ACTIONS(5657), + [anon_sym_function] = ACTIONS(5655), + [anon_sym_use] = ACTIONS(5655), + [anon_sym_use_BANG] = ACTIONS(5657), + [anon_sym_do_BANG] = ACTIONS(5657), + [anon_sym_begin] = ACTIONS(5655), + [aux_sym_char_token1] = ACTIONS(5657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5655), + [anon_sym_DQUOTE] = ACTIONS(5655), + [anon_sym_AT_DQUOTE] = ACTIONS(5657), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5657), + [sym_bool] = ACTIONS(5655), + [sym_unit] = ACTIONS(5657), + [anon_sym_LPAREN_PIPE] = ACTIONS(5655), + [sym_op_identifier] = ACTIONS(5657), + [anon_sym_PLUS] = ACTIONS(5655), + [anon_sym_DASH] = ACTIONS(5655), + [anon_sym_PLUS_DOT] = ACTIONS(5657), + [anon_sym_DASH_DOT] = ACTIONS(5657), + [anon_sym_PERCENT] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_TILDE] = ACTIONS(5657), + [aux_sym_prefix_op_token1] = ACTIONS(5657), + [sym_int] = ACTIONS(5655), + [sym_xint] = ACTIONS(5657), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5657), + }, + [3200] = { + [sym_block_comment] = STATE(3200), + [sym_compiler_directive_decl] = STATE(3200), + [sym_fsi_directive_decl] = STATE(3200), + [sym_preproc_line] = STATE(3200), + [sym_identifier] = ACTIONS(5647), + [anon_sym_return] = ACTIONS(5647), + [anon_sym_do] = ACTIONS(5647), + [anon_sym_let] = ACTIONS(5647), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5647), + [anon_sym_null] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_LBRACK_PIPE] = ACTIONS(5110), - [anon_sym_LBRACE] = ACTIONS(5112), - [anon_sym_LT_AT] = ACTIONS(5112), - [anon_sym_LT_AT_AT] = ACTIONS(5110), - [anon_sym_LBRACE_PIPE] = ACTIONS(5110), - [anon_sym_new] = ACTIONS(5112), - [anon_sym_return_BANG] = ACTIONS(5110), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_yield_BANG] = ACTIONS(5110), - [anon_sym_lazy] = ACTIONS(5112), - [anon_sym_assert] = ACTIONS(5112), - [anon_sym_upcast] = ACTIONS(5112), - [anon_sym_downcast] = ACTIONS(5112), - [anon_sym_for] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_match] = ACTIONS(5112), - [anon_sym_match_BANG] = ACTIONS(5110), - [anon_sym_function] = ACTIONS(5112), - [anon_sym_use] = ACTIONS(5112), - [anon_sym_use_BANG] = ACTIONS(5110), - [anon_sym_do_BANG] = ACTIONS(5110), - [anon_sym_begin] = ACTIONS(5112), - [aux_sym_char_token1] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), - [anon_sym_DQUOTE] = ACTIONS(5112), - [anon_sym_AT_DQUOTE] = ACTIONS(5110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5110), - [sym_bool] = ACTIONS(5112), - [sym_unit] = ACTIONS(5110), - [anon_sym_LPAREN_PIPE] = ACTIONS(5112), - [sym_op_identifier] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_PLUS_DOT] = ACTIONS(5110), - [anon_sym_DASH_DOT] = ACTIONS(5110), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [aux_sym_prefix_op_token1] = ACTIONS(5110), - [sym_int] = ACTIONS(5112), - [sym_xint] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5647), + [anon_sym_LT_AT] = ACTIONS(5647), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5647), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5647), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5647), + [anon_sym_assert] = ACTIONS(5647), + [anon_sym_upcast] = ACTIONS(5647), + [anon_sym_downcast] = ACTIONS(5647), + [anon_sym_for] = ACTIONS(5647), + [anon_sym_while] = ACTIONS(5647), + [anon_sym_if] = ACTIONS(5647), + [anon_sym_fun] = ACTIONS(5647), + [anon_sym_try] = ACTIONS(5647), + [anon_sym_match] = ACTIONS(5647), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5647), + [anon_sym_use] = ACTIONS(5647), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5647), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5647), + [anon_sym_DQUOTE] = ACTIONS(5647), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5647), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5647), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [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(5647), + [sym_xint] = ACTIONS(5649), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(3), [anon_sym_POUNDnowarn] = ACTIONS(7), @@ -366516,76 +368265,214 @@ 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(15), - [anon_sym_POUNDif] = ACTIONS(5110), + [anon_sym_POUNDif] = ACTIONS(5649), }, - [3187] = { - [sym_block_comment] = STATE(3187), - [sym_compiler_directive_decl] = STATE(3187), - [sym_fsi_directive_decl] = STATE(3187), - [sym_preproc_line] = STATE(3187), - [sym_identifier] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_do] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_let_BANG] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_LBRACK_PIPE] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_LT_AT] = ACTIONS(5066), - [anon_sym_LT_AT_AT] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5064), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_return_BANG] = ACTIONS(5064), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_yield_BANG] = ACTIONS(5064), - [anon_sym_lazy] = ACTIONS(5066), - [anon_sym_assert] = ACTIONS(5066), - [anon_sym_upcast] = ACTIONS(5066), - [anon_sym_downcast] = ACTIONS(5066), - [anon_sym_for] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_match] = ACTIONS(5066), - [anon_sym_match_BANG] = ACTIONS(5064), - [anon_sym_function] = ACTIONS(5066), - [anon_sym_use] = ACTIONS(5066), - [anon_sym_use_BANG] = ACTIONS(5064), - [anon_sym_do_BANG] = ACTIONS(5064), - [anon_sym_begin] = ACTIONS(5066), - [aux_sym_char_token1] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [anon_sym_AT_DQUOTE] = ACTIONS(5064), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5064), - [sym_bool] = ACTIONS(5066), - [sym_unit] = ACTIONS(5064), - [anon_sym_LPAREN_PIPE] = ACTIONS(5066), - [sym_op_identifier] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_PLUS_DOT] = ACTIONS(5064), - [anon_sym_DASH_DOT] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_prefix_op_token1] = ACTIONS(5064), - [sym_int] = ACTIONS(5066), - [sym_xint] = ACTIONS(5064), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(3), - [anon_sym_POUNDnowarn] = ACTIONS(7), - [anon_sym_POUNDlight] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(15), - [anon_sym_POUNDif] = ACTIONS(5064), + [3201] = { + [sym_block_comment] = STATE(3201), + [sym_compiler_directive_decl] = STATE(3201), + [sym_fsi_directive_decl] = STATE(3201), + [sym_preproc_line] = STATE(3201), + [sym_identifier] = ACTIONS(5120), + [anon_sym_return] = ACTIONS(5120), + [anon_sym_do] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_let_BANG] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LBRACK_PIPE] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_LT_AT] = ACTIONS(5120), + [anon_sym_LT_AT_AT] = ACTIONS(5118), + [anon_sym_LBRACE_PIPE] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5120), + [anon_sym_return_BANG] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5120), + [anon_sym_yield_BANG] = ACTIONS(5118), + [anon_sym_lazy] = ACTIONS(5120), + [anon_sym_assert] = ACTIONS(5120), + [anon_sym_upcast] = ACTIONS(5120), + [anon_sym_downcast] = ACTIONS(5120), + [anon_sym_for] = ACTIONS(5120), + [anon_sym_while] = ACTIONS(5120), + [anon_sym_if] = ACTIONS(5120), + [anon_sym_fun] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_match] = ACTIONS(5120), + [anon_sym_match_BANG] = ACTIONS(5118), + [anon_sym_function] = ACTIONS(5120), + [anon_sym_use] = ACTIONS(5120), + [anon_sym_use_BANG] = ACTIONS(5118), + [anon_sym_do_BANG] = ACTIONS(5118), + [anon_sym_begin] = ACTIONS(5120), + [aux_sym_char_token1] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(5120), + [anon_sym_AT_DQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5118), + [sym_bool] = ACTIONS(5120), + [sym_unit] = ACTIONS(5118), + [anon_sym_LPAREN_PIPE] = ACTIONS(5120), + [sym_op_identifier] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS_DOT] = ACTIONS(5118), + [anon_sym_DASH_DOT] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [aux_sym_prefix_op_token1] = ACTIONS(5118), + [sym_int] = ACTIONS(5120), + [sym_xint] = ACTIONS(5118), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5118), + }, + [3202] = { + [sym_block_comment] = STATE(3202), + [sym_compiler_directive_decl] = STATE(3202), + [sym_fsi_directive_decl] = STATE(3202), + [sym_preproc_line] = STATE(3202), + [sym_identifier] = ACTIONS(5056), + [anon_sym_return] = ACTIONS(5056), + [anon_sym_do] = ACTIONS(5056), + [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_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACK_PIPE] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LT_AT] = ACTIONS(5056), + [anon_sym_LT_AT_AT] = ACTIONS(5054), + [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_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_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5054), + }, + [3203] = { + [sym_block_comment] = STATE(3203), + [sym_compiler_directive_decl] = STATE(3203), + [sym_fsi_directive_decl] = STATE(3203), + [sym_preproc_line] = STATE(3203), + [sym_identifier] = ACTIONS(5636), + [anon_sym_return] = ACTIONS(5636), + [anon_sym_do] = ACTIONS(5636), + [anon_sym_let] = ACTIONS(5636), + [anon_sym_let_BANG] = ACTIONS(5638), + [anon_sym_LPAREN] = ACTIONS(5636), + [anon_sym_null] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_LBRACK_PIPE] = ACTIONS(5638), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_LT_AT] = ACTIONS(5636), + [anon_sym_LT_AT_AT] = ACTIONS(5638), + [anon_sym_LBRACE_PIPE] = ACTIONS(5638), + [anon_sym_new] = ACTIONS(5636), + [anon_sym_return_BANG] = ACTIONS(5638), + [anon_sym_yield] = ACTIONS(5636), + [anon_sym_yield_BANG] = ACTIONS(5638), + [anon_sym_lazy] = ACTIONS(5636), + [anon_sym_assert] = ACTIONS(5636), + [anon_sym_upcast] = ACTIONS(5636), + [anon_sym_downcast] = ACTIONS(5636), + [anon_sym_for] = ACTIONS(5636), + [anon_sym_while] = ACTIONS(5636), + [anon_sym_if] = ACTIONS(5636), + [anon_sym_fun] = ACTIONS(5636), + [anon_sym_try] = ACTIONS(5636), + [anon_sym_match] = ACTIONS(5636), + [anon_sym_match_BANG] = ACTIONS(5638), + [anon_sym_function] = ACTIONS(5636), + [anon_sym_use] = ACTIONS(5636), + [anon_sym_use_BANG] = ACTIONS(5638), + [anon_sym_do_BANG] = ACTIONS(5638), + [anon_sym_begin] = ACTIONS(5636), + [aux_sym_char_token1] = ACTIONS(5638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(5636), + [anon_sym_AT_DQUOTE] = ACTIONS(5638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5638), + [sym_bool] = ACTIONS(5636), + [sym_unit] = ACTIONS(5638), + [anon_sym_LPAREN_PIPE] = ACTIONS(5636), + [sym_op_identifier] = ACTIONS(5638), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS_DOT] = ACTIONS(5638), + [anon_sym_DASH_DOT] = ACTIONS(5638), + [anon_sym_PERCENT] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_TILDE] = ACTIONS(5638), + [aux_sym_prefix_op_token1] = ACTIONS(5638), + [sym_int] = ACTIONS(5636), + [sym_xint] = ACTIONS(5638), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(3), + [anon_sym_POUNDnowarn] = ACTIONS(7), + [anon_sym_POUNDlight] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(15), + [anon_sym_POUNDif] = ACTIONS(5638), }, }; @@ -366601,94 +368488,9426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_LT2, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3214), 1, + sym_type_arguments, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(6570), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3204), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [132] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3206), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + ACTIONS(5659), 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + STATE(3205), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [260] = 31, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5661), 1, + sym_identifier, + ACTIONS(5666), 1, + anon_sym_LPAREN, + ACTIONS(5672), 1, + anon_sym_LBRACK, + ACTIONS(5675), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5678), 1, + anon_sym_LBRACE, + ACTIONS(5681), 1, + aux_sym_char_token1, + ACTIONS(5684), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5687), 1, + anon_sym_DQUOTE, + ACTIONS(5690), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5696), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5699), 1, + sym_bool, + ACTIONS(5702), 1, + sym_unit, + ACTIONS(5705), 1, + sym_int, + ACTIONS(5708), 1, + sym_xint, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5669), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + ACTIONS(5664), 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + STATE(3206), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_argument_patterns_repeat1, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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] = 34, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_LT2, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3209), 1, + sym_type_arguments, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(6654), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3207), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [518] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7492), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3208), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [644] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(6704), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3209), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [770] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7123), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3210), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [896] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(6570), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3211), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1022] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7532), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3212), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1148] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7191), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3213), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1274] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(6654), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3214), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1400] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7611), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3215), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1526] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7096), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3216), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1652] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7340), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3217), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1778] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7450), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3218), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [1904] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7395), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3219), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [2030] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7572), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3220), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [2156] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(8326), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3221), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [2282] = 32, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5354), 1, + anon_sym_LBRACK, + ACTIONS(5356), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + aux_sym_char_token1, + ACTIONS(5364), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5368), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5370), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5374), 1, + sym_bool, + ACTIONS(5376), 1, + sym_unit, + ACTIONS(5378), 1, + sym_int, + ACTIONS(5380), 1, + sym_xint, + STATE(3205), 1, + aux_sym_argument_patterns_repeat1, + STATE(3920), 1, + sym_float, + STATE(4289), 1, + sym__atomic_pattern, + STATE(4295), 1, + sym_format_triple_quoted_string, + STATE(7281), 1, + sym_argument_patterns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5352), 2, + anon_sym_null, + anon_sym__, + STATE(4293), 2, + sym_format_string, + sym__string_literal, + STATE(3222), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4237), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(4292), 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, + [2408] = 24, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5711), 1, + anon_sym_y, + ACTIONS(5713), 1, + anon_sym_uy, + ACTIONS(5715), 1, + anon_sym_s, + ACTIONS(5717), 1, + anon_sym_us, + ACTIONS(5719), 1, + anon_sym_l, + ACTIONS(5721), 1, + aux_sym_uint32_token1, + ACTIONS(5723), 1, + anon_sym_n, + ACTIONS(5725), 1, + anon_sym_un, + ACTIONS(5727), 1, + anon_sym_L, + ACTIONS(5729), 1, + aux_sym_uint64_token1, + ACTIONS(5731), 1, + aux_sym_bignum_token1, + ACTIONS(5733), 1, + aux_sym_decimal_token1, + ACTIONS(5735), 1, + anon_sym_DOT2, + ACTIONS(5737), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3223), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_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, + [2514] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5739), 1, + anon_sym_y, + ACTIONS(5741), 1, + anon_sym_uy, + ACTIONS(5743), 1, + anon_sym_s, + ACTIONS(5745), 1, + anon_sym_us, + ACTIONS(5747), 1, + anon_sym_l, + ACTIONS(5749), 1, + aux_sym_uint32_token1, + ACTIONS(5751), 1, + anon_sym_n, + ACTIONS(5753), 1, + anon_sym_un, + ACTIONS(5755), 1, + anon_sym_L, + ACTIONS(5757), 1, + aux_sym_uint64_token1, + ACTIONS(5759), 1, + aux_sym_bignum_token1, + ACTIONS(5761), 1, + aux_sym_decimal_token1, + ACTIONS(5763), 1, + anon_sym_DOT2, + ACTIONS(5765), 1, + aux_sym_float_token1, + STATE(3224), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [2619] = 24, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5767), 1, + anon_sym_y, + ACTIONS(5769), 1, + anon_sym_uy, + ACTIONS(5771), 1, + anon_sym_s, + ACTIONS(5773), 1, + anon_sym_us, + ACTIONS(5775), 1, + anon_sym_l, + ACTIONS(5777), 1, + aux_sym_uint32_token1, + ACTIONS(5779), 1, + anon_sym_n, + ACTIONS(5781), 1, + anon_sym_un, + ACTIONS(5783), 1, + anon_sym_L, + ACTIONS(5785), 1, + aux_sym_uint64_token1, + ACTIONS(5787), 1, + aux_sym_bignum_token1, + ACTIONS(5789), 1, + aux_sym_decimal_token1, + ACTIONS(5791), 1, + anon_sym_DOT2, + ACTIONS(5793), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3225), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_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, + [2724] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5795), 1, + anon_sym_y, + ACTIONS(5797), 1, + anon_sym_uy, + ACTIONS(5799), 1, + anon_sym_s, + ACTIONS(5801), 1, + anon_sym_us, + ACTIONS(5803), 1, + anon_sym_l, + ACTIONS(5805), 1, + aux_sym_uint32_token1, + ACTIONS(5807), 1, + anon_sym_n, + ACTIONS(5809), 1, + anon_sym_un, + ACTIONS(5811), 1, + anon_sym_L, + ACTIONS(5813), 1, + aux_sym_uint64_token1, + ACTIONS(5815), 1, + aux_sym_bignum_token1, + ACTIONS(5817), 1, + aux_sym_decimal_token1, + ACTIONS(5819), 1, + anon_sym_DOT2, + ACTIONS(5821), 1, + aux_sym_float_token1, + STATE(3226), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [2828] = 24, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5823), 1, + anon_sym_y, + ACTIONS(5825), 1, + anon_sym_uy, + ACTIONS(5827), 1, + anon_sym_s, + ACTIONS(5829), 1, + anon_sym_us, + ACTIONS(5831), 1, + anon_sym_l, + ACTIONS(5833), 1, + aux_sym_uint32_token1, + ACTIONS(5835), 1, + anon_sym_n, + ACTIONS(5837), 1, + anon_sym_un, + ACTIONS(5839), 1, + anon_sym_L, + ACTIONS(5841), 1, + aux_sym_uint64_token1, + ACTIONS(5843), 1, + aux_sym_bignum_token1, + ACTIONS(5845), 1, + aux_sym_decimal_token1, + ACTIONS(5847), 1, + anon_sym_DOT2, + ACTIONS(5849), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3227), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [2932] = 22, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5711), 1, + anon_sym_y, + ACTIONS(5713), 1, + anon_sym_uy, + ACTIONS(5715), 1, + anon_sym_s, + ACTIONS(5717), 1, + anon_sym_us, + ACTIONS(5719), 1, + anon_sym_l, + ACTIONS(5721), 1, + aux_sym_uint32_token1, + ACTIONS(5723), 1, + anon_sym_n, + ACTIONS(5725), 1, + anon_sym_un, + ACTIONS(5727), 1, + anon_sym_L, + ACTIONS(5729), 1, + aux_sym_uint64_token1, + ACTIONS(5851), 1, + anon_sym_lf, + ACTIONS(5853), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3228), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_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, + [3032] = 22, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5767), 1, + anon_sym_y, + ACTIONS(5769), 1, + anon_sym_uy, + ACTIONS(5771), 1, + anon_sym_s, + ACTIONS(5773), 1, + anon_sym_us, + ACTIONS(5775), 1, + anon_sym_l, + ACTIONS(5777), 1, + aux_sym_uint32_token1, + ACTIONS(5779), 1, + anon_sym_n, + ACTIONS(5781), 1, + anon_sym_un, + ACTIONS(5783), 1, + anon_sym_L, + ACTIONS(5785), 1, + aux_sym_uint64_token1, + ACTIONS(5855), 1, + anon_sym_lf, + ACTIONS(5857), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3229), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_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, + [3131] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5739), 1, + anon_sym_y, + ACTIONS(5741), 1, + anon_sym_uy, + ACTIONS(5743), 1, + anon_sym_s, + ACTIONS(5745), 1, + anon_sym_us, + ACTIONS(5747), 1, + anon_sym_l, + ACTIONS(5749), 1, + aux_sym_uint32_token1, + ACTIONS(5751), 1, + anon_sym_n, + ACTIONS(5753), 1, + anon_sym_un, + ACTIONS(5755), 1, + anon_sym_L, + ACTIONS(5757), 1, + aux_sym_uint64_token1, + ACTIONS(5859), 1, + anon_sym_lf, + ACTIONS(5861), 1, + anon_sym_LF, + STATE(3230), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [3230] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5795), 1, + anon_sym_y, + ACTIONS(5797), 1, + anon_sym_uy, + ACTIONS(5799), 1, + anon_sym_s, + ACTIONS(5801), 1, + anon_sym_us, + ACTIONS(5803), 1, + anon_sym_l, + ACTIONS(5805), 1, + aux_sym_uint32_token1, + ACTIONS(5807), 1, + anon_sym_n, + ACTIONS(5809), 1, + anon_sym_un, + ACTIONS(5811), 1, + anon_sym_L, + ACTIONS(5813), 1, + aux_sym_uint64_token1, + ACTIONS(5863), 1, + anon_sym_lf, + ACTIONS(5865), 1, + anon_sym_LF, + STATE(3231), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_RBRACE, + aux_sym_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] = 22, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5823), 1, + anon_sym_y, + ACTIONS(5825), 1, + anon_sym_uy, + ACTIONS(5827), 1, + anon_sym_s, + ACTIONS(5829), 1, + anon_sym_us, + ACTIONS(5831), 1, + anon_sym_l, + ACTIONS(5833), 1, + aux_sym_uint32_token1, + ACTIONS(5835), 1, + anon_sym_n, + ACTIONS(5837), 1, + anon_sym_un, + ACTIONS(5839), 1, + anon_sym_L, + ACTIONS(5841), 1, + aux_sym_uint64_token1, + ACTIONS(5867), 1, + anon_sym_lf, + ACTIONS(5869), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3232), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [3426] = 20, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_DASH_GT, + ACTIONS(5879), 1, + anon_sym_when, + ACTIONS(5881), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_LBRACK_RBRACK, + STATE(3266), 1, + aux_sym_compound_type_repeat1, + STATE(3285), 1, + sym_long_identifier, + STATE(3305), 1, + sym_type_arguments, + STATE(3591), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3233), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5875), 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(5873), 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_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, + [3517] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5887), 1, + anon_sym_or, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3234), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(2990), 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(2992), 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_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, + [3589] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_DASH_GT, + ACTIONS(5881), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_LBRACK_RBRACK, + STATE(3266), 1, + aux_sym_compound_type_repeat1, + STATE(3285), 1, + sym_long_identifier, + STATE(3305), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3235), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2902), 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(2900), 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_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, + [3675] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3236), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5890), 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(5892), 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_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, + [3759] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5902), 1, + anon_sym_or, + STATE(3249), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3237), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2979), 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(2981), 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_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, + [3833] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5904), 1, + sym_identifier, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3238), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2906), 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(2904), 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_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, + [3919] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_DASH_GT, + ACTIONS(5881), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_LBRACK_RBRACK, + STATE(3266), 1, + aux_sym_compound_type_repeat1, + STATE(3285), 1, + sym_long_identifier, + STATE(3305), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3239), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2910), 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(2908), 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_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, + [4005] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5904), 1, + sym_identifier, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3240), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2902), 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(2900), 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_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, + [4091] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5904), 1, + sym_identifier, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3241), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2886), 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(2882), 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_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, + [4177] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3242), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5906), 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(5908), 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_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, + [4261] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_DASH_GT, + ACTIONS(5881), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_LBRACK_RBRACK, + STATE(3266), 1, + aux_sym_compound_type_repeat1, + STATE(3285), 1, + sym_long_identifier, + STATE(3305), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3243), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2886), 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(2882), 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_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, + [4347] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5910), 1, + anon_sym_or, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3244), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(2990), 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(2992), 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_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, + [4419] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5904), 1, + sym_identifier, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3245), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2910), 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(2908), 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_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, + [4505] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_DASH_GT, + ACTIONS(5881), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_LBRACK_RBRACK, + STATE(3266), 1, + aux_sym_compound_type_repeat1, + STATE(3285), 1, + sym_long_identifier, + STATE(3305), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3246), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2906), 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(2904), 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_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, + [4591] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5913), 1, + anon_sym_or, + STATE(3234), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3247), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2962), 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(2960), 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_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, + [4665] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5913), 1, + anon_sym_or, + STATE(3247), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3248), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2979), 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(2981), 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_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, + [4739] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5902), 1, + anon_sym_or, + STATE(3244), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3249), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2962), 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(2960), 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_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, + [4813] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5915), 1, + anon_sym_DOT, + STATE(3251), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3250), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2988), 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(2986), 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_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, + [4886] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5915), 1, + anon_sym_DOT, + STATE(3261), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3251), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2956), 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(2954), 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_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, + [4959] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5266), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5268), 1, + anon_sym_DQUOTE, + ACTIONS(5270), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5272), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5274), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5280), 1, + sym_int, + ACTIONS(5282), 1, + sym_xint, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5917), 1, + aux_sym_char_token1, + STATE(495), 1, + sym_const, + STATE(3115), 1, + sym_float, + STATE(3176), 1, + sym_format_triple_quoted_string, + STATE(6679), 1, + sym_static_parameter_value, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5278), 2, + sym_bool, + sym_unit, + STATE(3178), 2, + sym_format_string, + sym__string_literal, + STATE(3252), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3187), 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, + [5054] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5894), 1, + anon_sym_DASH_GT, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, + anon_sym_LT2, + ACTIONS(5900), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5904), 1, + sym_identifier, + STATE(3276), 1, + aux_sym_compound_type_repeat1, + STATE(3279), 1, + sym_type_arguments, + STATE(3311), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3253), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5921), 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(5919), 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_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, + [5139] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5923), 1, + anon_sym_DOT, + STATE(3258), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3254), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2988), 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(2986), 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_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, + [5212] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3255), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3046), 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(3044), 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_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, + [5281] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3256), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3046), 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(3044), 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_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, + [5350] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5925), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3257), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 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(2966), 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_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, + [5421] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5923), 1, + anon_sym_DOT, + STATE(3257), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3258), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2956), 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(2954), 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_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, + [5494] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3259), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2990), 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(2992), 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_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, + [5563] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3260), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2990), 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(2992), 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_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, + [5632] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5928), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3261), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 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(2966), 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_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, + [5703] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3262), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2964), 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(2966), 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_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, + [5771] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5931), 1, + anon_sym_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3263), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_compound_type_repeat1, + ACTIONS(2886), 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(2882), 20, + 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, + 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, + [5841] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5958), 1, + anon_sym_POUNDendif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + STATE(3268), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + STATE(8282), 1, + sym_preproc_else_in_class_definition, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3264), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [5967] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5964), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3265), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3060), 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(3058), 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_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, + [6037] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5881), 1, + anon_sym_STAR, + STATE(3271), 1, + aux_sym_compound_type_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3266), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3013), 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(3015), 20, + 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, + 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, + [6109] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5966), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3267), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3060), 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(3058), 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_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, + [6179] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + ACTIONS(5968), 1, + anon_sym_POUNDendif, + STATE(3306), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + STATE(8311), 1, + sym_preproc_else_in_class_definition, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3268), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [6305] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3269), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2964), 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(2966), 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_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, + [6373] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + ACTIONS(5970), 1, + anon_sym_POUNDendif, + STATE(3275), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(7119), 1, + sym_preproc_else_in_class_definition, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3270), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [6499] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5972), 1, + anon_sym_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3271), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_compound_type_repeat1, + ACTIONS(2886), 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(2882), 20, + 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, + 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, + [6569] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + ACTIONS(5975), 1, + anon_sym_POUNDendif, + STATE(3306), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(7494), 1, + sym_preproc_else_in_class_definition, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3272), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [6695] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3273), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2979), 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(2981), 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_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, + [6763] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3274), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2979), 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(2981), 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_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, + [6831] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + ACTIONS(5977), 1, + anon_sym_POUNDendif, + STATE(3306), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(7126), 1, + sym_preproc_else_in_class_definition, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3275), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [6957] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5896), 1, + anon_sym_STAR, + STATE(3263), 1, + aux_sym_compound_type_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3276), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3013), 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(3015), 20, + 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, + 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, + [7029] = 39, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + ACTIONS(5960), 1, + anon_sym_POUNDelse, + ACTIONS(5962), 1, + sym__newline, + ACTIONS(5979), 1, + anon_sym_POUNDendif, + STATE(3272), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(7536), 1, + sym_preproc_else_in_class_definition, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3277), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [7155] = 22, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5981), 1, + aux_sym_char_token1, + ACTIONS(5983), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5985), 1, + anon_sym_DQUOTE, + ACTIONS(5987), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5989), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5991), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5995), 1, + sym_int, + ACTIONS(5997), 1, + sym_xint, + STATE(6133), 1, + sym_float, + STATE(6731), 1, + sym_const, + STATE(6840), 1, + sym_format_triple_quoted_string, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5993), 2, + sym_bool, + sym_unit, + STATE(6841), 2, + sym_format_string, + sym__string_literal, + STATE(3278), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6842), 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, + [7247] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3279), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3072), 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(3070), 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_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] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3280), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3096), 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(3098), 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_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] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5999), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3281), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(3134), 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_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, + [7450] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3282), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3096), 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(3098), 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_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, + [7517] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6462), 1, + sym__object_construction, + STATE(6549), 1, + sym_attribute, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3283), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [7610] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3284), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3076), 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(3074), 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_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, + [7677] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3285), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3048), 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(3054), 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_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, + [7744] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3286), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3042), 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(3040), 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_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, + [7811] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6422), 1, + sym_attribute, + STATE(6462), 1, + sym__object_construction, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3287), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [7904] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3288), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3078), 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(3080), 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_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, + [7971] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3289), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3088), 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(3090), 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_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, + [8038] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6330), 1, + sym_attribute, + STATE(6462), 1, + sym__object_construction, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3290), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [8131] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3291), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3088), 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(3090), 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_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, + [8198] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3292), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3078), 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(3080), 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_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, + [8265] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3293), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 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(3094), 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_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, + [8332] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3294), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3076), 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(3074), 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_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, + [8399] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3295), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3042), 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(3040), 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_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, + [8466] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3296), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3068), 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(3066), 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_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, + [8533] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3297), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3062), 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(3064), 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_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, + [8600] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6430), 1, + sym_attribute, + STATE(6462), 1, + sym__object_construction, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3298), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [8693] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3299), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 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(3094), 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_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, + [8760] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3300), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3062), 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(3064), 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_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, + [8827] = 24, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6013), 1, + anon_sym_y, + ACTIONS(6015), 1, + anon_sym_uy, + ACTIONS(6017), 1, + anon_sym_s, + ACTIONS(6019), 1, + anon_sym_us, + ACTIONS(6021), 1, + anon_sym_l, + ACTIONS(6023), 1, + aux_sym_uint32_token1, + ACTIONS(6025), 1, + anon_sym_n, + ACTIONS(6027), 1, + anon_sym_un, + ACTIONS(6029), 1, + anon_sym_L, + ACTIONS(6031), 1, + aux_sym_uint64_token1, + ACTIONS(6033), 1, + aux_sym_bignum_token1, + ACTIONS(6035), 1, + aux_sym_decimal_token1, + ACTIONS(6037), 1, + anon_sym_DOT2, + ACTIONS(6039), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3301), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [8922] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6423), 1, + sym_attribute, + STATE(6462), 1, + sym__object_construction, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3302), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [9015] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6344), 1, + sym_attribute, + STATE(6462), 1, + sym__object_construction, + STATE(8384), 1, + sym__attribute_target, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3303), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6001), 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(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [9108] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6041), 1, + anon_sym_LT2, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3304), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3084), 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(3082), 20, + 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, + 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, + [9177] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3305), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3072), 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(3070), 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_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, + [9244] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6043), 1, + anon_sym_LBRACK_LT, + ACTIONS(6046), 1, + anon_sym_do, + ACTIONS(6049), 1, + anon_sym_let, + ACTIONS(6052), 1, + anon_sym_let_BANG, + ACTIONS(6055), 1, + aux_sym_access_modifier_token1, + ACTIONS(6058), 1, + anon_sym_new, + ACTIONS(6064), 1, + anon_sym_static, + ACTIONS(6067), 1, + anon_sym_member, + ACTIONS(6070), 1, + anon_sym_interface, + ACTIONS(6073), 1, + anon_sym_abstract, + ACTIONS(6076), 1, + anon_sym_val, + ACTIONS(6079), 1, + anon_sym_inherit, + ACTIONS(6082), 1, + anon_sym_POUNDif, + ACTIONS(6087), 1, + sym__newline, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4419), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6061), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(6085), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3306), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_preproc_if_in_class_definition_repeat1, + [9363] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3307), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3068), 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(3066), 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_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, + [9430] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3308), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3060), 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(3058), 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_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, + [9497] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3309), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3060), 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(3058), 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_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, + [9564] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6090), 1, + anon_sym_LT2, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3310), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3084), 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(3082), 20, + 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, + 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, + [9633] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3311), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3048), 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(3054), 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_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, + [9700] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6092), 1, + aux_sym_float_token1, + STATE(3312), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(3134), 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, + [9768] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6094), 1, + anon_sym_DOT, + STATE(3314), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3313), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 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(3000), 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_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, + [9838] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6094), 1, + anon_sym_DOT, + STATE(3322), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3314), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2956), 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(2954), 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_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, + [9908] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6096), 1, + sym_int, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3315), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3151), 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(3153), 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_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, + [9976] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3316), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3174), 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(3176), 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_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, + [10042] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6043), 1, + anon_sym_LBRACK_LT, + ACTIONS(6055), 1, + aux_sym_access_modifier_token1, + ACTIONS(6085), 1, + anon_sym_POUNDendif, + ACTIONS(6098), 1, + anon_sym_do, + ACTIONS(6101), 1, + anon_sym_let, + ACTIONS(6104), 1, + anon_sym_let_BANG, + ACTIONS(6107), 1, + anon_sym_new, + ACTIONS(6113), 1, + anon_sym_static, + ACTIONS(6116), 1, + anon_sym_member, + ACTIONS(6119), 1, + anon_sym_interface, + ACTIONS(6122), 1, + anon_sym_abstract, + ACTIONS(6125), 1, + anon_sym_val, + ACTIONS(6128), 1, + anon_sym_inherit, + ACTIONS(6131), 1, + anon_sym_POUNDif, + ACTIONS(6134), 1, + sym__newline, + STATE(3744), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4325), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4513), 1, + sym__class_type_body_inner, + STATE(4517), 1, + sym_function_or_value_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(4547), 1, + sym__member_defns, + STATE(4548), 1, + sym_interface_implementation, + STATE(4719), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6110), 2, + anon_sym_default, + anon_sym_override, + STATE(4518), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3317), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_preproc_if_in_class_definition_repeat1, + [10160] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3318), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(3134), 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_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, + [10226] = 37, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6137), 1, + anon_sym_do, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(6143), 1, + anon_sym_new, + ACTIONS(6147), 1, + anon_sym_static, + ACTIONS(6149), 1, + anon_sym_member, + ACTIONS(6151), 1, + anon_sym_interface, + ACTIONS(6153), 1, + anon_sym_abstract, + ACTIONS(6155), 1, + anon_sym_val, + ACTIONS(6157), 1, + anon_sym_inherit, + ACTIONS(6159), 1, + anon_sym_POUNDif, + ACTIONS(6161), 1, + anon_sym_POUNDendif, + ACTIONS(6163), 1, + sym__newline, + STATE(3321), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3744), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4325), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4513), 1, + sym__class_type_body_inner, + STATE(4517), 1, + sym_function_or_value_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(4547), 1, + sym__member_defns, + STATE(4548), 1, + sym_interface_implementation, + STATE(4719), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6145), 2, + anon_sym_default, + anon_sym_override, + STATE(3319), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4518), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [10346] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6165), 1, + aux_sym_float_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3320), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(3134), 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_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, + [10414] = 37, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6137), 1, + anon_sym_do, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(6143), 1, + anon_sym_new, + ACTIONS(6147), 1, + anon_sym_static, + ACTIONS(6149), 1, + anon_sym_member, + ACTIONS(6151), 1, + anon_sym_interface, + ACTIONS(6153), 1, + anon_sym_abstract, + ACTIONS(6155), 1, + anon_sym_val, + ACTIONS(6157), 1, + anon_sym_inherit, + ACTIONS(6159), 1, + anon_sym_POUNDif, + ACTIONS(6163), 1, + sym__newline, + ACTIONS(6167), 1, + anon_sym_POUNDendif, + STATE(3317), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(3744), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4325), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4513), 1, + sym__class_type_body_inner, + STATE(4517), 1, + sym_function_or_value_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(4547), 1, + sym__member_defns, + STATE(4548), 1, + sym_interface_implementation, + STATE(4719), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6145), 2, + anon_sym_default, + anon_sym_override, + STATE(3321), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4518), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [10534] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6169), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3322), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 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(2966), 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_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, + [10602] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5733), 1, + aux_sym_decimal_token1, + ACTIONS(5851), 1, + anon_sym_f, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3323), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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_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, + [10672] = 13, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6172), 1, + anon_sym_EQ, + ACTIONS(6174), 1, + anon_sym_DOT, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3324), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 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(3000), 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, + [10743] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6194), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7167), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3325), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [10860] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6196), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2257), 1, + sym__type, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, + sym_long_identifier, + STATE(2741), 1, + sym_curried_spec, + STATE(3382), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3326), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [10963] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6094), 1, + anon_sym_DOT, + STATE(3314), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3327), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2988), 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(2986), 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_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, + [11032] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6212), 1, + anon_sym_DOT, + STATE(3345), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3328), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2956), 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(2954), 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_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, + [11101] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6214), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7152), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3329), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [11218] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6216), 1, + sym_identifier, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + STATE(3403), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4254), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, + STATE(5030), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3330), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [11321] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6232), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3331), 4, + sym_block_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), 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_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, + [11388] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6234), 1, + sym_int, + STATE(3332), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3151), 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(3153), 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, + [11455] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6236), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7243), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3333), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [11572] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5761), 1, + aux_sym_decimal_token1, + ACTIONS(5859), 1, + anon_sym_f, + STATE(3334), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [11641] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3335), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(3134), 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_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, + [11706] = 22, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6013), 1, + anon_sym_y, + ACTIONS(6015), 1, + anon_sym_uy, + ACTIONS(6017), 1, + anon_sym_s, + ACTIONS(6019), 1, + anon_sym_us, + ACTIONS(6021), 1, + anon_sym_l, + ACTIONS(6023), 1, + aux_sym_uint32_token1, + ACTIONS(6025), 1, + anon_sym_n, + ACTIONS(6027), 1, + anon_sym_un, + ACTIONS(6029), 1, + anon_sym_L, + ACTIONS(6031), 1, + aux_sym_uint64_token1, + ACTIONS(6238), 1, + anon_sym_lf, + ACTIONS(6240), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3336), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2528), 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(2526), 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, + [11795] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6242), 1, + anon_sym_DOT, + STATE(3337), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 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(2966), 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, + [11862] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6245), 1, + sym_identifier, + STATE(3383), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4297), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(5070), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3338), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [11965] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6247), 1, + anon_sym_DOT, + STATE(3337), 1, + aux_sym_long_identifier_repeat1, + STATE(3339), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2956), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2954), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_LT2, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12034] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3195), 1, - sym_type_arguments, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(6635), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3188), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [132] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -366699,92 +377918,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3340), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3174), 15, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + 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(3176), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_DASH_GT, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12099] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3191), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6249), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7258), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - ACTIONS(5651), 3, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - STATE(3189), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [260] = 34, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [12216] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -366795,94 +378056,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + STATE(3342), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3174), 14, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + 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(3176), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_LT2, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12281] = 36, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3196), 1, - sym_type_arguments, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(6557), 1, - sym_argument_patterns, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6251), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7069), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3190), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [392] = 31, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [12398] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -366893,91 +378188,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5653), 1, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6253), 1, sym_identifier, - ACTIONS(5658), 1, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(5664), 1, - anon_sym_LBRACK, - ACTIONS(5667), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(5673), 1, - aux_sym_char_token1, - ACTIONS(5676), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5682), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5685), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5688), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5691), 1, - sym_bool, - ACTIONS(5694), 1, - sym_unit, - ACTIONS(5697), 1, - sym_int, - ACTIONS(5700), 1, - sym_xint, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + STATE(3392), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(3879), 1, + sym__static_type_identifier, + STATE(4211), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, + STATE(4911), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5661), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - ACTIONS(5656), 3, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - STATE(3191), 5, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_argument_patterns_repeat1, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [518] = 32, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [12501] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -366988,90 +378264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6265), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3345), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2966), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_DASH_GT, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12568] = 13, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7375), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3192), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [644] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367082,90 +378320,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6268), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3346), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3000), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12639] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7321), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3193), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [770] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367176,90 +378378,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3347), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2964), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2966), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_DOT, + anon_sym_LT2, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [12704] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(8150), 1, - sym_argument_patterns, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6216), 1, + sym_identifier, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + STATE(3403), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4254), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, + STATE(5043), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3194), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [896] = 32, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [12807] = 36, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367270,90 +378505,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(6718), 1, - sym_argument_patterns, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6270), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7732), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3195), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1022] = 32, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [12924] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367364,90 +378588,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6232), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3350), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3052), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3050), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_LT2, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(6635), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, + [12991] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3196), 4, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3351), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1148] = 32, + ACTIONS(3132), 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(3134), 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, + [13056] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367458,90 +378697,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7267), 1, - sym_argument_patterns, + ACTIONS(6196), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2257), 1, + sym__type, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, + sym_long_identifier, + STATE(2740), 1, + sym_curried_spec, + STATE(3382), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3197), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1274] = 32, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [13159] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367552,90 +378773,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6272), 1, + sym_int, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3353), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3151), 14, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3153), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_DASH_GT, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7032), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3198), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1400] = 32, + [13226] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367646,90 +378827,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7416), 1, - sym_argument_patterns, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6274), 1, + sym_identifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + STATE(3415), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4181), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(4838), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3199), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3354), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1526] = 32, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [13329] = 36, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367740,90 +378901,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7120), 1, - sym_argument_patterns, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6286), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7058), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3200), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3355), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1652] = 32, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [13446] = 36, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367834,90 +378982,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7209), 1, - sym_argument_patterns, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + ACTIONS(6288), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7576), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3201), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1778] = 32, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [13563] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -367928,90 +379067,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6247), 1, + anon_sym_DOT, + STATE(3339), 1, + aux_sym_long_identifier_repeat1, + STATE(3357), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3000), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [13632] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7494), 1, - sym_argument_patterns, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6245), 1, + sym_identifier, + STATE(3383), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4297), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(5029), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3202), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [1904] = 32, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [13735] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -368022,90 +379194,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5260), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, - sym_unit, ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, - sym_xint, - ACTIONS(5467), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7532), 1, - sym_argument_patterns, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6290), 1, + sym_identifier, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + STATE(3437), 1, + aux_sym_curried_spec_repeat1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3666), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3728), 1, + sym_attributes, + STATE(3742), 1, + sym_long_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4340), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3203), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3359), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [2030] = 32, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [13838] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -368116,90 +379270,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6212), 1, + anon_sym_DOT, + STATE(3328), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3360), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3000), 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_LBRACK_PIPE, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + anon_sym_DASH_GT, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [13907] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7455), 1, - sym_argument_patterns, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6302), 1, + sym_identifier, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + STATE(3441), 1, + aux_sym_curried_spec_repeat1, + STATE(3684), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3728), 1, + sym_attributes, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, + sym_long_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4482), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3204), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [2156] = 32, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [14010] = 13, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -368210,90 +379401,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6314), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3362), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3000), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [14081] = 13, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(6557), 1, - sym_argument_patterns, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3205), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [2282] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -368304,90 +379459,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5254), 1, - sym_identifier, - ACTIONS(5256), 1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6316), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3363), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2997), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5260), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5262), 1, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3000), 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, - ACTIONS(5264), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, aux_sym_char_token1, - ACTIONS(5270), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5272), 1, - anon_sym_DQUOTE, - ACTIONS(5274), 1, anon_sym_AT_DQUOTE, - ACTIONS(5276), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5280), 1, - sym_bool, - ACTIONS(5282), 1, sym_unit, - ACTIONS(5284), 1, - sym_int, - ACTIONS(5286), 1, + sym_op_identifier, sym_xint, - ACTIONS(5467), 1, + [14152] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3189), 1, - aux_sym_argument_patterns_repeat1, - STATE(3802), 1, - sym_float, - STATE(4028), 1, - sym__atomic_pattern, - STATE(4103), 1, - sym_format_triple_quoted_string, - STATE(7026), 1, - sym_argument_patterns, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + STATE(3392), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(3879), 1, + sym__static_type_identifier, + STATE(4211), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, + STATE(4800), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5258), 2, - anon_sym_null, - anon_sym__, - STATE(4102), 2, - sym_format_string, - sym__string_literal, - STATE(3206), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4027), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(4090), 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, - [2408] = 24, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [14255] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368400,59 +379591,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5703), 1, - anon_sym_y, - ACTIONS(5705), 1, - anon_sym_uy, - ACTIONS(5707), 1, - anon_sym_s, - ACTIONS(5709), 1, - anon_sym_us, - ACTIONS(5711), 1, - anon_sym_l, - ACTIONS(5713), 1, - aux_sym_uint32_token1, - ACTIONS(5715), 1, - anon_sym_n, - ACTIONS(5717), 1, - anon_sym_un, - ACTIONS(5719), 1, - anon_sym_L, - ACTIONS(5721), 1, - aux_sym_uint64_token1, - ACTIONS(5723), 1, - aux_sym_bignum_token1, - ACTIONS(5725), 1, - aux_sym_decimal_token1, - ACTIONS(5727), 1, - anon_sym_DOT2, - ACTIONS(5729), 1, - aux_sym_float_token1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6318), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3207), 4, + STATE(3365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2997), 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(2526), 19, - anon_sym_EQ, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -368461,7 +379629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -368469,9 +379636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2514] = 24, - ACTIONS(3), 1, - sym_line_comment, + [14326] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368484,55 +379649,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5731), 1, - anon_sym_y, - ACTIONS(5733), 1, - anon_sym_uy, - ACTIONS(5735), 1, - anon_sym_s, - ACTIONS(5737), 1, - anon_sym_us, - ACTIONS(5739), 1, - anon_sym_l, - ACTIONS(5741), 1, - aux_sym_uint32_token1, - ACTIONS(5743), 1, - anon_sym_n, - ACTIONS(5745), 1, - anon_sym_un, - ACTIONS(5747), 1, - anon_sym_L, - ACTIONS(5749), 1, - aux_sym_uint64_token1, - ACTIONS(5751), 1, - aux_sym_bignum_token1, - ACTIONS(5753), 1, + ACTIONS(5789), 1, aux_sym_decimal_token1, - ACTIONS(5755), 1, - anon_sym_DOT2, - ACTIONS(5757), 1, - aux_sym_float_token1, - STATE(3208), 4, + ACTIONS(5855), 1, + anon_sym_f, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2528), 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(2526), 19, - sym__newline, - sym__dedent, + ACTIONS(2526), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -368540,9 +379683,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -368550,7 +379693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2619] = 24, + [14395] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368563,57 +379706,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5759), 1, - anon_sym_y, - ACTIONS(5761), 1, - anon_sym_uy, - ACTIONS(5763), 1, - anon_sym_s, - ACTIONS(5765), 1, - anon_sym_us, - ACTIONS(5767), 1, - anon_sym_l, - ACTIONS(5769), 1, - aux_sym_uint32_token1, - ACTIONS(5771), 1, - anon_sym_n, - ACTIONS(5773), 1, - anon_sym_un, - ACTIONS(5775), 1, - anon_sym_L, - ACTIONS(5777), 1, - aux_sym_uint64_token1, - ACTIONS(5779), 1, - aux_sym_bignum_token1, - ACTIONS(5781), 1, - aux_sym_decimal_token1, - ACTIONS(5783), 1, - anon_sym_DOT2, - ACTIONS(5785), 1, - aux_sym_float_token1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6320), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3209), 4, + STATE(3367), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, + ACTIONS(2997), 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(2526), 17, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -368623,7 +379744,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -368631,9 +379751,155 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2724] = 24, - ACTIONS(3), 1, + [14466] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6290), 1, + sym_identifier, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + STATE(3437), 1, + aux_sym_curried_spec_repeat1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3666), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3728), 1, + sym_attributes, + STATE(3742), 1, + sym_long_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4339), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3368), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [14569] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6274), 1, + sym_identifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + STATE(3415), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4181), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(4823), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3369), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [14672] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368646,53 +379912,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5787), 1, - anon_sym_y, - ACTIONS(5789), 1, - anon_sym_uy, - ACTIONS(5791), 1, - anon_sym_s, - ACTIONS(5793), 1, - anon_sym_us, - ACTIONS(5795), 1, - anon_sym_l, - ACTIONS(5797), 1, - aux_sym_uint32_token1, - ACTIONS(5799), 1, - anon_sym_n, - ACTIONS(5801), 1, - anon_sym_un, - ACTIONS(5803), 1, - anon_sym_L, - ACTIONS(5805), 1, - aux_sym_uint64_token1, - ACTIONS(5807), 1, - aux_sym_bignum_token1, - ACTIONS(5809), 1, - aux_sym_decimal_token1, - ACTIONS(5811), 1, - anon_sym_DOT2, - ACTIONS(5813), 1, - aux_sym_float_token1, - STATE(3210), 4, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6322), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2997), 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(2526), 18, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -368700,10 +379948,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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -368711,7 +379957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2828] = 24, + [14743] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368724,43 +379970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5815), 1, - anon_sym_y, - ACTIONS(5817), 1, - anon_sym_uy, - ACTIONS(5819), 1, - anon_sym_s, - ACTIONS(5821), 1, - anon_sym_us, - ACTIONS(5823), 1, - anon_sym_l, - ACTIONS(5825), 1, - aux_sym_uint32_token1, - ACTIONS(5827), 1, - anon_sym_n, - ACTIONS(5829), 1, - anon_sym_un, - ACTIONS(5831), 1, - anon_sym_L, - ACTIONS(5833), 1, - aux_sym_uint64_token1, - ACTIONS(5835), 1, - aux_sym_bignum_token1, - ACTIONS(5837), 1, - aux_sym_decimal_token1, - ACTIONS(5839), 1, - anon_sym_DOT2, - ACTIONS(5841), 1, - aux_sym_float_token1, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6324), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3211), 4, + STATE(3371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, + ACTIONS(2997), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -368774,7 +379998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2526), 16, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -368791,7 +380015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2932] = 22, + [14814] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368804,55 +380028,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5703), 1, - anon_sym_y, - ACTIONS(5705), 1, - anon_sym_uy, - ACTIONS(5707), 1, - anon_sym_s, - ACTIONS(5709), 1, - anon_sym_us, - ACTIONS(5711), 1, - anon_sym_l, - ACTIONS(5713), 1, - aux_sym_uint32_token1, - ACTIONS(5715), 1, - anon_sym_n, - ACTIONS(5717), 1, - anon_sym_un, - ACTIONS(5719), 1, - anon_sym_L, - ACTIONS(5721), 1, - aux_sym_uint64_token1, - ACTIONS(5843), 1, - anon_sym_lf, - ACTIONS(5845), 1, - anon_sym_LF, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6326), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3212), 4, + STATE(3372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2997), 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(2526), 19, - anon_sym_EQ, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -368861,7 +380066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -368869,7 +380073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3032] = 22, + [14885] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368882,53 +380086,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5759), 1, - anon_sym_y, - ACTIONS(5761), 1, - anon_sym_uy, - ACTIONS(5763), 1, - anon_sym_s, - ACTIONS(5765), 1, - anon_sym_us, - ACTIONS(5767), 1, - anon_sym_l, - ACTIONS(5769), 1, - aux_sym_uint32_token1, - ACTIONS(5771), 1, - anon_sym_n, - ACTIONS(5773), 1, - anon_sym_un, - ACTIONS(5775), 1, - anon_sym_L, - ACTIONS(5777), 1, - aux_sym_uint64_token1, - ACTIONS(5847), 1, - anon_sym_lf, - ACTIONS(5849), 1, - anon_sym_LF, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6328), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3213), 4, + STATE(3373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, + ACTIONS(2997), 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(2526), 17, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -368938,7 +380124,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -368946,9 +380131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3131] = 22, - ACTIONS(3), 1, - sym_line_comment, + [14956] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368961,51 +380144,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5731), 1, - anon_sym_y, - ACTIONS(5733), 1, - anon_sym_uy, - ACTIONS(5735), 1, - anon_sym_s, - ACTIONS(5737), 1, - anon_sym_us, - ACTIONS(5739), 1, - anon_sym_l, - ACTIONS(5741), 1, - aux_sym_uint32_token1, - ACTIONS(5743), 1, - anon_sym_n, - ACTIONS(5745), 1, - anon_sym_un, - ACTIONS(5747), 1, - anon_sym_L, - ACTIONS(5749), 1, - aux_sym_uint64_token1, - ACTIONS(5851), 1, - anon_sym_lf, - ACTIONS(5853), 1, - anon_sym_LF, - STATE(3214), 4, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6330), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2997), 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(2526), 19, - sym__newline, - sym__dedent, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369013,7 +380180,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, @@ -369023,9 +380189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3230] = 22, - ACTIONS(3), 1, - sym_line_comment, + [15027] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369038,49 +380202,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5787), 1, - anon_sym_y, - ACTIONS(5789), 1, - anon_sym_uy, - ACTIONS(5791), 1, - anon_sym_s, - ACTIONS(5793), 1, - anon_sym_us, - ACTIONS(5795), 1, - anon_sym_l, - ACTIONS(5797), 1, - aux_sym_uint32_token1, - ACTIONS(5799), 1, - anon_sym_n, - ACTIONS(5801), 1, - anon_sym_un, - ACTIONS(5803), 1, - anon_sym_L, - ACTIONS(5805), 1, - aux_sym_uint64_token1, - ACTIONS(5855), 1, - anon_sym_lf, - ACTIONS(5857), 1, - anon_sym_LF, - STATE(3215), 4, + ACTIONS(6174), 1, + anon_sym_DOT, + ACTIONS(6332), 1, + anon_sym_EQ, + STATE(3444), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3375), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2997), 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(2526), 18, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369088,10 +380238,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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369099,7 +380247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3328] = 22, + [15098] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369112,39 +380260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5815), 1, - anon_sym_y, - ACTIONS(5817), 1, - anon_sym_uy, - ACTIONS(5819), 1, - anon_sym_s, - ACTIONS(5821), 1, - anon_sym_us, - ACTIONS(5823), 1, - anon_sym_l, - ACTIONS(5825), 1, - aux_sym_uint32_token1, - ACTIONS(5827), 1, - anon_sym_n, - ACTIONS(5829), 1, - anon_sym_un, - ACTIONS(5831), 1, - anon_sym_L, - ACTIONS(5833), 1, - aux_sym_uint64_token1, - ACTIONS(5859), 1, - anon_sym_lf, - ACTIONS(5861), 1, - anon_sym_LF, + ACTIONS(6334), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3216), 4, + STATE(3376), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, + ACTIONS(3132), 15, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369157,8 +380283,10 @@ 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(2526), 16, + ACTIONS(3134), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369175,7 +380303,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3426] = 20, + [15165] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369188,35 +380318,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5863), 1, + ACTIONS(6336), 1, + aux_sym_float_token1, + STATE(3377), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3132), 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(5869), 1, - anon_sym_DASH_GT, - ACTIONS(5871), 1, - anon_sym_when, - ACTIONS(5873), 1, - anon_sym_STAR, - ACTIONS(5875), 1, - anon_sym_LT2, - ACTIONS(5877), 1, - anon_sym_LBRACK_RBRACK, - STATE(3262), 1, - aux_sym_compound_type_repeat1, - STATE(3267), 1, - sym_type_arguments, - STATE(3275), 1, + ACTIONS(3134), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [15232] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6302), 1, + sym_identifier, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + STATE(3441), 1, + aux_sym_curried_spec_repeat1, + STATE(3684), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3728), 1, + sym_attributes, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, sym_long_identifier, - STATE(3564), 1, - sym_type_argument_constraints, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4390), 1, + sym_curried_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3217), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3378), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [15335] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5867), 11, + ACTIONS(3615), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369228,9 +380466,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5865), 17, + sym_identifier, + ACTIONS(3613), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369239,6 +380479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369246,7 +380487,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3517] = 18, + [15399] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369259,45 +380502,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(5869), 1, - anon_sym_DASH_GT, - ACTIONS(5873), 1, - anon_sym_STAR, - ACTIONS(5875), 1, - anon_sym_LT2, - ACTIONS(5877), 1, - anon_sym_LBRACK_RBRACK, - STATE(3262), 1, - aux_sym_compound_type_repeat1, - STATE(3267), 1, - sym_type_arguments, - STATE(3275), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3218), 4, + STATE(3380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 12, + ACTIONS(2964), 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(2884), 17, - anon_sym_EQ, + sym_identifier, + ACTIONS(2966), 20, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369305,8 +380530,10 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369314,9 +380541,86 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3603] = 17, - ACTIONS(5), 1, + [15463] = 35, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7697), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3381), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [15577] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -369327,44 +380631,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6196), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2315), 1, + sym__type, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, sym_long_identifier, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3219), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3382), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [15677] = 28, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6245), 1, + sym_identifier, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4286), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3383), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [15777] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3384), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5879), 13, + ACTIONS(2964), 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(5881), 17, - anon_sym_EQ, + ACTIONS(2966), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369374,6 +380809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -369381,7 +380818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3687] = 17, + [15841] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369394,31 +380831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3220), 4, + STATE(3385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5891), 13, + ACTIONS(3052), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369430,9 +380852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5893), 17, + ACTIONS(3050), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369441,6 +380864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369448,9 +380872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3771] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [15905] = 27, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -369461,45 +380883,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5863), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6338), 1, sym_identifier, - ACTIONS(5869), 1, - anon_sym_DASH_GT, - ACTIONS(5873), 1, - anon_sym_STAR, - ACTIONS(5875), 1, - anon_sym_LT2, - ACTIONS(5877), 1, - anon_sym_LBRACK_RBRACK, - STATE(3262), 1, - aux_sym_compound_type_repeat1, - STATE(3267), 1, - sym_type_arguments, - STATE(3275), 1, + ACTIONS(6341), 1, + anon_sym_LBRACK_LT, + ACTIONS(6344), 1, + anon_sym_LPAREN, + ACTIONS(6347), 1, + anon_sym__, + ACTIONS(6350), 1, + anon_sym_QMARK, + ACTIONS(6353), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6356), 1, + anon_sym_POUND, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, + STATE(5618), 1, + sym__attribute_set, + STATE(5750), 1, + sym__type, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3221), 4, + ACTIONS(6359), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3386), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_curried_spec_repeat1, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [16003] = 35, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7896), 1, + sym_access_modifier, + STATE(8159), 1, + sym__class_type_body, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3387), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [16117] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6362), 1, + anon_sym_DOT, + STATE(3453), 1, + aux_sym_long_identifier_repeat1, + STATE(3388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 12, + ACTIONS(2997), 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(2914), 17, - anon_sym_EQ, + sym_identifier, + ACTIONS(3000), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369507,8 +381067,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369516,7 +381078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3857] = 18, + [16185] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369529,44 +381091,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(5869), 1, - anon_sym_DASH_GT, - ACTIONS(5873), 1, - anon_sym_STAR, - ACTIONS(5875), 1, - anon_sym_LT2, - ACTIONS(5877), 1, - anon_sym_LBRACK_RBRACK, - STATE(3262), 1, - aux_sym_compound_type_repeat1, - STATE(3267), 1, - sym_type_arguments, - STATE(3275), 1, - sym_long_identifier, + ACTIONS(6364), 1, + anon_sym_or, + STATE(3393), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3222), 4, + STATE(3389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 12, + ACTIONS(2962), 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(2910), 17, + sym_identifier, + ACTIONS(2960), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -369584,7 +381134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3943] = 12, + [16253] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369597,35 +381147,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5895), 1, - anon_sym_or, - STATE(3224), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3223), 4, + STATE(3390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 13, + ACTIONS(3545), 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(3543), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369634,11 +381180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -369646,7 +381188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4017] = 11, + [16317] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369659,18 +381201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5897), 1, - anon_sym_or, + ACTIONS(6366), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3224), 5, + STATE(3391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2977), 13, + ACTIONS(6228), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369684,8 +381225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2975), 22, - anon_sym_EQ, + ACTIONS(6230), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369695,11 +381235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -369707,9 +381243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4089] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [16383] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -369720,56 +381254,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5895), 1, - anon_sym_or, - STATE(3223), 1, - aux_sym_type_argument_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(3879), 1, + sym__static_type_identifier, + STATE(4221), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3225), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 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(3028), 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_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, - [4163] = 11, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [16483] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369782,20 +381328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5900), 1, + ACTIONS(6368), 1, anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3226), 5, + STATE(3393), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, aux_sym_type_argument_repeat1, - ACTIONS(2977), 13, + ACTIONS(2990), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369807,7 +381352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2975), 22, + ACTIONS(2992), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -369818,11 +381363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -369830,7 +381370,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4235] = 18, + [16549] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369843,33 +381385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5903), 1, - sym_identifier, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3227), 4, + ACTIONS(5817), 1, + aux_sym_decimal_token1, + ACTIONS(5863), 1, + anon_sym_f, + STATE(3394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 12, + ACTIONS(2528), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369880,8 +381406,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2926), 17, - anon_sym_EQ, + sym_identifier, + ACTIONS(2526), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369889,8 +381415,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369898,7 +381426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4321] = 18, + [16617] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369911,33 +381439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5903), 1, - sym_identifier, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3228), 4, + STATE(3395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 12, + ACTIONS(6228), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369948,9 +381459,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2914), 17, + sym_identifier, + ACTIONS(6230), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369959,6 +381472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369966,7 +381480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4407] = 18, + [16681] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369979,45 +381495,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(5869), 1, - anon_sym_DASH_GT, - ACTIONS(5873), 1, - anon_sym_STAR, - ACTIONS(5875), 1, - anon_sym_LT2, - ACTIONS(5877), 1, - anon_sym_LBRACK_RBRACK, - STATE(3262), 1, - aux_sym_compound_type_repeat1, - STATE(3267), 1, - sym_type_arguments, - STATE(3275), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3229), 4, + ACTIONS(6371), 1, + sym_int, + STATE(3396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 12, + ACTIONS(3151), 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(2926), 17, - anon_sym_EQ, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3153), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370025,8 +381524,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370034,7 +381535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4493] = 12, + [16747] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370047,21 +381548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5905), 1, - anon_sym_or, - STATE(3233), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3230), 4, + STATE(3397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 13, + ACTIONS(3457), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370073,9 +381569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3028), 22, + ACTIONS(3455), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370084,11 +381581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370096,7 +381589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4567] = 18, + [16811] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370109,33 +381602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5903), 1, - sym_identifier, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3231), 4, + STATE(3398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 12, + ACTIONS(2528), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370146,9 +381622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2884), 17, + sym_identifier, + ACTIONS(2526), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370157,6 +381635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370164,7 +381643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4653] = 18, + [16875] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370177,33 +381656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5903), 1, - sym_identifier, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3232), 4, + STATE(3399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 12, + ACTIONS(3702), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370214,9 +381676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2910), 17, + sym_identifier, + ACTIONS(3700), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370225,6 +381689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370232,7 +381697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4739] = 12, + [16939] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370245,34 +381710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5905), 1, - anon_sym_or, - STATE(3226), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6366), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3233), 4, + STATE(3400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 13, + ACTIONS(3052), 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(3050), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370282,11 +381744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370294,7 +381752,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4813] = 10, + [17005] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370307,31 +381767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3234), 4, + STATE(3401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 14, + ACTIONS(3132), 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, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2975), 22, - anon_sym_EQ, + ACTIONS(3134), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370339,13 +381795,10 @@ 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, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370353,7 +381806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4882] = 10, + [17069] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370369,29 +381822,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3235), 4, + STATE(3402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 14, + ACTIONS(3725), 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(2975), 22, + ACTIONS(3723), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370400,11 +381852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370412,9 +381860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4951] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [17133] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -370425,53 +381871,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6216), 1, + sym_identifier, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4233), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3236), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 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(3068), 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_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, - [5020] = 12, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [17233] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370484,35 +381945,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5907), 1, - anon_sym_DOT, - STATE(3244), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3237), 4, + STATE(3404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 13, + ACTIONS(3717), 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(2971), 21, + ACTIONS(3715), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370521,10 +381978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370532,7 +381986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5093] = 12, + [17297] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370545,21 +381999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5909), 1, - anon_sym_DOT, - STATE(3239), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3238), 4, + STATE(3405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 13, + ACTIONS(3682), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370571,9 +382020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2971), 21, + ACTIONS(3680), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370582,10 +382032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370593,7 +382040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5166] = 11, + [17361] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370606,20 +382053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5911), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3239), 5, + STATE(3406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 13, + ACTIONS(3675), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370631,9 +382074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 21, + ACTIONS(3673), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370642,10 +382086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370653,7 +382094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5237] = 10, + [17425] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370669,29 +382110,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3240), 4, + STATE(3407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 14, + ACTIONS(3667), 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(3068), 22, + ACTIONS(3665), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370700,11 +382140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370712,7 +382148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5306] = 12, + [17489] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370725,35 +382161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5907), 1, - anon_sym_DOT, - STATE(3237), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3241), 4, + STATE(3408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 13, + ACTIONS(3659), 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(2957), 21, + ACTIONS(3657), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370762,10 +382194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370773,7 +382202,86 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5379] = 12, + [17553] = 35, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7797), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3409), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [17667] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370786,21 +382294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5909), 1, - anon_sym_DOT, - STATE(3238), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3242), 4, + STATE(3410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 13, + ACTIONS(3655), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370812,9 +382315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2957), 21, + ACTIONS(3653), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370823,10 +382327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370834,7 +382335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5452] = 18, + [17731] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370847,31 +382348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5883), 1, - anon_sym_DASH_GT, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_LT2, - ACTIONS(5889), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5903), 1, - sym_identifier, - STATE(3253), 1, - aux_sym_compound_type_repeat1, - STATE(3269), 1, - sym_type_arguments, - STATE(3272), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3243), 4, + STATE(3411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5916), 11, + ACTIONS(3651), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -370883,9 +382368,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5914), 17, + sym_identifier, + ACTIONS(3649), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370894,6 +382381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370901,7 +382389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5537] = 11, + [17795] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370914,32 +382402,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5918), 1, - anon_sym_DOT, + ACTIONS(6377), 1, + anon_sym_and, + STATE(3417), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3244), 5, + STATE(3412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 13, + ACTIONS(6373), 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(2990), 21, + ACTIONS(6375), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -370950,10 +382438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -370961,79 +382445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5608] = 23, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5449), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5451), 1, - anon_sym_DQUOTE, - ACTIONS(5453), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5455), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5457), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5463), 1, - sym_int, - ACTIONS(5465), 1, - sym_xint, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5921), 1, - aux_sym_char_token1, - STATE(496), 1, - sym_const, - STATE(3096), 1, - sym_float, - STATE(3161), 1, - sym_format_triple_quoted_string, - STATE(6677), 1, - sym_static_parameter_value, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5461), 2, - sym_bool, - sym_unit, - STATE(3163), 2, - sym_format_string, - sym__string_literal, - STATE(3245), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3162), 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, - [5703] = 10, + [17863] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371049,14 +382461,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3246), 4, + STATE(3413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 13, + ACTIONS(3419), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371068,9 +382479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3028), 22, + ACTIONS(3421), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -371079,11 +382491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371091,181 +382499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5771] = 39, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5947), 1, - anon_sym_POUNDendif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(7193), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3247), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [5897] = 39, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - ACTIONS(5953), 1, - anon_sym_POUNDendif, - STATE(3247), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(7249), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3248), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [6023] = 10, + [17927] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371281,28 +382515,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3249), 4, + STATE(3414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 13, + ACTIONS(3647), 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(3028), 22, + ACTIONS(3645), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -371311,11 +382545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371323,7 +382553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6091] = 39, + [17991] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -371334,83 +382564,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - ACTIONS(5955), 1, - anon_sym_POUNDendif, - STATE(3252), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6274), 1, + sym_identifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3728), 1, + sym_attributes, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(4186), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5221), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5618), 1, sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(7916), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3250), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [6217] = 11, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [18091] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371423,33 +382638,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5957), 1, - anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3251), 4, + STATE(3416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 13, + ACTIONS(3635), 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(3062), 21, + ACTIONS(3633), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -371458,10 +382671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371469,94 +382679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6287] = 39, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - ACTIONS(5959), 1, - anon_sym_POUNDendif, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(7928), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3252), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [6413] = 12, + [18155] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371569,21 +382692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5885), 1, - anon_sym_STAR, - STATE(3259), 1, - aux_sym_compound_type_repeat1, + ACTIONS(6377), 1, + anon_sym_and, + STATE(3443), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3253), 4, + STATE(3417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(6379), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371595,7 +382717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2984), 20, + ACTIONS(6381), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -371606,9 +382728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371616,164 +382735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6485] = 22, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5961), 1, - aux_sym_char_token1, - ACTIONS(5963), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5965), 1, - anon_sym_DQUOTE, - ACTIONS(5967), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5969), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5971), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5975), 1, - sym_int, - ACTIONS(5977), 1, - sym_xint, - STATE(6114), 1, - sym_float, - STATE(6400), 1, - sym_format_triple_quoted_string, - STATE(6763), 1, - sym_const, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5973), 2, - sym_bool, - sym_unit, - STATE(6405), 2, - sym_format_string, - sym__string_literal, - STATE(3254), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6406), 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, - [6577] = 39, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - ACTIONS(5979), 1, - anon_sym_POUNDendif, - STATE(3258), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(6984), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3255), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [6703] = 11, + [18223] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371786,19 +382748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5981), 1, - anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3256), 4, + STATE(3418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 13, + ACTIONS(3631), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371810,9 +382769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3062), 21, + ACTIONS(3629), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -371821,10 +382781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371832,7 +382789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6773] = 10, + [18287] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371848,28 +382805,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3257), 4, + STATE(3419), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 13, + ACTIONS(3499), 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(2990), 22, + ACTIONS(3501), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -371878,11 +382835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -371890,94 +382843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6841] = 39, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - ACTIONS(5949), 1, - anon_sym_POUNDelse, - ACTIONS(5951), 1, - sym__newline, - ACTIONS(5983), 1, - anon_sym_POUNDendif, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(7005), 1, - sym_preproc_else_in_class_definition, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3258), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [6967] = 11, + [18351] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371990,20 +382856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5985), 1, - anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3259), 5, + STATE(3420), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2916), 13, + ACTIONS(3627), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372015,9 +382877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2914), 20, + ACTIONS(3625), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372026,9 +382889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372036,7 +382897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7037] = 11, + [18415] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372049,34 +382910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5988), 1, - anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3260), 5, + STATE(3421), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2916), 13, + ACTIONS(3619), 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(2914), 20, + ACTIONS(3617), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372085,9 +382943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372095,7 +382951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7107] = 10, + [18479] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372111,14 +382967,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3261), 4, + STATE(3422), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 13, + ACTIONS(3696), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372130,9 +382985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 22, + ACTIONS(3694), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372141,11 +382997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372153,7 +383005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7175] = 12, + [18543] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372166,35 +383018,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5873), 1, - anon_sym_STAR, - STATE(3260), 1, - aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3262), 4, + STATE(3423), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3603), 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(2984), 20, + ACTIONS(3601), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372203,9 +383051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372213,7 +383059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7247] = 10, + [18607] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372229,28 +383075,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3263), 4, + STATE(3424), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3048), 13, + ACTIONS(3399), 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(3050), 21, + ACTIONS(3397), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372259,10 +383105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372270,7 +383113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7314] = 10, + [18671] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372286,14 +383129,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3264), 4, + STATE(3425), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 13, + ACTIONS(3572), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372305,9 +383147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3103), 21, + ACTIONS(3570), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372316,10 +383159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372327,9 +383167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7381] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [18735] = 35, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -372340,108 +383178,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3265), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3054), 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(3052), 21, - anon_sym_EQ, + ACTIONS(27), 1, 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, - 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, - [7448] = 10, - ACTIONS(5), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6257), 1, + sym__class_type_body_inner, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(7042), 1, + sym__class_type_body, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3266), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3426), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3054), 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(3052), 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_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, - [7515] = 10, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [18849] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372457,28 +383262,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3267), 4, + STATE(3427), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3082), 13, + ACTIONS(3549), 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(3084), 21, + ACTIONS(3547), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372487,10 +383292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372498,7 +383300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7582] = 11, + [18913] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372511,33 +383313,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5991), 1, - anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3268), 4, + STATE(3428), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3058), 13, + ACTIONS(3592), 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(3056), 20, + ACTIONS(3590), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372546,9 +383346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372556,7 +383354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7651] = 10, + [18977] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372572,14 +383370,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3269), 4, + STATE(3429), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3082), 13, + ACTIONS(3743), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372591,9 +383388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3084), 21, + ACTIONS(3745), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372602,10 +383400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372613,7 +383408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7718] = 10, + [19041] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372629,28 +383424,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3270), 4, + STATE(3430), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3093), 13, + ACTIONS(3734), 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(3095), 21, + ACTIONS(3732), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372659,10 +383454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372670,7 +383462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7785] = 10, + [19105] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372686,14 +383478,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3271), 4, + STATE(3431), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3093), 13, + ACTIONS(3568), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372705,9 +383496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3095), 21, + ACTIONS(3566), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372716,10 +383508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372727,7 +383516,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7852] = 10, + [19169] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372740,17 +383531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3272), 4, + STATE(3432), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3072), 13, + ACTIONS(3174), 14, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372761,9 +383548,10 @@ 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(3076), 21, - anon_sym_EQ, + ACTIONS(3176), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372771,12 +383559,10 @@ 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, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372784,7 +383570,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7919] = 10, + [19233] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372797,30 +383585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3273), 4, + ACTIONS(6383), 1, + anon_sym_DOT, + STATE(3433), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3044), 13, + ACTIONS(6228), 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(3046), 21, - anon_sym_EQ, + ACTIONS(6230), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372828,12 +383615,9 @@ 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, @@ -372841,7 +383625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7986] = 10, + [19299] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372857,28 +383641,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3274), 4, + STATE(3434), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 13, + ACTIONS(3661), 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(3103), 21, + ACTIONS(3663), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372887,10 +383671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372898,7 +383679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8053] = 10, + [19363] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372914,28 +383695,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3275), 4, + STATE(3435), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3072), 13, + ACTIONS(3611), 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(3076), 21, + ACTIONS(3609), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372944,10 +383725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -372955,7 +383733,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8120] = 10, + [19427] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372968,30 +383748,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3276), 4, + ACTIONS(6383), 1, + anon_sym_DOT, + STATE(3436), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3099), 13, + ACTIONS(3052), 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(3097), 21, - anon_sym_EQ, + ACTIONS(3050), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372999,12 +383778,9 @@ 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, @@ -373012,7 +383788,79 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8187] = 10, + [19493] = 28, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6290), 1, + sym_identifier, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3665), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3728), 1, + sym_attributes, + STATE(3742), 1, + sym_long_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(5221), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3437), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [19593] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373028,28 +383876,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3277), 4, + STATE(3438), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3042), 13, + ACTIONS(3621), 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(3040), 21, + ACTIONS(3623), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -373058,10 +383906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373069,7 +383914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8254] = 11, + [19657] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373082,32 +383927,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5993), 1, - anon_sym_LT2, + ACTIONS(5845), 1, + aux_sym_decimal_token1, + ACTIONS(5867), 1, + anon_sym_f, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3278), 4, + STATE(3439), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3058), 13, + ACTIONS(2528), 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(3056), 20, - anon_sym_EQ, + ACTIONS(2526), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373117,9 +383963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373127,7 +383970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8323] = 11, + [19725] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373140,17 +383983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5995), 1, - aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3279), 4, + STATE(3440), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(3686), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -373162,10 +384003,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(3132), 19, + ACTIONS(3684), 19, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_RPAREN, @@ -373185,7 +384024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8392] = 36, + [19789] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -373196,79 +384035,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5997), 1, + ACTIONS(6198), 1, anon_sym_LBRACK_LT, - ACTIONS(6000), 1, - anon_sym_do, - ACTIONS(6003), 1, - anon_sym_let, - ACTIONS(6006), 1, - anon_sym_let_BANG, - ACTIONS(6009), 1, - aux_sym_access_modifier_token1, - ACTIONS(6012), 1, - anon_sym_new, - ACTIONS(6018), 1, - anon_sym_static, - ACTIONS(6021), 1, - anon_sym_member, - ACTIONS(6024), 1, - anon_sym_interface, - ACTIONS(6027), 1, - anon_sym_abstract, - ACTIONS(6030), 1, - anon_sym_val, - ACTIONS(6033), 1, - anon_sym_inherit, - ACTIONS(6036), 1, - anon_sym_POUNDif, - ACTIONS(6041), 1, - sym__newline, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6302), 1, + sym_identifier, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + STATE(3386), 1, + aux_sym_curried_spec_repeat1, + STATE(3669), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3728), 1, + sym_attributes, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, + sym_long_identifier, + STATE(3868), 1, + sym_argument_name_spec, + STATE(5221), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5618), 1, sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4405), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(8121), 1, - sym_access_modifier, + STATE(6206), 1, + sym_argument_spec, + STATE(7714), 1, + sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6015), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(6039), 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), 5, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3441), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_preproc_if_in_class_definition_repeat1, - [8511] = 10, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [19889] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373281,17 +384109,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6385), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3281), 4, + STATE(3442), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3044), 13, + ACTIONS(3151), 14, 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_identifier, + ACTIONS(3153), 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, + [19955] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(6391), 1, anon_sym_and, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3443), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6387), 12, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -373303,7 +384188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3046), 21, + ACTIONS(6389), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -373314,10 +384199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373325,7 +384206,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8578] = 24, + [20021] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -373336,67 +384219,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6044), 1, - anon_sym_y, - ACTIONS(6046), 1, - anon_sym_uy, - ACTIONS(6048), 1, - anon_sym_s, - ACTIONS(6050), 1, - anon_sym_us, - ACTIONS(6052), 1, - anon_sym_l, - ACTIONS(6054), 1, - aux_sym_uint32_token1, - ACTIONS(6056), 1, - anon_sym_n, - ACTIONS(6058), 1, - anon_sym_un, - ACTIONS(6060), 1, - anon_sym_L, - ACTIONS(6062), 1, - aux_sym_uint64_token1, - ACTIONS(6064), 1, - aux_sym_bignum_token1, - ACTIONS(6066), 1, - aux_sym_decimal_token1, - ACTIONS(6068), 1, - anon_sym_DOT2, - ACTIONS(6070), 1, - aux_sym_float_token1, + ACTIONS(6174), 1, + anon_sym_DOT, + STATE(3448), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3282), 4, + STATE(3444), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 9, + ACTIONS(2956), 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(2526), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2954), 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, - 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, - [8673] = 10, + [20089] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373409,17 +384275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6364), 1, + anon_sym_or, + STATE(3389), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3283), 4, + STATE(3445), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3099), 13, + ACTIONS(2979), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -373431,7 +384300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3097), 21, + ACTIONS(2981), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -373442,10 +384311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373453,7 +384318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8740] = 10, + [20157] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373469,28 +384334,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3284), 4, + STATE(3446), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 13, + ACTIONS(3741), 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(3062), 21, + ACTIONS(3739), 19, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -373499,10 +384364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373510,7 +384372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8807] = 10, + [20221] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373526,27 +384388,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3285), 4, + STATE(3447), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3042), 13, + ACTIONS(3132), 15, 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(3040), 21, - anon_sym_EQ, + ACTIONS(3134), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373556,10 +384419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373567,7 +384426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8874] = 10, + [20285] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373580,30 +384439,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6394), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3286), 4, + STATE(3448), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3048), 13, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 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(3050), 21, - anon_sym_EQ, + ACTIONS(2966), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373613,10 +384474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373624,7 +384481,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8941] = 10, + [20351] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373637,17 +384496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3287), 4, + ACTIONS(6397), 1, + anon_sym_DOT, + STATE(3449), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 13, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -373659,8 +384517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3062), 21, - anon_sym_EQ, + ACTIONS(2966), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373668,12 +384525,10 @@ 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, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373681,7 +384536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9008] = 10, + [20417] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373697,18 +384552,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3288), 4, + STATE(3450), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(3174), 15, 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, @@ -373717,10 +384573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f, aux_sym_decimal_token1, sym_identifier, - ACTIONS(3132), 19, - anon_sym_EQ, + ACTIONS(3176), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -373729,7 +384583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373737,7 +384590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9074] = 12, + [20481] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373750,35 +384603,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6072), 1, + ACTIONS(6174), 1, anon_sym_DOT, - STATE(3298), 1, + STATE(3444), 1, aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3289), 4, + STATE(3451), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 12, + ACTIONS(2997), 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(3001), 19, - anon_sym_EQ, + ACTIONS(3000), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -373787,7 +384639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373795,7 +384646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9144] = 11, + [20549] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373808,18 +384659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6074), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3290), 5, + STATE(3452), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 12, + ACTIONS(3475), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -373832,7 +384680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 19, + ACTIONS(3477), 19, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_RPAREN, @@ -373852,7 +384700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9212] = 12, + [20613] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373865,19 +384715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5725), 1, - aux_sym_decimal_token1, - ACTIONS(5843), 1, - anon_sym_f, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3291), 4, + ACTIONS(6362), 1, + anon_sym_DOT, + STATE(3449), 1, + aux_sym_long_identifier_repeat1, + STATE(3453), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(2956), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -373890,19 +384737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2526), 19, - anon_sym_EQ, + ACTIONS(2954), 18, 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_LT2, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373910,7 +384756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9282] = 11, + [20681] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373923,34 +384769,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6077), 1, - aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3292), 4, + STATE(3454), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 15, + ACTIONS(3594), 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, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3132), 17, + ACTIONS(3596), 19, + anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -373959,7 +384802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -373967,7 +384810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9350] = 11, + [20745] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -373982,14 +384825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6079), 1, - aux_sym_float_token1, - STATE(3293), 4, + ACTIONS(6400), 1, + anon_sym_DOT, + STATE(3455), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(3052), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -374001,12 +384844,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(3132), 19, - sym__newline, - sym__dedent, + ACTIONS(3050), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374017,6 +384856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374024,90 +384864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9418] = 37, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6081), 1, - anon_sym_do, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(6087), 1, - anon_sym_new, - ACTIONS(6091), 1, - anon_sym_static, - ACTIONS(6093), 1, - anon_sym_member, - ACTIONS(6095), 1, - anon_sym_interface, - ACTIONS(6097), 1, - anon_sym_abstract, - ACTIONS(6099), 1, - anon_sym_val, - ACTIONS(6101), 1, - anon_sym_inherit, - ACTIONS(6103), 1, - anon_sym_POUNDif, - ACTIONS(6105), 1, - anon_sym_POUNDendif, - ACTIONS(6107), 1, - sym__newline, - STATE(3296), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3715), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4363), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4482), 1, - sym__member_defns, - STATE(4484), 1, - sym_interface_implementation, - STATE(4524), 1, - sym__class_type_body_inner, - STATE(4531), 1, - sym_function_or_value_defn, - STATE(4738), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6089), 2, - anon_sym_default, - anon_sym_override, - STATE(3294), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4538), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [9538] = 10, + [20810] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374123,30 +384880,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3295), 4, + STATE(3456), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 14, + ACTIONS(3631), 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(3190), 19, - anon_sym_EQ, + ACTIONS(3629), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374155,7 +384909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -374163,89 +384917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9604] = 36, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5997), 1, - anon_sym_LBRACK_LT, - ACTIONS(6009), 1, - aux_sym_access_modifier_token1, - ACTIONS(6039), 1, - anon_sym_POUNDendif, - ACTIONS(6109), 1, - anon_sym_do, - ACTIONS(6112), 1, - anon_sym_let, - ACTIONS(6115), 1, - anon_sym_let_BANG, - ACTIONS(6118), 1, - anon_sym_new, - ACTIONS(6124), 1, - anon_sym_static, - ACTIONS(6127), 1, - anon_sym_member, - ACTIONS(6130), 1, - anon_sym_interface, - ACTIONS(6133), 1, - anon_sym_abstract, - ACTIONS(6136), 1, - anon_sym_val, - ACTIONS(6139), 1, - anon_sym_inherit, - ACTIONS(6142), 1, - anon_sym_POUNDif, - ACTIONS(6145), 1, - sym__newline, - STATE(3715), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4363), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4482), 1, - sym__member_defns, - STATE(4484), 1, - sym_interface_implementation, - STATE(4524), 1, - sym__class_type_body_inner, - STATE(4531), 1, - sym_function_or_value_defn, - STATE(4738), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6121), 2, - anon_sym_default, - anon_sym_override, - STATE(4538), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3296), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_preproc_if_in_class_definition_repeat1, - [9722] = 11, + [20873] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374258,34 +384930,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6148), 1, - sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3297), 4, + STATE(3457), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3146), 13, + ACTIONS(3627), 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, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3148), 19, - anon_sym_EQ, + ACTIONS(3625), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374294,7 +384962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -374302,7 +384970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9790] = 12, + [20936] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374315,35 +384983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6072), 1, - anon_sym_DOT, - STATE(3290), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3298), 4, + STATE(3458), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 12, + ACTIONS(3619), 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(2971), 19, - anon_sym_EQ, + ACTIONS(3617), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374352,98 +385015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, - [9860] = 37, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6081), 1, - anon_sym_do, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(6087), 1, - anon_sym_new, - ACTIONS(6091), 1, - anon_sym_static, - ACTIONS(6093), 1, - anon_sym_member, - ACTIONS(6095), 1, - anon_sym_interface, - ACTIONS(6097), 1, - anon_sym_abstract, - ACTIONS(6099), 1, - anon_sym_val, - ACTIONS(6101), 1, - anon_sym_inherit, - ACTIONS(6103), 1, - anon_sym_POUNDif, - ACTIONS(6107), 1, - sym__newline, - ACTIONS(6150), 1, - anon_sym_POUNDendif, - STATE(3294), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3715), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4363), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4482), 1, - sym__member_defns, - STATE(4484), 1, - sym_interface_implementation, - STATE(4524), 1, - sym__class_type_body_inner, - STATE(4531), 1, - sym_function_or_value_defn, - STATE(4738), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6089), 2, - anon_sym_default, - anon_sym_override, - STATE(3299), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4538), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [9980] = 11, + 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, + [20999] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374456,17 +385036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6152), 1, - sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3300), 4, + STATE(3459), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3146), 14, + ACTIONS(3615), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -374478,10 +385056,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(3148), 17, + ACTIONS(3613), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374499,7 +385076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10047] = 13, + [21062] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374512,35 +385089,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6154), 1, - anon_sym_EQ, - ACTIONS(6156), 1, - anon_sym_DOT, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3301), 4, + STATE(3460), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3611), 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(3001), 16, + ACTIONS(3609), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374550,6 +385121,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -374557,7 +385129,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10118] = 13, + [21125] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374570,35 +385144,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6158), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3302), 4, + STATE(3461), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3675), 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(3001), 16, + ACTIONS(3673), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374606,6 +385172,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, @@ -374615,7 +385182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10189] = 11, + [21188] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374628,18 +385195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6160), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3303), 5, + STATE(3462), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 13, + ACTIONS(3603), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -374653,7 +385217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 17, + ACTIONS(3601), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374671,7 +385235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10256] = 11, + [21251] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374684,33 +385248,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6167), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3304), 4, + STATE(3463), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 12, + ACTIONS(3572), 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(6165), 19, - anon_sym_EQ, + ACTIONS(3570), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374719,7 +385280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -374727,88 +385288,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10323] = 36, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6187), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7306), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, + [21314] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3305), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [10440] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374821,35 +385303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6189), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3306), 4, + STATE(3464), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3682), 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(3001), 16, + ACTIONS(3680), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374857,6 +385331,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, @@ -374866,7 +385341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10511] = 11, + [21377] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374879,33 +385354,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6167), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3307), 4, + STATE(3465), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 12, + ACTIONS(3647), 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(3070), 19, - anon_sym_EQ, + ACTIONS(3645), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374914,7 +385386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -374922,7 +385394,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10578] = 10, + [21440] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374935,31 +385409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3308), 4, + STATE(3466), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 15, + ACTIONS(3651), 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, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3190), 17, + ACTIONS(3649), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374967,9 +385437,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374977,7 +385447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10643] = 11, + [21503] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -374992,14 +385462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6191), 1, - aux_sym_float_token1, - STATE(3309), 4, + STATE(3467), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(3717), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375011,10 +385479,10 @@ 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(3132), 18, + ACTIONS(3715), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375025,7 +385493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375033,7 +385500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10710] = 12, + [21566] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375046,33 +385515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5781), 1, - aux_sym_decimal_token1, - ACTIONS(5847), 1, - anon_sym_f, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3310), 4, + STATE(3468), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, + ACTIONS(3655), 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(2526), 17, + ACTIONS(3653), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375080,9 +385543,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375090,88 +385553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10779] = 36, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6193), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7186), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3311), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [10896] = 10, + [21629] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -375186,12 +385568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3312), 4, + STATE(3469), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 14, + ACTIONS(3725), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375203,10 +385585,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(3190), 19, + ACTIONS(3723), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -375226,88 +385606,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10961] = 36, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6195), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7096), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, + [21692] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3313), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [11078] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375320,35 +385621,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6197), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3314), 4, + STATE(3470), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3659), 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(3001), 16, + ACTIONS(3657), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375356,6 +385649,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, @@ -375365,7 +385659,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11149] = 12, + [21755] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375378,33 +385674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(3303), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3315), 4, + STATE(3471), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 13, + ACTIONS(3647), 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(2971), 17, + ACTIONS(3645), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375412,9 +385702,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375422,7 +385712,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11218] = 13, + [21818] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375435,35 +385727,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6201), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3316), 4, + STATE(3472), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3635), 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(3001), 16, + ACTIONS(3633), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375471,6 +385755,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, @@ -375480,7 +385765,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11289] = 22, + [21881] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -375491,130 +385780,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6340), 1, - sym_attribute, - STATE(6417), 1, - sym__object_construction, - STATE(8207), 1, - sym__attribute_target, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3317), 4, + STATE(3473), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [11378] = 22, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, + ACTIONS(3631), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(6207), 1, + anon_sym_null, anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6275), 1, - sym_attribute, - STATE(6417), 1, - sym__object_construction, - STATE(8207), 1, - sym__attribute_target, - ACTIONS(3), 2, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3629), 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, + [21944] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3318), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [11467] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375627,31 +385833,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3319), 4, + STATE(3474), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 15, + ACTIONS(3627), 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, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3132), 17, + ACTIONS(3625), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375659,9 +385861,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375669,7 +385871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11532] = 12, + [22007] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -375684,16 +385886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5753), 1, - aux_sym_decimal_token1, - ACTIONS(5851), 1, - anon_sym_f, - STATE(3320), 4, + STATE(3475), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(3619), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375706,7 +385904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2526), 19, + ACTIONS(3617), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -375726,7 +385924,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11601] = 36, + [22070] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -375737,144 +385937,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6213), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7171), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3321), 4, + STATE(3476), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [11718] = 22, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, + ACTIONS(3499), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(6207), 1, + anon_sym_null, anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6255), 1, - sym_attribute, - STATE(6417), 1, - sym__object_construction, - STATE(8207), 1, - sym__attribute_target, - ACTIONS(3), 2, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3501), 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_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, + [22133] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3322), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [11807] = 22, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -375885,41 +385992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6044), 1, - anon_sym_y, - ACTIONS(6046), 1, - anon_sym_uy, - ACTIONS(6048), 1, - anon_sym_s, - ACTIONS(6050), 1, - anon_sym_us, - ACTIONS(6052), 1, - anon_sym_l, - ACTIONS(6054), 1, - aux_sym_uint32_token1, - ACTIONS(6056), 1, - anon_sym_n, - ACTIONS(6058), 1, - anon_sym_un, - ACTIONS(6060), 1, - anon_sym_L, - ACTIONS(6062), 1, - aux_sym_uint64_token1, - ACTIONS(6215), 1, - anon_sym_lf, - ACTIONS(6217), 1, - anon_sym_LF, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3323), 4, + STATE(3477), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 9, + ACTIONS(3615), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -375927,21 +386007,32 @@ 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(2526), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3613), 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, - [11896] = 36, + [22196] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -375952,77 +386043,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6219), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7500), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3324), 4, + STATE(3478), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [12013] = 12, + ACTIONS(3651), 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(3649), 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_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, + [22259] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -376037,16 +386098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6221), 1, - anon_sym_DOT, - STATE(3341), 1, - aux_sym_long_identifier_repeat1, - STATE(3325), 4, + STATE(3479), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 12, + ACTIONS(3611), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376059,7 +386116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3001), 19, + ACTIONS(3609), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -376079,7 +386136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12082] = 13, + [22322] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376092,35 +386149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6223), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3326), 4, + STATE(3480), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3655), 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(3001), 16, + ACTIONS(3653), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376130,6 +386181,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376137,9 +386189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12153] = 11, - ACTIONS(3), 1, - sym_line_comment, + [22385] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376152,16 +386202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6225), 1, - anon_sym_DOT, - STATE(3327), 5, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3481), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 12, + ACTIONS(5906), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -376173,9 +386224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 19, - sym__newline, - sym__dedent, + ACTIONS(5908), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376183,7 +386233,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, @@ -376193,7 +386242,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12220] = 36, + [22448] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -376204,77 +386255,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6228), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7081), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3328), 4, + STATE(3482), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [12337] = 10, + ACTIONS(3549), 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(3547), 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_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, + [22511] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376287,17 +386308,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(6408), 1, + anon_sym_as, + ACTIONS(6410), 1, + anon_sym_COMMA, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(6414), 1, + anon_sym_PIPE, + ACTIONS(6416), 1, + anon_sym_AMP, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3329), 4, + STATE(3483), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6402), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -376308,20 +386341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 20, + ACTIONS(6404), 13, 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_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376329,7 +386355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12402] = 13, + [22588] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376342,35 +386368,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6230), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3330), 4, + STATE(3484), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3592), 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(3001), 16, + ACTIONS(3590), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376380,6 +386400,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376387,7 +386408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12473] = 13, + [22651] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376400,35 +386421,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6232), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3331), 4, + STATE(3485), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3659), 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(3001), 16, + ACTIONS(3657), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376438,6 +386453,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376445,7 +386461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12544] = 13, + [22714] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376458,35 +386474,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6234), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3332), 4, + STATE(3486), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3743), 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(3001), 16, + ACTIONS(3745), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376496,6 +386506,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376503,9 +386514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12615] = 11, - ACTIONS(3), 1, - sym_line_comment, + [22777] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376518,30 +386527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6236), 1, - sym_int, - STATE(3333), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3487), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3146), 13, + 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, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3148), 19, - sym__newline, - sym__dedent, + ACTIONS(3732), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376549,9 +386557,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376559,7 +386567,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12682] = 22, + [22840] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -376570,130 +386580,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6417), 1, - sym__object_construction, - STATE(6526), 1, - sym_attribute, - STATE(8207), 1, - sym__attribute_target, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3334), 4, + STATE(3488), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [12771] = 22, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, + ACTIONS(3568), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(6207), 1, + anon_sym_null, anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6169), 1, - sym_attribute, - STATE(6417), 1, - sym__object_construction, - STATE(8207), 1, - sym__attribute_target, - ACTIONS(3), 2, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3566), 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_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, + [22903] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3335), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [12860] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376706,35 +386635,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6238), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3336), 4, + STATE(3489), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3702), 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(3001), 16, + ACTIONS(3700), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376742,6 +386663,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, @@ -376751,7 +386673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12931] = 11, + [22966] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376764,33 +386686,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6240), 1, - aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3337), 4, + STATE(3490), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 15, + ACTIONS(3419), 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, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3132), 16, + ACTIONS(3421), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376800,6 +386718,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376807,7 +386726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12998] = 10, + [23029] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -376822,12 +386741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3338), 4, + STATE(3491), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(2964), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376839,12 +386758,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(3132), 19, - sym__newline, - sym__dedent, + ACTIONS(2966), 19, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376855,6 +386770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376862,7 +386779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13063] = 13, + [23092] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376875,35 +386792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6242), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3339), 4, + STATE(3492), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3667), 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(3001), 16, + ACTIONS(3665), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376913,6 +386824,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376920,7 +386832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13134] = 13, + [23155] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376933,35 +386845,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - ACTIONS(6244), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3340), 4, + STATE(3493), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(3545), 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(3001), 16, + ACTIONS(3543), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376971,6 +386877,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -376978,9 +386885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13205] = 12, - ACTIONS(3), 1, - sym_line_comment, + [23218] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376993,31 +386898,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6221), 1, - anon_sym_DOT, - STATE(3327), 1, - aux_sym_long_identifier_repeat1, - STATE(3341), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3494), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 12, + ACTIONS(3675), 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(2971), 19, - sym__newline, - sym__dedent, + ACTIONS(3673), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377025,9 +386928,9 @@ 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, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377035,88 +386938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13274] = 36, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6246), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(6988), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3342), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [13391] = 12, + [23281] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377129,33 +386951,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(3315), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3343), 4, + STATE(3495), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, + ACTIONS(6418), 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(3001), 17, + ACTIONS(6420), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377165,7 +386984,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -377173,7 +386991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13460] = 12, + [23344] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377186,33 +387004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6072), 1, - anon_sym_DOT, - STATE(3298), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3344), 4, + STATE(3496), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 12, + ACTIONS(3399), 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(2957), 18, - anon_sym_EQ, + ACTIONS(3397), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377222,7 +387036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -377230,74 +387044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13529] = 22, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6347), 1, - sym_attribute, - STATE(6417), 1, - sym__object_construction, - STATE(8207), 1, - sym__attribute_target, - ACTIONS(3), 2, - anon_sym_SEMI, + [23407] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3345), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6203), 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(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [13618] = 36, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -377308,156 +387059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - ACTIONS(6248), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(6994), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3346), 4, + STATE(3497), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [13735] = 35, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(3696), 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(3694), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7793), 1, - sym_access_modifier, - STATE(8069), 1, - sym__class_type_body, - ACTIONS(3), 2, + anon_sym_COMMA, + anon_sym_QMARK, + 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, + [23470] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3347), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [13849] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377470,15 +387112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3348), 4, + STATE(3498), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3726), 12, + ACTIONS(3603), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377491,19 +387130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3728), 19, - anon_sym_EQ, + ACTIONS(3601), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377511,7 +387150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13913] = 10, + [23533] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377524,15 +387165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3349), 4, + STATE(3499), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 12, + ACTIONS(3572), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377545,19 +387183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3702), 19, - anon_sym_EQ, + ACTIONS(3570), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377565,7 +387203,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13977] = 11, + [23596] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377578,32 +387218,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6250), 1, - sym_int, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3350), 4, + STATE(3500), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3146), 14, + ACTIONS(3621), 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, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3148), 16, + ACTIONS(3623), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377611,6 +387246,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, @@ -377620,7 +387256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14043] = 12, + [23659] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377633,33 +387269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - STATE(3377), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3351), 4, + STATE(3501), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 13, + ACTIONS(3682), 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(2971), 16, + ACTIONS(3680), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377669,6 +387301,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -377676,7 +387309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14111] = 10, + [23722] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377692,26 +387325,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3352), 4, + STATE(3502), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 13, + ACTIONS(2964), 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(2990), 18, + ACTIONS(2966), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377722,7 +387355,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -377730,7 +387362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14175] = 12, + [23785] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377743,33 +387375,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5837), 1, - aux_sym_decimal_token1, - ACTIONS(5859), 1, - anon_sym_f, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3353), 4, + STATE(3503), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 13, - anon_sym_COLON, + ACTIONS(6422), 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(2526), 16, + ACTIONS(6424), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377786,9 +387417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14243] = 11, - ACTIONS(3), 1, - sym_line_comment, + [23852] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377801,15 +387430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6252), 1, - anon_sym_DOT, - STATE(3354), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3504), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 12, + ACTIONS(6426), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -377821,9 +387452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3070), 19, - sym__newline, - sym__dedent, + ACTIONS(6428), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377831,7 +387461,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, @@ -377841,7 +387470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14309] = 10, + [23915] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377857,13 +387486,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3355), 4, + STATE(3505), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 12, + ACTIONS(5890), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -377875,10 +387505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3401), 19, + ACTIONS(5892), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377887,7 +387516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377895,7 +387523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14373] = 12, + [23978] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -377910,16 +387538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6254), 1, - anon_sym_DOT, - STATE(3408), 1, - aux_sym_long_identifier_repeat1, - STATE(3356), 4, + STATE(3506), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 12, + ACTIONS(2528), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377932,7 +387556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3001), 18, + ACTIONS(2526), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377943,7 +387569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377951,7 +387576,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14441] = 10, + [24041] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377964,15 +387591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3357), 4, + STATE(3507), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 12, + ACTIONS(3457), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377985,19 +387609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3613), 19, - anon_sym_EQ, + ACTIONS(3455), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378005,7 +387629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14505] = 10, + [24104] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378021,13 +387645,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3358), 4, + STATE(3508), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3626), 12, + ACTIONS(6430), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -378039,10 +387664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3628), 19, + ACTIONS(6432), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378051,7 +387675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378059,7 +387682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14569] = 10, + [24167] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378072,15 +387697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3359), 4, + STATE(3509), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 12, + ACTIONS(3549), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378093,19 +387715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3632), 19, - anon_sym_EQ, + ACTIONS(3547), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378113,7 +387735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14633] = 10, + [24230] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378129,13 +387751,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3360), 4, + STATE(3510), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3642), 12, + ACTIONS(6434), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -378147,10 +387770,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3644), 19, + ACTIONS(6436), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378159,7 +387781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378167,7 +387788,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14697] = 10, + [24293] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378180,15 +387803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3361), 4, + STATE(3511), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 12, + ACTIONS(3592), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378201,19 +387821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3653), 19, - anon_sym_EQ, + ACTIONS(3590), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378221,7 +387841,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14761] = 12, + [24356] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378234,19 +387856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6256), 1, - anon_sym_or, - STATE(3366), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3362), 4, + STATE(3512), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 12, + ACTIONS(3743), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378259,8 +387874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3015), 17, - anon_sym_EQ, + ACTIONS(3745), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378268,6 +387884,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, @@ -378277,7 +387894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14829] = 11, + [24419] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378290,17 +387907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6258), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3363), 4, + STATE(3513), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 13, + ACTIONS(3661), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378314,7 +387929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6165), 17, + ACTIONS(3663), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378332,7 +387947,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14895] = 10, + [24482] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378345,15 +387962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3364), 4, + STATE(3514), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 12, + ACTIONS(3734), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378366,19 +387980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3735), 19, - anon_sym_EQ, + ACTIONS(3732), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378386,7 +388000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14959] = 10, + [24545] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -378401,12 +388015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3365), 4, + STATE(3515), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 12, + ACTIONS(3568), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378419,7 +388033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 20, + ACTIONS(3566), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -378432,7 +388046,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, @@ -378440,7 +388053,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15023] = 11, + [24608] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378453,18 +388068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6260), 1, - anon_sym_or, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3366), 5, + STATE(3516), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2977), 12, + ACTIONS(3686), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378477,8 +388086,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2975), 17, - anon_sym_EQ, + ACTIONS(3684), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378486,6 +388096,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, @@ -378495,7 +388106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15089] = 10, + [24671] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378511,28 +388122,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3367), 4, + STATE(3517), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 12, + ACTIONS(3717), 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(3468), 19, - anon_sym_EQ, + ACTIONS(3715), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378541,7 +388151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -378549,9 +388159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15153] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [24734] = 34, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -378562,15 +388170,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5584), 1, + anon_sym_POUNDif, + ACTIONS(6176), 1, + anon_sym_do, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6182), 1, + anon_sym_static, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6192), 1, + anon_sym_inherit, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4439), 1, + sym_member_defn, + STATE(4722), 1, + sym_attributes, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6149), 1, + sym__member_defns, + STATE(6624), 1, + sym_function_or_value_defn, + STATE(6737), 1, + sym__class_type_body_inner, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3368), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3518), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6629), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [24845] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3519), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3462), 12, + ACTIONS(3741), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378583,19 +388269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3460), 19, - anon_sym_EQ, + ACTIONS(3739), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378603,7 +388289,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15217] = 10, + [24908] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378616,15 +388304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3369), 4, + STATE(3520), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 12, + ACTIONS(3475), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378637,19 +388322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3456), 19, - anon_sym_EQ, + ACTIONS(3477), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378657,9 +388342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15281] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [24971] = 34, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -378670,15 +388353,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6137), 1, + anon_sym_do, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(6143), 1, + anon_sym_new, + ACTIONS(6147), 1, + anon_sym_static, + ACTIONS(6149), 1, + anon_sym_member, + ACTIONS(6151), 1, + anon_sym_interface, + ACTIONS(6153), 1, + anon_sym_abstract, + ACTIONS(6155), 1, + anon_sym_val, + ACTIONS(6157), 1, + anon_sym_inherit, + ACTIONS(6159), 1, + anon_sym_POUNDif, + STATE(3744), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4325), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4494), 1, + sym__class_type_body_inner, + STATE(4517), 1, + sym_function_or_value_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(4547), 1, + sym__member_defns, + STATE(4548), 1, + sym_interface_implementation, + STATE(4719), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3370), 4, + ACTIONS(6145), 2, + anon_sym_default, + anon_sym_override, + STATE(3521), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4518), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [25082] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3522), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3454), 12, + ACTIONS(3594), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378691,19 +388452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3452), 19, - anon_sym_EQ, + ACTIONS(3596), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378711,7 +388472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15345] = 10, + [25145] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378727,28 +388488,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3371), 4, + STATE(3523), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 12, + ACTIONS(3725), 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(3640), 19, - anon_sym_EQ, + ACTIONS(3723), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378757,7 +388517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -378765,7 +388525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15409] = 10, + [25208] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378778,15 +388538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6442), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3372), 4, + STATE(3524), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 12, + ACTIONS(6438), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378799,10 +388561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3429), 19, + ACTIONS(6440), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378811,7 +388572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378819,7 +388579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15473] = 10, + [25273] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378835,28 +388595,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3373), 4, + STATE(3525), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 12, + ACTIONS(3594), 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(3425), 19, - anon_sym_EQ, + ACTIONS(3596), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378865,7 +388624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -378873,7 +388632,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15537] = 10, + [25336] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378886,15 +388647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3374), 4, + STATE(3526), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 12, + ACTIONS(3399), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378907,19 +388665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3421), 19, - anon_sym_EQ, + ACTIONS(3397), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378927,7 +388685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15601] = 10, + [25399] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378940,16 +388698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3375), 4, + STATE(3527), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 12, - anon_sym_COLON, + ACTIONS(6444), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -378961,10 +388722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3417), 19, + ACTIONS(6446), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378973,7 +388733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378981,7 +388740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15665] = 10, + [25466] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378994,31 +388755,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3376), 4, + ACTIONS(6400), 1, + anon_sym_DOT, + STATE(3528), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 15, + ACTIONS(6228), 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(3132), 16, + ACTIONS(6230), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379026,8 +388783,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379035,9 +388794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15729] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [25531] = 34, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -379048,49 +388805,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6263), 1, - anon_sym_DOT, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, + anon_sym_do, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(5944), 1, + anon_sym_static, + ACTIONS(5946), 1, + anon_sym_member, + ACTIONS(5948), 1, + anon_sym_interface, + ACTIONS(5950), 1, + anon_sym_abstract, + ACTIONS(5952), 1, + anon_sym_val, + ACTIONS(5954), 1, + anon_sym_inherit, + ACTIONS(5956), 1, + anon_sym_POUNDif, + STATE(3707), 1, + sym_member_defn, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4228), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4424), 1, + sym__class_type_body_inner, + STATE(4432), 1, + sym_function_or_value_defn, + STATE(4468), 1, + sym__member_defns, + STATE(4717), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3377), 5, + ACTIONS(5942), 2, + anon_sym_default, + anon_sym_override, + STATE(3529), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 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(2990), 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, - [15795] = 10, + STATE(4433), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + [25642] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379103,15 +388884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6410), 1, + anon_sym_COMMA, + STATE(3549), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3378), 4, + STATE(3530), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 12, + ACTIONS(6448), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -379124,11 +388909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3413), 19, + ACTIONS(6450), 16, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -379136,7 +388919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379144,9 +388926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15859] = 12, - ACTIONS(3), 1, - sym_line_comment, + [25709] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379159,29 +388939,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5809), 1, - aux_sym_decimal_token1, - ACTIONS(5855), 1, - anon_sym_f, - STATE(3379), 4, + ACTIONS(6452), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3531), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(3052), 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(2526), 18, + ACTIONS(3050), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379189,10 +388971,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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379200,7 +388980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15927] = 10, + [25774] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379216,28 +388996,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3380), 4, + STATE(3532), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 12, + ACTIONS(3475), 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(3710), 19, - anon_sym_EQ, + ACTIONS(3477), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379246,7 +389025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -379254,9 +389033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15991] = 11, - ACTIONS(3), 1, - sym_line_comment, + [25837] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379269,28 +389046,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6266), 1, - sym_int, - STATE(3381), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3533), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3146), 13, + ACTIONS(3046), 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, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3148), 18, + ACTIONS(3044), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379298,10 +389077,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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379309,7 +389086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16057] = 10, + [25900] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379325,28 +389102,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3382), 4, + STATE(3534), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 12, + ACTIONS(6228), 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(3397), 19, - anon_sym_EQ, + ACTIONS(6230), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379355,7 +389131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -379363,7 +389139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16121] = 10, + [25963] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379376,71 +389152,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3383), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3663), 12, + ACTIONS(6406), 1, anon_sym_COLON, + ACTIONS(6408), 1, 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(3661), 19, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_RPAREN, + ACTIONS(6410), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6412), 1, anon_sym_COLON_COLON, + ACTIONS(6414), 1, anon_sym_PIPE, + ACTIONS(6416), 1, anon_sym_AMP, - 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, - [16185] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3384), 4, + STATE(3535), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(4643), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -379451,19 +389185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3552), 19, + ACTIONS(4645), 13, 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_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379471,7 +389199,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16249] = 10, + [26040] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379484,15 +389214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3385), 4, + STATE(3536), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 12, + ACTIONS(3667), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -379505,19 +389232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3603), 19, - anon_sym_EQ, + ACTIONS(3665), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379525,7 +389252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16313] = 10, + [26103] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379541,28 +389268,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3386), 4, + STATE(3537), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3609), 12, + ACTIONS(2990), 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(3607), 19, + ACTIONS(2992), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379571,7 +389298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379579,7 +389305,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16377] = 10, + [26166] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379592,31 +389320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3387), 4, + STATE(3538), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 15, + ACTIONS(3499), 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(3190), 16, + ACTIONS(3501), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379624,6 +389348,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, @@ -379633,7 +389358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16441] = 10, + [26229] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379649,28 +389374,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3388), 4, + STATE(3539), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 12, + ACTIONS(3741), 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(3706), 19, - anon_sym_EQ, + ACTIONS(3739), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379679,7 +389403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -379687,9 +389411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16505] = 10, - ACTIONS(3), 1, - sym_line_comment, + [26292] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379702,27 +389424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3389), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3540), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 14, + ACTIONS(3635), 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(3132), 18, + ACTIONS(3633), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379730,10 +389454,9 @@ 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_RBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379741,7 +389464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16569] = 10, + [26355] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379754,16 +389477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3390), 4, + STATE(3541), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 12, - anon_sym_COLON, + ACTIONS(6454), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379775,10 +389501,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3677), 19, + ACTIONS(6456), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379787,7 +389512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379795,7 +389519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16633] = 10, + [26422] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379808,16 +389532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3391), 4, + STATE(3542), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 12, - anon_sym_COLON, + ACTIONS(6458), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379829,10 +389556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3720), 19, + ACTIONS(6460), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379841,7 +389567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379849,7 +389574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16697] = 11, + [26489] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379862,31 +389587,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6258), 1, - anon_sym_DOT, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3392), 4, + STATE(3543), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 13, - anon_sym_COLON, + ACTIONS(6462), 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(3070), 17, + ACTIONS(6464), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379896,7 +389622,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -379904,7 +389629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16763] = 10, + [26556] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379920,28 +389645,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3393), 4, + STATE(3544), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3543), 12, + ACTIONS(3052), 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(3541), 19, - anon_sym_EQ, + ACTIONS(3050), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -379950,7 +389674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -379958,7 +389682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16827] = 10, + [26619] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379971,15 +389697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3394), 4, + STATE(3545), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 12, + ACTIONS(3661), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -379992,19 +389715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3537), 19, - anon_sym_EQ, + ACTIONS(3663), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380012,7 +389735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16891] = 12, + [26682] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380025,33 +389748,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - STATE(3351), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3395), 4, + STATE(3546), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3004), 13, - anon_sym_COLON, + ACTIONS(6466), 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(3001), 16, + ACTIONS(6468), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380068,9 +389790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16959] = 10, - ACTIONS(3), 1, - sym_line_comment, + [26749] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380083,13 +389803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3396), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3547), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 14, + ACTIONS(6387), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -380100,10 +389824,9 @@ 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(3190), 18, + ACTIONS(6389), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380111,10 +389834,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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380122,7 +389843,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17023] = 10, + [26812] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380135,15 +389858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3397), 4, + STATE(3548), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(3052), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380156,19 +389876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2526), 19, - anon_sym_EQ, + ACTIONS(3050), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380176,7 +389896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17087] = 10, + [26875] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380189,15 +389909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6470), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3398), 4, + STATE(3549), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 12, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6454), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380210,11 +389933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3507), 19, + ACTIONS(6456), 16, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -380222,7 +389943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380230,7 +389950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17151] = 12, + [26940] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380243,152 +389963,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6272), 1, - anon_sym_and, - STATE(3402), 1, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3399), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6268), 12, + ACTIONS(6406), 1, anon_sym_COLON, + ACTIONS(6408), 1, 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(6270), 17, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(6410), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6412), 1, anon_sym_COLON_COLON, + ACTIONS(6414), 1, anon_sym_PIPE, + ACTIONS(6416), 1, 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, - [17219] = 35, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7138), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3400), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [17333] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, + STATE(3530), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3401), 4, + STATE(3550), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6473), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -380399,19 +389996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3714), 19, + ACTIONS(6475), 13, 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_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380419,7 +390010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17397] = 12, + [27017] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380432,19 +390025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6272), 1, - anon_sym_and, - STATE(3404), 1, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3402), 4, + STATE(3551), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6274), 12, + ACTIONS(3419), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380457,8 +390043,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6276), 17, - anon_sym_EQ, + ACTIONS(3421), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380466,6 +390053,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, @@ -380475,7 +390063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17465] = 10, + [27080] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380491,28 +390079,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3403), 4, + STATE(3552), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 12, + ACTIONS(3702), 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(3673), 19, - anon_sym_EQ, + ACTIONS(3700), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -380521,7 +390108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -380529,7 +390116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17529] = 11, + [27143] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380542,32 +390129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6282), 1, - anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3404), 5, + STATE(3553), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6278), 12, + ACTIONS(3696), 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(6280), 17, - anon_sym_EQ, + ACTIONS(3694), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380577,6 +390161,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -380584,7 +390169,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17595] = 35, + [27206] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -380595,75 +390182,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7457), 1, - sym__class_type_body, - STATE(7793), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3405), 4, + STATE(3554), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [17709] = 10, + ACTIONS(2528), 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(2526), 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_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, + [27269] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380676,31 +390235,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6452), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3406), 4, + STATE(3555), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 12, + ACTIONS(6228), 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(3070), 19, - anon_sym_EQ, + ACTIONS(6230), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -380709,7 +390269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380717,7 +390276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17773] = 12, + [27334] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380730,33 +390289,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6256), 1, - anon_sym_or, - STATE(3362), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3407), 4, + STATE(3556), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 12, + ACTIONS(3457), 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(3028), 17, - anon_sym_EQ, + ACTIONS(3455), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380766,6 +390321,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -380773,7 +390329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17841] = 12, + [27397] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -380788,16 +390344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6254), 1, - anon_sym_DOT, - STATE(3409), 1, - aux_sym_long_identifier_repeat1, - STATE(3408), 4, + STATE(3557), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 12, + ACTIONS(3545), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380810,7 +390362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2971), 18, + ACTIONS(3543), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380821,7 +390375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380829,9 +390382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17909] = 11, - ACTIONS(3), 1, - sym_line_comment, + [27460] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380844,28 +390395,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6285), 1, - anon_sym_DOT, - STATE(3409), 5, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3558), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 12, + ACTIONS(3621), 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(2990), 18, + ACTIONS(3623), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380873,10 +390425,9 @@ 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_RBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380884,7 +390435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17975] = 10, + [27523] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380900,28 +390451,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3410), 4, + STATE(3559), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 12, + ACTIONS(3686), 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(3395), 19, - anon_sym_EQ, + ACTIONS(3684), 17, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -380930,7 +390480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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, @@ -380938,86 +390488,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18039] = 35, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6297), 1, - sym__class_type_body_inner, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(7793), 1, - sym_access_modifier, - STATE(7799), 1, - sym__class_type_body, - ACTIONS(3), 2, - anon_sym_SEMI, + [27586] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3411), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [18153] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381030,15 +390503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3412), 4, + STATE(3560), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 12, + ACTIONS(6228), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381051,19 +390521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6165), 19, - anon_sym_EQ, + ACTIONS(6230), 19, + sym__newline, + sym__dedent, 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_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381071,7 +390541,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18217] = 10, + [27649] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381084,15 +390556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3413), 4, + STATE(3561), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3690), 12, + ACTIONS(3734), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381105,19 +390574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3688), 19, - anon_sym_EQ, + ACTIONS(3732), 18, 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_LT2, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381125,7 +390593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18281] = 11, + [27711] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -381140,14 +390608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6252), 1, - anon_sym_DOT, - STATE(3414), 4, + STATE(3562), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 12, + ACTIONS(3743), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381160,9 +390626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6165), 19, - sym__newline, - sym__dedent, + ACTIONS(3745), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381173,6 +390637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381180,7 +390645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18347] = 17, + [27773] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381193,44 +390658,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_COMMA, - ACTIONS(6298), 1, - anon_sym_COLON_COLON, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_AMP, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3415), 4, + STATE(3563), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6288), 10, + ACTIONS(3696), 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(6290), 13, - anon_sym_EQ, + ACTIONS(3694), 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, @@ -381240,78 +390697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18424] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6304), 1, - sym_identifier, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6314), 1, - anon_sym_POUND, - STATE(3570), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3851), 1, - sym__type, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, - STATE(4904), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3416), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [18523] = 11, + [27835] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -381326,14 +390712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6318), 1, - anon_sym_DOT, - STATE(3417), 4, + STATE(3564), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 12, + ACTIONS(3475), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381346,7 +390730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3070), 18, + ACTIONS(3477), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381365,9 +390749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18588] = 10, - ACTIONS(3), 1, - sym_line_comment, + [27897] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381380,27 +390762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3418), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3565), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 12, + ACTIONS(2528), 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(3720), 19, - sym__newline, - sym__dedent, + ACTIONS(2526), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381408,7 +390792,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, @@ -381418,7 +390801,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18651] = 28, + [27959] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -381429,67 +390814,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6320), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2470), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, - STATE(2707), 1, - sym_curried_spec, - STATE(3540), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3419), 4, + STATE(3566), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [18750] = 10, + ACTIONS(3457), 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(3455), 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, + [28021] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381505,26 +390869,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3420), 4, + STATE(3567), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 13, + ACTIONS(6477), 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(3677), 17, + ACTIONS(6479), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381534,7 +390898,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -381542,9 +390905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18813] = 10, - ACTIONS(3), 1, - sym_line_comment, + [28083] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381557,12 +390918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3421), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3568), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3543), 12, + ACTIONS(6481), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381575,9 +390939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3541), 19, - sym__newline, - sym__dedent, + ACTIONS(6483), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381585,7 +390948,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, @@ -381595,9 +390957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18876] = 10, - ACTIONS(3), 1, - sym_line_comment, + [28145] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381610,27 +390970,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3422), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3569), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 12, + ACTIONS(3741), 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(3537), 19, - sym__newline, - sym__dedent, + ACTIONS(3739), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381638,7 +391000,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, @@ -381648,9 +391009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18939] = 10, - ACTIONS(3), 1, - sym_line_comment, + [28207] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381663,27 +391022,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3423), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3570), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 12, + ACTIONS(3686), 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(3677), 19, - sym__newline, - sym__dedent, + ACTIONS(3684), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381691,7 +391052,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, @@ -381701,9 +391061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19002] = 10, - ACTIONS(3), 1, - sym_line_comment, + [28269] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381716,12 +391074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3424), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3571), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 12, + ACTIONS(6485), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381734,9 +391095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2526), 19, - sym__newline, - sym__dedent, + ACTIONS(6487), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381744,7 +391104,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, @@ -381754,7 +391113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19065] = 10, + [28331] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -381769,12 +391128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3425), 4, + STATE(3572), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 12, + ACTIONS(3621), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381787,9 +391146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3710), 19, - sym__newline, - sym__dedent, + ACTIONS(3623), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381800,6 +391157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381807,7 +391165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19128] = 28, + [28393] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -381818,138 +391180,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6330), 1, - sym_identifier, - STATE(3584), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3862), 1, - sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4244), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, - STATE(5010), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3426), 4, + STATE(3573), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [19227] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(3052), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5573), 1, + anon_sym_null, anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6306), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3050), 18, anon_sym_LBRACK_LT, - ACTIONS(6312), 1, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(6330), 1, - sym_identifier, - STATE(3584), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3862), 1, - sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4244), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, - STATE(4922), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, - sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3427), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [19326] = 28, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [28455] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -381960,67 +391230,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 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(3588), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4211), 1, - sym__type, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, - sym_long_identifier, - STATE(5091), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3428), 4, + STATE(3574), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [19425] = 10, + ACTIONS(6228), 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), 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, + [28517] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382033,29 +391284,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3429), 4, + STATE(3575), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 13, + ACTIONS(3741), 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(3735), 17, + ACTIONS(3739), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382063,9 +391310,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382073,7 +391321,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19488] = 10, + [28579] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382086,29 +391336,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3430), 4, + STATE(3576), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 13, + ACTIONS(3419), 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(3720), 17, + ACTIONS(3421), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382116,9 +391362,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382126,7 +391373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19551] = 10, + [28641] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382142,26 +391389,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3431), 4, + STATE(3577), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 13, + ACTIONS(3568), 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(3673), 17, + ACTIONS(3566), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382171,7 +391418,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382179,7 +391425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19614] = 10, + [28703] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382195,26 +391441,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3432), 4, + STATE(3578), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 13, + 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_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3706), 17, + ACTIONS(3732), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382224,7 +391470,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382232,7 +391477,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19677] = 10, + [28765] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382245,29 +391492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3433), 4, + STATE(3579), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 13, + ACTIONS(3499), 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(3070), 17, + ACTIONS(3501), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382275,9 +391518,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382285,7 +391529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19740] = 10, + [28827] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382301,26 +391545,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3434), 4, + STATE(3580), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3609), 13, + ACTIONS(3743), 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(3607), 17, + ACTIONS(3745), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382330,7 +391574,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382338,7 +391581,59 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19803] = 10, + [28889] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3581), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3399), 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(3397), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [28951] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382354,26 +391649,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3435), 4, + STATE(3582), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 13, + ACTIONS(3592), 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(3603), 17, + ACTIONS(3590), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382383,7 +391678,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382391,7 +391685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19866] = 10, + [29013] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382407,26 +391701,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3436), 4, + STATE(3583), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 13, + ACTIONS(3549), 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(3552), 17, + ACTIONS(3547), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382436,7 +391730,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382444,7 +391737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19929] = 10, + [29075] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382460,26 +391753,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3437), 4, + STATE(3584), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3663), 13, + ACTIONS(3052), 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(3661), 17, + ACTIONS(3050), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382489,7 +391782,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382497,7 +391789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19992] = 10, + [29137] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382510,29 +391802,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6493), 1, + anon_sym_as, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3438), 4, + STATE(3585), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 13, + ACTIONS(6489), 11, + anon_sym_COLON, + 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(6491), 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_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, + [29201] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3586), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3594), 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(3397), 17, + ACTIONS(3596), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382540,9 +391883,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382550,7 +391894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20055] = 10, + [29263] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382566,26 +391910,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3439), 4, + STATE(3587), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 13, + ACTIONS(3475), 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(3401), 17, + ACTIONS(3477), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382595,7 +391939,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382603,7 +391946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20118] = 10, + [29325] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382619,26 +391962,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3440), 4, + STATE(3588), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 13, + ACTIONS(6495), 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(3413), 17, + ACTIONS(6497), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382648,7 +391991,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382656,7 +391998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20181] = 10, + [29387] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382672,26 +392014,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3441), 4, + STATE(3589), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 13, + ACTIONS(6438), 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(3417), 17, + ACTIONS(6440), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382701,7 +392043,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382709,7 +392050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20244] = 10, + [29449] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382725,26 +392066,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3442), 4, + STATE(3590), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 13, + ACTIONS(3659), 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(3421), 17, + ACTIONS(3657), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382754,7 +392095,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382762,7 +392102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20307] = 10, + [29511] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382778,26 +392118,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3443), 4, + STATE(3591), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 13, + ACTIONS(6499), 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(3425), 17, + ACTIONS(6501), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382807,7 +392147,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382815,7 +392154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20370] = 10, + [29573] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382831,26 +392170,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3444), 4, + STATE(3592), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 13, + ACTIONS(3572), 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(3429), 17, + ACTIONS(3570), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382860,7 +392199,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382868,7 +392206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20433] = 10, + [29635] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382884,26 +392222,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3445), 4, + STATE(3593), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3454), 13, + ACTIONS(6503), 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(3452), 17, + ACTIONS(6505), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382913,7 +392251,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382921,7 +392258,111 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20496] = 10, + [29697] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3594), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3661), 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(3663), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [29759] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + STATE(3595), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3686), 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(3684), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [29821] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382937,26 +392378,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3446), 4, + STATE(3596), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 13, + ACTIONS(3603), 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(3456), 17, + ACTIONS(3601), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382966,7 +392407,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -382974,9 +392414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20559] = 10, - ACTIONS(3), 1, - sym_line_comment, + [29883] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382989,27 +392427,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3447), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3597), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 12, + ACTIONS(3419), 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(3706), 19, - sym__newline, - sym__dedent, + ACTIONS(3421), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383017,7 +392457,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, @@ -383027,7 +392466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20622] = 10, + [29945] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383043,26 +392482,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3448), 4, + STATE(3598), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3462), 13, + ACTIONS(3594), 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(3460), 17, + ACTIONS(3596), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383072,7 +392511,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -383080,7 +392518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20685] = 10, + [30007] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383096,26 +392534,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3449), 4, + STATE(3599), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 13, + ACTIONS(3499), 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(3468), 17, + ACTIONS(3501), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383125,7 +392563,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -383133,7 +392570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20748] = 28, + [30069] = 26, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383144,56 +392581,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, + ACTIONS(6198), 1, anon_sym_LBRACK_LT, - ACTIONS(6312), 1, + ACTIONS(6204), 1, anon_sym_QMARK, - ACTIONS(6342), 1, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - STATE(3614), 1, - aux_sym_curried_spec_repeat1, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3677), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, - STATE(3777), 1, + STATE(3728), 1, sym_attributes, - STATE(4108), 1, + STATE(3868), 1, sym_argument_name_spec, - STATE(4395), 1, - sym_curried_spec, - STATE(5323), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5221), 1, aux_sym_attributes_repeat1, - STATE(5650), 1, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5618), 1, sym__attribute_set, - STATE(6373), 1, + STATE(5750), 1, + sym__type, + STATE(6790), 1, sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3450), 4, + STATE(3600), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -383204,7 +392637,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [20847] = 10, + sym_anon_record_type, + [30163] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383220,26 +392654,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3451), 4, + STATE(3601), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 13, + ACTIONS(3725), 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(3395), 17, + ACTIONS(3723), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383249,7 +392683,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -383257,9 +392690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20910] = 10, - ACTIONS(3), 1, - sym_line_comment, + [30225] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383272,27 +392703,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3452), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3602), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 12, + ACTIONS(3717), 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(3735), 19, - sym__newline, - sym__dedent, + ACTIONS(3715), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383300,7 +392733,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, @@ -383310,7 +392742,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20973] = 34, + [30287] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383321,73 +392755,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6081), 1, - anon_sym_do, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(6087), 1, - anon_sym_new, - ACTIONS(6091), 1, - anon_sym_static, - ACTIONS(6093), 1, - anon_sym_member, - ACTIONS(6095), 1, - anon_sym_interface, - ACTIONS(6097), 1, - anon_sym_abstract, - ACTIONS(6099), 1, - anon_sym_val, - ACTIONS(6101), 1, - anon_sym_inherit, - ACTIONS(6103), 1, - anon_sym_POUNDif, - STATE(3715), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4363), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4482), 1, - sym__member_defns, - STATE(4483), 1, - sym__class_type_body_inner, - STATE(4484), 1, - sym_interface_implementation, - STATE(4531), 1, - sym_function_or_value_defn, - STATE(4738), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6089), 2, - anon_sym_default, - anon_sym_override, - STATE(3453), 4, + STATE(3603), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4538), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [21084] = 10, + ACTIONS(6509), 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(6511), 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_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, + [30349] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -383402,12 +392809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3454), 4, + STATE(3604), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3726), 12, + ACTIONS(3568), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383420,9 +392827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3728), 19, - sym__newline, - sym__dedent, + ACTIONS(3566), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383433,6 +392838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -383440,7 +392846,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21147] = 28, + [30411] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383451,69 +392859,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 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(3588), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4211), 1, - sym__type, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, - sym_long_identifier, - STATE(5109), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3455), 4, + STATE(3605), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [21246] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(3611), 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(3609), 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, + [30473] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383526,12 +392911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3456), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3606), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3609), 12, + ACTIONS(6513), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383544,9 +392932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3607), 19, - sym__newline, - sym__dedent, + ACTIONS(6515), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383554,7 +392941,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, @@ -383564,9 +392950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21309] = 10, - ACTIONS(3), 1, - sym_line_comment, + [30535] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383579,27 +392963,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3457), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3607), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 12, + ACTIONS(3682), 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(3603), 19, - sym__newline, - sym__dedent, + ACTIONS(3680), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383607,7 +392993,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, @@ -383617,9 +393002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21372] = 10, - ACTIONS(3), 1, - sym_line_comment, + [30597] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383632,12 +393015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3458), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3608), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 12, + ACTIONS(6517), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383650,9 +393036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3552), 19, - sym__newline, - sym__dedent, + ACTIONS(6519), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383660,7 +393045,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, @@ -383670,9 +393054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21435] = 10, - ACTIONS(3), 1, - sym_line_comment, + [30659] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383685,12 +393067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3459), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3609), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3663), 12, + ACTIONS(6521), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383703,9 +393088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3661), 19, - sym__newline, - sym__dedent, + ACTIONS(6523), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383713,7 +393097,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, @@ -383723,7 +393106,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21498] = 28, + [30721] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383734,67 +393119,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6352), 1, - sym_identifier, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - STATE(3578), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3811), 1, - sym__static_type_identifier, - STATE(3850), 1, - sym__type, - STATE(4044), 1, - sym_type_argument, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4349), 1, - sym_long_identifier, - STATE(4900), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3460), 4, + STATE(3610), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [21597] = 28, + ACTIONS(3399), 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(3397), 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, + [30783] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383805,67 +393173,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 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(3614), 1, - aux_sym_curried_spec_repeat1, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3677), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4454), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3461), 4, + STATE(3611), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [21696] = 10, + ACTIONS(3592), 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(3590), 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_RBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [30845] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383881,26 +393226,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3462), 4, + STATE(3612), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 13, + ACTIONS(6525), 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(3714), 17, + ACTIONS(6527), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383910,7 +393255,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -383918,7 +393262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21759] = 10, + [30907] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -383933,12 +393277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3463), 4, + STATE(3613), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 12, + ACTIONS(3549), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383951,9 +393295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3714), 19, - sym__newline, - sym__dedent, + ACTIONS(3547), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383964,6 +393306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -383971,7 +393314,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21822] = 34, + [30969] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -383982,108 +393327,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5601), 1, - anon_sym_POUNDif, - ACTIONS(6169), 1, - anon_sym_do, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6175), 1, - anon_sym_static, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6179), 1, - anon_sym_interface, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6185), 1, - anon_sym_inherit, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4437), 1, - sym_member_defn, - STATE(4733), 1, - sym_attributes, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5781), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, - sym__member_defns, - STATE(6621), 1, - sym_function_or_value_defn, - STATE(6766), 1, - sym__class_type_body_inner, - STATE(7793), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(3464), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6624), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [21933] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3465), 4, + STATE(3614), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 12, + ACTIONS(3615), 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(3397), 19, - sym__newline, - sym__dedent, + ACTIONS(3613), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384091,7 +393357,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, @@ -384101,7 +393366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21996] = 10, + [31031] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384116,12 +393381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3466), 4, + STATE(3615), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 12, + ACTIONS(3572), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384134,9 +393399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3401), 19, - sym__newline, - sym__dedent, + ACTIONS(3570), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384147,6 +393410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384154,7 +393418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22059] = 10, + [31093] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384170,26 +393434,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3467), 4, + STATE(3616), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 13, + ACTIONS(3675), 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(3653), 17, + ACTIONS(3673), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384199,7 +393463,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -384207,7 +393470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22122] = 10, + [31155] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384222,12 +393485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3468), 4, + STATE(3617), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 12, + ACTIONS(3603), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384240,9 +393503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3413), 19, - sym__newline, - sym__dedent, + ACTIONS(3601), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384253,6 +393514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384260,7 +393522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22185] = 10, + [31217] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384276,132 +393538,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3469), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - 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, - sym_identifier, - ACTIONS(3644), 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_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, - [22248] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3470), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3419), 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(3417), 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, - [22311] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3471), 4, + STATE(3618), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 13, + ACTIONS(3621), 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(3632), 17, + ACTIONS(3623), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384411,7 +393567,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -384419,7 +393574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22374] = 10, + [31279] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384435,26 +393590,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3472), 4, + STATE(3619), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3626), 13, + ACTIONS(3667), 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(3628), 17, + ACTIONS(3665), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384464,7 +393619,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -384472,7 +393626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22437] = 10, + [31341] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384488,26 +393642,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3473), 4, + STATE(3620), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 13, + ACTIONS(3702), 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(3613), 17, + ACTIONS(3700), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384517,7 +393671,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -384525,7 +393678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22500] = 10, + [31403] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384540,12 +393693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3474), 4, + STATE(3621), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 12, + ACTIONS(3611), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384558,9 +393711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3421), 19, - sym__newline, - sym__dedent, + ACTIONS(3609), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384571,6 +393722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384578,60 +393730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22563] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, + [31465] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(3475), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3543), 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(3541), 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_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, - [22626] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384644,17 +393745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6366), 1, - anon_sym_LT2, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3476), 4, + STATE(3622), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6362), 12, + ACTIONS(3615), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384667,8 +393763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6364), 17, - anon_sym_EQ, + ACTIONS(3613), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384676,8 +393771,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384685,7 +393782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22691] = 10, + [31527] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384700,12 +393797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3477), 4, + STATE(3623), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 12, + ACTIONS(3619), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384718,9 +393815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3425), 19, - sym__newline, - sym__dedent, + ACTIONS(3617), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384731,6 +393826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384738,7 +393834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22754] = 10, + [31589] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384754,82 +393850,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3478), 4, + STATE(3624), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5879), 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(5881), 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_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, - [22817] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(6292), 1, + ACTIONS(3661), 13, anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3479), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6368), 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(6370), 17, - anon_sym_EQ, + ACTIONS(3663), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384846,7 +393886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22884] = 10, + [31651] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384861,12 +393901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3480), 4, + STATE(3625), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 12, + ACTIONS(3627), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384879,9 +393919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3429), 19, - sym__newline, - sym__dedent, + ACTIONS(3625), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384892,6 +393930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384899,7 +393938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22947] = 10, + [31713] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384914,12 +393953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3481), 4, + STATE(3626), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3454), 12, + ACTIONS(3631), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384932,9 +393971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3452), 19, - sym__newline, - sym__dedent, + ACTIONS(3629), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384945,6 +393982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384952,7 +393990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23010] = 10, + [31775] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -384967,12 +394005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3482), 4, + STATE(3627), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 12, + ACTIONS(3635), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384985,9 +394023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6165), 19, - sym__newline, - sym__dedent, + ACTIONS(3633), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384998,6 +394034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385005,7 +394042,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23073] = 10, + [31837] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385018,29 +394057,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3483), 4, + STATE(3628), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 13, + ACTIONS(3647), 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(3537), 17, + ACTIONS(3645), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385048,9 +394083,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385058,7 +394094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23136] = 10, + [31899] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -385073,12 +394109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3484), 4, + STATE(3629), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 12, + ACTIONS(3651), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385091,9 +394127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3456), 19, - sym__newline, - sym__dedent, + ACTIONS(3649), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385104,6 +394138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385111,7 +394146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23199] = 10, + [31961] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385127,14 +394162,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3485), 4, + STATE(3630), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6278), 13, + ACTIONS(6529), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -385146,7 +394180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6280), 17, + ACTIONS(6531), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -385164,7 +394198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23262] = 10, + [32023] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -385179,12 +394213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3486), 4, + STATE(3631), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 12, + ACTIONS(3655), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385197,9 +394231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3673), 19, - sym__newline, - sym__dedent, + ACTIONS(3653), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385210,6 +394242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385217,7 +394250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23325] = 12, + [32085] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385230,19 +394265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3487), 4, + STATE(3632), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6372), 11, + ACTIONS(3659), 12, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -385254,8 +394283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6374), 17, - anon_sym_EQ, + ACTIONS(3657), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385263,8 +394291,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385272,7 +394302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23392] = 10, + [32147] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -385287,12 +394317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3488), 4, + STATE(3633), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3462), 12, + ACTIONS(6228), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385305,9 +394335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3460), 19, - sym__newline, - sym__dedent, + ACTIONS(6230), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385318,6 +394346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385325,84 +394354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23455] = 34, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5923), 1, - anon_sym_do, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(5933), 1, - anon_sym_static, - ACTIONS(5935), 1, - anon_sym_member, - ACTIONS(5937), 1, - anon_sym_interface, - ACTIONS(5939), 1, - anon_sym_abstract, - ACTIONS(5941), 1, - anon_sym_val, - ACTIONS(5943), 1, - anon_sym_inherit, - ACTIONS(5945), 1, - anon_sym_POUNDif, - STATE(3694), 1, - sym_member_defn, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4163), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4389), 1, - sym_function_or_value_defn, - STATE(4393), 1, - sym__class_type_body_inner, - STATE(4425), 1, - sym_interface_implementation, - STATE(4431), 1, - sym__member_defns, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(4714), 1, - sym_attributes, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5931), 2, - anon_sym_default, - anon_sym_override, - STATE(3489), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - [23566] = 10, + [32209] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385418,27 +394370,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3490), 4, + STATE(3634), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5891), 13, + ACTIONS(3619), 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(5893), 17, - anon_sym_EQ, + ACTIONS(3617), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385455,78 +394406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23629] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6320), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2470), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, - STATE(2708), 1, - sym_curried_spec, - STATE(3540), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3491), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [23728] = 10, + [32271] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385542,14 +394422,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3492), 4, + STATE(3635), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6376), 13, + ACTIONS(2979), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -385561,7 +394440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6378), 17, + ACTIONS(2981), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -385579,7 +394458,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23791] = 10, + [32333] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385592,17 +394473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3493), 4, + STATE(3636), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6380), 13, + ACTIONS(3667), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -385614,8 +394491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6382), 17, - anon_sym_EQ, + ACTIONS(3665), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385623,8 +394499,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385632,7 +394510,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23854] = 10, + [32395] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385645,17 +394525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3494), 4, + STATE(3637), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6384), 13, + ACTIONS(3675), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -385667,8 +394543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6386), 17, - anon_sym_EQ, + ACTIONS(3673), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385676,8 +394551,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385685,7 +394562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23917] = 10, + [32457] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -385700,12 +394577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3495), 4, + STATE(3638), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 12, + ACTIONS(3682), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385718,9 +394595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3468), 19, - sym__newline, - sym__dedent, + ACTIONS(3680), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385731,6 +394606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385738,7 +394614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [23980] = 10, + [32519] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385754,27 +394630,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3496), 4, + STATE(3639), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6388), 13, + ACTIONS(3627), 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(6390), 17, - anon_sym_EQ, + ACTIONS(3625), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385791,7 +394666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24043] = 12, + [32581] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385804,34 +394679,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6296), 1, - anon_sym_COMMA, - STATE(3528), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3497), 4, + STATE(3640), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6392), 12, + ACTIONS(3545), 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(6394), 16, - anon_sym_EQ, + ACTIONS(3543), 16, anon_sym_LBRACK_LT, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -385846,78 +394718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24110] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6396), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - STATE(3577), 1, - aux_sym_curried_spec_repeat1, - STATE(3639), 1, - sym__type, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4340), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3498), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [24209] = 10, + [32643] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -385932,12 +394733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3499), 4, + STATE(3641), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 12, + ACTIONS(3717), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385950,9 +394751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3653), 19, - sym__newline, - sym__dedent, + ACTIONS(3715), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385963,6 +394762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385970,7 +394770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24272] = 10, + [32705] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385986,26 +394786,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3500), 4, + STATE(3642), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 13, + ACTIONS(3631), 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(6165), 17, + ACTIONS(3629), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386015,7 +394815,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -386023,7 +394822,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24335] = 17, + [32767] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386036,29 +394837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_COMMA, - ACTIONS(6298), 1, - anon_sym_COLON_COLON, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_AMP, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3501), 4, + STATE(3643), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4608), 10, + ACTIONS(3725), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -386069,13 +394855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(4606), 13, - anon_sym_EQ, + ACTIONS(3723), 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -386083,9 +394874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24412] = 10, - ACTIONS(3), 1, - sym_line_comment, + [32829] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386098,12 +394887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3502), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3644), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3642), 12, + ACTIONS(6533), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386116,9 +394908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3644), 19, - sym__newline, - sym__dedent, + ACTIONS(6535), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386126,7 +394917,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, @@ -386136,9 +394926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24475] = 10, - ACTIONS(3), 1, - sym_line_comment, + [32891] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386151,27 +394939,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3503), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3645), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 12, + ACTIONS(3635), 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(3632), 19, - sym__newline, - sym__dedent, + ACTIONS(3633), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386179,7 +394969,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, @@ -386189,9 +394978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24538] = 10, - ACTIONS(3), 1, - sym_line_comment, + [32953] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386204,27 +394991,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3504), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3646), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3626), 12, + ACTIONS(3647), 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(3628), 19, - sym__newline, - sym__dedent, + ACTIONS(3645), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386232,7 +395021,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, @@ -386242,9 +395030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24601] = 10, - ACTIONS(3), 1, - sym_line_comment, + [33015] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386257,27 +395043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3505), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3647), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 12, + ACTIONS(3651), 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(3613), 19, - sym__newline, - sym__dedent, + ACTIONS(3649), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386285,7 +395073,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, @@ -386295,7 +395082,9 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24664] = 10, + [33077] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386308,29 +395097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3506), 4, + STATE(3648), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 13, + ACTIONS(3702), 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(2990), 17, + ACTIONS(3700), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386338,9 +395123,10 @@ 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -386348,7 +395134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24727] = 11, + [33139] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -386363,14 +395149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6318), 1, - anon_sym_DOT, - STATE(3507), 4, + STATE(3649), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 12, + ACTIONS(3696), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386383,7 +395167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6165), 18, + ACTIONS(3694), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386402,7 +395186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24792] = 10, + [33201] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386418,26 +395202,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3508), 4, + STATE(3650), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 13, + ACTIONS(3655), 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(3640), 17, + ACTIONS(3653), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386447,7 +395231,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -386455,7 +395238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24855] = 10, + [33263] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386471,26 +395254,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3509), 4, + STATE(3651), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3690), 13, + ACTIONS(6537), 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(3688), 17, + ACTIONS(6539), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386500,7 +395283,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -386508,78 +395290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [24918] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6396), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - STATE(3577), 1, - aux_sym_curried_spec_repeat1, - STATE(3639), 1, - sym__type, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4355), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3510), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [25017] = 10, + [33325] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -386594,12 +395305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3511), 4, + STATE(3652), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 12, + ACTIONS(2528), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386612,7 +395323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2990), 19, + ACTIONS(2526), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386624,7 +395335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -386632,78 +395342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [25080] = 28, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6352), 1, - sym_identifier, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - STATE(3578), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3811), 1, - sym__static_type_identifier, - STATE(3850), 1, - sym__type, - STATE(4044), 1, - sym_type_argument, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4349), 1, - sym_long_identifier, - STATE(4783), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3512), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [25179] = 10, + [33387] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -386718,12 +395357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3513), 4, + STATE(3653), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 12, + ACTIONS(3457), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386736,9 +395375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3070), 19, - sym__newline, - sym__dedent, + ACTIONS(3455), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386749,6 +395386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -386756,7 +395394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [25242] = 10, + [33449] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -386771,12 +395409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3514), 4, + STATE(3654), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 12, + ACTIONS(3545), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386789,9 +395427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3640), 19, - sym__newline, - sym__dedent, + ACTIONS(3543), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -386802,6 +395438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -386809,9 +395446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [25305] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [33511] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -386822,47 +395457,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_with, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, + STATE(4488), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3515), 4, + STATE(3655), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 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(3710), 17, + ACTIONS(4821), 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_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(4823), 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, + [33592] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_with, + ACTIONS(6557), 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, - [25368] = 10, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, + STATE(4502), 1, + sym__object_members, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3656), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4821), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4823), 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, + [33672] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386875,39 +395580,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(6565), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3516), 4, + STATE(3657), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 13, + ACTIONS(3545), 12, anon_sym_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3702), 17, + ACTIONS(3543), 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_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, @@ -386915,7 +395618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [25431] = 28, + [33734] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -386926,69 +395629,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6304), 1, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6314), 1, - anon_sym_POUND, - STATE(3570), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3851), 1, - sym__type, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, sym_long_identifier, - STATE(4907), 1, - sym_curried_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3517), 4, + STATE(3658), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [25530] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(2904), 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(2906), 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, + [33810] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -386999,49 +395687,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3518), 4, + STATE(3659), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 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(2975), 17, - anon_sym_EQ, + ACTIONS(2900), 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_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, - [25593] = 11, - ACTIONS(5), 1, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(2902), 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, + [33886] = 18, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3660), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2882), 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(2886), 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, + [33962] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387052,50 +395803,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6406), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6567), 1, anon_sym_DOT, + STATE(3675), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3519), 4, + STATE(3661), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 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(3070), 16, + ACTIONS(2986), 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_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, - [25658] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(2988), 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, + [34028] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387106,49 +395856,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3520), 4, + STATE(3662), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 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(3068), 17, - anon_sym_EQ, + ACTIONS(2908), 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_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, - [25721] = 10, - 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(2910), 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, + [34104] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387159,51 +395914,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6569), 1, + anon_sym_or, + STATE(3664), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3521), 4, + STATE(3663), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 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(3507), 17, + ACTIONS(2981), 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_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_let_BANG, + 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_op_identifier, - sym_xint, - [25784] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(2979), 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, + [34168] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387214,49 +395966,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3522), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6569), 1, + anon_sym_or, + STATE(3667), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3664), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3690), 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(3688), 19, + ACTIONS(2960), 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, - [25847] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(2962), 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, + [34232] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387267,47 +396018,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3523), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3665), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 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(3395), 19, + ACTIONS(4466), 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, - [25910] = 10, - 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(4468), 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, + [34306] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387318,49 +396075,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3524), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3666), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - 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(3728), 17, + ACTIONS(4458), 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_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, - [25973] = 17, - 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(4460), 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, + [34380] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387371,58 +396132,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_COMMA, - ACTIONS(6298), 1, - anon_sym_COLON_COLON, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_AMP, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6571), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3525), 4, + STATE(3667), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6408), 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, - sym_identifier, - ACTIONS(6410), 13, - anon_sym_EQ, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 12, + sym__newline, 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, - [26050] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(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, + [34442] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387433,47 +396183,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3526), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3668), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 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(3507), 19, + ACTIONS(2904), 6, 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, - [26113] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(2906), 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, + [34517] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387484,48 +396240,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6406), 1, - anon_sym_DOT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3527), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3669), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 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(6165), 16, + ACTIONS(4466), 6, + 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_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, - [26178] = 11, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4468), 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, + [34590] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -387538,40 +396298,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6416), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3528), 5, + STATE(3670), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6412), 12, + ACTIONS(3399), 12, anon_sym_COLON, - anon_sym_as, 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(6414), 16, + ACTIONS(3397), 14, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -387579,9 +396334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [26243] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [34649] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387592,51 +396345,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, + ACTIONS(2528), 1, anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6574), 1, + anon_sym_y, + ACTIONS(6576), 1, + anon_sym_uy, + ACTIONS(6578), 1, + anon_sym_s, + ACTIONS(6580), 1, + anon_sym_us, + ACTIONS(6582), 1, + anon_sym_l, + ACTIONS(6584), 1, + aux_sym_uint32_token1, + ACTIONS(6586), 1, + anon_sym_n, + ACTIONS(6588), 1, + anon_sym_un, + ACTIONS(6590), 1, + anon_sym_L, + ACTIONS(6592), 1, + aux_sym_uint64_token1, + ACTIONS(6594), 1, + aux_sym_bignum_token1, + ACTIONS(6596), 1, + aux_sym_decimal_token1, + ACTIONS(6598), 1, + anon_sym_DOT2, + ACTIONS(6600), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3529), 4, + STATE(3671), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6419), 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(6421), 17, + ACTIONS(2526), 11, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_as, + 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_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, - [26310] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [34736] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387647,49 +396408,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6602), 1, + anon_sym_DOT, + STATE(3714), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3530), 4, + STATE(3672), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 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(2526), 17, + ACTIONS(2986), 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_LBRACK_PIPE, - anon_sym_LBRACE, + 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_op_identifier, - sym_xint, - [26373] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(2988), 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, + [34801] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387700,51 +396460,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3531), 4, + STATE(3673), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6423), 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(6425), 17, - anon_sym_EQ, + ACTIONS(3044), 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_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, - [26440] = 10, - ACTIONS(3), 1, - sym_line_comment, + 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(3046), 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, + [34860] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -387757,37 +396511,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3532), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3674), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 12, + ACTIONS(6604), 12, anon_sym_COLON, - anon_sym_as, 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(3702), 19, - sym__newline, - sym__dedent, + ACTIONS(6606), 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, @@ -387795,9 +396547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [26503] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [34919] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387808,49 +396558,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6567), 1, + anon_sym_DOT, + STATE(3677), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3533), 4, + STATE(3675), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6427), 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(6429), 17, - anon_sym_EQ, + ACTIONS(2954), 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_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, - [26570] = 12, + 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(2956), 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, + [34982] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -387863,41 +396611,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6292), 1, - anon_sym_COLON, - STATE(3497), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3534), 4, + STATE(3676), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6412), 11, - anon_sym_as, + ACTIONS(3499), 12, + anon_sym_COLON, 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(6414), 17, + ACTIONS(3501), 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_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -387905,11 +396647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [26637] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35041] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387920,48 +396658,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3535), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6608), 1, + anon_sym_DOT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3677), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 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(3640), 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26699] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + anon_sym_POUNDelse, + ACTIONS(2964), 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, + [35102] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -387972,44 +396708,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3536), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3678), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 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(6165), 18, + ACTIONS(4629), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26761] = 10, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(4631), 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, + [35177] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -388025,35 +396770,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3537), 4, + STATE(3679), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6163), 13, + ACTIONS(6611), 12, anon_sym_COLON, - anon_sym_as, 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(6165), 16, + ACTIONS(6613), 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_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -388061,9 +396803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [26823] = 10, - ACTIONS(3), 1, - sym_line_comment, + [35236] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -388076,36 +396816,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3538), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3680), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3543), 12, + ACTIONS(3661), 12, anon_sym_COLON, - anon_sym_as, 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(3541), 18, + ACTIONS(3663), 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_RBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -388113,9 +396852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [26885] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35295] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388126,46 +396863,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6615), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3539), 4, + STATE(3681), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3690), 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(3688), 16, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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_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, - [26947] = 27, + 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(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, + [35356] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388176,67 +396913,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6320), 1, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2409), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, sym_long_identifier, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3540), 4, + STATE(3682), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [27043] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4579), 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(4581), 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, + [35431] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388247,48 +396970,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3541), 4, + STATE(3683), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3609), 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(3607), 16, + ACTIONS(2908), 6, + 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_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, - [27105] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(2910), 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, + [35506] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388299,50 +397027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3542), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3684), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6431), 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(6433), 17, - anon_sym_EQ, + ACTIONS(4458), 6, + 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_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, - [27167] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4460), 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, + [35579] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388353,46 +397083,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3543), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3685), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 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(3720), 18, + ACTIONS(4549), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [27229] = 10, - 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(4551), 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, + [35654] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388403,46 +397140,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3544), 4, + STATE(3686), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6435), 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(6437), 17, - anon_sym_EQ, + ACTIONS(2882), 6, + 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_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, - [27291] = 10, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(2886), 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, + [35729] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -388458,35 +397202,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3545), 4, + STATE(3687), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 12, + ACTIONS(3419), 12, anon_sym_COLON, - anon_sym_as, 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(3028), 17, + ACTIONS(3421), 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_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -388494,9 +397235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [27353] = 10, - ACTIONS(3), 1, - sym_line_comment, + [35788] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -388509,36 +397248,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3546), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3688), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 12, + ACTIONS(3545), 12, anon_sym_COLON, - anon_sym_as, 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(3706), 18, + ACTIONS(3543), 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_RBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -388546,7 +397284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [27415] = 26, + [35847] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388557,66 +397295,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6439), 1, - sym_identifier, - ACTIONS(6442), 1, - anon_sym_LBRACK_LT, - ACTIONS(6445), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym__, - ACTIONS(6451), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, - anon_sym_POUND, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5348), 1, - sym_long_identifier, - STATE(5650), 1, - sym__attribute_set, - STATE(5690), 1, - sym__type, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + ACTIONS(6567), 1, + anon_sym_DOT, + STATE(3675), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6457), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3547), 5, + STATE(3689), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_curried_spec_repeat1, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [27509] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(2986), 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(2988), 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, + [35910] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388627,48 +397346,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3548), 4, + STATE(3690), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 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(3395), 16, + ACTIONS(4793), 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_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, - [27571] = 10, - 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(4795), 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, + [35985] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388679,48 +397403,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3549), 4, + STATE(3691), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 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(3603), 16, + ACTIONS(2900), 6, + 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_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, - [27633] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(2902), 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, + [36060] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388731,48 +397460,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6541), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_DASH_GT, + ACTIONS(6547), 1, + anon_sym_STAR, + ACTIONS(6549), 1, + anon_sym_LT2, + ACTIONS(6551), 1, + anon_sym_LBRACK_RBRACK, + STATE(3708), 1, + aux_sym_compound_type_repeat1, + STATE(3722), 1, + sym_type_arguments, + STATE(3739), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3550), 4, + STATE(3692), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 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(3552), 16, + ACTIONS(4545), 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_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, - [27695] = 10, - 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(4547), 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, + [36135] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388783,50 +397517,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6618), 1, + anon_sym_or, + STATE(3694), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3551), 4, + STATE(3693), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 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(3710), 16, + ACTIONS(2981), 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_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, - [27757] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + ACTIONS(2979), 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, + [36198] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388837,100 +397568,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3552), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3609), 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(3607), 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(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6618), 1, + anon_sym_or, + STATE(3681), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [27819] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3553), 4, + STATE(3694), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 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(3603), 18, + ACTIONS(2960), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [27881] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + ACTIONS(2962), 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, + [36261] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388941,46 +397619,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3554), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3695), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 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(3552), 18, + ACTIONS(2992), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [27943] = 10, - 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(2990), 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, + [36320] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -388991,50 +397668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6602), 1, + anon_sym_DOT, + STATE(3714), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3555), 4, + STATE(3696), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 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(2526), 16, + ACTIONS(2986), 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_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, - [28005] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(2988), 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, + [36382] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389045,46 +397718,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3556), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6620), 1, + anon_sym_DOT, + STATE(3711), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3697), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 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(3395), 18, + ACTIONS(2954), 10, + anon_sym_EQ, anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28067] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2956), 13, + 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_of, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [36444] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389095,50 +397768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3557), 4, + STATE(3698), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 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(3507), 16, + ACTIONS(4629), 6, + 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_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, - [28129] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4631), 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, + [36518] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389149,98 +397824,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3558), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3663), 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(3661), 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(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6622), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28191] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3559), 4, + STATE(3699), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 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(3397), 18, + ACTIONS(3058), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28253] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3060), 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, + [36578] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389251,50 +397873,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3560), 4, + STATE(3700), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 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(3537), 16, + ACTIONS(2981), 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_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, - [28315] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(2979), 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, + [36636] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389305,46 +397921,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3561), 4, + ACTIONS(4593), 1, + anon_sym_let, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6624), 1, + anon_sym_new, + ACTIONS(6630), 1, + anon_sym_static, + ACTIONS(6633), 1, + anon_sym_member, + ACTIONS(6636), 1, + anon_sym_abstract, + ACTIONS(6639), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4454), 1, + sym_member_defn, + STATE(5247), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6627), 2, + anon_sym_default, + anon_sym_override, + STATE(3701), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 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(3401), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28377] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym__member_defns_repeat1, + ACTIONS(4591), 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, + [36722] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389355,50 +397983,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3562), 4, + STATE(3702), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6460), 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(6462), 17, - anon_sym_EQ, + ACTIONS(2992), 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_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, - [28439] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + ACTIONS(2990), 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, + [36780] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389409,46 +398031,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3563), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3703), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 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(3735), 18, + ACTIONS(4793), 6, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28501] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4795), 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, + [36854] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389459,50 +398087,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3564), 4, + STATE(3704), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6464), 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(6466), 17, - anon_sym_EQ, + ACTIONS(3044), 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_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, - [28563] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + ACTIONS(3046), 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, + [36912] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389513,48 +398135,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3565), 4, + ACTIONS(4713), 1, + anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(3701), 1, + aux_sym__member_defns_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4454), 1, + sym_member_defn, + STATE(5247), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3705), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 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(3413), 18, + ACTIONS(4711), 17, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28625] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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, + [36984] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389565,48 +398190,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3566), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3706), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 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(3417), 18, + ACTIONS(4549), 6, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28687] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4551), 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, + [37058] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389617,46 +398246,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3567), 4, + ACTIONS(4735), 1, + anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(3705), 1, + aux_sym__member_defns_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4414), 1, + sym_additional_constr_defn, + STATE(4454), 1, + sym_member_defn, + STATE(5247), 1, + sym_attributes, + STATE(8256), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3707), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 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(3677), 18, + ACTIONS(4733), 17, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28749] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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, + [37130] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389667,48 +398301,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6547), 1, + anon_sym_STAR, + STATE(3717), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3568), 4, + STATE(3708), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6468), 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(6470), 17, - anon_sym_EQ, + ACTIONS(3015), 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_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, - [28811] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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(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, + [37192] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389719,46 +398351,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3569), 4, + STATE(3709), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 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(3653), 16, + ACTIONS(4545), 6, + 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_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, - [28873] = 27, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4547), 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, + [37266] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389769,67 +398407,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6304), 1, - sym_identifier, - ACTIONS(6306), 1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(6308), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6642), 1, + anon_sym_EQ, + ACTIONS(6644), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6314), 1, - anon_sym_POUND, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3880), 1, - sym__type, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, - STATE(5323), 1, + ACTIONS(6646), 1, + anon_sym_with, + ACTIONS(6648), 1, + anon_sym_new, + ACTIONS(6652), 1, + anon_sym_static, + ACTIONS(6654), 1, + anon_sym_member, + ACTIONS(6656), 1, + anon_sym_interface, + ACTIONS(6658), 1, + anon_sym_abstract, + ACTIONS(6660), 1, + anon_sym_val, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(5650), 1, + STATE(4224), 1, sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + STATE(4356), 1, + sym_member_defn, + STATE(5061), 1, + sym_additional_constr_defn, + STATE(5207), 1, + sym_attributes, + STATE(5917), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6033), 1, + sym_interface_implementation, + STATE(6091), 1, + sym__type_defn_elements, + STATE(6103), 1, + sym__member_defns, + STATE(6164), 1, + sym_type_extension_elements, + STATE(6500), 1, + sym_access_modifier, + STATE(8223), 1, + sym_primary_constr_args, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3570), 4, + ACTIONS(6650), 2, + anon_sym_default, + anon_sym_override, + STATE(3710), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [28969] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37368] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389840,50 +398477,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6662), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3571), 4, + STATE(3711), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3543), 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(3541), 16, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 10, + anon_sym_EQ, anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + 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_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, - [29031] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2964), 13, + 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_of, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [37428] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389894,46 +398526,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3572), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_DASH_GT, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6561), 1, + anon_sym_LT2, + ACTIONS(6563), 1, + anon_sym_LBRACK_RBRACK, + STATE(3741), 1, + aux_sym_compound_type_repeat1, + STATE(3774), 1, + sym_type_arguments, + STATE(3776), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3712), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 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(3421), 18, + ACTIONS(4579), 6, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [29093] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(4581), 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, + [37502] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389944,50 +398582,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6665), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3573), 4, + STATE(3713), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6472), 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(6474), 17, - anon_sym_EQ, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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_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, - [29155] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(2964), 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, + [37562] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -389998,48 +398631,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3574), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6602), 1, + anon_sym_DOT, + STATE(3713), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3714), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 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(3425), 18, + ACTIONS(2954), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [29217] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(2956), 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, + [37624] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390050,46 +398681,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3575), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3715), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 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(3429), 18, + ACTIONS(2966), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [29279] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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(2964), 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, + [37682] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390100,46 +398729,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6644), 1, + anon_sym_LPAREN, + ACTIONS(6668), 1, + anon_sym_EQ, + ACTIONS(6670), 1, + anon_sym_with, + ACTIONS(6672), 1, + anon_sym_new, + ACTIONS(6676), 1, + anon_sym_static, + ACTIONS(6678), 1, + anon_sym_member, + ACTIONS(6680), 1, + anon_sym_interface, + ACTIONS(6682), 1, + anon_sym_abstract, + ACTIONS(6684), 1, + anon_sym_val, + STATE(2588), 1, + sym_member_defn, + STATE(2759), 1, + sym_additional_constr_defn, + STATE(2920), 1, + aux_sym__object_expression_inner_repeat1, + STATE(2924), 1, + sym_interface_implementation, + STATE(2952), 1, + sym__member_defns, + STATE(2955), 1, + sym__type_defn_elements, + STATE(2957), 1, + sym_type_extension_elements, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5212), 1, + sym_attributes, + STATE(6504), 1, + sym_access_modifier, + STATE(8203), 1, + sym_primary_constr_args, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3576), 4, + ACTIONS(6674), 2, + anon_sym_default, + anon_sym_override, + STATE(3716), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3642), 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(3644), 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, - [29341] = 27, + [37784] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390150,65 +398799,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6396), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3649), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + ACTIONS(6686), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3577), 4, + STATE(3717), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [29437] = 27, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 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(2886), 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, + [37844] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390219,67 +398848,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6352), 1, - sym_identifier, - ACTIONS(6354), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6644), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3811), 1, - sym__static_type_identifier, - STATE(3863), 1, - sym__type, - STATE(4044), 1, - sym_type_argument, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4349), 1, - sym_long_identifier, - STATE(5323), 1, + ACTIONS(6689), 1, + anon_sym_EQ, + ACTIONS(6691), 1, + anon_sym_with, + ACTIONS(6693), 1, + anon_sym_new, + ACTIONS(6697), 1, + anon_sym_static, + ACTIONS(6699), 1, + anon_sym_member, + ACTIONS(6701), 1, + anon_sym_interface, + ACTIONS(6703), 1, + anon_sym_abstract, + ACTIONS(6705), 1, + anon_sym_val, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(5650), 1, + STATE(4224), 1, sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + STATE(4445), 1, + sym_member_defn, + STATE(5159), 1, + sym_additional_constr_defn, + STATE(5195), 1, + sym_attributes, + STATE(5922), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6062), 1, + sym_interface_implementation, + STATE(6188), 1, + sym__type_defn_elements, + STATE(6189), 1, + sym__member_defns, + STATE(6372), 1, + sym_type_extension_elements, + STATE(6484), 1, + sym_access_modifier, + STATE(8265), 1, + sym_primary_constr_args, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3578), 4, + ACTIONS(6695), 2, + anon_sym_default, + anon_sym_override, + STATE(3718), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [29533] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37946] = 32, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390290,48 +398918,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6186), 1, + anon_sym_interface, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6644), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, + anon_sym_EQ, + ACTIONS(6709), 1, + anon_sym_with, + ACTIONS(6711), 1, + anon_sym_static, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4373), 1, + sym_member_defn, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5178), 1, + sym_attributes, + STATE(5894), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + STATE(6094), 1, + sym_type_extension_elements, + STATE(6099), 1, + sym__type_defn_elements, + STATE(6149), 1, + sym__member_defns, + STATE(6496), 1, + sym_access_modifier, + STATE(8245), 1, + sym_primary_constr_args, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3579), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(3719), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 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(3632), 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, - [29595] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38048] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390342,50 +398988,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3580), 4, + STATE(3720), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3626), 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(3628), 16, + ACTIONS(3074), 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_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, - [29657] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + anon_sym_POUNDelse, + ACTIONS(3076), 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, + [38105] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390396,98 +399035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3581), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3454), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(3452), 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(6715), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(8062), 1, + sym_types, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_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] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3582), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3721), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 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(3456), 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_RBRACE, - aux_sym_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] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38184] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390498,46 +399093,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3583), 4, + STATE(3722), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 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(3613), 16, + ACTIONS(3070), 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_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, - [29843] = 27, + 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(3072), 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, + [38241] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390548,54 +399140,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6330), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3862), 1, + ACTIONS(6717), 1, + anon_sym_GT, + STATE(4925), 1, sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4288), 1, + STATE(5180), 1, sym__type, - STATE(4357), 1, + STATE(5222), 1, sym_type_argument, - STATE(4406), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + STATE(7929), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3584), 4, + STATE(3723), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -390606,11 +399186,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [29939] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_anon_record_type, + [38320] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390621,100 +399198,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3585), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3462), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5554), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6719), 1, sym_identifier, - ACTIONS(3460), 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, + STATE(4185), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(4669), 1, + sym_union_type_field, + STATE(4895), 1, + sym_union_type_fields, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30001] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - STATE(3586), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3724), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 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(3507), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30063] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38399] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390725,44 +399256,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3587), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3725), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 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(3468), 18, + ACTIONS(3058), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30125] = 27, + 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(3060), 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, + [38456] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390773,54 +399303,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3777), 1, - sym_attributes, - STATE(3879), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6721), 1, + anon_sym_GT, + STATE(4925), 1, sym__static_type_identifier, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4223), 1, + STATE(5180), 1, sym__type, - STATE(4301), 1, + STATE(5222), 1, sym_type_argument, - STATE(4382), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + STATE(8372), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3588), 4, + STATE(3726), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -390831,11 +399349,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [30221] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_anon_record_type, + [38535] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390846,46 +399361,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3589), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3690), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(3688), 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(6723), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7679), 1, + sym_types, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30283] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3727), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38614] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390896,48 +399419,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6507), 1, + sym_identifier, + STATE(3994), 1, + sym_argument_name_spec, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5753), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3590), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3728), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6476), 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(6478), 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_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, - [30345] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38693] = 22, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -390948,48 +399477,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6574), 1, + anon_sym_y, + ACTIONS(6576), 1, + anon_sym_uy, + ACTIONS(6578), 1, + anon_sym_s, + ACTIONS(6580), 1, + anon_sym_us, + ACTIONS(6584), 1, + aux_sym_uint32_token1, + ACTIONS(6586), 1, + anon_sym_n, + ACTIONS(6588), 1, + anon_sym_un, + ACTIONS(6592), 1, + aux_sym_uint64_token1, + ACTIONS(6725), 1, + anon_sym_l, + ACTIONS(6727), 1, + anon_sym_L, + ACTIONS(6729), 1, + anon_sym_lf, + ACTIONS(6731), 1, + anon_sym_LF, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3591), 4, + STATE(3729), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 13, - anon_sym_COLON, + ACTIONS(2526), 11, + anon_sym_EQ, 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(3735), 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_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, - [30407] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [38774] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391000,48 +399536,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3592), 4, + STATE(3730), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3663), 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(3661), 16, + ACTIONS(2981), 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_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, - [30469] = 10, - 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, + ACTIONS(2979), 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, + [38831] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391052,48 +399583,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3593), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3726), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, 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(3728), 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, - [30531] = 10, - ACTIONS(5), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6733), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7562), 1, + sym_types, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3731), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38910] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391104,48 +399641,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6735), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7483), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3594), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3732), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6480), 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(6482), 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_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, - [30593] = 10, - ACTIONS(3), 1, - sym_line_comment, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [38989] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -391158,14 +399701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3595), 4, + ACTIONS(6739), 1, + anon_sym_LBRACK_LT, + STATE(3878), 1, + sym__attribute_set, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3733), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 12, - anon_sym_COLON, - anon_sym_as, + aux_sym_attributes_repeat1, + ACTIONS(6737), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -391176,18 +399725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3653), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(6742), 11, anon_sym_QMARK, 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_RBRACE, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -391195,11 +399737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [30655] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39050] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391210,48 +399748,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3596), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3642), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5554), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6719), 1, 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, + STATE(4185), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(4669), 1, + sym_union_type_field, + STATE(4899), 1, + sym_union_type_fields, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30717] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3734), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [39129] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391262,48 +399806,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3597), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6744), 1, + anon_sym_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3735), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 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(3632), 18, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 9, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30779] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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(2886), 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, + [39188] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391314,48 +399854,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3598), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3626), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(3628), 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(6747), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7208), 1, + sym_types, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30841] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3736), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [39267] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391366,48 +399912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3599), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6749), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3737), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 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(3613), 18, + ACTIONS(3058), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30903] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(3060), 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, + [39326] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391418,46 +399960,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3600), 4, + ACTIONS(5221), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6751), 1, + anon_sym_LPAREN, + ACTIONS(6753), 1, + anon_sym__, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, + anon_sym_POUND, + STATE(406), 1, + sym__type, + STATE(2923), 1, + sym__static_type_identifier, + STATE(3025), 1, + sym_type_argument, + STATE(3094), 1, + sym_long_identifier, + STATE(6582), 1, + sym__object_construction, + STATE(6622), 1, + sym__base_call, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6759), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3738), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 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(3070), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [30965] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(3071), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [39405] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391468,48 +400018,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3601), 4, + STATE(3739), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 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(3673), 16, + ACTIONS(3054), 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_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, - [31027] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3048), 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, + [39462] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391520,50 +400065,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3602), 4, + STATE(3740), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 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(3714), 16, + ACTIONS(3066), 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_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, - [31089] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + anon_sym_POUNDelse, + ACTIONS(3068), 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, + [39519] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391574,46 +400112,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3603), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6559), 1, + anon_sym_STAR, + STATE(3735), 1, + aux_sym_compound_type_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3741), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 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(3714), 18, + ACTIONS(3015), 9, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [31151] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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(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, + [39580] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391624,48 +400161,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6761), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3604), 4, + STATE(3742), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 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(3397), 16, + ACTIONS(3082), 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_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, - [31213] = 10, - 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_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3084), 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, + [39639] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391676,48 +400209,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4713), 1, + anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(3760), 1, + aux_sym__member_defns_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4514), 1, + sym_member_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(5429), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3605), 4, + STATE(3743), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 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(3401), 16, + ACTIONS(4711), 16, + 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_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, - [31275] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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, + [39710] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391728,48 +400263,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4735), 1, + anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(3743), 1, + aux_sym__member_defns_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4514), 1, + sym_member_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(5429), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3606), 4, + STATE(3744), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6484), 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(6486), 17, - anon_sym_EQ, + ACTIONS(4733), 16, + 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_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, - [31337] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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, + [39781] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391780,48 +400317,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7780), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3607), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3745), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3074), 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(3070), 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, - [31399] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [39860] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391832,48 +400375,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6765), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7330), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3608), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3746), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6488), 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(6490), 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_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, - [31461] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [39939] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391884,48 +400433,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6767), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(7229), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3609), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3747), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 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(3413), 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, - [31523] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [40018] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391936,50 +400491,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3610), 4, + STATE(3748), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 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(3417), 16, + ACTIONS(2966), 11, + anon_sym_EQ, anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + 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_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, - [31585] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2964), 13, + 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_of, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [40075] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -391990,48 +400538,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3611), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3749), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 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(3710), 18, + ACTIONS(3064), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [31647] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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, + anon_sym_POUNDelse, + ACTIONS(3062), 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, + [40132] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392042,46 +400585,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3612), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3750), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 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(2526), 18, + ACTIONS(3094), 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, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [31709] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3092), 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, + [40189] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392092,46 +400632,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3613), 4, + STATE(3751), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 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(3677), 16, + ACTIONS(3098), 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_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, - [31771] = 27, + 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(3096), 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, + [40246] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392142,54 +400679,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6342), 1, - sym_identifier, - ACTIONS(6344), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3547), 1, - aux_sym_curried_spec_repeat1, - STATE(3657), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6769), 1, + anon_sym_GT, + STATE(4925), 1, sym__static_type_identifier, - STATE(3671), 1, + STATE(5180), 1, sym__type, - STATE(3705), 1, + STATE(5222), 1, sym_type_argument, - STATE(3765), 1, + STATE(5389), 1, sym_long_identifier, - STATE(3777), 1, - sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(5323), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, - STATE(6373), 1, - sym_argument_spec, - STATE(7479), 1, - sym_arguments_spec, + STATE(7091), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3614), 4, + STATE(3752), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -392200,9 +400725,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [31867] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_anon_record_type, + [40325] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392213,48 +400737,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3615), 4, + STATE(3753), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 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(3421), 16, + ACTIONS(3040), 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_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, - [31929] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3042), 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, + [40382] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392265,48 +400784,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6771), 1, + anon_sym_GT, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5180), 1, + sym__type, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(8151), 1, + sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3616), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3754), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 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(3425), 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, - [31991] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [40461] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392317,48 +400842,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3617), 4, + STATE(3755), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 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(3706), 16, + ACTIONS(3090), 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_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, - [32053] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3088), 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, + [40518] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392369,48 +400889,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3618), 4, + STATE(3756), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 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(3429), 16, + ACTIONS(3080), 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_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, - [32115] = 10, - 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, + anon_sym_POUNDelse, + ACTIONS(3078), 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, + [40575] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392421,50 +400936,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3619), 4, + STATE(3757), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3454), 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(3452), 16, + ACTIONS(2966), 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_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, - [32177] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + 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, + ACTIONS(2964), 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, + [40632] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392475,44 +400983,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3620), 4, + ACTIONS(5221), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6751), 1, + anon_sym_LPAREN, + ACTIONS(6753), 1, + anon_sym__, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, + anon_sym_POUND, + STATE(407), 1, + sym__type, + STATE(2923), 1, + sym__static_type_identifier, + STATE(3025), 1, + sym_type_argument, + STATE(3094), 1, + sym_long_identifier, + STATE(6582), 1, + sym__object_construction, + STATE(6622), 1, + sym__base_call, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6759), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3758), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 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(3702), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [32239] = 10, + STATE(3071), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [40711] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -392525,36 +401043,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + STATE(3733), 1, + aux_sym_attributes_repeat1, + STATE(3878), 1, + sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3621), 4, + STATE(3759), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6773), 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(3456), 16, + ACTIONS(6775), 12, 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, @@ -392564,9 +401079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [32301] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40772] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392577,48 +401090,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4593), 1, + anon_sym_let, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6777), 1, + anon_sym_new, + ACTIONS(6783), 1, + anon_sym_static, + ACTIONS(6786), 1, + anon_sym_member, + ACTIONS(6789), 1, + anon_sym_abstract, + ACTIONS(6792), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4514), 1, + sym_member_defn, + STATE(4543), 1, + sym_additional_constr_defn, + STATE(5429), 1, + sym_attributes, + STATE(8276), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3622), 4, + ACTIONS(6780), 2, + anon_sym_default, + anon_sym_override, + STATE(3760), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3462), 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(3460), 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, - [32363] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym__member_defns_repeat1, + ACTIONS(4591), 7, + sym__newline, + anon_sym_do, + anon_sym_let_BANG, + anon_sym_interface, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [40857] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392629,48 +401151,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3718), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6327), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3623), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3761), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 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(3640), 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, - [32425] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(6401), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [40939] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392681,17 +401210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6799), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3624), 4, + STATE(3762), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6492), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(3132), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -392699,30 +401230,23 @@ 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(6494), 17, + ACTIONS(3134), 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_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, - [32487] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40997] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392733,48 +401257,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3625), 4, + STATE(3763), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 13, + ACTIONS(3064), 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(3062), 12, + anon_sym_and, 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_with, + 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(3468), 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, - [32549] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41053] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392785,48 +401303,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3626), 4, + STATE(3764), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6496), 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(6498), 17, + ACTIONS(3094), 11, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_COLON, + aux_sym_access_modifier_token1, + 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_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, - [32611] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3092), 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, + [41109] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392837,50 +401349,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(2919), 1, + sym__type_defn_body, + STATE(3716), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3627), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3765), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6362), 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(6364), 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_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, - [32673] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(3011), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [41191] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392891,46 +401408,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3628), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3766), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3726), 12, + ACTIONS(3090), 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(3088), 12, + anon_sym_and, anon_sym_LPAREN, - anon_sym_null, + anon_sym_with, + 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, + [41247] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, sym_identifier, - ACTIONS(3728), 18, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + STATE(2915), 1, + sym__type_defn_body, + STATE(3716), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [32735] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3767), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3011), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [41329] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392941,48 +401513,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6817), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8051), 1, + sym_type_extension_elements, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3629), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3768), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 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(3702), 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, - [32797] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41425] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -392993,51 +401579,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6504), 1, - anon_sym_as, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3630), 4, + STATE(3769), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6500), 11, - anon_sym_COLON, - 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(6502), 17, - anon_sym_EQ, + ACTIONS(3058), 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_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, - [32861] = 10, - ACTIONS(3), 1, - sym_line_comment, - 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(3060), 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, + [41481] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393048,48 +401625,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3631), 4, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6819), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8073), 1, + sym_type_extension_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3770), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 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(3673), 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [32923] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41577] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393100,46 +401691,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3632), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6821), 1, + anon_sym_LT2, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3771), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 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(3537), 18, + ACTIONS(3082), 9, + 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_RBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [32985] = 10, - 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_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3084), 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, + [41635] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393150,48 +401738,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3633), 4, + STATE(3772), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 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(3720), 16, + ACTIONS(3066), 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_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, - [33047] = 10, - 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(3068), 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, + [41691] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393202,48 +401784,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3719), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6086), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3634), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3773), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6506), 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(6508), 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_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, - [33109] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(6102), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [41773] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393254,46 +401843,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3635), 4, + STATE(3774), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6510), 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(6512), 17, - anon_sym_EQ, + ACTIONS(3070), 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_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, - [33171] = 20, + 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(3072), 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, + [41829] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393304,47 +401889,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6516), 1, - anon_sym_with, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, - STATE(4447), 1, - sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3636), 4, + STATE(3775), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4817), 7, + ACTIONS(3074), 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(4819), 11, + ACTIONS(3076), 13, anon_sym_do, anon_sym_let, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -393354,7 +401923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [33252] = 20, + sym_identifier, + [41885] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393365,46 +401935,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6528), 1, - anon_sym_with, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, - sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, - STATE(4506), 1, - sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3637), 4, + STATE(3776), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4817), 6, + ACTIONS(3054), 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(4819), 11, + ACTIONS(3048), 13, anon_sym_do, anon_sym_let, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -393414,9 +401969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [33332] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_identifier, + [41941] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393427,45 +401981,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6538), 1, - anon_sym_DOT, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(405), 1, + sym__type, + STATE(2935), 1, + sym__static_type_identifier, + STATE(3054), 1, + sym_type_argument, + STATE(3081), 1, + sym_long_identifier, + STATE(6550), 1, + sym__object_construction, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3638), 4, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3777), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 12, - anon_sym_COLON, - 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(3507), 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, - [33394] = 17, + STATE(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [42017] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393476,40 +402037,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3639), 4, + STATE(3778), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4462), 7, + ACTIONS(3080), 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(4464), 12, + ACTIONS(3078), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -393522,7 +402071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [33468] = 12, + sym_identifier, + [42073] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393533,34 +402083,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym_or, - STATE(3648), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3640), 4, + STATE(3779), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 12, + ACTIONS(3090), 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(3026), 13, + ACTIONS(3088), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -393574,7 +402118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [33532] = 18, + [42129] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393585,41 +402129,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3641), 4, + STATE(3780), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 7, + ACTIONS(3040), 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(2928), 12, + ACTIONS(3042), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -393632,7 +402163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [33608] = 13, + sym_identifier, + [42185] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393643,23 +402175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6542), 1, - anon_sym_DOT, - STATE(3666), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3642), 4, + STATE(3781), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 11, + ACTIONS(3098), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, @@ -393670,8 +402196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2959), 13, + ACTIONS(3096), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -393685,7 +402210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [33674] = 11, + [42241] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393696,33 +402221,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6544), 1, - anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3643), 5, + STATE(3782), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 12, + ACTIONS(3094), 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(2977), 13, + ACTIONS(3092), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -393736,7 +402256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [33736] = 18, + [42297] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393747,54 +402267,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3644), 4, + STATE(3783), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 7, + ACTIONS(3064), 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(2886), 12, + ACTIONS(3062), 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_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [42353] = 30, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6823), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8160), 1, + sym_type_extension_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3784), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [42449] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3002), 1, + sym__type_defn_body, + STATE(3716), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3785), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3011), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [42531] = 30, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6825), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7789), 1, + sym_type_extension_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3786), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [42627] = 30, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6827), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7736), 1, + sym_type_extension_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3787), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [42723] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3718), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6300), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3788), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6401), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [42805] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3718), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5892), 1, + sym__type_defn_body, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3789), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6401), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [42887] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3718), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5818), 1, + sym__type_defn_body, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3790), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6401), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [42969] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(2992), 1, + sym__type_defn_body, + STATE(3716), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3791), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3011), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43051] = 30, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6829), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7153), 1, + sym_type_extension_elements, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [33812] = 18, + STATE(3792), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [43147] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393805,54 +402872,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6831), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7145), 1, + sym_type_extension_elements, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3645), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3793), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 7, - sym__newline, + [43243] = 30, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2916), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - [33888] = 25, + ACTIONS(6833), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7454), 1, + sym_type_extension_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3794), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [43339] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393863,61 +403004,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6547), 1, + ACTIONS(6795), 1, sym_identifier, - STATE(3777), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3719), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, sym_attributes, - STATE(4108), 1, - sym_argument_name_spec, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5323), 1, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5348), 1, - sym_long_identifier, - STATE(5650), 1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, sym__attribute_set, - STATE(5690), 1, - sym__type, - STATE(6829), 1, - sym_argument_spec, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6061), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3646), 4, + STATE(3795), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [33978] = 18, + STATE(6102), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43421] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393928,43 +403063,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(6518), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6835), 1, + anon_sym_EQ, + ACTIONS(6839), 1, + anon_sym_COLON, + ACTIONS(6841), 1, + anon_sym_DOT, + ACTIONS(6845), 1, + anon_sym_of, + STATE(4283), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2986), 4, anon_sym_DASH_GT, - ACTIONS(6520), 1, anon_sym_STAR, - ACTIONS(6522), 1, anon_sym_LT2, - ACTIONS(6524), 1, anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3647), 4, + ACTIONS(6837), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(3796), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 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(2912), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(6843), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -393974,8 +403105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [34054] = 12, + [43491] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -393986,48 +403116,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym_or, - STATE(3643), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3710), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5745), 1, + sym__type_defn_body, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3648), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3797), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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(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, - [34118] = 17, + STATE(6167), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43573] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394038,104 +403175,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3649), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4449), 7, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4451), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - [34192] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, + ACTIONS(6847), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7468), 1, + sym_type_extension_elements, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3650), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3798), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3690), 12, - anon_sym_COLON, - 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(3688), 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, - [34251] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43669] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394146,43 +403241,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3710), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5726), 1, + sym__type_defn_body, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3651), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3799), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 12, - anon_sym_COLON, - 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(3395), 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, - [34310] = 18, + STATE(6167), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43751] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394193,53 +403300,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6795), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3719), 1, + sym_type_name, + STATE(4653), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5668), 1, + sym__type_defn_body, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3652), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3800), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2912), 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, - [34385] = 18, + STATE(6102), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43833] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394250,55 +403359,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, + ACTIONS(6795), 1, sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3710), 1, + sym_type_name, + STATE(4653), 1, sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6150), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3653), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3801), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 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(4640), 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, - [34460] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(6167), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [43915] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394309,43 +403418,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6719), 1, + sym_identifier, + STATE(4185), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, + STATE(4773), 1, + sym_union_type_field, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3654), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3802), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 12, - anon_sym_COLON, - 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(3677), 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, - [34519] = 24, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [43991] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394356,59 +403474,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6549), 1, - anon_sym_y, - ACTIONS(6551), 1, - anon_sym_uy, - ACTIONS(6553), 1, - anon_sym_s, - ACTIONS(6555), 1, - anon_sym_us, - ACTIONS(6557), 1, - anon_sym_l, - ACTIONS(6559), 1, - aux_sym_uint32_token1, - ACTIONS(6561), 1, - anon_sym_n, - ACTIONS(6563), 1, - anon_sym_un, - ACTIONS(6565), 1, - anon_sym_L, - ACTIONS(6567), 1, - aux_sym_uint64_token1, - ACTIONS(6569), 1, - aux_sym_bignum_token1, - ACTIONS(6571), 1, - aux_sym_decimal_token1, - ACTIONS(6573), 1, - anon_sym_DOT2, - ACTIONS(6575), 1, - aux_sym_float_token1, + ACTIONS(6795), 1, + sym_identifier, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3710), 1, + sym_type_name, + STATE(4653), 1, + sym_long_identifier, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6138), 1, + sym__type_defn_body, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3655), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3803), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [34606] = 18, + STATE(6167), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [44073] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394419,53 +403533,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, - sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3656), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2926), 6, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2928), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - [34681] = 12, + ACTIONS(6849), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7047), 1, + sym_type_extension_elements, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3804), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44169] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394476,47 +403599,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6577), 1, - anon_sym_or, - STATE(3658), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3657), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3028), 11, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(3026), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [34744] = 12, + ACTIONS(6851), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8153), 1, + sym_type_extension_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3805), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44265] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394527,47 +403665,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6577), 1, - anon_sym_or, - STATE(3674), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3658), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3015), 11, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(3017), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [34807] = 13, + ACTIONS(6853), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8195), 1, + sym_type_extension_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3806), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44361] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394578,48 +403731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6579), 1, - anon_sym_DOT, - STATE(3701), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3659), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2957), 10, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(2959), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [34872] = 10, + ACTIONS(6855), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8373), 1, + sym_type_extension_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3807), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44457] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394630,47 +403797,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3660), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3068), 12, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(3066), 14, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, - anon_sym_or, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [34931] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6857), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7095), 1, + sym_type_extension_elements, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3808), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44553] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394681,43 +403863,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, + anon_sym_with, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(6859), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, + STATE(8412), 1, + sym_type_extension_elements, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3661), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3809), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6581), 12, - anon_sym_COLON, - 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(6583), 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, - [34990] = 18, + [44649] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394728,53 +403929,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6795), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(3719), 1, + sym_type_name, + STATE(4653), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, + STATE(5624), 1, + sym_attributes, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5676), 1, + sym__type_defn_body, + STATE(5813), 1, + sym_access_modifier, + STATE(5902), 1, + sym__attribute_set, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8367), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3662), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2884), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2886), 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, - [35065] = 18, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3810), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6102), 8, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_interface_type_defn, + sym_anon_type_defn, + [44731] = 30, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394785,53 +403988,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, - sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3663), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2914), 6, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2916), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6801), 1, anon_sym_with, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - [35140] = 11, + ACTIONS(6861), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7410), 1, + sym__type_defn_elements, + STATE(7626), 1, + sym_type_extension_elements, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3811), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44827] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394842,34 +404054,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6585), 1, - anon_sym_DOT, + ACTIONS(6863), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3664), 5, + STATE(3812), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 11, - sym__newline, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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, anon_sym_POUNDelse, - ACTIONS(2988), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2990), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -394879,11 +404088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [35201] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [44884] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394894,43 +404100,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + sym_identifier, + STATE(3658), 1, + sym__type, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3665), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3813), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 12, - anon_sym_COLON, - 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(3735), 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, - [35260] = 12, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [44957] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394941,47 +404154,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6542), 1, - anon_sym_DOT, - STATE(3664), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, + sym_identifier, + STATE(4190), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3666), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3814), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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(2973), 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, - [35323] = 10, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45030] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -394992,47 +404208,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5530), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3667), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3815), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 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(2977), 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, - [35382] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45103] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395043,43 +404262,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5339), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3668), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3816), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6588), 12, - anon_sym_COLON, - 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(6590), 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, - [35441] = 18, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45176] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395090,55 +404316,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3669), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4706), 7, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4708), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - [35516] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6870), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3817), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [45269] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395149,43 +404380,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, + sym_identifier, + STATE(4180), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3670), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3818), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 12, - anon_sym_COLON, - 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(3507), 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, - [35575] = 17, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45342] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395196,52 +404434,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(4204), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3671), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3819), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4449), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4451), 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, - [35648] = 12, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45415] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395252,47 +404488,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6542), 1, - anon_sym_DOT, - STATE(3666), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(412), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3672), 4, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3820), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [35711] = 18, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45488] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395303,53 +404542,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(440), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3673), 4, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3821), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4660), 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(4662), 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, - [35786] = 11, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45561] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395360,46 +404596,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6592), 1, - anon_sym_or, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5588), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3674), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3822), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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(2977), 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, - [35847] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45634] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395410,53 +404650,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, + STATE(5490), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3675), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3823), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 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(4646), 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, - [35922] = 18, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45707] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395467,53 +404704,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_DASH_GT, - ACTIONS(6520), 1, - anon_sym_STAR, - ACTIONS(6522), 1, - anon_sym_LT2, - ACTIONS(6524), 1, - anon_sym_LBRACK_RBRACK, - STATE(3688), 1, - aux_sym_compound_type_repeat1, - STATE(3703), 1, - sym_long_identifier, - STATE(3709), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3676), 4, + STATE(3824), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 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(4614), 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, - [35997] = 17, + ACTIONS(3132), 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, + sym_identifier, + ACTIONS(3134), 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, + [45762] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395524,52 +404749,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(4901), 1, + sym__type, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3677), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3825), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4462), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4464), 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, - [36070] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45835] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395580,52 +404803,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(4909), 1, + sym__type, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3678), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3826), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4660), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4662), 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, - [36144] = 11, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45908] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395636,45 +404857,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6595), 1, - anon_sym_DOT, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, + anon_sym_LPAREN, + ACTIONS(6884), 1, + anon_sym__, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, + anon_sym_POUND, + STATE(409), 1, + sym__type, + STATE(2995), 1, + sym__static_type_identifier, + STATE(3077), 1, + sym_type_argument, + STATE(3113), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3679), 5, + ACTIONS(6890), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3827), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 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(2988), 13, - 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_of, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [36204] = 32, + STATE(3099), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [45981] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395685,66 +404911,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6598), 1, - anon_sym_EQ, - ACTIONS(6600), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6602), 1, - anon_sym_with, - ACTIONS(6604), 1, - anon_sym_new, - ACTIONS(6608), 1, - anon_sym_static, - ACTIONS(6610), 1, - anon_sym_member, - ACTIONS(6612), 1, - anon_sym_interface, - ACTIONS(6614), 1, - anon_sym_abstract, - ACTIONS(6616), 1, - anon_sym_val, - STATE(2559), 1, - sym_member_defn, - STATE(2770), 1, - sym_additional_constr_defn, - STATE(2908), 1, - aux_sym__object_expression_inner_repeat1, - STATE(2916), 1, - sym_interface_implementation, - STATE(2942), 1, - sym__type_defn_elements, - STATE(2961), 1, - sym__member_defns, - STATE(2966), 1, - sym_type_extension_elements, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5132), 1, - sym_attributes, - STATE(6483), 1, - sym_access_modifier, - STATE(8032), 1, - sym_primary_constr_args, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5551), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6606), 2, - anon_sym_default, - anon_sym_override, - STATE(3680), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3828), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [36306] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46054] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395755,52 +404965,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3682), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3681), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3829), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4614), 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, - [36380] = 32, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46127] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395811,66 +405019,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6600), 1, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(6618), 1, - anon_sym_EQ, - ACTIONS(6620), 1, - anon_sym_with, - ACTIONS(6622), 1, - anon_sym_new, - ACTIONS(6626), 1, - anon_sym_static, - ACTIONS(6628), 1, - anon_sym_member, - ACTIONS(6630), 1, - anon_sym_interface, - ACTIONS(6632), 1, - anon_sym_abstract, - ACTIONS(6634), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4347), 1, - sym_member_defn, - STATE(5040), 1, - sym_additional_constr_defn, - STATE(5161), 1, - sym_attributes, - STATE(5794), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5941), 1, - sym_interface_implementation, - STATE(6019), 1, - sym__type_defn_elements, - STATE(6066), 1, - sym__member_defns, - STATE(6117), 1, - sym_type_extension_elements, - STATE(6450), 1, - sym_access_modifier, - STATE(8089), 1, - sym_primary_constr_args, + ACTIONS(6896), 1, + anon_sym__, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, + sym__static_type_identifier, + STATE(4581), 1, + sym_type_argument, + STATE(4596), 1, + sym__type, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6624), 2, - anon_sym_default, - anon_sym_override, - STATE(3682), 4, + ACTIONS(6902), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3830), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [36482] = 11, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46200] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395881,33 +405073,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6636), 1, - anon_sym_COLON_GT, + ACTIONS(6904), 1, + anon_sym_or, + STATE(4011), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3683), 4, + STATE(3831), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 11, + ACTIONS(2981), 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, - anon_sym_POUNDelse, - ACTIONS(3064), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2979), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -395917,9 +405108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [36542] = 18, + [46259] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395930,52 +405120,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3685), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3684), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3832), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4640), 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, - [36616] = 32, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46332] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -395986,66 +405174,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6600), 1, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(6638), 1, - anon_sym_EQ, - ACTIONS(6640), 1, - anon_sym_with, - ACTIONS(6642), 1, - anon_sym_new, - ACTIONS(6646), 1, - anon_sym_static, - ACTIONS(6648), 1, - anon_sym_member, - ACTIONS(6650), 1, - anon_sym_interface, - ACTIONS(6652), 1, - anon_sym_abstract, - ACTIONS(6654), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4372), 1, - sym_member_defn, - STATE(5130), 1, - sym_attributes, - STATE(5176), 1, - sym_additional_constr_defn, - STATE(5859), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6017), 1, - sym_interface_implementation, - STATE(6193), 1, - sym_type_extension_elements, - STATE(6212), 1, - sym__type_defn_elements, - STATE(6222), 1, - sym__member_defns, - STATE(6436), 1, - sym_access_modifier, - STATE(8129), 1, - sym_primary_constr_args, + ACTIONS(6896), 1, + anon_sym__, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, + sym__static_type_identifier, + STATE(4581), 1, + sym_type_argument, + STATE(4610), 1, + sym__type, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6644), 2, - anon_sym_default, - anon_sym_override, - STATE(3685), 4, + ACTIONS(6902), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3833), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [36718] = 18, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46405] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396056,52 +405228,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3690), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3686), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3834), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4646), 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, - [36792] = 17, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46478] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396112,51 +405282,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4512), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3690), 1, - aux_sym__member_defns_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4370), 1, - sym_member_defn, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(5256), 1, - sym_attributes, - STATE(8121), 1, - sym_access_modifier, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(423), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3687), 4, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3835), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 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, - [36864] = 12, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46551] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396167,46 +405336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6520), 1, - anon_sym_STAR, - STATE(3691), 1, - aux_sym_compound_type_repeat1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, + sym_identifier, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4213), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3688), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3836), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 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(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, - [36926] = 10, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46624] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396217,44 +405390,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(417), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3689), 4, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3837), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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(3066), 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, - [36984] = 24, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46697] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396265,58 +405444,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4528), 1, - anon_sym_let, - ACTIONS(4530), 1, - anon_sym_LBRACK_LT, - ACTIONS(4533), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6656), 1, - anon_sym_new, - ACTIONS(6662), 1, - anon_sym_static, - ACTIONS(6665), 1, - anon_sym_member, - ACTIONS(6668), 1, - anon_sym_abstract, - ACTIONS(6671), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4370), 1, - sym_member_defn, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(5256), 1, - sym_attributes, - STATE(8121), 1, - sym_access_modifier, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + sym_identifier, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3692), 1, + sym__type, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6659), 2, - anon_sym_default, - anon_sym_override, - STATE(3690), 5, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3838), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - ACTIONS(4526), 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, - [37070] = 11, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46770] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396327,45 +405498,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6674), 1, - anon_sym_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5649), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3691), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3839), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 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(2916), 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, - [37130] = 32, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [46843] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396378,64 +405554,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, + ACTIONS(6249), 1, + sym__dedent, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6177), 1, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6179), 1, + ACTIONS(6811), 1, anon_sym_interface, - ACTIONS(6181), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6183), 1, + ACTIONS(6815), 1, anon_sym_val, - ACTIONS(6600), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_EQ, - ACTIONS(6679), 1, - anon_sym_with, - ACTIONS(6681), 1, - anon_sym_static, - STATE(3804), 1, + STATE(3817), 1, + aux_sym_interface_type_defn_repeat1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4354), 1, + STATE(4411), 1, sym_member_defn, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5126), 1, - sym_attributes, - STATE(5781), 1, + STATE(4875), 1, aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, - STATE(6005), 1, + STATE(5158), 1, sym__member_defns, - STATE(6022), 1, - sym_type_extension_elements, - STATE(6059), 1, + STATE(5172), 1, sym__type_defn_elements, - STATE(6445), 1, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, sym_access_modifier, - STATE(8110), 1, - sym_primary_constr_args, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(3692), 4, + STATE(3840), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [37232] = 10, + [46936] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396446,44 +405616,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + ACTIONS(6553), 1, + sym_identifier, + STATE(3683), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3693), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3841), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [37290] = 17, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47009] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396494,51 +405670,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4656), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3687), 1, - aux_sym__member_defns_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4370), 1, - sym_member_defn, - STATE(4438), 1, - sym_additional_constr_defn, - STATE(5256), 1, - sym_attributes, - STATE(8121), 1, - sym_access_modifier, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + ACTIONS(6553), 1, + sym_identifier, + STATE(3686), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3694), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3842), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4654), 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, - [37362] = 11, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47082] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396549,45 +405724,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6683), 1, - anon_sym_DOT, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + ACTIONS(6553), 1, + sym_identifier, + STATE(3691), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3695), 5, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3843), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 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(2988), 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, - [37422] = 18, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47155] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396598,52 +405778,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6526), 1, + ACTIONS(6304), 1, + anon_sym_LPAREN, + ACTIONS(6306), 1, + anon_sym__, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, + anon_sym_POUND, + ACTIONS(6553), 1, sym_identifier, - ACTIONS(6530), 1, - anon_sym_DASH_GT, - ACTIONS(6532), 1, - anon_sym_STAR, - ACTIONS(6534), 1, - anon_sym_LT2, - ACTIONS(6536), 1, - anon_sym_LBRACK_RBRACK, - STATE(3708), 1, - aux_sym_compound_type_repeat1, - STATE(3755), 1, + STATE(3668), 1, + sym__type, + STATE(3693), 1, + sym__static_type_identifier, + STATE(3737), 1, + sym_type_argument, + STATE(3771), 1, sym_long_identifier, - STATE(3757), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3696), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3844), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4706), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(4708), 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, - [37496] = 10, + STATE(3769), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47228] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396654,44 +405832,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2115), 1, + sym__type, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3697), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3845), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 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(2977), 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, - [37554] = 12, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47301] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396702,46 +405886,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - STATE(3679), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5559), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3698), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3846), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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(2973), 13, - 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_of, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [37616] = 12, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47374] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396752,46 +405940,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6579), 1, - anon_sym_DOT, - STATE(3701), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5600), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3699), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3847), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [37678] = 10, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47447] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396802,44 +405994,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4202), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3700), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3848), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 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(2988), 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, - [37736] = 12, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47520] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396850,46 +406048,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6579), 1, - anon_sym_DOT, - STATE(3695), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4205), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3701), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3849), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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(2973), 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, - [37798] = 10, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47593] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396900,43 +406102,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5629), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3702), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3850), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 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(3093), 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(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47666] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + ACTIONS(6906), 1, sym_identifier, - [37855] = 10, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4206), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3851), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47739] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396947,43 +406210,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6218), 1, + anon_sym_LPAREN, + ACTIONS(6220), 1, + anon_sym__, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4203), 1, + sym__type, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3703), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3852), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 11, - sym__newline, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [47812] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(3072), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [37912] = 10, + ACTIONS(6908), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3853), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [47905] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -396994,31 +406328,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3704), 4, + ACTIONS(2904), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(3854), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 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(3042), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2906), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -397028,9 +406370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [37969] = 11, + [47976] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397041,44 +406381,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6688), 1, - anon_sym_COLON_GT, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3705), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3062), 10, - sym__newline, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(4715), 1, 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(3064), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [38028] = 10, + ACTIONS(6918), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3855), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [48069] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397089,43 +406447,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3706), 4, + STATE(3856), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 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(3099), 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(6920), 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, sym_identifier, - [38085] = 10, + ACTIONS(6922), 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, + [48124] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397136,43 +406490,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5560), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3707), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3857), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 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(3101), 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, - [38142] = 12, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48197] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397183,45 +406544,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6532), 1, - anon_sym_STAR, - STATE(3717), 1, - aux_sym_compound_type_repeat1, + STATE(4049), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3708), 4, + ACTIONS(6773), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3858), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 9, - sym__newline, - anon_sym_LBRACK_LT, + ACTIONS(6775), 17, + 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_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__, anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, + anon_sym_exception, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [38203] = 10, + [48258] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397232,43 +406592,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5606), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3709), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3859), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 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(3082), 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, - [38260] = 10, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48331] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397279,43 +406646,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5554), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3710), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3860), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 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(2988), 13, - 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_of, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [38317] = 22, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48404] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397326,55 +406700,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6549), 1, - anon_sym_y, - ACTIONS(6551), 1, - anon_sym_uy, - ACTIONS(6553), 1, - anon_sym_s, - ACTIONS(6555), 1, - anon_sym_us, - ACTIONS(6559), 1, - aux_sym_uint32_token1, - ACTIONS(6561), 1, - anon_sym_n, - ACTIONS(6563), 1, - anon_sym_un, - ACTIONS(6567), 1, - aux_sym_uint64_token1, - ACTIONS(6690), 1, - anon_sym_l, - ACTIONS(6692), 1, - anon_sym_L, - ACTIONS(6694), 1, - anon_sym_lf, - ACTIONS(6696), 1, - anon_sym_LF, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5582), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3711), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3861), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [38398] = 10, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48477] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397385,43 +406754,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2561), 1, + sym_type_argument, + STATE(2606), 1, + sym__type, + STATE(2628), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3712), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3862), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 11, - 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, - ACTIONS(2988), 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, - [38455] = 10, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48550] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397432,43 +406808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, + anon_sym_LPAREN, + ACTIONS(6896), 1, + anon_sym__, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, + sym__static_type_identifier, + STATE(4458), 1, + sym__type, + STATE(4581), 1, + sym_type_argument, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3713), 4, + ACTIONS(6902), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3863), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 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(3048), 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, - [38512] = 10, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48623] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397479,43 +406862,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5608), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3714), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3864), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 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(3044), 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, - [38569] = 17, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48696] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397526,50 +406916,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4656), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3720), 1, - aux_sym__member_defns_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4489), 1, - sym_member_defn, - STATE(5242), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + sym_identifier, + STATE(3662), 1, + sym__type, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3715), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3865), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4654), 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, - [38640] = 10, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48769] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397580,43 +406970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + sym_identifier, + STATE(3660), 1, + sym__type, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3716), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3866), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 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(3054), 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, - [38697] = 11, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48842] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397627,44 +407024,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6698), 1, - anon_sym_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5562), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3717), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3867), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 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(2916), 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, - [38756] = 10, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48915] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397675,43 +407078,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5753), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3718), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3868), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [38813] = 12, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [48988] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -397724,20 +407134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(6703), 1, - anon_sym_LBRACK_LT, - STATE(3818), 1, - sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3719), 5, + STATE(3869), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6701), 10, + ACTIONS(6924), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -397748,7 +407153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6706), 11, + ACTIONS(6926), 12, + anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, @@ -397760,7 +407166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [38874] = 17, + [49043] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397771,50 +407177,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4512), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3721), 1, - aux_sym__member_defns_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4489), 1, - sym_member_defn, - STATE(5242), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5544), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3720), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3870), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 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, - [38945] = 24, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [49116] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397825,57 +407231,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4528), 1, - anon_sym_let, - ACTIONS(4530), 1, - anon_sym_LBRACK_LT, - ACTIONS(4533), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6708), 1, - anon_sym_new, - ACTIONS(6714), 1, - anon_sym_static, - ACTIONS(6717), 1, - anon_sym_member, - ACTIONS(6720), 1, - anon_sym_abstract, - ACTIONS(6723), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4471), 1, - sym_additional_constr_defn, - STATE(4489), 1, - sym_member_defn, - STATE(5242), 1, - sym_attributes, - STATE(8140), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5525), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6711), 2, - anon_sym_default, - anon_sym_override, - STATE(3721), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3871), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - ACTIONS(4526), 7, - sym__newline, - anon_sym_do, - anon_sym_let_BANG, - anon_sym_interface, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [39030] = 11, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [49189] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397886,44 +407285,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6726), 1, - anon_sym_LT2, + ACTIONS(6288), 1, + sym__dedent, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4003), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3722), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3056), 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(3058), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, + ACTIONS(6805), 2, 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, - [39089] = 10, + STATE(3872), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [49282] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397934,45 +407349,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4884), 1, + sym__type, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3723), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3873), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 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(3064), 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, - [39146] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [49355] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -397983,19 +407403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - STATE(3719), 1, - aux_sym_attributes_repeat1, - STATE(3818), 1, - sym__attribute_set, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6928), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3724), 4, + STATE(3874), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6728), 10, + aux_sym_long_identifier_repeat1, + ACTIONS(2964), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -398003,23 +407424,21 @@ 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(6730), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2966), 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, - [39207] = 23, + [49412] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398030,55 +407449,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3692), 1, - sym_type_name, - STATE(4671), 1, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5589), 1, - sym__type_defn_body, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, - sym__static_type_identifier, - STATE(8186), 1, - sym_type_argument, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3725), 4, + ACTIONS(2900), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(3875), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6031), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [39289] = 30, + ACTIONS(2902), 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, + [49483] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398089,62 +407502,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2882), 4, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, + STATE(3876), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2886), 10, + anon_sym_and, anon_sym_with, - ACTIONS(6738), 1, anon_sym_new, - ACTIONS(6742), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6744), 1, anon_sym_member, - ACTIONS(6746), 1, anon_sym_interface, - ACTIONS(6748), 1, anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6752), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7953), 1, - sym_type_extension_elements, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, anon_sym_override, - STATE(3726), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [39385] = 23, + anon_sym_val, + [49554] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398155,55 +407555,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3685), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, + anon_sym_POUND, + STATE(4637), 1, + sym__type, + STATE(4645), 1, sym__static_type_identifier, - STATE(6129), 1, - sym__type_defn_body, - STATE(8186), 1, + STATE(4732), 1, sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6941), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3727), 4, + STATE(3877), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6198), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [39467] = 30, + STATE(4806), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [49627] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398214,62 +407611,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6754), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7057), 1, - sym_type_extension_elements, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3728), 4, + STATE(3878), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [39563] = 30, + ACTIONS(6943), 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, + sym_identifier, + ACTIONS(6945), 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, + [49682] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398280,62 +407654,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6947), 1, + anon_sym_or, + STATE(4077), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(3879), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2981), 9, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, + 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(2979), 11, + anon_sym_and, anon_sym_with, - ACTIONS(6738), 1, anon_sym_new, - ACTIONS(6742), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6744), 1, anon_sym_member, - ACTIONS(6746), 1, anon_sym_interface, - ACTIONS(6748), 1, anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6756), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7050), 1, - sym_type_extension_elements, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, anon_sym_override, - STATE(3729), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [39659] = 30, + anon_sym_val, + sym_identifier, + [49741] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398346,62 +407701,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2908), 4, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, + STATE(3880), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2910), 10, + anon_sym_and, anon_sym_with, - ACTIONS(6738), 1, anon_sym_new, - ACTIONS(6742), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6744), 1, anon_sym_member, - ACTIONS(6746), 1, anon_sym_interface, - ACTIONS(6748), 1, anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6758), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7049), 1, - sym_type_extension_elements, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, anon_sym_override, - STATE(3730), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [39755] = 30, + anon_sym_val, + [49812] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398412,62 +407754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2904), 4, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(3881), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2906), 10, + anon_sym_and, anon_sym_with, - ACTIONS(6738), 1, anon_sym_new, - ACTIONS(6742), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6744), 1, anon_sym_member, - ACTIONS(6746), 1, anon_sym_interface, - ACTIONS(6748), 1, anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6760), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7865), 1, - sym_type_extension_elements, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, anon_sym_override, - STATE(3731), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [39851] = 23, + anon_sym_val, + [49883] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398478,55 +407807,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(2938), 1, - sym__type_defn_body, - STATE(3680), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5515), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3732), 4, + STATE(3882), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2968), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [39933] = 30, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [49956] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398537,62 +407861,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6762), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7226), 1, - sym_type_extension_elements, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6959), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3733), 4, + STATE(3883), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [40029] = 23, + ACTIONS(3151), 10, + 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(3153), 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, + [50013] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398603,55 +407907,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3682), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6894), 1, + anon_sym_LPAREN, + ACTIONS(6896), 1, + anon_sym__, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, sym__static_type_identifier, - STATE(6080), 1, - sym__type_defn_body, - STATE(8186), 1, + STATE(4470), 1, + sym__type, + STATE(4581), 1, sym_type_argument, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3734), 4, + STATE(3884), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6044), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40111] = 30, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50086] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398664,60 +407963,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(6807), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6746), 1, + ACTIONS(6811), 1, anon_sym_interface, - ACTIONS(6748), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(6815), 1, anon_sym_val, - ACTIONS(6764), 1, + ACTIONS(6961), 1, sym__dedent, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, sym__attribute_set, - STATE(4466), 1, + STATE(4411), 1, sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7169), 1, - sym_type_extension_elements, - STATE(7728), 1, + STATE(7830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(3735), 4, + STATE(3885), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [40207] = 10, + [50179] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398728,101 +408025,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3736), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3040), 11, - anon_sym_EQ, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_COLON, + ACTIONS(4715), 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(3042), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, + ACTIONS(6811), 1, anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - sym_identifier, - [40263] = 23, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, - sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3682), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, + ACTIONS(6963), 1, + sym__dedent, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, sym__attribute_set, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6097), 1, - sym__type_defn_body, - STATE(8186), 1, - sym_type_argument, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3737), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(3886), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6044), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40345] = 23, + [50272] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398833,55 +408089,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3682), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5632), 1, - sym__type_defn_body, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5491), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3738), 4, + STATE(3887), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6044), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40427] = 11, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50345] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398892,102 +408143,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6766), 1, - aux_sym_float_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3739), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3130), 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, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(3132), 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, - [40485] = 23, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, + ACTIONS(6894), 1, + anon_sym_LPAREN, + ACTIONS(6896), 1, anon_sym__, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, - sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3682), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5666), 1, - sym__type_defn_body, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(4471), 1, + sym__type, + STATE(4581), 1, sym_type_argument, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3740), 4, + STATE(3888), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6044), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40567] = 23, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50418] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -398998,55 +408197,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3692), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5998), 1, - sym__type_defn_body, - STATE(8186), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5489), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3741), 4, + STATE(3889), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6031), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40649] = 23, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50491] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399057,55 +408251,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(5234), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3685), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5815), 1, - sym__type_defn_body, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym__, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, + anon_sym_POUND, + STATE(2934), 1, + sym__type, + STATE(2935), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(3054), 1, sym_type_argument, + STATE(3081), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6011), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3742), 4, + STATE(3890), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6198), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40731] = 30, + STATE(3062), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50564] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399116,62 +408305,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6768), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(8087), 1, - sym_type_extension_elements, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_LPAREN, + ACTIONS(6967), 1, + anon_sym__, + ACTIONS(6969), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6971), 1, + anon_sym_POUND, + STATE(3233), 1, + sym__type, + STATE(3237), 1, + sym__static_type_identifier, + STATE(3265), 1, + sym_type_argument, + STATE(3310), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3743), 4, + ACTIONS(6973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3891), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [40827] = 23, + STATE(3308), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50637] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399182,55 +408359,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(2970), 1, - sym__type_defn_body, - STATE(3680), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, + anon_sym_POUND, + STATE(4594), 1, + sym__type, + STATE(4645), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(4732), 1, sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6941), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3744), 4, + STATE(3892), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2968), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [40909] = 10, + STATE(4806), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50710] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399241,42 +408413,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, + anon_sym_LPAREN, + ACTIONS(6977), 1, + anon_sym__, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, + anon_sym_POUND, + STATE(3248), 1, + sym__static_type_identifier, + STATE(3253), 1, + sym__type, + STATE(3267), 1, + sym_type_argument, + STATE(3304), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3745), 4, + ACTIONS(6983), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3893), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 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(3048), 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, - [40965] = 10, + STATE(3309), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50783] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399287,42 +408467,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + sym_identifier, + STATE(3655), 1, + sym__type, + STATE(3663), 1, + sym__static_type_identifier, + STATE(3699), 1, + sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3746), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3894), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 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(3048), 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, - [41021] = 23, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50856] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399333,55 +408521,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3692), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(424), 1, + sym__type, + STATE(3022), 1, sym__static_type_identifier, - STATE(6010), 1, - sym__type_defn_body, - STATE(8186), 1, + STATE(3106), 1, sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3747), 4, + STATE(3895), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6031), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [41103] = 30, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [50929] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399394,60 +408577,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, + ACTIONS(6236), 1, + sym__dedent, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(6807), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6746), 1, + ACTIONS(6811), 1, anon_sym_interface, - ACTIONS(6748), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(6815), 1, anon_sym_val, - ACTIONS(6770), 1, - sym__dedent, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(3886), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, sym__attribute_set, - STATE(4466), 1, + STATE(4411), 1, sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_type_extension_elements, - STATE(7728), 1, + STATE(7830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(3748), 4, + STATE(3896), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [41199] = 10, + [51022] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399458,42 +408639,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6985), 1, + anon_sym_DOT, + STATE(3874), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3749), 4, + STATE(3897), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 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(3042), 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(2956), 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, - [41255] = 10, + ACTIONS(2954), 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, + [51081] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399504,42 +408686,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5255), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3750), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3898), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 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(3099), 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, - [41311] = 10, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51154] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399550,30 +408740,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3751), 4, + ACTIONS(2900), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(3899), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 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(3101), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2902), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -399583,9 +408782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [41367] = 10, + [51225] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399596,30 +408793,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3752), 4, + ACTIONS(2882), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(3900), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 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(3044), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2886), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -399629,9 +408835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [41423] = 23, + [51296] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399642,121 +408846,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(2907), 1, - sym__type_defn_body, - STATE(3680), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, + anon_sym_POUND, + STATE(4595), 1, + sym__type, + STATE(4645), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(4732), 1, sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6941), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3753), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(2968), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [41505] = 30, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6772), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7855), 1, - sym_type_extension_elements, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3754), 4, + STATE(3901), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [41601] = 10, + STATE(4806), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51369] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399767,122 +408900,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3755), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3076), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, anon_sym_DASH_GT, + ACTIONS(6953), 1, anon_sym_STAR, + ACTIONS(6955), 1, anon_sym_LT2, + ACTIONS(6957), 1, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3072), 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, - [41657] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3756), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3095), 10, - sym__newline, + ACTIONS(2908), 4, 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(3093), 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, - [41713] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3757), 4, + anon_sym_POUNDelse, + STATE(3902), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 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(3082), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(2910), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -399892,9 +408942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [41769] = 30, + [51440] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399905,62 +408953,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(3114), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6774), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(8049), 1, - sym_type_extension_elements, + ACTIONS(6987), 1, + anon_sym_LPAREN, + ACTIONS(6989), 1, + anon_sym__, + ACTIONS(6991), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6993), 1, + anon_sym_POUND, + STATE(909), 1, + sym__type, + STATE(1028), 1, + sym__static_type_identifier, + STATE(1037), 1, + sym_type_argument, + STATE(1038), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3758), 4, + ACTIONS(6995), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3903), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [41865] = 30, + STATE(1032), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51513] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -399971,62 +409007,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6776), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7979), 1, - sym_type_extension_elements, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5595), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3759), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3904), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [41961] = 23, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51586] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400037,55 +409061,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6292), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + anon_sym__, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, + anon_sym_POUND, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3692), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5597), 1, - sym__type_defn_body, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + STATE(3659), 1, + sym__type, + STATE(3663), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(3699), 1, sym_type_argument, + STATE(3742), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6300), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3760), 4, + STATE(3905), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6031), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [42043] = 23, + STATE(3725), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51659] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400096,55 +409115,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(2906), 1, - sym__type_defn_body, - STATE(3680), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5468), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3761), 4, + STATE(3906), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2968), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [42125] = 30, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51732] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400155,62 +409169,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6778), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7511), 1, - sym_type_extension_elements, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym__, + ACTIONS(7003), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7005), 1, + anon_sym_POUND, + STATE(4578), 1, + sym__type, + STATE(4608), 1, + sym__static_type_identifier, + STATE(4767), 1, + sym_type_argument, + STATE(4914), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3762), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3907), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [42221] = 30, + STATE(4906), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51805] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400221,62 +409223,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(2884), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6780), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7158), 1, - sym_type_extension_elements, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7011), 1, + anon_sym__, + ACTIONS(7013), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7015), 1, + anon_sym_POUND, + STATE(828), 1, + sym__type, + STATE(862), 1, + sym__static_type_identifier, + STATE(872), 1, + sym_type_argument, + STATE(883), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3763), 4, + ACTIONS(7017), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3908), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [42317] = 10, + STATE(873), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51878] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400287,42 +409277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2884), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7011), 1, + anon_sym__, + ACTIONS(7013), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7015), 1, + anon_sym_POUND, + STATE(830), 1, + sym__type, + STATE(862), 1, + sym__static_type_identifier, + STATE(872), 1, + sym_type_argument, + STATE(883), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3764), 4, + ACTIONS(7017), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3909), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 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(3064), 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, - [42373] = 11, + STATE(873), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [51951] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400333,43 +409331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6782), 1, - anon_sym_LT2, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, + anon_sym_POUND, + STATE(4605), 1, + sym__type, + STATE(4645), 1, + sym__static_type_identifier, + STATE(4732), 1, + sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3765), 4, + ACTIONS(6941), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3910), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 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(3058), 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, - [42431] = 10, + STATE(4806), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52024] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400380,42 +409385,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym__, + ACTIONS(7003), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7005), 1, + anon_sym_POUND, + STATE(4593), 1, + sym__type, + STATE(4608), 1, + sym__static_type_identifier, + STATE(4767), 1, + sym_type_argument, + STATE(4914), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3766), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3911), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 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(3101), 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, - [42487] = 30, + STATE(4906), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52097] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400426,62 +409439,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6784), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7969), 1, - sym_type_extension_elements, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5587), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3767), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3912), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [42583] = 23, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52170] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400492,55 +409493,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(4328), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3685), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2114), 1, + sym__type, + STATE(2131), 1, sym__static_type_identifier, - STATE(6121), 1, - sym__type_defn_body, - STATE(8186), 1, + STATE(2561), 1, sym_type_argument, + STATE(2628), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3768), 4, + STATE(3913), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6198), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [42665] = 17, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52243] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400551,49 +409547,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2959), 1, + ACTIONS(2884), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6786), 1, - anon_sym_EQ, - ACTIONS(6790), 1, - anon_sym_COLON, - ACTIONS(6792), 1, - anon_sym_DOT, - ACTIONS(6796), 1, - anon_sym_of, - STATE(4246), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7011), 1, + anon_sym__, + ACTIONS(7013), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7015), 1, + anon_sym_POUND, + STATE(831), 1, + sym__type, + STATE(862), 1, + sym__static_type_identifier, + STATE(872), 1, + sym_type_argument, + STATE(883), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2957), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(6788), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3769), 4, + ACTIONS(7017), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3914), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6794), 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, - [42735] = 23, + STATE(873), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52316] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400604,55 +409601,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6732), 1, + ACTIONS(3138), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(3685), 1, - sym_type_name, - STATE(4671), 1, - sym_long_identifier, - STATE(5420), 1, - sym_attributes, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5772), 1, - sym_access_modifier, - STATE(5825), 1, - sym__type_defn_body, - STATE(5827), 1, - sym__attribute_set, - STATE(5931), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7021), 1, + anon_sym__, + ACTIONS(7023), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7025), 1, + anon_sym_POUND, + STATE(907), 1, + sym__type, + STATE(965), 1, sym__static_type_identifier, - STATE(8186), 1, + STATE(1069), 1, + sym_long_identifier, + STATE(1076), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7027), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3770), 4, + STATE(3915), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6198), 8, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_interface_type_defn, - sym_anon_type_defn, - [42817] = 10, + STATE(1104), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52389] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400663,42 +409655,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5488), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3771), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3916), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 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(3054), 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, - [42873] = 30, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52462] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400709,64 +409709,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6736), 1, - anon_sym_with, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6798), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7090), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - STATE(7946), 1, - sym_type_extension_elements, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5349), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3772), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3917), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [42969] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52535] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400777,39 +409763,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5512), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3773), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3918), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6800), 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, - sym_identifier, - ACTIONS(6802), 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, - [43024] = 12, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52608] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400820,43 +409817,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_or, - STATE(3826), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4242), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3774), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3919), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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(3017), 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, - [43083] = 29, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52681] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400867,60 +409871,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6219), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3841), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6035), 1, + aux_sym_decimal_token1, + ACTIONS(6238), 1, + anon_sym_f, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3775), 4, + STATE(3920), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [43176] = 20, + ACTIONS(2528), 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(2526), 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, + [52740] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400931,40 +409918,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6896), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, anon_sym_POUND, - STATE(406), 1, + STATE(4425), 1, sym__type, - STATE(2922), 1, + STATE(4436), 1, sym__static_type_identifier, - STATE(2988), 1, + STATE(4581), 1, sym_type_argument, - STATE(3064), 1, + STATE(4708), 1, sym_long_identifier, - STATE(6582), 1, - sym__object_construction, - STATE(6585), 1, - sym__base_call, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3776), 4, + STATE(3921), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(4688), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -400975,7 +409960,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [43251] = 20, + sym_anon_record_type, + [52813] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -400986,40 +409972,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(2912), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7029), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7031), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7035), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_QMARK, - ACTIONS(6547), 1, - sym_identifier, - STATE(3981), 1, - sym_argument_name_spec, - STATE(4888), 1, + STATE(839), 1, + sym__type, + STATE(850), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + STATE(902), 1, sym_long_identifier, - STATE(5715), 1, - sym__type, + STATE(903), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7037), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3777), 4, + STATE(3922), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(905), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -401030,7 +410014,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [43326] = 12, + sym_anon_record_type, + [52886] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401041,43 +410026,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3114), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6814), 1, - anon_sym_or, - STATE(3796), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6987), 1, + anon_sym_LPAREN, + ACTIONS(6989), 1, + anon_sym__, + ACTIONS(6991), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6993), 1, + anon_sym_POUND, + STATE(906), 1, + sym__type, + STATE(1028), 1, + sym__static_type_identifier, + STATE(1037), 1, + sym_type_argument, + STATE(1038), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3778), 4, + ACTIONS(6995), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3923), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [43385] = 18, + STATE(1032), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [52959] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401088,49 +410080,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7039), 1, + anon_sym_LPAREN, + ACTIONS(7041), 1, + anon_sym__, + ACTIONS(7043), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7045), 1, + anon_sym_POUND, + STATE(988), 1, + sym__type, + STATE(1260), 1, + sym__static_type_identifier, + STATE(1464), 1, + sym_type_argument, + STATE(1465), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3779), 4, + ACTIONS(7047), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3924), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 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, - [43456] = 12, + STATE(1461), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53032] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401141,43 +410134,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3795), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7053), 1, + anon_sym__, + ACTIONS(7055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7057), 1, + anon_sym_POUND, + STATE(4577), 1, + sym__type, + STATE(4585), 1, + sym__static_type_identifier, + STATE(4758), 1, + sym_type_argument, + STATE(4937), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3780), 4, + ACTIONS(7059), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3925), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 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(2957), 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, - [43515] = 18, + STATE(4936), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53105] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401188,49 +410188,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(3114), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6987), 1, + anon_sym_LPAREN, + ACTIONS(6989), 1, + anon_sym__, + ACTIONS(6991), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6993), 1, + anon_sym_POUND, + STATE(917), 1, + sym__type, + STATE(1028), 1, + sym__static_type_identifier, + STATE(1037), 1, + sym_type_argument, + STATE(1038), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2884), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3781), 4, + ACTIONS(6995), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3926), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 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, - [43586] = 18, + STATE(1032), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53178] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401241,49 +410242,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(3114), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6987), 1, + anon_sym_LPAREN, + ACTIONS(6989), 1, + anon_sym__, + ACTIONS(6991), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6993), 1, + anon_sym_POUND, + STATE(913), 1, + sym__type, + STATE(1028), 1, + sym__static_type_identifier, + STATE(1037), 1, + sym_type_argument, + STATE(1038), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3782), 4, + ACTIONS(6995), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3927), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 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, - [43657] = 18, + STATE(1032), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53251] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401294,49 +410296,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(7049), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7053), 1, + anon_sym__, + ACTIONS(7055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7057), 1, + anon_sym_POUND, + STATE(4585), 1, + sym__static_type_identifier, + STATE(4588), 1, + sym__type, + STATE(4758), 1, + sym_type_argument, + STATE(4937), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3783), 4, + ACTIONS(7059), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3928), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 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, - [43728] = 20, + STATE(4936), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53324] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401347,40 +410350,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6830), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(428), 1, + sym__type, + STATE(3022), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(3106), 1, sym_type_argument, - STATE(5186), 1, - sym__type, - STATE(5348), 1, + STATE(3136), 1, sym_long_identifier, - STATE(7945), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3784), 4, + STATE(3929), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -401391,7 +410392,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [43803] = 29, + sym_anon_record_type, + [53397] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401402,60 +410404,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6832), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2553), 1, + sym__type, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3785), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3930), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [43896] = 12, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53470] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401466,107 +410458,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6834), 1, - anon_sym_LBRACK_LT, - STATE(3962), 1, - sym__attribute_set, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6701), 2, - anon_sym_let, + ACTIONS(5252), 1, anon_sym_LPAREN, - STATE(3786), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6706), 17, - anon_sym_module, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + ACTIONS(5254), 1, anon_sym__, - anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_exception, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [43955] = 29, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6837), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5519), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3787), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3931), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44048] = 20, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53543] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401577,40 +410512,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6276), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6278), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6839), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(3831), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(4243), 1, sym__type, - STATE(5348), 1, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, sym_long_identifier, - STATE(7812), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6284), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3788), 4, + STATE(3932), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4383), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -401621,7 +410554,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [44123] = 29, + sym_anon_record_type, + [53616] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401632,60 +410566,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6841), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5492), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3789), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3933), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44216] = 29, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53689] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401696,60 +410620,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6843), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym__, + ACTIONS(7003), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7005), 1, + anon_sym_POUND, + STATE(4587), 1, + sym__type, + STATE(4608), 1, + sym__static_type_identifier, + STATE(4767), 1, + sym_type_argument, + STATE(4914), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3790), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3934), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44309] = 20, + STATE(4906), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53762] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401760,40 +410674,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6845), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(4638), 1, sym__type, - STATE(5348), 1, + STATE(4665), 1, + sym_type_argument, + STATE(4781), 1, sym_long_identifier, - STATE(7196), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3791), 4, + STATE(3935), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -401804,7 +410716,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [44384] = 20, + sym_anon_record_type, + [53835] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401815,40 +410728,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6847), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5186), 1, + STATE(5312), 1, sym__type, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(7381), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3792), 4, + STATE(3936), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -401859,7 +410770,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [44459] = 29, + sym_anon_record_type, + [53908] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401870,60 +410782,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6213), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3785), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7053), 1, + anon_sym__, + ACTIONS(7055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7057), 1, + anon_sym_POUND, + STATE(4585), 1, + sym__static_type_identifier, + STATE(4642), 1, + sym__type, + STATE(4758), 1, + sym_type_argument, + STATE(4937), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3793), 4, + ACTIONS(7059), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3937), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44552] = 29, + STATE(4936), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [53981] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401934,60 +410836,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6193), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3800), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym__, + ACTIONS(7003), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7005), 1, + anon_sym_POUND, + STATE(4601), 1, + sym__type, + STATE(4608), 1, + sym__static_type_identifier, + STATE(4767), 1, + sym_type_argument, + STATE(4914), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3794), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3938), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44645] = 12, + STATE(4906), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54054] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -401998,90 +410890,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3803), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3795), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2973), 9, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2971), 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, - [44704] = 12, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6814), 1, - anon_sym_or, - STATE(3798), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5520), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3796), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3939), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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(3017), 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, - [44763] = 20, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54127] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402092,40 +410944,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7053), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7057), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6849), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4585), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(4641), 1, sym__type, - STATE(5348), 1, + STATE(4758), 1, + sym_type_argument, + STATE(4937), 1, sym_long_identifier, - STATE(7415), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7059), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3797), 4, + STATE(3940), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4936), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -402136,7 +410986,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [44838] = 11, + sym_anon_record_type, + [54200] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402147,42 +410998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6851), 1, - anon_sym_or, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(414), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3798), 5, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3941), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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(2977), 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, - [44895] = 29, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54273] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402193,60 +411052,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6854), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5323), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3799), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3942), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44988] = 29, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54346] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402257,60 +411106,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6856), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3854), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3800), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3943), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [45081] = 29, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54419] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402321,60 +411160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6195), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3799), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3875), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3801), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3944), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [45174] = 12, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54492] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402385,89 +411214,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6066), 1, - aux_sym_decimal_token1, - ACTIONS(6215), 1, - anon_sym_f, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3802), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2528), 9, + ACTIONS(6218), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6220), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, + anon_sym_POUND, + ACTIONS(6906), 1, sym_identifier, - ACTIONS(2526), 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, - [45233] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6858), 1, - anon_sym_DOT, + STATE(4199), 1, + sym__static_type_identifier, + STATE(4359), 1, + sym_type_argument, + STATE(4407), 1, + sym_long_identifier, + STATE(4751), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3803), 5, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3945), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2988), 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(2990), 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, - [45290] = 13, + STATE(4408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54565] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402478,44 +411268,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(2912), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3786), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, + ACTIONS(7029), 1, + anon_sym_LPAREN, + ACTIONS(7031), 1, + anon_sym__, + ACTIONS(7033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7035), 1, + anon_sym_POUND, + STATE(840), 1, + sym__type, + STATE(850), 1, + sym__static_type_identifier, + STATE(902), 1, + sym_long_identifier, + STATE(903), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6728), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(3804), 4, + ACTIONS(7037), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3946), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6730), 17, - 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_exception, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [45351] = 20, + STATE(905), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54638] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402526,40 +411322,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6861), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5186), 1, - sym__type, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(7642), 1, - sym_types, + STATE(5545), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3805), 4, + STATE(3947), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -402570,7 +411364,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [45426] = 11, + sym_anon_record_type, + [54711] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402581,106 +411376,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6863), 1, - sym_int, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3806), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3146), 10, + ACTIONS(6276), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6278), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_f, - aux_sym_decimal_token1, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(3148), 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, - [45483] = 29, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6187), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3838), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4222), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3807), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3948), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [45576] = 29, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54784] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402691,60 +411430,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6248), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3837), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5604), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3808), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3949), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [45669] = 29, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54857] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402755,152 +411484,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6865), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3809), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [45762] = 10, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3810), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3048), 10, + ACTIONS(6276), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6278), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(3050), 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, - [45817] = 12, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_or, - STATE(3774), 1, - aux_sym_type_argument_repeat1, + STATE(3831), 1, + sym__static_type_identifier, + STATE(3876), 1, + sym__type, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3811), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3950), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [45876] = 20, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [54930] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402911,40 +411538,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6276), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6278), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6867), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(3831), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(3880), 1, sym__type, - STATE(5348), 1, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, sym_long_identifier, - STATE(8227), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6284), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3812), 4, + STATE(3951), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4383), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -402955,7 +411580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [45951] = 20, + sym_anon_record_type, + [55003] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -402966,40 +411592,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6869), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(419), 1, + sym__type, + STATE(3022), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(3106), 1, sym_type_argument, - STATE(5186), 1, - sym__type, - STATE(5348), 1, + STATE(3136), 1, sym_long_identifier, - STATE(7493), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3813), 4, + STATE(3952), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403010,7 +411634,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46026] = 20, + sym_anon_record_type, + [55076] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403021,40 +411646,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(2884), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7011), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7013), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7015), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6871), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(835), 1, + sym__type, + STATE(862), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(872), 1, sym_type_argument, - STATE(5186), 1, - sym__type, - STATE(5348), 1, + STATE(883), 1, sym_long_identifier, - STATE(7070), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7017), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3814), 4, + STATE(3953), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(873), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403065,7 +411688,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46101] = 29, + sym_anon_record_type, + [55149] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403076,60 +411700,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(3157), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6873), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7073), 1, + anon_sym_LPAREN, + ACTIONS(7075), 1, + anon_sym__, + ACTIONS(7077), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7079), 1, + anon_sym_POUND, + STATE(920), 1, + sym__type, + STATE(1244), 1, + sym__static_type_identifier, + STATE(1256), 1, + sym_long_identifier, + STATE(1259), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3815), 4, + ACTIONS(7081), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3954), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [46194] = 20, + STATE(1262), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55222] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403140,40 +411754,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6875), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(4635), 1, sym__type, - STATE(5348), 1, + STATE(4665), 1, + sym_type_argument, + STATE(4781), 1, sym_long_identifier, - STATE(7917), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3816), 4, + STATE(3955), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403184,7 +411796,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46269] = 20, + sym_anon_record_type, + [55295] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403195,40 +411808,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(3157), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7073), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7075), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7077), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7079), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6877), 1, - anon_sym_GT, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(948), 1, sym__type, - STATE(5348), 1, + STATE(1244), 1, + sym__static_type_identifier, + STATE(1256), 1, sym_long_identifier, - STATE(8128), 1, - sym_types, + STATE(1259), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7081), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3817), 4, + STATE(3956), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(1262), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403239,9 +411850,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46344] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_anon_record_type, + [55368] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403252,39 +411862,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7085), 1, + anon_sym_LPAREN, + ACTIONS(7087), 1, + anon_sym__, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, + anon_sym_POUND, + STATE(4522), 1, + sym__static_type_identifier, + STATE(4556), 1, + sym__type, + STATE(4662), 1, + sym_type_argument, + STATE(4782), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3818), 4, + ACTIONS(7093), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3957), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6879), 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, - sym_identifier, - ACTIONS(6881), 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, - [46399] = 10, + STATE(4736), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55441] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403295,43 +411916,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7085), 1, + anon_sym_LPAREN, + ACTIONS(7087), 1, + anon_sym__, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, + anon_sym_POUND, + STATE(4522), 1, + sym__static_type_identifier, + STATE(4566), 1, + sym__type, + STATE(4662), 1, + sym_type_argument, + STATE(4782), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3819), 4, + ACTIONS(7093), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3958), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3130), 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, - sym_identifier, - ACTIONS(3132), 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, - [46454] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4736), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55514] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403342,39 +411970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4280), 1, + sym__type, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3820), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3959), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6883), 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, - sym_identifier, - ACTIONS(6885), 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, - [46509] = 18, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55587] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403385,49 +412024,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + ACTIONS(7085), 1, + anon_sym_LPAREN, + ACTIONS(7087), 1, + anon_sym__, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, + anon_sym_POUND, + STATE(4522), 1, + sym__static_type_identifier, + STATE(4531), 1, + sym__type, + STATE(4662), 1, + sym_type_argument, + STATE(4782), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3821), 4, + ACTIONS(7093), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3960), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 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, - [46580] = 29, + STATE(4736), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55660] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403438,62 +412078,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6246), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3787), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7085), 1, + anon_sym_LPAREN, + ACTIONS(7087), 1, + anon_sym__, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, + anon_sym_POUND, + STATE(4522), 1, + sym__static_type_identifier, + STATE(4567), 1, + sym__type, + STATE(4662), 1, + sym_type_argument, + STATE(4782), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3822), 4, + ACTIONS(7093), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3961), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [46673] = 24, - ACTIONS(3), 1, - sym_line_comment, + STATE(4736), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55733] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403504,53 +412132,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6897), 1, - anon_sym_y, - ACTIONS(6899), 1, - anon_sym_uy, - ACTIONS(6901), 1, - anon_sym_s, - ACTIONS(6903), 1, - anon_sym_us, - ACTIONS(6905), 1, - anon_sym_l, - ACTIONS(6907), 1, - aux_sym_uint32_token1, - ACTIONS(6909), 1, - anon_sym_n, - ACTIONS(6911), 1, - anon_sym_un, - ACTIONS(6913), 1, - anon_sym_L, - ACTIONS(6915), 1, - aux_sym_uint64_token1, - ACTIONS(6917), 1, - aux_sym_bignum_token1, - ACTIONS(6919), 1, - aux_sym_decimal_token1, - ACTIONS(6921), 1, - anon_sym_DOT2, - ACTIONS(6923), 1, - aux_sym_float_token1, - STATE(3823), 4, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(415), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3962), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [46756] = 20, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [55806] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403561,40 +412186,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3157), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(7073), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(7075), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(7077), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7079), 1, anon_sym_POUND, - ACTIONS(6925), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3866), 1, + STATE(947), 1, sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, + STATE(1244), 1, + sym__static_type_identifier, + STATE(1256), 1, sym_long_identifier, - STATE(4683), 1, - sym_union_type_field, - STATE(4837), 1, - sym_union_type_fields, + STATE(1259), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(7081), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3824), 4, + STATE(3963), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(1262), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403605,7 +412228,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46831] = 20, + sym_anon_record_type, + [55879] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403616,40 +412240,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - ACTIONS(6925), 1, - sym_identifier, - STATE(3862), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(3866), 1, + STATE(4544), 1, sym__type, - STATE(4357), 1, + STATE(4665), 1, sym_type_argument, - STATE(4406), 1, + STATE(4781), 1, sym_long_identifier, - STATE(4683), 1, - sym_union_type_field, - STATE(4857), 1, - sym_union_type_fields, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3825), 4, + STATE(3964), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403660,7 +412282,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [46906] = 11, + sym_anon_record_type, + [55952] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403671,42 +412294,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3280), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6927), 1, - anon_sym_or, + ACTIONS(7095), 1, + anon_sym_LPAREN, + ACTIONS(7097), 1, + anon_sym__, + ACTIONS(7099), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7101), 1, + anon_sym_POUND, + STATE(1006), 1, + sym__type, + STATE(1305), 1, + sym__static_type_identifier, + STATE(1405), 1, + sym_long_identifier, + STATE(1406), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3826), 5, + ACTIONS(7103), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3965), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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(2977), 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, - [46963] = 29, + STATE(1408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56025] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403717,60 +412348,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, - sym__dedent, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3815), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, + sym_identifier, + STATE(4192), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3827), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3966), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47056] = 20, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56098] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403781,40 +412402,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6930), 1, - anon_sym_GT, - STATE(4888), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5186), 1, + STATE(4537), 1, sym__type, - STATE(5348), 1, + STATE(4665), 1, + sym_type_argument, + STATE(4781), 1, sym_long_identifier, - STATE(7294), 1, - sym_types, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3828), 4, + STATE(3967), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -403825,7 +412444,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [47131] = 28, + sym_anon_record_type, + [56171] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403836,59 +412456,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6932), 1, - anon_sym_LBRACK_LT, - ACTIONS(6935), 1, - aux_sym_access_modifier_token1, - ACTIONS(6938), 1, - anon_sym_new, - ACTIONS(6944), 1, - anon_sym_static, - ACTIONS(6947), 1, - anon_sym_member, - ACTIONS(6950), 1, - anon_sym_interface, - ACTIONS(6953), 1, - anon_sym_abstract, - ACTIONS(6956), 1, - anon_sym_val, - ACTIONS(6959), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5542), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6941), 2, - anon_sym_default, - anon_sym_override, - STATE(3829), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3968), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_interface_type_defn_repeat1, - [47222] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56244] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403899,49 +412510,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(7105), 1, sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + ACTIONS(7107), 1, + anon_sym_LPAREN, + ACTIONS(7109), 1, + anon_sym__, + ACTIONS(7111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7113), 1, + anon_sym_POUND, + STATE(4490), 1, + sym__type, + STATE(4532), 1, + sym__static_type_identifier, + STATE(4702), 1, + sym_type_argument, + STATE(4730), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3830), 4, + ACTIONS(7115), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3969), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 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, - [47293] = 18, + STATE(4726), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56317] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -403952,49 +412564,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(7105), 1, sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + ACTIONS(7107), 1, + anon_sym_LPAREN, + ACTIONS(7109), 1, + anon_sym__, + ACTIONS(7111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7113), 1, + anon_sym_POUND, + STATE(4532), 1, + sym__static_type_identifier, + STATE(4563), 1, + sym__type, + STATE(4702), 1, + sym_type_argument, + STATE(4730), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2884), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3831), 4, + ACTIONS(7115), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3970), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 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, - [47364] = 20, + STATE(4726), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56390] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404005,40 +412618,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - STATE(405), 1, - sym__type, - STATE(2922), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(2988), 1, + STATE(4536), 1, + sym__type, + STATE(4665), 1, sym_type_argument, - STATE(3064), 1, + STATE(4781), 1, sym_long_identifier, - STATE(6582), 1, - sym__object_construction, - STATE(6585), 1, - sym__base_call, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3832), 4, + STATE(3971), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -404049,9 +412660,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [47439] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_anon_record_type, + [56463] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404062,84 +412672,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3833), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6961), 10, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5552), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5554), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(6963), 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, - [47494] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4315), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3834), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3972), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 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, - sym_identifier, - ACTIONS(3103), 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, - [47549] = 18, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56536] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404150,49 +412726,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5315), 1, + sym__type, + STATE(5389), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3835), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3973), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 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, - [47620] = 29, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56609] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404203,60 +412780,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6965), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7107), 1, + anon_sym_LPAREN, + ACTIONS(7109), 1, + anon_sym__, + ACTIONS(7111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7113), 1, + anon_sym_POUND, + STATE(4532), 1, + sym__static_type_identifier, + STATE(4558), 1, + sym__type, + STATE(4702), 1, + sym_type_argument, + STATE(4730), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3836), 4, + ACTIONS(7115), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3974), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47713] = 29, + STATE(4726), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56682] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404267,60 +412834,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6967), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, + sym__static_type_identifier, + STATE(3881), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3837), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3975), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47806] = 29, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56755] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404331,62 +412888,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6969), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, + sym_long_identifier, + STATE(2875), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3838), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3976), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47899] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56828] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404397,39 +412942,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7107), 1, + anon_sym_LPAREN, + ACTIONS(7109), 1, + anon_sym__, + ACTIONS(7111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7113), 1, + anon_sym_POUND, + STATE(4532), 1, + sym__static_type_identifier, + STATE(4555), 1, + sym__type, + STATE(4702), 1, + sym_type_argument, + STATE(4730), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3839), 4, + ACTIONS(7115), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3977), 4, sym_block_comment, sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3042), 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, - sym_identifier, - ACTIONS(3040), 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, - [47954] = 10, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4726), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56901] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404440,41 +412996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5524), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3840), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3978), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3188), 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, - sym_identifier, - ACTIONS(3190), 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, - [48009] = 29, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [56974] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404485,60 +413050,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - ACTIONS(6971), 1, - sym__dedent, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3829), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4303), 1, + sym__type, + STATE(4380), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3841), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3979), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [48102] = 18, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57047] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404549,48 +413104,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + ACTIONS(6949), 1, sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, + STATE(3879), 1, + sym__static_type_identifier, + STATE(3899), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2884), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3842), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3980), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 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, - [48172] = 12, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57120] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404601,42 +413158,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6983), 1, - anon_sym_DOT, - STATE(3844), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5523), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3843), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3981), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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(2973), 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, - [48230] = 11, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57193] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404647,41 +413212,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6985), 1, - anon_sym_DOT, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3844), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 8, + ACTIONS(7117), 1, anon_sym_LBRACK_LT, + ACTIONS(7120), 1, 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(2988), 11, - anon_sym_and, - anon_sym_with, + ACTIONS(7123), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7129), 1, anon_sym_static, + ACTIONS(7132), 1, anon_sym_member, + ACTIONS(7135), 1, anon_sym_interface, + ACTIONS(7138), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7141), 1, anon_sym_val, - sym_identifier, - [48286] = 20, + ACTIONS(7144), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7126), 2, + anon_sym_default, + anon_sym_override, + STATE(3982), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_interface_type_defn_repeat1, + [57284] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404692,50 +413275,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6713), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, - STATE(5164), 1, - sym__object_members, + STATE(5557), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4817), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3845), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3983), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4819), 8, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [48360] = 12, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57357] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404746,42 +413329,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3336), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7000), 1, - anon_sym_or, - STATE(3847), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7039), 1, + anon_sym_LPAREN, + ACTIONS(7041), 1, + anon_sym__, + ACTIONS(7043), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7045), 1, + anon_sym_POUND, + STATE(989), 1, + sym__type, + STATE(1260), 1, + sym__static_type_identifier, + STATE(1464), 1, + sym_type_argument, + STATE(1465), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3846), 4, + ACTIONS(7047), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3984), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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(3017), 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, - [48418] = 11, + STATE(1461), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57430] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404792,41 +413383,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7002), 1, - anon_sym_or, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, + sym__static_type_identifier, + STATE(3900), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3847), 5, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3985), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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(2977), 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, - [48474] = 12, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57503] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404837,42 +413437,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7005), 1, - anon_sym_DOT, - STATE(3849), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, + sym__static_type_identifier, + STATE(3902), 1, + sym__type, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3848), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3986), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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(2973), 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, - [48532] = 11, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57576] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404883,41 +413491,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3336), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7007), 1, - anon_sym_DOT, + ACTIONS(7039), 1, + anon_sym_LPAREN, + ACTIONS(7041), 1, + anon_sym__, + ACTIONS(7043), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7045), 1, + anon_sym_POUND, + STATE(1007), 1, + sym__type, + STATE(1260), 1, + sym__static_type_identifier, + STATE(1464), 1, + sym_type_argument, + STATE(1465), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3849), 5, + ACTIONS(7047), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3987), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 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(2988), 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, - [48588] = 17, + STATE(1461), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57649] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404928,47 +413545,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7039), 1, + anon_sym_LPAREN, + ACTIONS(7041), 1, + anon_sym__, + ACTIONS(7043), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7045), 1, + anon_sym_POUND, + STATE(1010), 1, + sym__type, + STATE(1260), 1, + sym__static_type_identifier, + STATE(1464), 1, + sym_type_argument, + STATE(1465), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4462), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3850), 4, + ACTIONS(7047), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3988), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4464), 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, - [48656] = 17, + STATE(1461), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57722] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -404979,47 +413599,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(3280), 1, sym_identifier, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7095), 1, + anon_sym_LPAREN, + ACTIONS(7097), 1, + anon_sym__, + ACTIONS(7099), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7101), 1, + anon_sym_POUND, + STATE(972), 1, + sym__type, + STATE(1305), 1, + sym__static_type_identifier, + STATE(1405), 1, sym_long_identifier, + STATE(1406), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4462), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3851), 4, + ACTIONS(7103), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3989), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4464), 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, - [48724] = 19, + STATE(1408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [57795] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405030,38 +413653,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - ACTIONS(6925), 1, - sym_identifier, - STATE(3862), 1, + STATE(2131), 1, sym__static_type_identifier, - STATE(3866), 1, + STATE(2554), 1, sym__type, - STATE(4357), 1, + STATE(2561), 1, sym_type_argument, - STATE(4406), 1, + STATE(2628), 1, sym_long_identifier, - STATE(4692), 1, - sym_union_type_field, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3852), 4, + STATE(3990), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -405072,7 +413695,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [48796] = 28, + sym_anon_record_type, + [57868] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405085,56 +413709,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, + ACTIONS(6286), 1, + sym__dedent, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(6807), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6746), 1, + ACTIONS(6811), 1, anon_sym_interface, - ACTIONS(6748), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(6815), 1, anon_sym_val, - STATE(3790), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4044), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, sym__attribute_set, - STATE(4367), 1, + STATE(4411), 1, sym_member_defn, - STATE(4807), 1, + STATE(4875), 1, aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, + STATE(5158), 1, sym__member_defns, - STATE(5182), 1, + STATE(5172), 1, sym__type_defn_elements, - STATE(5344), 1, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, sym_attributes, - STATE(7728), 1, + STATE(7830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(3853), 4, + STATE(3991), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [48886] = 10, + [57961] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405145,40 +413771,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5549), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3854), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3992), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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(3066), 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, - [48940] = 13, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58034] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405189,45 +413825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6983), 1, - anon_sym_DOT, - STATE(3843), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6257), 1, + anon_sym__, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, + anon_sym_POUND, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, + sym__static_type_identifier, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, + sym_long_identifier, + STATE(5291), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3855), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3993), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [49000] = 24, - ACTIONS(3), 1, - sym_line_comment, + STATE(4357), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58107] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405238,52 +413879,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7010), 1, - anon_sym_y, - ACTIONS(7012), 1, - anon_sym_uy, - ACTIONS(7014), 1, - anon_sym_s, - ACTIONS(7016), 1, - anon_sym_us, - ACTIONS(7018), 1, - anon_sym_l, - ACTIONS(7020), 1, - aux_sym_uint32_token1, - ACTIONS(7022), 1, - anon_sym_n, - ACTIONS(7024), 1, - anon_sym_un, - ACTIONS(7026), 1, - anon_sym_L, - ACTIONS(7028), 1, - aux_sym_uint64_token1, - ACTIONS(7030), 1, - aux_sym_bignum_token1, - ACTIONS(7032), 1, - aux_sym_decimal_token1, - ACTIONS(7034), 1, - anon_sym_DOT2, - ACTIONS(7036), 1, - aux_sym_float_token1, - STATE(3856), 4, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5751), 1, + sym__type, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3994), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [49082] = 17, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58180] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405294,47 +413933,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(3280), 1, sym_identifier, - ACTIONS(6992), 1, - anon_sym_DASH_GT, - ACTIONS(6996), 1, - anon_sym_LT2, - ACTIONS(6998), 1, - anon_sym_LBRACK_RBRACK, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7095), 1, + anon_sym_LPAREN, + ACTIONS(7097), 1, + anon_sym__, + ACTIONS(7099), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7101), 1, + anon_sym_POUND, + STATE(967), 1, + sym__type, + STATE(1305), 1, + sym__static_type_identifier, + STATE(1405), 1, sym_long_identifier, + STATE(1406), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3857), 4, + ACTIONS(7103), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3995), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7038), 5, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(7040), 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, - [49150] = 10, + STATE(1408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58253] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405345,40 +413987,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5607), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3858), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3996), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 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(2977), 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, - [49204] = 13, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58326] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405389,43 +414041,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7005), 1, - anon_sym_DOT, - STATE(3848), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, + anon_sym_POUND, + STATE(4645), 1, + sym__static_type_identifier, + STATE(4684), 1, + sym__type, + STATE(4732), 1, + sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3859), 4, + ACTIONS(6941), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3997), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [49264] = 18, + STATE(4806), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58399] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405436,48 +414095,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(3202), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7146), 1, + anon_sym_LPAREN, + ACTIONS(7148), 1, + anon_sym__, + ACTIONS(7150), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7152), 1, + anon_sym_POUND, + STATE(953), 1, + sym__type, + STATE(1182), 1, + sym__static_type_identifier, + STATE(1295), 1, + sym_type_argument, + STATE(1296), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7042), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3860), 4, + ACTIONS(7154), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3998), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7044), 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, - [49334] = 12, + STATE(1287), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58472] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405488,42 +414149,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3202), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6983), 1, - anon_sym_DOT, - STATE(3843), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7146), 1, + anon_sym_LPAREN, + ACTIONS(7148), 1, + anon_sym__, + ACTIONS(7150), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7152), 1, + anon_sym_POUND, + STATE(929), 1, + sym__type, + STATE(1182), 1, + sym__static_type_identifier, + STATE(1295), 1, + sym_type_argument, + STATE(1296), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3861), 4, + ACTIONS(7154), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3999), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [49392] = 12, + STATE(1287), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58545] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405534,42 +414203,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2912), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7046), 1, - anon_sym_or, - STATE(3885), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7029), 1, + anon_sym_LPAREN, + ACTIONS(7031), 1, + anon_sym__, + ACTIONS(7033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7035), 1, + anon_sym_POUND, + STATE(850), 1, + sym__static_type_identifier, + STATE(902), 1, + sym_long_identifier, + STATE(903), 1, + sym_type_argument, + STATE(1188), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3862), 4, + ACTIONS(7037), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4000), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [49450] = 17, + STATE(905), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58618] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405580,47 +414257,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(3202), 1, sym_identifier, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7146), 1, + anon_sym_LPAREN, + ACTIONS(7148), 1, + anon_sym__, + ACTIONS(7150), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7152), 1, + anon_sym_POUND, + STATE(932), 1, + sym__type, + STATE(1182), 1, + sym__static_type_identifier, + STATE(1295), 1, + sym_type_argument, + STATE(1296), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4449), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3863), 4, + ACTIONS(7154), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4001), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4451), 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, - [49518] = 18, + STATE(1287), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58691] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405631,48 +414311,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(4328), 1, sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, + anon_sym_LPAREN, + ACTIONS(6202), 1, + anon_sym__, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, + anon_sym_POUND, + STATE(2131), 1, + sym__static_type_identifier, + STATE(2561), 1, + sym_type_argument, + STATE(2628), 1, sym_long_identifier, + STATE(2895), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3864), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4002), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 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, - [49588] = 28, + STATE(2630), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58764] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405685,56 +414367,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(6807), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6746), 1, + ACTIONS(6811), 1, anon_sym_interface, - ACTIONS(6748), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(6815), 1, anon_sym_val, - STATE(3804), 1, + ACTIONS(7156), 1, + sym__dedent, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3836), 1, + STATE(3982), 1, aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4367), 1, + STATE(4411), 1, sym_member_defn, - STATE(4807), 1, + STATE(4875), 1, aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, + STATE(5158), 1, sym__member_defns, - STATE(5182), 1, + STATE(5172), 1, sym__type_defn_elements, - STATE(5344), 1, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, sym_attributes, - STATE(7728), 1, + STATE(7830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(3865), 4, + STATE(4003), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [49678] = 17, + [58857] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405745,47 +414429,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(3280), 1, sym_identifier, - ACTIONS(6992), 1, - anon_sym_DASH_GT, - ACTIONS(6996), 1, - anon_sym_LT2, - ACTIONS(6998), 1, - anon_sym_LBRACK_RBRACK, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7095), 1, + anon_sym_LPAREN, + ACTIONS(7097), 1, + anon_sym__, + ACTIONS(7099), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7101), 1, + anon_sym_POUND, + STATE(968), 1, + sym__type, + STATE(1305), 1, + sym__static_type_identifier, + STATE(1405), 1, sym_long_identifier, + STATE(1406), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3866), 4, + ACTIONS(7103), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4004), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7048), 5, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(7050), 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, - [49746] = 18, + STATE(1408), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [58930] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405796,48 +414483,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(7061), 1, sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7065), 1, + anon_sym__, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, + anon_sym_POUND, + STATE(4491), 1, + sym__static_type_identifier, + STATE(4493), 1, + sym__type, + STATE(4665), 1, + sym_type_argument, + STATE(4781), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3867), 4, + ACTIONS(7071), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4005), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 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, - [49816] = 18, + STATE(4776), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59003] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405848,48 +414537,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6713), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, + STATE(5626), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3868), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4006), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2916), 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, - [49886] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59076] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405900,48 +414591,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6713), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, + STATE(5453), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3869), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4007), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 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, - [49956] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59149] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -405952,48 +414645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, sym_long_identifier, + STATE(5286), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2884), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3870), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4008), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2886), 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, - [50026] = 10, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59222] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406004,87 +414699,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3871), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2988), 9, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2990), 12, - anon_sym_EQ, - 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, - [50080] = 13, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6792), 1, - anon_sym_DOT, - ACTIONS(7052), 1, - anon_sym_COLON, - STATE(4246), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5288), 1, + sym__type, + STATE(5389), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3872), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4009), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [50140] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59295] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406095,48 +414753,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(3318), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym__, + ACTIONS(7162), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7164), 1, + anon_sym_POUND, + STATE(1019), 1, + sym__type, + STATE(1346), 1, + sym__static_type_identifier, + STATE(1409), 1, sym_long_identifier, + STATE(1411), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7054), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3873), 4, + ACTIONS(7166), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4010), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7056), 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, - [50210] = 10, + STATE(1412), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59368] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406147,17 +414807,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6904), 1, + anon_sym_or, + STATE(4030), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3874), 4, + STATE(4011), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 9, + ACTIONS(2960), 9, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_COLON_GT, @@ -406165,14 +414831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2977), 12, + ACTIONS(2962), 11, anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -406180,7 +414843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [50264] = 10, + [59427] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406191,40 +414854,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3318), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym__, + ACTIONS(7162), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7164), 1, + anon_sym_POUND, + STATE(983), 1, + sym__type, + STATE(1346), 1, + sym__static_type_identifier, + STATE(1409), 1, + sym_long_identifier, + STATE(1411), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3875), 4, + ACTIONS(7166), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4012), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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(3066), 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, - [50318] = 18, + STATE(1412), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59500] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406235,48 +414908,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(3318), 1, sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym__, + ACTIONS(7162), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7164), 1, + anon_sym_POUND, + STATE(985), 1, + sym__type, + STATE(1346), 1, + sym__static_type_identifier, + STATE(1409), 1, sym_long_identifier, + STATE(1411), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3876), 4, + ACTIONS(7166), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4013), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2928), 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, - [50388] = 12, + STATE(1412), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59573] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406287,42 +414962,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7005), 1, - anon_sym_DOT, - STATE(3848), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6276), 1, + anon_sym_LPAREN, + ACTIONS(6278), 1, + anon_sym__, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, + anon_sym_POUND, + ACTIONS(6868), 1, + sym_identifier, + STATE(3831), 1, + sym__static_type_identifier, + STATE(4259), 1, + sym_type_argument, + STATE(4380), 1, + sym_long_identifier, + STATE(5409), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3877), 4, + ACTIONS(6284), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4014), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [50446] = 11, + STATE(4383), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59646] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406333,41 +415018,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7058), 1, - anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3878), 5, + STATE(4015), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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(2977), 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(3088), 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, sym_identifier, - [50502] = 12, + ACTIONS(3090), 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, + [59701] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406378,42 +415061,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7000), 1, - anon_sym_or, - STATE(3846), 1, - aux_sym_type_argument_repeat1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 1, + sym_identifier, + STATE(4198), 1, + sym__type, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3879), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4016), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [50560] = 17, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59774] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406424,47 +415115,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, sym_long_identifier, + STATE(5528), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4449), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3880), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4017), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4451), 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, - [50628] = 18, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59847] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406475,48 +415169,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, + anon_sym__, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, + anon_sym_POUND, + ACTIONS(6866), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(4210), 1, + sym__static_type_identifier, + STATE(4321), 1, + sym__type, + STATE(4362), 1, + sym_type_argument, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3881), 4, + ACTIONS(5566), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4018), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2912), 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, - [50698] = 19, + STATE(4465), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [59920] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406527,38 +415223,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(6207), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(6209), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - STATE(407), 1, - sym__type, - STATE(2927), 1, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, sym__static_type_identifier, - STATE(2992), 1, + STATE(4258), 1, sym_type_argument, - STATE(3024), 1, + STATE(4354), 1, sym_long_identifier, - STATE(6528), 1, - sym__object_construction, + STATE(5267), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3882), 4, + STATE(4019), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3019), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -406569,7 +415265,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [50770] = 28, + sym_anon_record_type, + [59993] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406580,58 +415277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3809), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym__, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, + anon_sym_POUND, + STATE(437), 1, + sym__type, + STATE(3022), 1, + sym__static_type_identifier, + STATE(3106), 1, + sym_type_argument, + STATE(3136), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3883), 4, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4020), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [50860] = 28, + STATE(3124), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [60066] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406642,58 +415331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3789), 1, - aux_sym_interface_type_defn_repeat1, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4367), 1, - sym_member_defn, - STATE(4807), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5182), 1, - sym__type_defn_elements, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7170), 1, + anon_sym_LPAREN, + ACTIONS(7172), 1, + anon_sym__, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, + anon_sym_POUND, + STATE(4592), 1, + sym__type, + STATE(4613), 1, + sym__static_type_identifier, + STATE(4778), 1, + sym_type_argument, + STATE(4877), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3884), 4, + ACTIONS(7178), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4021), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [50950] = 12, + STATE(4888), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [60139] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406704,42 +415385,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7046), 1, - anon_sym_or, - STATE(3878), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7170), 1, + anon_sym_LPAREN, + ACTIONS(7172), 1, + anon_sym__, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, + anon_sym_POUND, + STATE(4604), 1, + sym__type, + STATE(4613), 1, + sym__static_type_identifier, + STATE(4778), 1, + sym_type_argument, + STATE(4877), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3885), 4, + ACTIONS(7178), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4022), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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(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, - [51008] = 18, + STATE(4888), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [60212] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406750,36 +415439,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, + STATE(2967), 1, + sym__type, + STATE(2995), 1, sym__static_type_identifier, - STATE(4258), 1, + STATE(3077), 1, sym_type_argument, - STATE(4326), 1, + STATE(3113), 1, sym_long_identifier, - STATE(5227), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3886), 4, + STATE(4023), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -406790,7 +415481,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51077] = 18, + sym_anon_record_type, + [60285] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406801,36 +415493,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3684), 1, + STATE(2971), 1, sym__type, - STATE(3705), 1, + STATE(2995), 1, + sym__static_type_identifier, + STATE(3077), 1, sym_type_argument, - STATE(3765), 1, + STATE(3113), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3887), 4, + STATE(4024), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -406841,7 +415535,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51146] = 18, + sym_anon_record_type, + [60358] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406852,36 +415547,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - ACTIONS(6973), 1, - sym_identifier, - STATE(3879), 1, + STATE(2970), 1, + sym__type, + STATE(2995), 1, sym__static_type_identifier, - STATE(4301), 1, + STATE(3077), 1, sym_type_argument, - STATE(4382), 1, + STATE(3113), 1, sym_long_identifier, - STATE(5513), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3888), 4, + STATE(4025), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -406892,7 +415589,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51215] = 18, + sym_anon_record_type, + [60431] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406903,47 +415601,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(7170), 1, + anon_sym_LPAREN, + ACTIONS(7172), 1, + anon_sym__, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, + anon_sym_POUND, + STATE(4613), 1, + sym__static_type_identifier, + STATE(4643), 1, + sym__type, + STATE(4778), 1, + sym_type_argument, + STATE(4877), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4660), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3889), 4, + ACTIONS(7178), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4026), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4662), 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, - [51284] = 18, + STATE(4888), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [60504] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -406954,36 +415655,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, + ACTIONS(5328), 1, sym_identifier, - ACTIONS(7063), 1, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(7065), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(7067), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(2969), 1, sym__type, - STATE(4522), 1, + STATE(2995), 1, sym__static_type_identifier, - STATE(4667), 1, + STATE(3077), 1, sym_type_argument, - STATE(4693), 1, + STATE(3113), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7069), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3890), 4, + STATE(4027), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4721), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -406994,7 +415697,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51353] = 18, + sym_anon_record_type, + [60577] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407005,36 +415709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(7049), 1, sym_identifier, - ACTIONS(7073), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(7053), 1, anon_sym__, - ACTIONS(7077), 1, + ACTIONS(7055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7057), 1, anon_sym_POUND, - STATE(4523), 1, - sym__static_type_identifier, - STATE(4591), 1, + STATE(4557), 1, sym__type, - STATE(4675), 1, + STATE(4585), 1, + sym__static_type_identifier, + STATE(4758), 1, sym_type_argument, - STATE(4697), 1, + STATE(4937), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, + ACTIONS(7059), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3891), 4, + STATE(4028), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, + STATE(4936), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407045,7 +415751,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51422] = 18, + sym_anon_record_type, + [60650] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407056,36 +415763,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6816), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3778), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(4258), 1, + STATE(5222), 1, sym_type_argument, - STATE(4326), 1, + STATE(5389), 1, sym_long_identifier, - STATE(4687), 1, + STATE(5616), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3892), 4, + STATE(4029), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407096,7 +415805,54 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51491] = 18, + sym_anon_record_type, + [60723] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7180), 1, + anon_sym_or, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4030), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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(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, + [60780] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407107,36 +415863,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3118), 1, + ACTIONS(4328), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(7083), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(7085), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - STATE(905), 1, - sym__type, - STATE(1022), 1, + STATE(2131), 1, sym__static_type_identifier, - STATE(1077), 1, - sym_long_identifier, - STATE(1078), 1, + STATE(2560), 1, + sym__type, + STATE(2561), 1, sym_type_argument, + STATE(2628), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7087), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3893), 4, + STATE(4031), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1079), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407147,7 +415905,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51560] = 18, + sym_anon_record_type, + [60853] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407158,36 +415917,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7089), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7091), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7093), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(830), 1, - sym__type, - STATE(863), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(881), 1, - sym_long_identifier, - STATE(883), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5598), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3894), 4, + STATE(4032), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(891), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407198,7 +415959,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51629] = 18, + sym_anon_record_type, + [60926] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407209,47 +415971,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(6997), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7001), 1, + anon_sym__, + ACTIONS(7003), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7005), 1, + anon_sym_POUND, + STATE(4553), 1, + sym__type, + STATE(4608), 1, + sym__static_type_identifier, + STATE(4767), 1, + sym_type_argument, + STATE(4914), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4706), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3895), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4033), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4708), 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, - [51698] = 18, + STATE(4906), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [60999] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407260,36 +416025,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2562), 1, + STATE(408), 1, sym__type, - STATE(2591), 1, + STATE(2995), 1, + sym__static_type_identifier, + STATE(3077), 1, sym_type_argument, - STATE(2613), 1, + STATE(3113), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3896), 4, + STATE(4034), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407300,7 +416067,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51767] = 18, + sym_anon_record_type, + [61072] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407311,36 +416079,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7170), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7172), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, anon_sym_POUND, - ACTIONS(6973), 1, - sym_identifier, - STATE(3879), 1, + STATE(4613), 1, sym__static_type_identifier, - STATE(4301), 1, + STATE(4678), 1, + sym__type, + STATE(4778), 1, sym_type_argument, - STATE(4382), 1, + STATE(4877), 1, sym_long_identifier, - STATE(5528), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(7178), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3897), 4, + STATE(4035), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(4888), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407351,7 +416121,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51836] = 27, + sym_anon_record_type, + [61145] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407362,56 +416133,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7728), 1, - sym_access_modifier, - STATE(7752), 1, - sym__type_defn_elements, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, + anon_sym_LPAREN, + ACTIONS(6977), 1, + anon_sym__, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, + anon_sym_POUND, + STATE(3238), 1, + sym__type, + STATE(3248), 1, + sym__static_type_identifier, + STATE(3267), 1, + sym_type_argument, + STATE(3304), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(3898), 4, + ACTIONS(6983), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4036), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [51923] = 18, + STATE(3309), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [61218] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407422,36 +416187,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(6278), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(6280), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6282), 1, anon_sym_POUND, - ACTIONS(6816), 1, + ACTIONS(6868), 1, sym_identifier, - STATE(3778), 1, + STATE(3831), 1, sym__static_type_identifier, - STATE(3984), 1, - sym__type, - STATE(4258), 1, + STATE(4259), 1, sym_type_argument, - STATE(4326), 1, + STATE(4380), 1, sym_long_identifier, + STATE(4651), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(6284), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3899), 4, + STATE(4037), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(4383), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407462,7 +416229,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [51992] = 18, + sym_anon_record_type, + [61291] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407473,36 +416241,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6292), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6294), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6296), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6298), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6541), 1, sym_identifier, - STATE(4888), 1, + STATE(3663), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(3678), 1, + sym__type, + STATE(3699), 1, sym_type_argument, - STATE(5348), 1, + STATE(3742), 1, sym_long_identifier, - STATE(5457), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6300), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3900), 4, + STATE(4038), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(3725), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407513,7 +416283,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52061] = 18, + sym_anon_record_type, + [61364] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407524,36 +416295,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, + ACTIONS(3138), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(7099), 1, + ACTIONS(7021), 1, anon_sym__, - ACTIONS(7101), 1, + ACTIONS(7023), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7025), 1, anon_sym_POUND, - STATE(2956), 1, - sym__static_type_identifier, - STATE(2960), 1, + STATE(910), 1, sym__type, - STATE(3013), 1, - sym_type_argument, - STATE(3093), 1, + STATE(965), 1, + sym__static_type_identifier, + STATE(1069), 1, sym_long_identifier, + STATE(1076), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, + ACTIONS(7027), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3901), 4, + STATE(4039), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, + STATE(1104), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407564,7 +416337,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52130] = 18, + sym_anon_record_type, + [61437] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407575,36 +416349,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(6977), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3965), 1, + STATE(3240), 1, sym__type, - STATE(4258), 1, + STATE(3248), 1, + sym__static_type_identifier, + STATE(3267), 1, sym_type_argument, - STATE(4326), 1, + STATE(3304), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3902), 4, + STATE(4040), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(3309), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407615,7 +416391,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52199] = 18, + sym_anon_record_type, + [61510] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407626,36 +416403,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, anon_sym_LPAREN, - ACTIONS(7099), 1, + ACTIONS(6977), 1, anon_sym__, - ACTIONS(7101), 1, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, anon_sym_POUND, - STATE(2956), 1, - sym__static_type_identifier, - STATE(2959), 1, + STATE(3241), 1, sym__type, - STATE(3013), 1, + STATE(3248), 1, + sym__static_type_identifier, + STATE(3267), 1, sym_type_argument, - STATE(3093), 1, + STATE(3304), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3903), 4, + STATE(4041), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, + STATE(3309), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407666,7 +416445,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52268] = 18, + sym_anon_record_type, + [61583] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407677,36 +416457,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(6977), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, anon_sym_POUND, - STATE(424), 1, + STATE(3245), 1, sym__type, - STATE(2977), 1, + STATE(3248), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(3267), 1, sym_type_argument, - STATE(3120), 1, + STATE(3304), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3904), 4, + STATE(4042), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(3309), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407717,7 +416499,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52337] = 18, + sym_anon_record_type, + [61656] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407728,36 +416511,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3118), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7083), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7085), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(914), 1, - sym__type, - STATE(1022), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(1077), 1, - sym_long_identifier, - STATE(1078), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5630), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7087), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3905), 4, + STATE(4043), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1079), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407768,7 +416553,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52406] = 18, + sym_anon_record_type, + [61729] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407779,36 +416565,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7183), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4044), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [61822] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7115), 1, + ACTIONS(7170), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(7172), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, anon_sym_POUND, - STATE(4530), 1, - sym__type, - STATE(4540), 1, + STATE(4613), 1, sym__static_type_identifier, - STATE(4669), 1, + STATE(4646), 1, + sym__type, + STATE(4778), 1, sym_type_argument, - STATE(4729), 1, + STATE(4877), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(7178), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3906), 4, + STATE(4045), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(4888), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407819,7 +416671,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52475] = 18, + sym_anon_record_type, + [61895] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407830,36 +416683,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7185), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4046), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [61988] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3264), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7187), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(7189), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(7191), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7193), 1, anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3942), 1, + STATE(986), 1, sym__type, - STATE(4258), 1, + STATE(1293), 1, + sym__static_type_identifier, + STATE(1457), 1, sym_type_argument, - STATE(4326), 1, + STATE(1470), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(7195), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3907), 4, + STATE(4047), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(1454), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407870,7 +416789,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52544] = 18, + sym_anon_record_type, + [62061] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407881,36 +416801,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7115), 1, + ACTIONS(7170), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(7172), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, anon_sym_POUND, - STATE(4540), 1, + STATE(4613), 1, sym__static_type_identifier, - STATE(4543), 1, + STATE(4623), 1, sym__type, - STATE(4669), 1, + STATE(4778), 1, sym_type_argument, - STATE(4729), 1, + STATE(4877), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(7178), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3908), 4, + STATE(4048), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(4888), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -407921,7 +416843,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52613] = 10, + sym_anon_record_type, + [62134] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407932,39 +416855,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7197), 1, + anon_sym_LBRACK_LT, + STATE(4224), 1, + sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3909), 4, + ACTIONS(6737), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4049), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6476), 9, - anon_sym_LPAREN, - anon_sym_null, + aux_sym_attributes_repeat1, + ACTIONS(6742), 17, + 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(6478), 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, - [52666] = 18, + anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_exception, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [62193] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -407975,36 +416902,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6816), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3778), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(3889), 1, - sym__type, - STATE(4258), 1, + STATE(5222), 1, sym_type_argument, - STATE(4326), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5632), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3910), 4, + STATE(4050), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408015,7 +416944,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52735] = 18, + sym_anon_record_type, + [62266] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408026,36 +416956,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, + ACTIONS(3250), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, + ACTIONS(7200), 1, anon_sym_LPAREN, - ACTIONS(7099), 1, + ACTIONS(7202), 1, anon_sym__, - ACTIONS(7101), 1, + ACTIONS(7204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7206), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(1009), 1, sym__type, - STATE(2956), 1, + STATE(1341), 1, sym__static_type_identifier, - STATE(3013), 1, + STATE(1372), 1, sym_type_argument, - STATE(3093), 1, + STATE(1410), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, + ACTIONS(7208), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3911), 4, + STATE(4051), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, + STATE(1353), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408066,7 +416998,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52804] = 18, + sym_anon_record_type, + [62339] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408077,36 +417010,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3118), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(7083), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(7085), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - STATE(915), 1, - sym__type, - STATE(1022), 1, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, sym__static_type_identifier, - STATE(1077), 1, - sym_long_identifier, - STATE(1078), 1, + STATE(4252), 1, + sym__type, + STATE(4258), 1, sym_type_argument, + STATE(4354), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7087), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3912), 4, + STATE(4052), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1079), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408117,7 +417052,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52873] = 18, + sym_anon_record_type, + [62412] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408128,36 +417064,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(7099), 1, + ACTIONS(5554), 1, anon_sym__, - ACTIONS(7101), 1, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, anon_sym_POUND, - STATE(2956), 1, + ACTIONS(6866), 1, + sym_identifier, + STATE(4210), 1, sym__static_type_identifier, - STATE(2957), 1, + STATE(4358), 1, sym__type, - STATE(3013), 1, + STATE(4362), 1, sym_type_argument, - STATE(3093), 1, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3913), 4, + STATE(4053), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, + STATE(4465), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408168,7 +417106,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [52942] = 18, + sym_anon_record_type, + [62485] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408179,36 +417118,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, + ACTIONS(3138), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(7021), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(7023), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7025), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(915), 1, sym__type, - STATE(2123), 1, + STATE(965), 1, sym__static_type_identifier, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, + STATE(1069), 1, sym_long_identifier, + STATE(1076), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(7027), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3914), 4, + STATE(4054), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(1104), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408219,7 +417160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53011] = 18, + sym_anon_record_type, + [62558] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408230,36 +417172,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(6965), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(6967), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(6969), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6971), 1, anon_sym_POUND, - STATE(2050), 1, - sym__type, - STATE(2123), 1, + STATE(3237), 1, sym__static_type_identifier, - STATE(2591), 1, + STATE(3246), 1, + sym__type, + STATE(3265), 1, sym_type_argument, - STATE(2613), 1, + STATE(3310), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(6973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3915), 4, + STATE(4055), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(3308), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408270,7 +417214,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53080] = 18, + sym_anon_record_type, + [62631] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408281,36 +417226,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(6965), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(6967), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(6969), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6971), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(3235), 1, sym__type, - STATE(2123), 1, + STATE(3237), 1, sym__static_type_identifier, - STATE(2591), 1, + STATE(3265), 1, sym_type_argument, - STATE(2613), 1, + STATE(3310), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(6973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3916), 4, + STATE(4056), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(3308), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408321,7 +417268,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53149] = 18, + sym_anon_record_type, + [62704] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408332,36 +417280,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(6965), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(6967), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(6969), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6971), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, + STATE(3237), 1, sym__static_type_identifier, - STATE(4044), 1, + STATE(3243), 1, + sym__type, + STATE(3265), 1, sym_type_argument, - STATE(4349), 1, + STATE(3310), 1, sym_long_identifier, - STATE(5336), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(6973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3917), 4, + STATE(4057), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(3308), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408372,7 +417322,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53218] = 18, + sym_anon_record_type, + [62777] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408383,36 +417334,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7170), 1, anon_sym_LPAREN, - ACTIONS(6310), 1, + ACTIONS(7172), 1, anon_sym__, - ACTIONS(6314), 1, + ACTIONS(7174), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7176), 1, anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, + STATE(4613), 1, sym__static_type_identifier, - STATE(3895), 1, + STATE(4624), 1, sym__type, - STATE(4258), 1, + STATE(4778), 1, sym_type_argument, - STATE(4326), 1, + STATE(4877), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(7178), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3918), 4, + STATE(4058), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, + STATE(4888), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408423,7 +417376,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53287] = 18, + sym_anon_record_type, + [62850] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408434,36 +417388,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(2112), 1, - sym__type, - STATE(2123), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(2591), 1, + STATE(5222), 1, sym_type_argument, - STATE(2613), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5480), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3919), 4, + STATE(4059), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408474,7 +417430,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53356] = 11, + sym_anon_record_type, + [62923] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408485,40 +417442,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7123), 1, - anon_sym_STAR, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_LPAREN, + ACTIONS(6967), 1, + anon_sym__, + ACTIONS(6969), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6971), 1, + anon_sym_POUND, + STATE(3237), 1, + sym__static_type_identifier, + STATE(3239), 1, + sym__type, + STATE(3265), 1, + sym_type_argument, + STATE(3310), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3920), 5, + ACTIONS(6973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4060), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 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(2916), 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, - [53411] = 10, + STATE(3308), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [62996] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408529,39 +417496,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5594), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3921), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4061), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6488), 9, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [63069] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5252), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5254), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6490), 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, - [53464] = 18, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5553), 1, + sym__type, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4062), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [63142] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408572,36 +417604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7115), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(4475), 1, + STATE(426), 1, sym__type, - STATE(4540), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(4669), 1, + STATE(3106), 1, sym_type_argument, - STATE(4729), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3922), 4, + STATE(4063), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408612,7 +417646,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53533] = 18, + sym_anon_record_type, + [63215] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408623,36 +417658,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(6251), 1, + sym__dedent, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4076), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4064), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [63308] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4328), 1, sym_identifier, - ACTIONS(7115), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - STATE(4513), 1, - sym__type, - STATE(4540), 1, + STATE(2131), 1, sym__static_type_identifier, - STATE(4669), 1, + STATE(2561), 1, sym_type_argument, - STATE(4729), 1, + STATE(2571), 1, + sym__type, + STATE(2628), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3923), 4, + STATE(4065), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408663,7 +417764,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53602] = 18, + sym_anon_record_type, + [63381] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408674,36 +417776,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(3138), 1, sym_identifier, - ACTIONS(7115), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(7021), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(7023), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7025), 1, anon_sym_POUND, - STATE(4512), 1, + STATE(914), 1, sym__type, - STATE(4540), 1, + STATE(965), 1, sym__static_type_identifier, - STATE(4669), 1, - sym_type_argument, - STATE(4729), 1, + STATE(1069), 1, sym_long_identifier, + STATE(1076), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(7027), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3924), 4, + STATE(4066), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(1104), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408714,7 +417818,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53671] = 18, + sym_anon_record_type, + [63454] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408725,36 +417830,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7119), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4510), 1, - sym__type, - STATE(4540), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4669), 1, + STATE(5222), 1, sym_type_argument, - STATE(4729), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5485), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3925), 4, + STATE(4067), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408765,7 +417872,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53740] = 18, + sym_anon_record_type, + [63527] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408776,36 +417884,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5568), 1, + STATE(5533), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3926), 4, + STATE(4068), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408816,7 +417926,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53809] = 18, + sym_anon_record_type, + [63600] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408827,36 +417938,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5479), 1, + STATE(5654), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3927), 4, + STATE(4069), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408867,7 +417980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53878] = 18, + sym_anon_record_type, + [63673] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408878,36 +417992,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5554), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3862), 1, + STATE(4210), 1, sym__static_type_identifier, - STATE(4343), 1, - sym__type, - STATE(4357), 1, + STATE(4362), 1, sym_type_argument, - STATE(4406), 1, + STATE(4364), 1, + sym__type, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3928), 4, + STATE(4070), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4465), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408918,7 +418034,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [53947] = 18, + sym_anon_record_type, + [63746] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408929,36 +418046,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, + ACTIONS(3157), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(7073), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(7075), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(7077), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7079), 1, anon_sym_POUND, - STATE(422), 1, + STATE(946), 1, sym__type, - STATE(2977), 1, + STATE(1244), 1, sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, + STATE(1256), 1, sym_long_identifier, + STATE(1259), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(7081), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3929), 4, + STATE(4071), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(1262), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -408969,7 +418088,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54016] = 18, + sym_anon_record_type, + [63819] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -408980,36 +418100,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(5554), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, anon_sym_POUND, - STATE(426), 1, + ACTIONS(6866), 1, + sym_identifier, + STATE(4200), 1, sym__type, - STATE(2977), 1, + STATE(4210), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(4362), 1, sym_type_argument, - STATE(3120), 1, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3930), 4, + STATE(4072), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(4465), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409020,7 +418142,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54085] = 18, + sym_anon_record_type, + [63892] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409031,36 +418154,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(434), 1, - sym__type, - STATE(2977), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(5222), 1, sym_type_argument, - STATE(3120), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5531), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3931), 4, + STATE(4073), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409071,7 +418196,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54154] = 18, + sym_anon_record_type, + [63965] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409082,36 +418208,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5554), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3862), 1, + STATE(4210), 1, sym__static_type_identifier, - STATE(4292), 1, - sym__type, - STATE(4357), 1, + STATE(4362), 1, sym_type_argument, - STATE(4406), 1, + STATE(4368), 1, + sym__type, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3932), 4, + STATE(4074), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4465), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409122,7 +418250,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54223] = 18, + sym_anon_record_type, + [64038] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409133,36 +418262,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7128), 1, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(7132), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - STATE(4565), 1, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, sym__static_type_identifier, - STATE(4579), 1, + STATE(4247), 1, sym__type, - STATE(4708), 1, + STATE(4258), 1, sym_type_argument, - STATE(4893), 1, + STATE(4354), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3933), 4, + STATE(4075), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409173,7 +418304,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54292] = 18, + sym_anon_record_type, + [64111] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409184,47 +418316,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(4346), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7210), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3934), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4076), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [54361] = 18, + [64204] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409235,47 +418380,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3118), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, - anon_sym_LPAREN, - ACTIONS(7083), 1, - anon_sym__, - ACTIONS(7085), 1, - anon_sym_POUND, - STATE(907), 1, - sym__type, - STATE(1022), 1, - sym__static_type_identifier, - STATE(1077), 1, - sym_long_identifier, - STATE(1078), 1, - sym_type_argument, + ACTIONS(6947), 1, + anon_sym_or, + STATE(3812), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7087), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3935), 4, + STATE(4077), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1079), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [54430] = 18, + ACTIONS(2960), 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(2962), 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, + [64263] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409286,36 +418427,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6402), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3636), 1, - sym__type, - STATE(3640), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(3683), 1, + STATE(5222), 1, sym_type_argument, - STATE(3722), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5655), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3936), 4, + STATE(4078), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409326,7 +418469,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54499] = 18, + sym_anon_record_type, + [64336] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409337,36 +418481,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, - sym_identifier, - ACTIONS(7136), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7138), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7140), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3230), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3243), 1, - sym__type, - STATE(3256), 1, + STATE(5222), 1, sym_type_argument, - STATE(3278), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5657), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3937), 4, + STATE(4079), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409377,7 +418523,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54568] = 18, + sym_anon_record_type, + [64409] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409388,36 +418535,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4080), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3174), 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, sym_identifier, - ACTIONS(7128), 1, + ACTIONS(3176), 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, + [64464] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7132), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4580), 1, - sym__type, - STATE(4708), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, sym_type_argument, - STATE(4893), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5550), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3938), 4, + STATE(4081), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409428,7 +418622,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54637] = 18, + sym_anon_record_type, + [64537] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409439,36 +418634,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3857), 1, - sym__type, - STATE(3862), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(4357), 1, + STATE(5222), 1, sym_type_argument, - STATE(4406), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5452), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3939), 4, + STATE(4082), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409479,7 +418676,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54706] = 18, + sym_anon_record_type, + [64610] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409490,36 +418688,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5863), 1, + ACTIONS(7061), 1, sym_identifier, - ACTIONS(7144), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7146), 1, + ACTIONS(7065), 1, anon_sym__, - ACTIONS(7148), 1, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - STATE(3217), 1, - sym__type, - STATE(3225), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(3251), 1, + STATE(4521), 1, + sym__type, + STATE(4665), 1, sym_type_argument, - STATE(3268), 1, + STATE(4781), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3940), 4, + STATE(4083), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3284), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409530,7 +418730,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54775] = 18, + sym_anon_record_type, + [64683] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409541,36 +418742,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7138), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7140), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(3228), 1, + STATE(439), 1, sym__type, - STATE(3230), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(3256), 1, + STATE(3106), 1, sym_type_argument, - STATE(3278), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3941), 4, + STATE(4084), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409581,7 +418784,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54844] = 18, + sym_anon_record_type, + [64756] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409592,87 +418796,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, - sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4644), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3942), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4646), 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, - [54913] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(4888), 1, + STATE(4199), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(4359), 1, sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5462), 1, + STATE(4377), 1, sym__type, + STATE(4407), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3943), 4, + STATE(4085), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409683,7 +418838,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [54982] = 18, + sym_anon_record_type, + [64829] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409694,36 +418850,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, - sym_identifier, - ACTIONS(7136), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7138), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7140), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3227), 1, - sym__type, - STATE(3230), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3256), 1, + STATE(5222), 1, sym_type_argument, - STATE(3278), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5458), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3944), 4, + STATE(4086), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409734,7 +418892,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55051] = 18, + sym_anon_record_type, + [64902] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409745,36 +418904,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(3862), 1, + STATE(3879), 1, sym__static_type_identifier, - STATE(4312), 1, + STATE(4239), 1, sym__type, - STATE(4357), 1, + STATE(4258), 1, sym_type_argument, - STATE(4406), 1, + STATE(4354), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3945), 4, + STATE(4087), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409785,7 +418946,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55120] = 18, + sym_anon_record_type, + [64975] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409796,36 +418958,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, - sym_identifier, - ACTIONS(7136), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(7138), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(7140), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - STATE(3230), 1, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, sym__static_type_identifier, - STATE(3232), 1, - sym__type, - STATE(3256), 1, + STATE(4359), 1, sym_type_argument, - STATE(3278), 1, + STATE(4385), 1, + sym__type, + STATE(4407), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3946), 4, + STATE(4088), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409836,7 +419000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55189] = 18, + sym_anon_record_type, + [65048] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409847,36 +419012,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(6402), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - ACTIONS(6514), 1, - sym_identifier, - STATE(3640), 1, + STATE(2131), 1, sym__static_type_identifier, - STATE(3676), 1, + STATE(2143), 1, sym__type, - STATE(3683), 1, + STATE(2561), 1, sym_type_argument, - STATE(3722), 1, + STATE(2628), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3947), 4, + STATE(4089), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409887,7 +419054,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55258] = 18, + sym_anon_record_type, + [65121] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409898,36 +419066,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6402), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3640), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(3653), 1, - sym__type, - STATE(3683), 1, + STATE(5222), 1, sym_type_argument, - STATE(3722), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5464), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3948), 4, + STATE(4090), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409938,7 +419108,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55327] = 18, + sym_anon_record_type, + [65194] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -409949,36 +419120,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7154), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4459), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(5222), 1, sym_type_argument, - STATE(4620), 1, - sym__type, - STATE(4684), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5497), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3949), 4, + STATE(4091), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -409989,7 +419162,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55396] = 18, + sym_anon_record_type, + [65267] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410000,36 +419174,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3250), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(7200), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(7202), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(7204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7206), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, + STATE(963), 1, + sym__type, + STATE(1341), 1, sym__static_type_identifier, - STATE(4044), 1, + STATE(1372), 1, sym_type_argument, - STATE(4349), 1, + STATE(1410), 1, sym_long_identifier, - STATE(5312), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(7208), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3950), 4, + STATE(4092), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(1353), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410040,7 +419216,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55465] = 18, + sym_anon_record_type, + [65340] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410051,36 +419228,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5419), 1, + STATE(5506), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3951), 4, + STATE(4093), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410091,7 +419270,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55534] = 18, + sym_anon_record_type, + [65413] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410102,36 +419282,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7085), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(7087), 1, anon_sym__, - ACTIONS(6402), 1, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, anon_sym_POUND, - ACTIONS(6514), 1, - sym_identifier, - STATE(3640), 1, + STATE(4522), 1, sym__static_type_identifier, - STATE(3675), 1, + STATE(4560), 1, sym__type, - STATE(3683), 1, + STATE(4662), 1, sym_type_argument, - STATE(3722), 1, + STATE(4782), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, + ACTIONS(7093), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3952), 4, + STATE(4094), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, + STATE(4736), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410142,7 +419324,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55603] = 18, + sym_anon_record_type, + [65486] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410153,36 +419336,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(4328), 1, sym_identifier, - ACTIONS(7154), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(2116), 1, + sym__type, + STATE(2131), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(2561), 1, sym_type_argument, - STATE(4600), 1, - sym__type, - STATE(4684), 1, + STATE(2628), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3953), 4, + STATE(4095), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410193,7 +419378,10 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55672] = 18, + sym_anon_record_type, + [65559] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410204,47 +419392,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - ACTIONS(6514), 1, - sym_identifier, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3673), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3954), 4, + STATE(4096), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [55741] = 18, + ACTIONS(7212), 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, + sym_identifier, + ACTIONS(7214), 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, + [65614] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410255,36 +419435,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(6402), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3640), 1, + STATE(4199), 1, sym__static_type_identifier, - STATE(3669), 1, - sym__type, - STATE(3683), 1, + STATE(4359), 1, sym_type_argument, - STATE(3722), 1, + STATE(4381), 1, + sym__type, + STATE(4407), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3955), 4, + STATE(4097), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410295,7 +419477,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55810] = 18, + sym_anon_record_type, + [65687] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410306,36 +419489,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(7154), 1, + ACTIONS(7085), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(7087), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, anon_sym_POUND, - STATE(4418), 1, - sym__type, - STATE(4459), 1, + STATE(4522), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(4572), 1, + sym__type, + STATE(4662), 1, sym_type_argument, - STATE(4684), 1, + STATE(4782), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(7093), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3956), 4, + STATE(4098), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(4736), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410346,7 +419531,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55879] = 18, + sym_anon_record_type, + [65760] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410357,36 +419543,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7154), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(4408), 1, - sym__type, - STATE(4459), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(3040), 1, + sym__type, + STATE(3106), 1, sym_type_argument, - STATE(4684), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3957), 4, + STATE(4099), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410397,7 +419585,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [55948] = 18, + sym_anon_record_type, + [65833] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410408,36 +419597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5554), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(5560), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5564), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3862), 1, + STATE(4210), 1, sym__static_type_identifier, - STATE(4311), 1, + STATE(4212), 1, sym__type, - STATE(4357), 1, + STATE(4362), 1, sym_type_argument, - STATE(4406), 1, + STATE(4459), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3958), 4, + STATE(4100), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4465), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410448,50 +419639,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56017] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3959), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3028), 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(3026), 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, - [56070] = 18, + sym_anon_record_type, + [65906] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410502,36 +419651,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7154), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4394), 1, - sym__type, - STATE(4459), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(5222), 1, sym_type_argument, - STATE(4684), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5597), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3960), 4, + STATE(4101), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410542,7 +419693,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56139] = 18, + sym_anon_record_type, + [65979] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410553,36 +419705,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7154), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4427), 1, - sym__type, - STATE(4459), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(5222), 1, sym_type_argument, - STATE(4684), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5543), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3961), 4, + STATE(4102), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410593,7 +419747,10 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56208] = 10, + sym_anon_record_type, + [66052] = 24, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410604,39 +419761,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6879), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(3962), 4, + ACTIONS(7216), 1, + anon_sym_y, + ACTIONS(7218), 1, + anon_sym_uy, + ACTIONS(7220), 1, + anon_sym_s, + ACTIONS(7222), 1, + anon_sym_us, + ACTIONS(7224), 1, + anon_sym_l, + ACTIONS(7226), 1, + aux_sym_uint32_token1, + ACTIONS(7228), 1, + anon_sym_n, + ACTIONS(7230), 1, + anon_sym_un, + ACTIONS(7232), 1, + anon_sym_L, + ACTIONS(7234), 1, + aux_sym_uint64_token1, + ACTIONS(7236), 1, + aux_sym_bignum_token1, + ACTIONS(7238), 1, + aux_sym_decimal_token1, + ACTIONS(7240), 1, + anon_sym_DOT2, + ACTIONS(7242), 1, + aux_sym_float_token1, + STATE(4103), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6881), 18, - 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_exception, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [56261] = 18, + ACTIONS(2526), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [66135] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410647,36 +419818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - STATE(431), 1, - sym__type, - STATE(2977), 1, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(4322), 1, + sym__type, + STATE(4359), 1, sym_type_argument, - STATE(3120), 1, + STATE(4407), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3963), 4, + STATE(4104), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410687,7 +419860,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56330] = 18, + sym_anon_record_type, + [66208] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410698,36 +419872,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5378), 1, + STATE(5634), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3964), 4, + STATE(4105), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410738,7 +419914,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56399] = 18, + sym_anon_record_type, + [66281] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410749,47 +419926,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, + ACTIONS(7061), 1, sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7065), 1, + anon_sym__, + ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, + anon_sym_POUND, + STATE(4491), 1, + sym__static_type_identifier, + STATE(4523), 1, + sym__type, + STATE(4665), 1, + sym_type_argument, + STATE(4781), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4638), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3965), 4, + ACTIONS(7071), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4106), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4640), 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, - [56468] = 18, + STATE(4776), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [66354] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410800,36 +419980,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5221), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(6751), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(6753), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, + STATE(2923), 1, sym__static_type_identifier, - STATE(4044), 1, + STATE(2942), 1, + sym__type, + STATE(3025), 1, sym_type_argument, - STATE(4349), 1, + STATE(3094), 1, sym_long_identifier, - STATE(5286), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(6759), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3966), 4, + STATE(4107), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(3071), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410840,7 +420022,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56537] = 18, + sym_anon_record_type, + [66427] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410851,36 +420034,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(2912), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7029), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7031), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7035), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(4889), 1, + STATE(834), 1, sym__type, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + STATE(850), 1, + sym__static_type_identifier, + STATE(902), 1, sym_long_identifier, + STATE(903), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7037), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3967), 4, + STATE(4108), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(905), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410891,7 +420076,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56606] = 18, + sym_anon_record_type, + [66500] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410902,36 +420088,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5863), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(7144), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7039), 1, anon_sym_LPAREN, - ACTIONS(7146), 1, + ACTIONS(7041), 1, anon_sym__, - ACTIONS(7148), 1, + ACTIONS(7043), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7045), 1, anon_sym_POUND, - STATE(3225), 1, - sym__static_type_identifier, - STATE(3229), 1, + STATE(1018), 1, sym__type, - STATE(3251), 1, + STATE(1260), 1, + sym__static_type_identifier, + STATE(1464), 1, sym_type_argument, - STATE(3268), 1, + STATE(1465), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, + ACTIONS(7047), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3968), 4, + STATE(4109), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3284), 10, + STATE(1461), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410942,7 +420130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56675] = 18, + sym_anon_record_type, + [66573] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -410953,36 +420142,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3340), 1, + ACTIONS(5221), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, + ACTIONS(6751), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(6753), 1, anon_sym__, - ACTIONS(7166), 1, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, anon_sym_POUND, - STATE(995), 1, - sym__type, - STATE(1271), 1, + STATE(2923), 1, sym__static_type_identifier, - STATE(1447), 1, + STATE(2929), 1, + sym__type, + STATE(3025), 1, sym_type_argument, - STATE(1454), 1, + STATE(3094), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, + ACTIONS(6759), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3969), 4, + STATE(4110), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1444), 10, + STATE(3071), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -410993,7 +420184,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56744] = 18, + sym_anon_record_type, + [66646] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411004,36 +420196,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3879), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(4301), 1, + STATE(5222), 1, sym_type_argument, - STATE(4382), 1, + STATE(5389), 1, sym_long_identifier, - STATE(4751), 1, + STATE(5556), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3970), 4, + STATE(4111), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411044,7 +420238,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56813] = 18, + sym_anon_record_type, + [66719] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411055,36 +420250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(5221), 1, sym_identifier, - ACTIONS(7172), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6751), 1, anon_sym_LPAREN, - ACTIONS(7174), 1, + ACTIONS(6753), 1, anon_sym__, - ACTIONS(7176), 1, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, anon_sym_POUND, - STATE(4606), 1, + STATE(2923), 1, sym__static_type_identifier, - STATE(4651), 1, + STATE(2928), 1, sym__type, - STATE(4734), 1, + STATE(3025), 1, sym_type_argument, - STATE(4820), 1, + STATE(3094), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, + ACTIONS(6759), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3971), 4, + STATE(4112), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, + STATE(3071), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411095,7 +420292,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [56882] = 12, + sym_anon_record_type, + [66792] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411106,81 +420304,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6891), 1, - anon_sym_STAR, - STATE(3920), 1, - aux_sym_compound_type_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3972), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2984), 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(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, + ACTIONS(3250), 1, sym_identifier, - [56939] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7182), 1, + ACTIONS(7200), 1, anon_sym_LPAREN, - ACTIONS(7184), 1, + ACTIONS(7202), 1, anon_sym__, - ACTIONS(7186), 1, + ACTIONS(7204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7206), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(959), 1, sym__type, - STATE(4610), 1, + STATE(1341), 1, sym__static_type_identifier, - STATE(4768), 1, + STATE(1372), 1, sym_type_argument, - STATE(4771), 1, + STATE(1410), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, + ACTIONS(7208), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3973), 4, + STATE(4113), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4843), 10, + STATE(1353), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411191,7 +420346,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57008] = 12, + sym_anon_record_type, + [66865] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411202,81 +420358,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5198), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(3250), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7190), 1, - anon_sym_interface, - STATE(4425), 1, - sym_interface_implementation, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3974), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - ACTIONS(5196), 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_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [57065] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(7200), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(7202), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(7204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7206), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, + STATE(980), 1, + sym__type, + STATE(1341), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(1372), 1, sym_type_argument, - STATE(5348), 1, + STATE(1410), 1, sym_long_identifier, - STATE(5501), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(7208), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3975), 4, + STATE(4114), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(1353), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411287,7 +420400,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57134] = 18, + sym_anon_record_type, + [66938] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411298,36 +420412,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(7144), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7146), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7148), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3218), 1, - sym__type, - STATE(3225), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3251), 1, + STATE(5222), 1, sym_type_argument, - STATE(3268), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5521), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3976), 4, + STATE(4115), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3284), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411338,7 +420454,10 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57203] = 18, + sym_anon_record_type, + [67011] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411349,47 +420468,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7195), 1, - anon_sym__, - ACTIONS(7197), 1, - anon_sym_POUND, - STATE(989), 1, - sym__type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1381), 1, - sym_long_identifier, - STATE(1408), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7199), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3977), 4, + STATE(4116), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1385), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [57272] = 18, + ACTIONS(3092), 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, + sym_identifier, + ACTIONS(3094), 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, + [67066] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411400,36 +420511,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7193), 1, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(7195), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(7197), 1, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, anon_sym_POUND, - STATE(992), 1, + STATE(4582), 1, sym__type, - STATE(1248), 1, + STATE(4645), 1, sym__static_type_identifier, - STATE(1381), 1, - sym_long_identifier, - STATE(1408), 1, + STATE(4732), 1, sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7199), 2, + ACTIONS(6941), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3978), 4, + STATE(4117), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1385), 10, + STATE(4806), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411440,7 +420553,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57341] = 18, + sym_anon_record_type, + [67139] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411451,47 +420565,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5395), 1, - sym__type, + ACTIONS(6985), 1, + anon_sym_DOT, + STATE(3897), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3979), 4, + STATE(4118), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [57410] = 18, + ACTIONS(2988), 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(2986), 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, + [67198] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411502,36 +420612,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7193), 1, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(7195), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(7197), 1, + ACTIONS(6937), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6939), 1, anon_sym_POUND, - STATE(1004), 1, + STATE(4575), 1, sym__type, - STATE(1248), 1, + STATE(4645), 1, sym__static_type_identifier, - STATE(1381), 1, - sym_long_identifier, - STATE(1408), 1, + STATE(4732), 1, sym_type_argument, + STATE(4807), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7199), 2, + ACTIONS(6941), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3980), 4, + STATE(4119), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1385), 10, + STATE(4806), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411542,7 +420654,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57479] = 18, + sym_anon_record_type, + [67271] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411553,36 +420666,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5692), 1, + STATE(5648), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3981), 4, + STATE(4120), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411593,7 +420708,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57548] = 18, + sym_anon_record_type, + [67344] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411604,36 +420720,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(7144), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7146), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7148), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(3221), 1, - sym__type, - STATE(3225), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3251), 1, + STATE(5222), 1, sym_type_argument, - STATE(3268), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5573), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3982), 4, + STATE(4121), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3284), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411644,7 +420762,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57617] = 18, + sym_anon_record_type, + [67417] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411655,36 +420774,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5863), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7144), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7146), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7148), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(421), 1, sym__type, - STATE(3225), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(3251), 1, + STATE(3106), 1, sym_type_argument, - STATE(3268), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3983), 4, + STATE(4122), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3284), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411695,58 +420816,10 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57686] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + sym_anon_record_type, + [67490] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, - sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4612), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3984), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4614), 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, - [57755] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411757,17 +420830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(3985), 4, + STATE(4123), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6480), 9, + ACTIONS(3062), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -411775,21 +420846,23 @@ 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(6482), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3064), 12, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, 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, - [57808] = 18, + [67545] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411800,87 +420873,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(5221), 1, sym_identifier, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4321), 1, - sym__type, - STATE(4382), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3986), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [57877] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(6751), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(6753), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(6755), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6757), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, + STATE(2923), 1, sym__static_type_identifier, - STATE(4044), 1, + STATE(2930), 1, + sym__type, + STATE(3025), 1, sym_type_argument, - STATE(4349), 1, + STATE(3094), 1, sym_long_identifier, - STATE(5238), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(6759), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3987), 4, + STATE(4124), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(3071), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411891,53 +420915,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [57946] = 13, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6792), 1, - anon_sym_DOT, - STATE(4246), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(3988), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [58005] = 18, + sym_anon_record_type, + [67618] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411948,36 +420927,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3879), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(4301), 1, + STATE(5222), 1, sym_type_argument, - STATE(4308), 1, - sym__type, - STATE(4382), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5540), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3989), 4, + STATE(4125), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -411988,7 +420969,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58074] = 18, + sym_anon_record_type, + [67691] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -411999,36 +420981,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7073), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7077), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4523), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4547), 1, - sym__type, - STATE(4675), 1, + STATE(5222), 1, sym_type_argument, - STATE(4697), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5558), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3990), 4, + STATE(4126), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412039,7 +421023,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58143] = 18, + sym_anon_record_type, + [67764] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412050,36 +421035,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3879), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(4299), 1, - sym__type, - STATE(4301), 1, + STATE(5222), 1, sym_type_argument, - STATE(4382), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5541), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3991), 4, + STATE(4127), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412090,7 +421077,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58212] = 18, + sym_anon_record_type, + [67837] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412101,36 +421089,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(6326), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(2556), 1, + STATE(3038), 1, sym__type, - STATE(2591), 1, + STATE(3106), 1, sym_type_argument, - STATE(2613), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3992), 4, + STATE(4128), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412141,7 +421131,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58281] = 18, + sym_anon_record_type, + [67910] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412152,36 +421143,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7073), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7077), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4523), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4527), 1, - sym__type, - STATE(4675), 1, + STATE(5222), 1, sym_type_argument, - STATE(4697), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5546), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3993), 4, + STATE(4129), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412192,7 +421185,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58350] = 18, + sym_anon_record_type, + [67983] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412203,36 +421197,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3318), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7160), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7162), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7164), 1, anon_sym_POUND, - ACTIONS(6973), 1, - sym_identifier, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4302), 1, + STATE(1027), 1, sym__type, - STATE(4382), 1, + STATE(1346), 1, + sym__static_type_identifier, + STATE(1409), 1, sym_long_identifier, + STATE(1411), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(7166), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3994), 4, + STATE(4130), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(1412), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412243,7 +421239,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58419] = 18, + sym_anon_record_type, + [68056] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412254,36 +421251,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7154), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(4562), 1, + STATE(3027), 1, sym__type, - STATE(4583), 1, + STATE(3106), 1, sym_type_argument, - STATE(4684), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3995), 4, + STATE(4131), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412294,7 +421293,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58488] = 18, + sym_anon_record_type, + [68129] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412305,36 +421305,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7244), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4132), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [68222] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(6949), 1, sym_identifier, STATE(3879), 1, sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4305), 1, + STATE(4232), 1, sym__type, - STATE(4382), 1, + STATE(4258), 1, + sym_type_argument, + STATE(4354), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3996), 4, + STATE(4133), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412345,7 +421411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58557] = 18, + sym_anon_record_type, + [68295] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412356,36 +421423,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5480), 1, + STATE(5526), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3997), 4, + STATE(4134), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412396,7 +421465,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58626] = 18, + sym_anon_record_type, + [68368] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412407,36 +421477,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6896), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, anon_sym_POUND, - STATE(2911), 1, - sym__type, - STATE(2922), 1, + STATE(4436), 1, sym__static_type_identifier, - STATE(2988), 1, + STATE(4581), 1, sym_type_argument, - STATE(3064), 1, + STATE(4694), 1, + sym__type, + STATE(4708), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3998), 4, + STATE(4135), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(4688), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412447,7 +421519,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58695] = 18, + sym_anon_record_type, + [68441] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412458,36 +421531,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - STATE(2912), 1, - sym__type, - STATE(2922), 1, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, sym__static_type_identifier, - STATE(2988), 1, + STATE(4359), 1, sym_type_argument, - STATE(3064), 1, + STATE(4374), 1, + sym__type, + STATE(4407), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3999), 4, + STATE(4136), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412498,7 +421573,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58764] = 18, + sym_anon_record_type, + [68514] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412509,36 +421585,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, + ACTIONS(2912), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(7029), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(7031), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(7033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7035), 1, anon_sym_POUND, - STATE(2913), 1, + STATE(837), 1, sym__type, - STATE(2922), 1, + STATE(850), 1, sym__static_type_identifier, - STATE(2988), 1, - sym_type_argument, - STATE(3064), 1, + STATE(902), 1, sym_long_identifier, + STATE(903), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(7037), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4000), 4, + STATE(4137), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(905), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412549,7 +421627,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58833] = 18, + sym_anon_record_type, + [68587] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412560,36 +421639,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, + anon_sym_POUND, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(7154), 1, + STATE(4873), 1, + sym__type, + STATE(4925), 1, + sym__static_type_identifier, + STATE(5222), 1, + sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4138), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5400), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [68660] = 19, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - STATE(4459), 1, + ACTIONS(6949), 1, + sym_identifier, + STATE(3879), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(4258), 1, sym_type_argument, - STATE(4672), 1, - sym__type, - STATE(4684), 1, + STATE(4354), 1, sym_long_identifier, + STATE(4710), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4001), 4, + STATE(4139), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412600,7 +421735,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58902] = 18, + sym_anon_record_type, + [68733] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412611,36 +421747,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7085), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(7087), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(7089), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7091), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, + STATE(4522), 1, sym__static_type_identifier, - STATE(3835), 1, + STATE(4602), 1, sym__type, - STATE(4044), 1, + STATE(4662), 1, sym_type_argument, - STATE(4349), 1, + STATE(4782), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(7093), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4002), 4, + STATE(4140), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(4736), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412651,7 +421789,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [58971] = 18, + sym_anon_record_type, + [68806] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412662,36 +421801,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5207), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6806), 1, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(6810), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(2917), 1, + STATE(433), 1, sym__type, - STATE(2922), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(2988), 1, + STATE(3106), 1, sym_type_argument, - STATE(3064), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4003), 4, + STATE(4141), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3067), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412702,7 +421843,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59040] = 18, + sym_anon_record_type, + [68879] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412713,36 +421855,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7107), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(7109), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(7111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7113), 1, anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3845), 1, + STATE(4450), 1, sym__type, - STATE(3862), 1, + STATE(4532), 1, sym__static_type_identifier, - STATE(4357), 1, + STATE(4702), 1, sym_type_argument, - STATE(4406), 1, + STATE(4730), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(7115), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4004), 4, + STATE(4142), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4726), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412753,7 +421897,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59109] = 10, + sym_anon_record_type, + [68952] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412764,39 +421909,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, + anon_sym_LPAREN, + ACTIONS(6896), 1, + anon_sym__, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, + anon_sym_POUND, + STATE(4436), 1, + sym__static_type_identifier, + STATE(4551), 1, + sym__type, + STATE(4581), 1, + sym_type_argument, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4005), 4, + ACTIONS(6902), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4143), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6484), 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(6486), 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, - [59162] = 18, + STATE(4688), 11, + sym_simple_type, + sym_generic_type, + sym_paren_type, + sym_function_type, + sym_compound_type, + sym_postfix_type, + sym_list_type, + sym_static_type, + sym_constrained_type, + sym_flexible_type, + sym_anon_record_type, + [69025] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412807,36 +421963,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6713), 1, sym_identifier, - STATE(4888), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(5222), 1, sym_type_argument, - STATE(5348), 1, + STATE(5389), 1, sym_long_identifier, - STATE(5478), 1, + STATE(5561), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4006), 4, + STATE(4144), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412847,7 +422005,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59231] = 18, + sym_anon_record_type, + [69098] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412858,36 +422017,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, + ACTIONS(3264), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, + ACTIONS(7187), 1, anon_sym_LPAREN, - ACTIONS(6207), 1, + ACTIONS(7189), 1, anon_sym__, - ACTIONS(6209), 1, + ACTIONS(7191), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7193), 1, anon_sym_POUND, - STATE(2919), 1, + STATE(1016), 1, sym__type, - STATE(2927), 1, + STATE(1293), 1, sym__static_type_identifier, - STATE(2992), 1, + STATE(1457), 1, sym_type_argument, - STATE(3024), 1, + STATE(1470), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, + ACTIONS(7195), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4007), 4, + STATE(4145), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3019), 10, + STATE(1454), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412898,7 +422059,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59300] = 18, + sym_anon_record_type, + [69171] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412909,36 +422071,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3264), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(7187), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(7189), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(7191), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7193), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(3831), 1, + STATE(1023), 1, sym__type, - STATE(4044), 1, + STATE(1293), 1, + sym__static_type_identifier, + STATE(1457), 1, sym_type_argument, - STATE(4349), 1, + STATE(1470), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(7195), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4008), 4, + STATE(4146), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(1454), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -412949,7 +422113,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59369] = 18, + sym_anon_record_type, + [69244] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -412960,36 +422125,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3264), 1, + sym_identifier, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(7187), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(7189), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(7191), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7193), 1, anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(3830), 1, + STATE(962), 1, sym__type, - STATE(4044), 1, + STATE(1293), 1, + sym__static_type_identifier, + STATE(1457), 1, sym_type_argument, - STATE(4349), 1, + STATE(1470), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(7195), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4009), 4, + STATE(4147), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(1454), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413000,67 +422167,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59438] = 27, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7545), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4010), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [59525] = 18, + sym_anon_record_type, + [69317] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413071,36 +422179,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7201), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(7203), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(7205), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - STATE(953), 1, - sym__type, - STATE(1269), 1, + ACTIONS(6553), 1, + sym_identifier, + STATE(3693), 1, sym__static_type_identifier, - STATE(1448), 1, - sym_long_identifier, - STATE(1449), 1, + STATE(3698), 1, + sym__type, + STATE(3737), 1, sym_type_argument, + STATE(3771), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7207), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4011), 4, + STATE(4148), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1451), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413111,7 +422221,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59594] = 18, + sym_anon_record_type, + [69390] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413122,36 +422233,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - STATE(439), 1, - sym__type, - STATE(2977), 1, + ACTIONS(6906), 1, + sym_identifier, + STATE(4199), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(4359), 1, sym_type_argument, - STATE(3120), 1, + STATE(4407), 1, sym_long_identifier, + STATE(5493), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4012), 4, + STATE(4149), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413162,7 +422275,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59663] = 18, + sym_anon_record_type, + [69463] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413173,36 +422287,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(5234), 1, sym_identifier, - ACTIONS(7154), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, anon_sym_LPAREN, - ACTIONS(7156), 1, + ACTIONS(6005), 1, anon_sym__, - ACTIONS(7158), 1, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, anon_sym_POUND, - STATE(4434), 1, - sym__type, - STATE(4459), 1, + STATE(2935), 1, sym__static_type_identifier, - STATE(4583), 1, + STATE(2943), 1, + sym__type, + STATE(3054), 1, sym_type_argument, - STATE(4684), 1, + STATE(3081), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6011), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4013), 4, + STATE(4150), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, + STATE(3062), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413213,7 +422329,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59732] = 18, + sym_anon_record_type, + [69536] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413224,36 +422341,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(5234), 1, sym_identifier, - ACTIONS(7172), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, anon_sym_LPAREN, - ACTIONS(7174), 1, + ACTIONS(6005), 1, anon_sym__, - ACTIONS(7176), 1, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, anon_sym_POUND, - STATE(4606), 1, + STATE(2935), 1, sym__static_type_identifier, - STATE(4609), 1, + STATE(2945), 1, sym__type, - STATE(4734), 1, + STATE(3054), 1, sym_type_argument, - STATE(4820), 1, + STATE(3081), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, + ACTIONS(6011), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4014), 4, + STATE(4151), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, + STATE(3062), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413264,7 +422383,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59801] = 18, + sym_anon_record_type, + [69609] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413275,36 +422395,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7172), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7174), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7176), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(4595), 1, - sym__type, - STATE(4606), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(4734), 1, + STATE(5222), 1, sym_type_argument, - STATE(4820), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5565), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4015), 4, + STATE(4152), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413315,7 +422437,72 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59870] = 18, + sym_anon_record_type, + [69682] = 29, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6194), 1, + sym__dedent, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4132), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4153), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [69775] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413326,36 +422513,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7172), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7174), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7176), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(4550), 1, - sym__type, - STATE(4606), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(4734), 1, + STATE(3024), 1, + sym__type, + STATE(3106), 1, sym_type_argument, - STATE(4820), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4016), 4, + STATE(4154), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413366,7 +422555,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [59939] = 18, + sym_anon_record_type, + [69848] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413377,36 +422567,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7172), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(7174), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(7176), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - STATE(4588), 1, - sym__type, - STATE(4606), 1, + ACTIONS(6553), 1, + sym_identifier, + STATE(3693), 1, sym__static_type_identifier, - STATE(4734), 1, + STATE(3712), 1, + sym__type, + STATE(3737), 1, sym_type_argument, - STATE(4820), 1, + STATE(3771), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4017), 4, + STATE(4155), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413417,7 +422609,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60008] = 18, + sym_anon_record_type, + [69921] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413428,36 +422621,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3169), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7209), 1, + ACTIONS(5904), 1, + sym_identifier, + ACTIONS(6975), 1, anon_sym_LPAREN, - ACTIONS(7211), 1, + ACTIONS(6977), 1, anon_sym__, - ACTIONS(7213), 1, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, anon_sym_POUND, - STATE(928), 1, + STATE(3242), 1, sym__type, - STATE(1065), 1, + STATE(3248), 1, sym__static_type_identifier, - STATE(1260), 1, + STATE(3267), 1, sym_type_argument, - STATE(1267), 1, + STATE(3304), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7215), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4018), 4, + STATE(4156), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1258), 10, + STATE(3309), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413468,7 +422663,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60077] = 18, + sym_anon_record_type, + [69994] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413479,36 +422675,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - STATE(423), 1, - sym__type, - STATE(2977), 1, + ACTIONS(6553), 1, + sym_identifier, + STATE(3693), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(3706), 1, + sym__type, + STATE(3737), 1, sym_type_argument, - STATE(3120), 1, + STATE(3771), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4019), 4, + STATE(4157), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413519,62 +422717,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60146] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6897), 1, - anon_sym_y, - ACTIONS(6899), 1, - anon_sym_uy, - ACTIONS(6901), 1, - anon_sym_s, - ACTIONS(6903), 1, - anon_sym_us, - ACTIONS(6907), 1, - aux_sym_uint32_token1, - ACTIONS(6909), 1, - anon_sym_n, - ACTIONS(6911), 1, - anon_sym_un, - ACTIONS(6915), 1, - aux_sym_uint64_token1, - ACTIONS(7217), 1, - anon_sym_l, - ACTIONS(7219), 1, - anon_sym_L, - ACTIONS(7221), 1, - anon_sym_lf, - ACTIONS(7223), 1, - anon_sym_LF, - STATE(4020), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2526), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [60223] = 18, + sym_anon_record_type, + [70067] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413585,36 +422729,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, + ACTIONS(5904), 1, sym_identifier, - ACTIONS(7182), 1, + ACTIONS(6975), 1, anon_sym_LPAREN, - ACTIONS(7184), 1, + ACTIONS(6977), 1, anon_sym__, - ACTIONS(7186), 1, + ACTIONS(6979), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6981), 1, anon_sym_POUND, - STATE(4601), 1, + STATE(3236), 1, sym__type, - STATE(4610), 1, + STATE(3248), 1, sym__static_type_identifier, - STATE(4768), 1, + STATE(3267), 1, sym_type_argument, - STATE(4771), 1, + STATE(3304), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4021), 4, + STATE(4158), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4843), 10, + STATE(3309), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413625,7 +422771,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60292] = 18, + sym_anon_record_type, + [70140] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413636,36 +422783,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(6356), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(6358), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - ACTIONS(6887), 1, + ACTIONS(6553), 1, sym_identifier, - STATE(3811), 1, + STATE(3693), 1, sym__static_type_identifier, - STATE(3821), 1, + STATE(3703), 1, sym__type, - STATE(4044), 1, + STATE(3737), 1, sym_type_argument, - STATE(4349), 1, + STATE(3771), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4022), 4, + STATE(4159), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413676,7 +422825,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60361] = 18, + sym_anon_record_type, + [70213] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413687,36 +422837,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - ACTIONS(6526), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, sym_identifier, - STATE(3637), 1, - sym__type, - STATE(3657), 1, + STATE(4925), 1, sym__static_type_identifier, - STATE(3705), 1, + STATE(5222), 1, sym_type_argument, - STATE(3765), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5463), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4023), 4, + STATE(4160), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413727,7 +422879,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60430] = 18, + sym_anon_record_type, + [70286] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413738,36 +422891,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7182), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(7184), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(7186), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - STATE(4593), 1, - sym__type, - STATE(4610), 1, + ACTIONS(6553), 1, + sym_identifier, + STATE(3693), 1, sym__static_type_identifier, - STATE(4768), 1, + STATE(3709), 1, + sym__type, + STATE(3737), 1, sym_type_argument, - STATE(4771), 1, + STATE(3771), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4024), 4, + STATE(4161), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4843), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413778,7 +422933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60499] = 18, + sym_anon_record_type, + [70359] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413789,7 +422945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(7061), 1, sym_identifier, @@ -413798,27 +422954,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7065), 1, anon_sym__, ACTIONS(7067), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7069), 1, anon_sym_POUND, - STATE(4505), 1, - sym__type, - STATE(4522), 1, + STATE(4491), 1, sym__static_type_identifier, - STATE(4667), 1, + STATE(4607), 1, + sym__type, + STATE(4665), 1, sym_type_argument, - STATE(4693), 1, + STATE(4781), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7069), 2, + ACTIONS(7071), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4025), 4, + STATE(4162), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4721), 10, + STATE(4776), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413829,7 +422987,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60568] = 18, + sym_anon_record_type, + [70432] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413840,36 +422999,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7107), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7109), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(436), 1, - sym__type, - STATE(2977), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(3079), 1, + STATE(5222), 1, sym_type_argument, - STATE(3120), 1, + STATE(5389), 1, sym_long_identifier, + STATE(5555), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4026), 4, + STATE(4163), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -413880,50 +423041,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60637] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4027), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(7225), 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(7227), 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, - [60690] = 10, + sym_anon_record_type, + [70505] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413934,39 +423053,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6270), 1, + sym__dedent, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3853), 1, + aux_sym_interface_type_defn_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4028), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4164), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7229), 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(7231), 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, - [60743] = 18, + [70598] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -413977,36 +423117,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(6220), 1, anon_sym__, - ACTIONS(5581), 1, + ACTIONS(6222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6224), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3860), 1, - sym__type, - STATE(3862), 1, + STATE(4199), 1, sym__static_type_identifier, - STATE(4357), 1, + STATE(4359), 1, sym_type_argument, - STATE(4406), 1, + STATE(4407), 1, sym_long_identifier, + STATE(5642), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, + ACTIONS(6226), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4029), 4, + STATE(4165), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, + STATE(4408), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414017,7 +423159,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60812] = 18, + sym_anon_record_type, + [70671] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414028,36 +423171,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, + ACTIONS(5483), 1, sym_identifier, - ACTIONS(7182), 1, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7184), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(7186), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(416), 1, sym__type, - STATE(4610), 1, + STATE(3022), 1, sym__static_type_identifier, - STATE(4768), 1, + STATE(3106), 1, sym_type_argument, - STATE(4771), 1, + STATE(3136), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4030), 4, + STATE(4166), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4843), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414068,7 +423213,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [60881] = 18, + sym_anon_record_type, + [70744] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414079,47 +423225,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5560), 1, - sym__type, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7246), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4031), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4167), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [60950] = 18, + [70837] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414130,47 +423289,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5587), 1, - sym__type, + ACTIONS(6214), 1, + sym__dedent, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4170), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4032), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4168), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [61019] = 18, + [70930] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414181,36 +423353,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(4328), 1, + sym_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6200), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6202), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6206), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6208), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, + STATE(2131), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(2561), 1, sym_type_argument, - STATE(5348), 1, + STATE(2628), 1, sym_long_identifier, - STATE(5561), 1, + STATE(2633), 1, sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6210), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4033), 4, + STATE(4169), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(2630), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414221,7 +423395,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61088] = 18, + sym_anon_record_type, + [71003] = 29, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414232,47 +423407,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5539), 1, - sym__type, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + ACTIONS(7248), 1, + sym__dedent, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3982), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4034), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4170), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [61157] = 18, + [71096] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414283,36 +423471,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, + ACTIONS(5234), 1, sym_identifier, - ACTIONS(7182), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6003), 1, anon_sym_LPAREN, - ACTIONS(7184), 1, + ACTIONS(6005), 1, anon_sym__, - ACTIONS(7186), 1, + ACTIONS(6007), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6009), 1, anon_sym_POUND, - STATE(4559), 1, - sym__type, - STATE(4610), 1, + STATE(2935), 1, sym__static_type_identifier, - STATE(4768), 1, + STATE(2940), 1, + sym__type, + STATE(3054), 1, sym_type_argument, - STATE(4771), 1, + STATE(3081), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, + ACTIONS(6011), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4035), 4, + STATE(4171), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4843), 10, + STATE(3062), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414323,7 +423513,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61226] = 18, + sym_anon_record_type, + [71169] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414334,36 +423525,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3192), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(7235), 1, + ACTIONS(6896), 1, anon_sym__, - ACTIONS(7237), 1, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, anon_sym_POUND, - STATE(926), 1, - sym__type, - STATE(1083), 1, + STATE(4436), 1, sym__static_type_identifier, - STATE(1273), 1, - sym_long_identifier, - STATE(1277), 1, + STATE(4448), 1, + sym__type, + STATE(4581), 1, sym_type_argument, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7239), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4036), 4, + STATE(4172), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1280), 10, + STATE(4688), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414374,7 +423567,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61295] = 18, + sym_anon_record_type, + [71242] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414385,36 +423579,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2896), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7241), 1, + ACTIONS(6304), 1, anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(6306), 1, anon_sym__, - ACTIONS(7245), 1, + ACTIONS(6308), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6310), 1, anon_sym_POUND, - STATE(836), 1, + ACTIONS(6553), 1, + sym_identifier, + STATE(3656), 1, sym__type, - STATE(864), 1, + STATE(3693), 1, sym__static_type_identifier, - STATE(874), 1, - sym_long_identifier, - STATE(875), 1, + STATE(3737), 1, sym_type_argument, + STATE(3771), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7247), 2, + ACTIONS(6312), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4037), 4, + STATE(4173), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(876), 10, + STATE(3769), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414425,7 +423621,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61364] = 18, + sym_anon_record_type, + [71315] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414436,36 +423633,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5328), 1, + sym_identifier, + ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6884), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6886), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6888), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, + STATE(410), 1, + sym__type, + STATE(2995), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(3077), 1, sym_type_argument, - STATE(5348), 1, + STATE(3113), 1, sym_long_identifier, - STATE(5510), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4038), 4, + STATE(4174), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(3099), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414476,7 +423675,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61433] = 18, + sym_anon_record_type, + [71388] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414487,36 +423687,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3192), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(7235), 1, + ACTIONS(5254), 1, anon_sym__, - ACTIONS(7237), 1, + ACTIONS(5256), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5260), 1, anon_sym_POUND, - STATE(941), 1, - sym__type, - STATE(1083), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(4925), 1, sym__static_type_identifier, - STATE(1273), 1, - sym_long_identifier, - STATE(1277), 1, + STATE(5222), 1, sym_type_argument, + STATE(5389), 1, + sym_long_identifier, + STATE(5484), 1, + sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7239), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4039), 4, + STATE(4175), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1280), 10, + STATE(5400), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414527,7 +423729,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61502] = 18, + sym_anon_record_type, + [71461] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414538,36 +423741,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3192), 1, + ACTIONS(3202), 1, sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, + ACTIONS(7146), 1, anon_sym_LPAREN, - ACTIONS(7235), 1, + ACTIONS(7148), 1, anon_sym__, - ACTIONS(7237), 1, + ACTIONS(7150), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(7152), 1, anon_sym_POUND, - STATE(942), 1, + STATE(927), 1, sym__type, - STATE(1083), 1, + STATE(1182), 1, sym__static_type_identifier, - STATE(1273), 1, - sym_long_identifier, - STATE(1277), 1, + STATE(1295), 1, sym_type_argument, + STATE(1296), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7239), 2, + ACTIONS(7154), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4040), 4, + STATE(4176), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1280), 10, + STATE(1287), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414578,7 +423783,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61571] = 18, + sym_anon_record_type, + [71534] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414589,36 +423795,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5483), 1, + sym_identifier, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6874), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6876), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6878), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, + STATE(422), 1, + sym__type, + STATE(3022), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(3106), 1, sym_type_argument, - STATE(5348), 1, + STATE(3136), 1, sym_long_identifier, - STATE(5441), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6880), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4041), 4, + STATE(4177), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(3124), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414629,7 +423837,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61640] = 18, + sym_anon_record_type, + [71607] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414640,36 +423849,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6896), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6898), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6900), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, + STATE(4436), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(4581), 1, sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5517), 1, + STATE(4632), 1, sym__type, + STATE(4708), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4042), 4, + STATE(4178), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4688), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414680,7 +423891,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61709] = 18, + sym_anon_record_type, + [71680] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414691,36 +423903,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6255), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6257), 1, anon_sym__, - ACTIONS(5443), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6261), 1, anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(4888), 1, + STATE(3879), 1, sym__static_type_identifier, - STATE(5137), 1, + STATE(4230), 1, + sym__type, + STATE(4258), 1, sym_type_argument, - STATE(5348), 1, + STATE(4354), 1, sym_long_identifier, - STATE(5522), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(6263), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4043), 4, + STATE(4179), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, + STATE(4357), 11, sym_simple_type, sym_generic_type, sym_paren_type, @@ -414731,7 +423945,8 @@ static const uint16_t ts_small_parse_table[] = { sym_static_type, sym_constrained_type, sym_flexible_type, - [61778] = 11, + sym_anon_record_type, + [71753] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414742,29 +423957,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7249), 1, - anon_sym_COLON_GT, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4044), 4, + ACTIONS(2882), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4180), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 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(3064), 11, - anon_sym_and, + ACTIONS(2886), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -414774,8 +423998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [61833] = 18, + [71823] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414786,47 +424009,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2896), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7241), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - anon_sym__, - ACTIONS(7245), 1, - anon_sym_POUND, - STATE(832), 1, - sym__type, - STATE(864), 1, - sym__static_type_identifier, - STATE(874), 1, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, - STATE(875), 1, - sym_type_argument, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7247), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4045), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4458), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4181), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(876), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [61902] = 18, + ACTIONS(4460), 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, + [71891] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414837,47 +424060,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2896), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7241), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - anon_sym__, - ACTIONS(7245), 1, - anon_sym_POUND, - STATE(829), 1, - sym__type, - STATE(864), 1, - sym__static_type_identifier, - STATE(874), 1, - sym_long_identifier, - STATE(875), 1, - sym_type_argument, + ACTIONS(7258), 1, + anon_sym_DOT, + STATE(4218), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7247), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4046), 4, + STATE(4182), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(876), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [61971] = 18, + ACTIONS(2986), 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(2988), 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, + [71951] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414888,47 +424107,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2896), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7241), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - anon_sym__, - ACTIONS(7245), 1, - anon_sym_POUND, - STATE(837), 1, - sym__type, - STATE(864), 1, - sym__static_type_identifier, - STATE(874), 1, - sym_long_identifier, - STATE(875), 1, - sym_type_argument, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(3885), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7247), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4047), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4183), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(876), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62040] = 10, + [72041] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414939,39 +424169,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4167), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6800), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(4048), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4184), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6802), 18, - 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_exception, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [62093] = 18, + [72131] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -414982,47 +424231,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, - STATE(5543), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4049), 4, + STATE(4185), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62162] = 18, + ACTIONS(7260), 5, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(7262), 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, + [72199] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415033,47 +424282,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(7073), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, - anon_sym__, - ACTIONS(7077), 1, - anon_sym_POUND, - STATE(4523), 1, - sym__static_type_identifier, - STATE(4536), 1, - sym__type, - STATE(4675), 1, - sym_type_argument, - STATE(4697), 1, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4050), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4466), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4186), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62231] = 18, + ACTIONS(4468), 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, + [72267] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415084,47 +424333,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5520), 1, - sym__type, + ACTIONS(7264), 1, + anon_sym_DOT, + STATE(4189), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4051), 4, + STATE(4187), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62300] = 10, + ACTIONS(2986), 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(2988), 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, + [72327] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415135,17 +424380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4052), 4, + STATE(4188), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3675), 9, + ACTIONS(2964), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -415155,11 +424400,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3673), 11, + ACTIONS(2966), 12, anon_sym_EQ, 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, @@ -415167,7 +424413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [62353] = 18, + [72381] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415178,98 +424424,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5519), 1, - sym__type, + ACTIONS(7264), 1, + anon_sym_DOT, + STATE(4194), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4053), 4, + STATE(4189), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62422] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(2954), 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(2956), 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(7073), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, - anon_sym__, - ACTIONS(7077), 1, - anon_sym_POUND, - STATE(4487), 1, - sym__type, - STATE(4523), 1, - sym__static_type_identifier, - STATE(4675), 1, - sym_type_argument, - STATE(4697), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7079), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4054), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4730), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62491] = 18, + [72439] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415280,47 +424470,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4157), 1, - sym__type, - STATE(4349), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4055), 4, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2904), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4190), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62560] = 18, + ACTIONS(2906), 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, + [72509] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415331,47 +424522,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(2920), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4056), 4, + STATE(4191), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62629] = 18, + ACTIONS(3044), 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(3046), 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, + [72563] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415382,47 +424566,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(7073), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, - anon_sym__, - ACTIONS(7077), 1, - anon_sym_POUND, - STATE(4486), 1, - sym__type, - STATE(4523), 1, - sym__static_type_identifier, - STATE(4675), 1, - sym_type_argument, - STATE(4697), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4057), 4, + ACTIONS(7266), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4192), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62698] = 18, + ACTIONS(7268), 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, + [72633] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415433,47 +424618,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5511), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4058), 4, + STATE(4193), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62767] = 18, + ACTIONS(2992), 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(2990), 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, + [72687] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415484,47 +424662,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3681), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, + ACTIONS(7270), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4059), 4, + STATE(4194), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62836] = 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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(2964), 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, + [72743] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415535,47 +424707,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4105), 1, - sym__type, - STATE(4349), 1, - sym_long_identifier, + ACTIONS(7273), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4060), 4, + STATE(4195), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62905] = 18, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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(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, + [72799] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415586,47 +424752,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_LPAREN, - ACTIONS(7138), 1, - anon_sym__, - ACTIONS(7140), 1, - anon_sym_POUND, - STATE(3219), 1, - sym__type, - STATE(3230), 1, - sym__static_type_identifier, - STATE(3256), 1, - sym_type_argument, - STATE(3278), 1, - sym_long_identifier, + ACTIONS(7276), 1, + anon_sym_or, + STATE(4195), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4061), 4, + STATE(4196), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [62974] = 18, + ACTIONS(2960), 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(2962), 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, + [72857] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415637,47 +424798,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(2921), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, + ACTIONS(7264), 1, + anon_sym_DOT, + STATE(4189), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4062), 4, + STATE(4197), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63043] = 18, + ACTIONS(2986), 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(2988), 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, + [72915] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415688,47 +424844,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3686), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4063), 4, + STATE(4198), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63112] = 18, + ACTIONS(7278), 5, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(7280), 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, + [72983] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415739,47 +424895,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, - anon_sym_LPAREN, - ACTIONS(7117), 1, - anon_sym__, - ACTIONS(7119), 1, - anon_sym_POUND, - STATE(4540), 1, - sym__static_type_identifier, - STATE(4567), 1, - sym__type, - STATE(4669), 1, - sym_type_argument, - STATE(4729), 1, - sym_long_identifier, + ACTIONS(7282), 1, + anon_sym_or, + STATE(4208), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4064), 4, + STATE(4199), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63181] = 18, + ACTIONS(2981), 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(2979), 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, + [73041] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415790,47 +424941,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(7136), 1, - anon_sym_LPAREN, - ACTIONS(7138), 1, - anon_sym__, - ACTIONS(7140), 1, - anon_sym_POUND, - STATE(3220), 1, - sym__type, - STATE(3230), 1, - sym__static_type_identifier, - STATE(3256), 1, - sym_type_argument, - STATE(3278), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7284), 1, + anon_sym_with, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, + STATE(5160), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4065), 4, + ACTIONS(4821), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4200), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63250] = 18, + ACTIONS(4823), 8, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [73115] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415841,47 +424995,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3678), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, + ACTIONS(6841), 1, + anon_sym_DOT, + ACTIONS(7286), 1, + anon_sym_COLON, + STATE(4283), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4066), 4, + STATE(4201), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63319] = 18, + ACTIONS(2986), 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(2988), 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, + [73175] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415892,47 +425042,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3696), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4067), 4, + ACTIONS(2908), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4202), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63388] = 18, + ACTIONS(2910), 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, + [73245] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415943,47 +425094,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3248), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - anon_sym__, - ACTIONS(7255), 1, - anon_sym_POUND, - STATE(968), 1, - sym__type, - STATE(1331), 1, - sym__static_type_identifier, - STATE(1371), 1, - sym_type_argument, - STATE(1374), 1, + ACTIONS(6906), 1, + sym_identifier, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7257), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4068), 4, + ACTIONS(2904), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4203), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1366), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63457] = 18, + ACTIONS(2906), 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, + [73315] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -415994,47 +425146,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3248), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - anon_sym__, - ACTIONS(7255), 1, - anon_sym_POUND, - STATE(959), 1, - sym__type, - STATE(1331), 1, - sym__static_type_identifier, - STATE(1371), 1, - sym_type_argument, - STATE(1374), 1, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7257), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4069), 4, + ACTIONS(2908), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4204), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1366), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63526] = 18, + ACTIONS(2910), 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, + [73385] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416045,47 +425198,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3248), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - anon_sym__, - ACTIONS(7255), 1, - anon_sym_POUND, - STATE(957), 1, - sym__type, - STATE(1331), 1, - sym__static_type_identifier, - STATE(1371), 1, - sym_type_argument, - STATE(1374), 1, + ACTIONS(6906), 1, + sym_identifier, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7257), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4070), 4, + ACTIONS(2882), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4205), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1366), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63595] = 18, + ACTIONS(2886), 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, + [73455] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416096,47 +425250,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(4876), 1, - sym__type, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4071), 4, + ACTIONS(2900), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4206), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63664] = 18, + ACTIONS(2902), 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, + [73525] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416147,47 +425302,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4261), 1, - sym__type, - STATE(4349), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4072), 4, + STATE(4207), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63733] = 18, + ACTIONS(3044), 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(3046), 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, + [73579] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416198,47 +425346,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(417), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(7282), 1, + anon_sym_or, + STATE(4214), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4073), 4, + STATE(4208), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63802] = 18, + ACTIONS(2960), 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(2962), 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, + [73637] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416249,47 +425392,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, - anon_sym_LPAREN, - ACTIONS(7117), 1, - anon_sym__, - ACTIONS(7119), 1, - anon_sym_POUND, - STATE(4540), 1, - sym__static_type_identifier, - STATE(4549), 1, - sym__type, - STATE(4669), 1, - sym_type_argument, - STATE(4729), 1, - sym_long_identifier, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3855), 1, + aux_sym_interface_type_defn_repeat1, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4074), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4209), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63871] = 18, + [73727] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416300,47 +425454,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5245), 1, - sym__type, - STATE(5348), 1, - sym_long_identifier, + ACTIONS(7276), 1, + anon_sym_or, + STATE(4196), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4075), 4, + STATE(4210), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [63940] = 18, + ACTIONS(2981), 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(2979), 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, + [73785] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416351,47 +425500,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, sym_long_identifier, - STATE(5542), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4076), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4458), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4211), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64009] = 18, + ACTIONS(4460), 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, + [73853] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416402,47 +425551,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7195), 1, - anon_sym__, - ACTIONS(7197), 1, - anon_sym_POUND, - STATE(990), 1, - sym__type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1381), 1, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, - STATE(1408), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7199), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4077), 4, + ACTIONS(2900), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4212), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1385), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64078] = 18, + ACTIONS(2902), 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, + [73923] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416453,47 +425603,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(7073), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, - anon_sym__, - ACTIONS(7077), 1, - anon_sym_POUND, - STATE(4468), 1, - sym__type, - STATE(4523), 1, - sym__static_type_identifier, - STATE(4675), 1, - sym_type_argument, - STATE(4697), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4078), 4, + ACTIONS(7296), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4213), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4730), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64147] = 18, + ACTIONS(7298), 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, + [73993] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416504,47 +425655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5222), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6205), 1, - anon_sym_LPAREN, - ACTIONS(6207), 1, - anon_sym__, - ACTIONS(6209), 1, - anon_sym_POUND, - STATE(2924), 1, - sym__type, - STATE(2927), 1, - sym__static_type_identifier, - STATE(2992), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, + ACTIONS(7300), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4079), 4, + STATE(4214), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3019), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64216] = 18, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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(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, + [74049] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416555,47 +425700,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4213), 1, - sym__type, - STATE(4349), 1, - sym_long_identifier, + ACTIONS(7258), 1, + anon_sym_DOT, + STATE(4218), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4080), 4, + STATE(4215), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64285] = 18, + ACTIONS(2986), 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(2988), 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, + [74107] = 28, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416606,47 +425746,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6314), 1, - anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3779), 1, - sym__type, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4046), 1, + aux_sym_interface_type_defn_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4411), 1, + sym_member_defn, + STATE(4875), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5158), 1, + sym__member_defns, + STATE(5172), 1, + sym__type_defn_elements, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4081), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4216), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64354] = 10, + [74197] = 24, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416657,39 +425810,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4082), 4, + ACTIONS(7303), 1, + anon_sym_y, + ACTIONS(7305), 1, + anon_sym_uy, + ACTIONS(7307), 1, + anon_sym_s, + ACTIONS(7309), 1, + anon_sym_us, + ACTIONS(7311), 1, + anon_sym_l, + ACTIONS(7313), 1, + aux_sym_uint32_token1, + ACTIONS(7315), 1, + anon_sym_n, + ACTIONS(7317), 1, + anon_sym_un, + ACTIONS(7319), 1, + anon_sym_L, + ACTIONS(7321), 1, + aux_sym_uint64_token1, + ACTIONS(7323), 1, + aux_sym_bignum_token1, + ACTIONS(7325), 1, + aux_sym_decimal_token1, + ACTIONS(7327), 1, + anon_sym_DOT2, + ACTIONS(7329), 1, + aux_sym_float_token1, + STATE(4217), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3712), 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(3710), 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, - [64407] = 18, + ACTIONS(2526), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [74279] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416700,47 +425866,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7172), 1, - anon_sym_LPAREN, - ACTIONS(7174), 1, - anon_sym__, - ACTIONS(7176), 1, - anon_sym_POUND, - STATE(4554), 1, - sym__type, - STATE(4606), 1, - sym__static_type_identifier, - STATE(4734), 1, - sym_type_argument, - STATE(4820), 1, - sym_long_identifier, + ACTIONS(7258), 1, + anon_sym_DOT, + STATE(4220), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4083), 4, + STATE(4218), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64476] = 18, + ACTIONS(2954), 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(2956), 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, + [74337] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416751,47 +425912,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4884), 1, - sym__type, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4084), 4, + STATE(4219), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64545] = 18, + ACTIONS(2992), 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(2990), 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, + [74391] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416802,47 +425956,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4885), 1, - sym__type, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, + ACTIONS(7331), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4085), 4, + STATE(4220), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64614] = 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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(2964), 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, + [74447] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416853,47 +426001,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2566), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4086), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4466), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4221), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64683] = 18, + ACTIONS(4468), 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, + [74515] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416904,47 +426052,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(7172), 1, - anon_sym_LPAREN, - ACTIONS(7174), 1, - anon_sym__, - ACTIONS(7176), 1, - anon_sym_POUND, - STATE(4551), 1, - sym__type, - STATE(4606), 1, - sym__static_type_identifier, - STATE(4734), 1, - sym_type_argument, - STATE(4820), 1, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4087), 4, + ACTIONS(4549), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4222), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4828), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64752] = 10, + ACTIONS(4551), 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, + [74584] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416955,31 +426103,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4088), 4, + STATE(4223), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 9, - sym__dedent, + ACTIONS(2966), 9, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2977), 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(2964), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -416987,7 +426135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [64805] = 18, + [74637] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -416998,47 +426146,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5505), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4089), 4, + ACTIONS(6943), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4224), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64874] = 10, + ACTIONS(6945), 18, + 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_exception, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [74690] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417049,39 +426189,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4090), 4, + STATE(4225), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2528), 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(2526), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(2992), 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, - [64927] = 18, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(2990), 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, + [74743] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417092,47 +426232,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7201), 1, - anon_sym_LPAREN, - ACTIONS(7203), 1, - anon_sym__, - ACTIONS(7205), 1, - anon_sym_POUND, - STATE(960), 1, - sym__type, - STATE(1269), 1, - sym__static_type_identifier, - STATE(1448), 1, - sym_long_identifier, - STATE(1449), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7207), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4091), 4, + ACTIONS(6924), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4226), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1451), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [64996] = 18, + ACTIONS(6926), 18, + 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_exception, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [74796] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417143,47 +426275,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6314), 1, - anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3781), 1, - sym__type, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4092), 4, + STATE(4227), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65065] = 18, + ACTIONS(2966), 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(2964), 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, + [74849] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417194,47 +426318,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5196), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4349), 1, - sym_long_identifier, - STATE(5371), 1, - sym__type, + STATE(4266), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4413), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4093), 4, + STATE(4228), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65134] = 18, + ACTIONS(5194), 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, + [74906] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417245,47 +426363,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7201), 1, - anon_sym_LPAREN, - ACTIONS(7203), 1, - anon_sym__, - ACTIONS(7205), 1, - anon_sym_POUND, - STATE(963), 1, - sym__type, - STATE(1269), 1, - sym__static_type_identifier, - STATE(1448), 1, - sym_long_identifier, - STATE(1449), 1, - sym_type_argument, + ACTIONS(6841), 1, + anon_sym_DOT, + STATE(4283), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7207), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4094), 4, + STATE(4229), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1451), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65203] = 18, + ACTIONS(2986), 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(2988), 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, + [74965] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417296,47 +426409,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, sym_long_identifier, - STATE(5465), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4095), 4, + ACTIONS(4545), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4230), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65272] = 10, + ACTIONS(4547), 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, + [75034] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417347,31 +426460,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6912), 1, + anon_sym_STAR, + STATE(4236), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4096), 4, + STATE(4231), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 9, + ACTIONS(3015), 7, + sym__newline, 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(3066), 11, + ACTIONS(3013), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -417379,58 +426494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [65325] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7201), 1, - anon_sym_LPAREN, - ACTIONS(7203), 1, - anon_sym__, - ACTIONS(7205), 1, - anon_sym_POUND, - STATE(964), 1, - sym__type, - STATE(1269), 1, - sym__static_type_identifier, - STATE(1448), 1, - sym_long_identifier, - STATE(1449), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7207), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4097), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(1451), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65394] = 18, + [75091] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417441,47 +426505,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5903), 1, + ACTIONS(6949), 1, sym_identifier, - ACTIONS(7136), 1, - anon_sym_LPAREN, - ACTIONS(7138), 1, - anon_sym__, - ACTIONS(7140), 1, - anon_sym_POUND, - STATE(3230), 1, - sym__static_type_identifier, - STATE(3231), 1, - sym__type, - STATE(3256), 1, - sym_type_argument, - STATE(3278), 1, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4098), 4, + ACTIONS(4793), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4232), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3287), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65463] = 18, + ACTIONS(4795), 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, + [75160] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417492,47 +426556,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(438), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, + ACTIONS(6906), 1, + sym_identifier, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4099), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4466), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4233), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65532] = 18, + ACTIONS(4468), 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, + [75227] = 27, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417543,47 +426606,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, - sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4207), 1, - sym__type, - STATE(4349), 1, - sym_long_identifier, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7830), 1, + sym_access_modifier, + STATE(7875), 1, + sym__type_defn_elements, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4100), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4234), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65601] = 18, + [75314] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417594,47 +426666,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6314), 1, - anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3782), 1, - sym__type, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, + ACTIONS(7334), 1, + anon_sym_DOT, + STATE(4238), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4101), 4, + STATE(4235), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65670] = 10, + ACTIONS(2954), 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(2956), 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, + [75371] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417645,39 +426711,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7336), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4102), 4, + STATE(4236), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3539), 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(3537), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 7, + 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, - [65723] = 10, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2886), 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, + [75426] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417688,17 +426755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4103), 4, + STATE(4237), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3543), 9, + ACTIONS(7339), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -417708,7 +426775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3541), 11, + ACTIONS(7341), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -417720,7 +426787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [65776] = 18, + [75479] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417731,47 +426798,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7063), 1, - anon_sym_LPAREN, - ACTIONS(7065), 1, - anon_sym__, - ACTIONS(7067), 1, - anon_sym_POUND, - STATE(4522), 1, - sym__static_type_identifier, - STATE(4535), 1, - sym__type, - STATE(4667), 1, - sym_type_argument, - STATE(4693), 1, - sym_long_identifier, + ACTIONS(7343), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7069), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4104), 4, + STATE(4238), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4721), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65845] = 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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(2964), 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, + [75534] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417782,38 +426842,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, + ACTIONS(6949), 1, sym_identifier, - ACTIONS(6889), 1, + ACTIONS(6951), 1, anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(6953), 1, anon_sym_STAR, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_LT2, - ACTIONS(6895), 1, + ACTIONS(6957), 1, anon_sym_LBRACK_RBRACK, - STATE(3972), 1, + STATE(4274), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, + STATE(4348), 1, sym_type_arguments, - STATE(4352), 1, + STATE(4360), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4660), 4, - sym__newline, - sym__dedent, + ACTIONS(4549), 4, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(4105), 4, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4239), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4662), 8, + ACTIONS(4551), 8, anon_sym_and, anon_sym_new, anon_sym_default, @@ -417822,7 +426882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [65914] = 18, + [75603] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417833,47 +426893,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3192), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, - anon_sym_LPAREN, - ACTIONS(7235), 1, - anon_sym__, - ACTIONS(7237), 1, - anon_sym_POUND, - STATE(950), 1, - sym__type, - STATE(1083), 1, - sym__static_type_identifier, - STATE(1273), 1, - sym_long_identifier, - STATE(1277), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7239), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4106), 4, + STATE(4240), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1280), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [65983] = 18, + ACTIONS(3572), 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(3570), 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, + [75656] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417884,47 +426936,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6314), 1, - anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, - STATE(5362), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4107), 4, + STATE(4241), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66052] = 18, + ACTIONS(3594), 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(3596), 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, + [75709] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417935,47 +426979,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6868), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, - STATE(5715), 1, - sym__type, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4108), 4, + ACTIONS(4629), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4242), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66121] = 18, + ACTIONS(4631), 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, + [75778] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -417986,47 +427030,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, - STATE(2621), 1, - sym__type, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4109), 4, + ACTIONS(4579), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4243), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66190] = 18, + ACTIONS(4581), 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, + [75847] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418037,47 +427081,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5431), 1, - sym__type, + ACTIONS(7334), 1, + anon_sym_DOT, + STATE(4235), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4110), 4, + STATE(4244), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66259] = 18, + ACTIONS(2986), 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(2988), 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, + [75906] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418088,47 +427127,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5467), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4111), 4, + STATE(4245), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66328] = 18, + ACTIONS(3044), 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(3046), 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, + [75959] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418139,47 +427170,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym__, - ACTIONS(6314), 1, - anon_sym_POUND, - ACTIONS(6816), 1, - sym_identifier, - STATE(3778), 1, - sym__static_type_identifier, - STATE(3783), 1, - sym__type, - STATE(4258), 1, - sym_type_argument, - STATE(4326), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4112), 4, + STATE(4246), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4330), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66397] = 18, + ACTIONS(3044), 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(3046), 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, + [76012] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418190,47 +427213,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, - anon_sym_LPAREN, - ACTIONS(6356), 1, - anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4349), 1, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, sym_long_identifier, - STATE(5382), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4113), 4, + ACTIONS(4579), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4247), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66466] = 10, + ACTIONS(4581), 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, + [76081] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418241,17 +427264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4114), 4, + STATE(4248), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3718), 9, + ACTIONS(3549), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418261,7 +427284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3720), 11, + ACTIONS(3547), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418273,7 +427296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [66519] = 18, + [76134] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418284,47 +427307,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7128), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym__, - ACTIONS(7132), 1, - anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4613), 1, - sym__type, - STATE(4708), 1, - sym_type_argument, - STATE(4893), 1, - sym_long_identifier, + ACTIONS(7334), 1, + anon_sym_DOT, + STATE(4235), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4115), 4, + STATE(4249), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66588] = 18, + ACTIONS(2986), 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(2988), 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, + [76191] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418335,47 +427352,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7128), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym__, - ACTIONS(7132), 1, - anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4604), 1, - sym__type, - STATE(4708), 1, - sym_type_argument, - STATE(4893), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4116), 4, + STATE(4250), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66657] = 10, + ACTIONS(2981), 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(2979), 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, + [76244] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418386,17 +427395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4117), 4, + STATE(4251), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3708), 9, + ACTIONS(3603), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418406,7 +427415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3706), 11, + ACTIONS(3601), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418418,7 +427427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [66710] = 10, + [76297] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418429,39 +427438,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4118), 4, + ACTIONS(4629), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4252), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3704), 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(3702), 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, - [66763] = 18, + ACTIONS(4631), 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, + [76366] = 27, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418472,47 +427489,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7128), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym__, - ACTIONS(7132), 1, - anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4617), 1, - sym__type, - STATE(4708), 1, - sym_type_argument, - STATE(4893), 1, - sym_long_identifier, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7345), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4119), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4253), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66832] = 18, + [76453] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418523,47 +427549,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, + ACTIONS(6906), 1, sym_identifier, - ACTIONS(7128), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym__, - ACTIONS(7132), 1, - anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4598), 1, - sym__type, - STATE(4708), 1, - sym_type_argument, - STATE(4893), 1, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4120), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4458), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4254), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66901] = 18, + ACTIONS(4460), 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, + [76520] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418574,47 +427599,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4972), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5469), 1, - sym__type, + ACTIONS(7346), 1, + anon_sym_and, + STATE(4269), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4121), 4, + STATE(4255), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [66970] = 10, + ACTIONS(4970), 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, + [76577] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418625,17 +427644,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4122), 4, + STATE(4256), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2992), 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(2990), 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, + [76630] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4257), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3609), 9, + ACTIONS(3592), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418645,7 +427707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3607), 11, + ACTIONS(3590), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418657,7 +427719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67023] = 18, + [76683] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418668,47 +427730,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(7348), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4258), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3058), 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(3060), 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(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5470), 1, - sym__type, + [76738] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7350), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4123), 4, + STATE(4259), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [67092] = 10, + ACTIONS(3058), 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(3060), 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, + [76793] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418719,17 +427818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4124), 4, + STATE(4260), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3605), 9, + ACTIONS(3741), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418739,7 +427838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3603), 11, + ACTIONS(3739), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418751,7 +427850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67145] = 27, + [76846] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418762,56 +427861,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7364), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4125), 4, + STATE(4261), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [67232] = 18, + ACTIONS(6509), 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(6511), 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, + [76899] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418822,47 +427904,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(427), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(6841), 1, + anon_sym_DOT, + STATE(4283), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4126), 4, + STATE(4262), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [67301] = 10, + ACTIONS(2986), 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(2988), 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, + [76956] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418873,17 +427949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4127), 4, + STATE(4263), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3554), 9, + ACTIONS(6521), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418893,7 +427969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3552), 11, + ACTIONS(6523), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418905,7 +427981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67354] = 10, + [77009] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418916,17 +427992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4128), 4, + STATE(4264), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3663), 9, + ACTIONS(3611), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418936,7 +428012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3661), 11, + ACTIONS(3609), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418948,7 +428024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67407] = 10, + [77062] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -418959,17 +428035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4129), 4, + STATE(4265), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3399), 9, + ACTIONS(6525), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -418979,7 +428055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3397), 11, + ACTIONS(6527), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -418991,7 +428067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67460] = 27, + [77115] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419002,56 +428078,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5202), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, + ACTIONS(7352), 1, anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, + STATE(4413), 1, sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7728), 1, - sym_access_modifier, - STATE(8156), 1, - sym__type_defn_elements, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4130), 4, + STATE(4266), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [67547] = 10, + aux_sym__object_expression_inner_repeat1, + ACTIONS(5200), 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_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [77172] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419062,39 +428123,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4131), 4, + ACTIONS(6920), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4267), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3403), 9, - anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6922), 18, + 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_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3401), 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, - [67600] = 10, + anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_exception, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [77225] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419105,17 +428166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4132), 4, + STATE(4268), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 9, + ACTIONS(7355), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419125,7 +428186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3413), 11, + ACTIONS(7357), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419137,7 +428198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67653] = 18, + [77278] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419148,47 +428209,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4960), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7091), 1, - anon_sym__, - ACTIONS(7093), 1, - anon_sym_POUND, - STATE(863), 1, - sym__static_type_identifier, - STATE(881), 1, - sym_long_identifier, - STATE(883), 1, - sym_type_argument, - STATE(1128), 1, - sym__type, + ACTIONS(7346), 1, + anon_sym_and, + STATE(4272), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4133), 4, + STATE(4269), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(891), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [67722] = 10, + ACTIONS(4958), 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, + [77335] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419199,17 +428254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4134), 4, + STATE(4270), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 9, + ACTIONS(3475), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419219,7 +428274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3417), 11, + ACTIONS(3477), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419231,58 +428286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67775] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7063), 1, - anon_sym_LPAREN, - ACTIONS(7065), 1, - anon_sym__, - ACTIONS(7067), 1, - anon_sym_POUND, - STATE(4498), 1, - sym__type, - STATE(4522), 1, - sym__static_type_identifier, - STATE(4667), 1, - sym_type_argument, - STATE(4693), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7069), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4135), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4721), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [67844] = 10, + [77388] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419293,17 +428297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4136), 4, + STATE(4271), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 9, + ACTIONS(3615), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419313,7 +428317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3421), 11, + ACTIONS(3613), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419325,7 +428329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67897] = 10, + [77441] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419336,39 +428340,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4951), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7359), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4137), 4, + STATE(4272), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3427), 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(3425), 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, - [67950] = 10, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 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, + [77496] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419379,17 +428384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4138), 4, + STATE(4273), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3431), 9, + ACTIONS(3619), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419399,7 +428404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3429), 11, + ACTIONS(3617), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419411,7 +428416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [68003] = 10, + [77549] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419422,39 +428427,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6953), 1, + anon_sym_STAR, + STATE(4278), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4139), 4, + STATE(4274), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3454), 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(3452), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3015), 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, - [68056] = 10, + 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, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [77606] = 27, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7830), 1, + sym_access_modifier, + STATE(8398), 1, + sym__type_defn_elements, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4275), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [77693] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419465,39 +428532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4140), 4, + STATE(4276), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3458), 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(3456), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(2981), 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, - [68109] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2979), 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, + [77746] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419508,17 +428575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4141), 4, + STATE(4277), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3716), 9, + ACTIONS(3743), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419528,7 +428595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3714), 11, + ACTIONS(3745), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419540,7 +428607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [68162] = 10, + [77799] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419551,39 +428618,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7362), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4142), 4, + STATE(4278), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3462), 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(3460), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 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, - [68215] = 10, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(2886), 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, + [77854] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419594,17 +428662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4143), 4, + STATE(4279), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3470), 9, + ACTIONS(6477), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -419614,7 +428682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3468), 11, + ACTIONS(6479), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -419626,7 +428694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [68268] = 18, + [77907] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419637,47 +428705,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6868), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, sym_long_identifier, - STATE(5585), 1, - sym__type, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4144), 4, + ACTIONS(4793), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4280), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68337] = 18, + ACTIONS(4795), 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, + [77976] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419688,47 +428756,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, - anon_sym_LPAREN, - ACTIONS(7117), 1, - anon_sym__, - ACTIONS(7119), 1, - anon_sym_POUND, - STATE(4540), 1, - sym__static_type_identifier, - STATE(4571), 1, - sym__type, - STATE(4669), 1, - sym_type_argument, - STATE(4729), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4145), 4, + STATE(4281), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4698), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68406] = 18, + ACTIONS(3627), 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(3625), 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, + [78029] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419739,47 +428799,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7063), 1, - anon_sym_LPAREN, - ACTIONS(7065), 1, - anon_sym__, - ACTIONS(7067), 1, - anon_sym_POUND, - STATE(4495), 1, - sym__type, - STATE(4522), 1, - sym__static_type_identifier, - STATE(4667), 1, - sym_type_argument, - STATE(4693), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7069), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4146), 4, + STATE(4282), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4721), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68475] = 18, + 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, + ACTIONS(3732), 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, + [78082] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419790,47 +428842,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2551), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, + ACTIONS(6841), 1, + anon_sym_DOT, + STATE(4310), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4147), 4, + STATE(4283), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68544] = 18, + ACTIONS(2954), 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(2956), 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, + [78139] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419841,47 +428887,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7261), 1, - anon_sym_LPAREN, - ACTIONS(7263), 1, - anon_sym__, - ACTIONS(7265), 1, - anon_sym_POUND, - STATE(4537), 1, - sym__type, - STATE(4568), 1, - sym__static_type_identifier, - STATE(4722), 1, - sym_type_argument, - STATE(4847), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4148), 4, + STATE(4284), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4863), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68613] = 18, + ACTIONS(3631), 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(3629), 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, + [78192] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419892,47 +428930,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7261), 1, - anon_sym_LPAREN, - ACTIONS(7263), 1, - anon_sym__, - ACTIONS(7265), 1, - anon_sym_POUND, - STATE(4568), 1, - sym__static_type_identifier, - STATE(4602), 1, - sym__type, - STATE(4722), 1, - sym_type_argument, - STATE(4847), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4149), 4, + STATE(4285), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4863), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68682] = 18, + ACTIONS(3635), 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(3633), 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, + [78245] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419943,47 +428973,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(7261), 1, - anon_sym_LPAREN, - ACTIONS(7263), 1, - anon_sym__, - ACTIONS(7265), 1, - anon_sym_POUND, - STATE(4568), 1, - sym__static_type_identifier, - STATE(4621), 1, - sym__type, - STATE(4722), 1, - sym_type_argument, - STATE(4847), 1, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4150), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4466), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4286), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4863), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68751] = 18, + ACTIONS(4468), 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, + [78312] = 22, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -419994,47 +429025,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7261), 1, - anon_sym_LPAREN, - ACTIONS(7263), 1, - anon_sym__, - ACTIONS(7265), 1, - anon_sym_POUND, - STATE(4568), 1, - sym__static_type_identifier, - STATE(4615), 1, - sym__type, - STATE(4722), 1, - sym_type_argument, - STATE(4847), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4151), 4, + ACTIONS(7216), 1, + anon_sym_y, + ACTIONS(7218), 1, + anon_sym_uy, + ACTIONS(7220), 1, + anon_sym_s, + ACTIONS(7222), 1, + anon_sym_us, + ACTIONS(7226), 1, + aux_sym_uint32_token1, + ACTIONS(7228), 1, + anon_sym_n, + ACTIONS(7230), 1, + anon_sym_un, + ACTIONS(7234), 1, + aux_sym_uint64_token1, + ACTIONS(7365), 1, + anon_sym_l, + ACTIONS(7367), 1, + anon_sym_L, + ACTIONS(7369), 1, + anon_sym_lf, + ACTIONS(7371), 1, + anon_sym_LF, + STATE(4287), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4863), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68820] = 18, + ACTIONS(2526), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [78389] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420045,47 +429078,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5466), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4152), 4, + STATE(4288), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68889] = 18, + ACTIONS(3568), 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(3566), 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, + [78442] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420096,47 +429121,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7261), 1, - anon_sym_LPAREN, - ACTIONS(7263), 1, - anon_sym__, - ACTIONS(7265), 1, - anon_sym_POUND, - STATE(4568), 1, - sym__static_type_identifier, - STATE(4612), 1, - sym__type, - STATE(4722), 1, - sym_type_argument, - STATE(4847), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4153), 4, + STATE(4289), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4863), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [68958] = 18, + ACTIONS(7373), 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(7375), 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, + [78495] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420147,98 +429164,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7128), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym__, - ACTIONS(7132), 1, - anon_sym_POUND, - STATE(4565), 1, - sym__static_type_identifier, - STATE(4631), 1, - sym__type, - STATE(4708), 1, - sym_type_argument, - STATE(4893), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4154), 4, + STATE(4290), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4867), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69027] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6354), 1, + ACTIONS(3457), 9, anon_sym_LPAREN, - ACTIONS(6356), 1, + anon_sym_null, anon_sym__, - ACTIONS(6358), 1, - anon_sym_POUND, - ACTIONS(6887), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - STATE(3811), 1, - sym__static_type_identifier, - STATE(4044), 1, - sym_type_argument, - STATE(4349), 1, - sym_long_identifier, - STATE(4657), 1, - sym__type, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6360), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4155), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4359), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69096] = 18, + ACTIONS(3455), 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, + [78548] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420249,47 +429207,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(413), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4156), 4, + STATE(4291), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69165] = 18, + ACTIONS(6533), 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(6535), 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, + [78601] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420300,47 +429250,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4706), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4157), 4, + STATE(4292), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4708), 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, - [69234] = 18, + ACTIONS(2528), 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(2526), 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, + [78654] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420351,47 +429293,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3248), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - anon_sym__, - ACTIONS(7255), 1, - anon_sym_POUND, - STATE(993), 1, - sym__type, - STATE(1331), 1, - sym__static_type_identifier, - STATE(1371), 1, - sym_type_argument, - STATE(1374), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7257), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4158), 4, + STATE(4293), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1366), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69303] = 13, + ACTIONS(3696), 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(3694), 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, + [78707] = 27, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420402,42 +429336,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, - anon_sym_DOT, - STATE(4181), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7652), 1, + sym__type_defn_elements, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4159), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4294), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 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, - [69362] = 18, + [78794] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420448,47 +429396,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3281), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7271), 1, - anon_sym_LPAREN, - ACTIONS(7273), 1, - anon_sym__, - ACTIONS(7275), 1, - anon_sym_POUND, - STATE(962), 1, - sym__type, - STATE(1300), 1, - sym__static_type_identifier, - STATE(1407), 1, - sym_long_identifier, - STATE(1409), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7277), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4160), 4, + STATE(4295), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1420), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69431] = 18, + ACTIONS(3702), 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(3700), 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, + [78847] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420499,47 +429439,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5423), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4161), 4, + STATE(4296), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69500] = 18, + ACTIONS(3725), 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(3723), 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, + [78900] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420550,47 +429482,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, - STATE(5581), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4162), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4458), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4297), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69569] = 12, + ACTIONS(4460), 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, + [78967] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420601,28 +429532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5192), 1, + ACTIONS(3221), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3974), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4425), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4163), 4, + STATE(4298), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 17, + ACTIONS(3219), 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, @@ -420635,7 +429564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [69626] = 18, + [79020] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420646,47 +429575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7154), 1, - anon_sym_LPAREN, - ACTIONS(7156), 1, - anon_sym__, - ACTIONS(7158), 1, - anon_sym_POUND, - STATE(4459), 1, - sym__static_type_identifier, - STATE(4545), 1, - sym__type, - STATE(4583), 1, - sym_type_argument, - STATE(4684), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4164), 4, + STATE(4299), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4647), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69695] = 18, + ACTIONS(3717), 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(3715), 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, + [79073] = 27, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420697,47 +429618,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3281), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7271), 1, - anon_sym_LPAREN, - ACTIONS(7273), 1, - anon_sym__, - ACTIONS(7275), 1, - anon_sym_POUND, - STATE(967), 1, - sym__type, - STATE(1300), 1, - sym__static_type_identifier, - STATE(1407), 1, - sym_long_identifier, - STATE(1409), 1, - sym_type_argument, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5158), 1, + sym__member_defns, + STATE(5208), 1, + sym_interface_implementation, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(6079), 1, + aux_sym__object_expression_inner_repeat1, + STATE(7830), 1, + sym_access_modifier, + STATE(8028), 1, + sym__type_defn_elements, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7277), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4165), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4300), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1420), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [69764] = 10, + [79160] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420748,17 +429678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4166), 4, + STATE(4301), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3655), 9, + ACTIONS(6481), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420768,7 +429698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 11, + ACTIONS(6483), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420780,7 +429710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [69817] = 10, + [79213] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420791,17 +429721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4167), 4, + STATE(4302), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3642), 9, + ACTIONS(3686), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420811,7 +429741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3644), 11, + ACTIONS(3684), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420823,7 +429753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [69870] = 12, + [79266] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420834,41 +429764,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6792), 1, - anon_sym_DOT, - STATE(4246), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4168), 4, + ACTIONS(4545), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4303), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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(2959), 10, - anon_sym_with, + ACTIONS(4547), 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, - sym_identifier, - [69927] = 10, + [79335] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420879,17 +429815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4169), 4, + STATE(4304), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3638), 9, + ACTIONS(3682), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420899,7 +429835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3640), 11, + ACTIONS(3680), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420911,7 +429847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [69980] = 10, + [79388] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420922,17 +429858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4170), 4, + STATE(4305), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3630), 9, + ACTIONS(3675), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420942,7 +429878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3632), 11, + ACTIONS(3673), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420954,7 +429890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [70033] = 10, + [79441] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -420965,17 +429901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4171), 4, + STATE(4306), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3626), 9, + ACTIONS(3667), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420985,7 +429921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3628), 11, + ACTIONS(3665), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420997,7 +429933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [70086] = 18, + [79494] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421008,47 +429944,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(419), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4172), 4, + STATE(4307), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70155] = 10, + ACTIONS(3659), 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(3657), 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, + [79547] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421059,17 +429987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4173), 4, + STATE(4308), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3611), 9, + ACTIONS(3655), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -421079,7 +430007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3613), 11, + ACTIONS(3653), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -421091,7 +430019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [70208] = 18, + [79600] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421102,47 +430030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3281), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7271), 1, - anon_sym_LPAREN, - ACTIONS(7273), 1, - anon_sym__, - ACTIONS(7275), 1, - anon_sym_POUND, - STATE(982), 1, - sym__type, - STATE(1300), 1, - sym__static_type_identifier, - STATE(1407), 1, - sym_long_identifier, - STATE(1409), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7277), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4174), 4, + STATE(4309), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1420), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70277] = 18, + ACTIONS(3651), 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(3649), 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, + [79653] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421153,47 +430073,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3281), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7271), 1, - anon_sym_LPAREN, - ACTIONS(7273), 1, - anon_sym__, - ACTIONS(7275), 1, - anon_sym_POUND, - STATE(983), 1, - sym__type, - STATE(1300), 1, - sym__static_type_identifier, - STATE(1407), 1, - sym_long_identifier, - STATE(1409), 1, - sym_type_argument, + ACTIONS(7377), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7277), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4175), 4, + STATE(4310), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1420), 10, - sym_simple_type, - sym_generic_type, - 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] = 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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(2964), 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, + [79708] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421204,47 +430117,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3128), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym__, - ACTIONS(7283), 1, - anon_sym_POUND, - STATE(906), 1, - sym__type, - STATE(974), 1, - sym__static_type_identifier, - STATE(1063), 1, - sym_long_identifier, - STATE(1154), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7285), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4176), 4, + STATE(4311), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1153), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70415] = 18, + ACTIONS(3647), 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(3645), 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, + [79761] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421255,47 +430160,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3128), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym__, - ACTIONS(7283), 1, - anon_sym_POUND, - STATE(908), 1, - sym__type, - STATE(974), 1, - sym__static_type_identifier, - STATE(1063), 1, - sym_long_identifier, - STATE(1154), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7285), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4177), 4, + STATE(4312), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1153), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70484] = 18, + ACTIONS(3054), 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(3048), 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, + [79813] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421306,47 +430202,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4905), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5426), 1, - sym__type, + ACTIONS(7380), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4178), 4, + STATE(4313), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70553] = 18, + ACTIONS(4903), 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, + [79867] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421357,47 +430245,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4915), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5430), 1, - sym__type, + ACTIONS(7382), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4179), 4, + STATE(4314), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70622] = 11, + ACTIONS(4913), 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, + [79921] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421408,30 +430288,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7287), 1, - anon_sym_DOT, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4180), 5, + ACTIONS(4545), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4315), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 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(2988), 11, - anon_sym_and, - anon_sym_with, + ACTIONS(4547), 8, anon_sym_new, anon_sym_default, anon_sym_static, @@ -421440,8 +430327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [70677] = 12, + [79989] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421452,31 +430338,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4915), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, - anon_sym_DOT, - STATE(4180), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7384), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4181), 4, + STATE(4316), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 7, + ACTIONS(4913), 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(2973), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -421485,8 +430366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [70734] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [80043] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421497,47 +430381,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5429), 1, - sym__type, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6711), 1, + anon_sym_static, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4319), 1, + aux_sym__member_defns_repeat1, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5025), 1, + sym_member_defn, + STATE(5243), 1, + sym_attributes, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4182), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4711), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(4317), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70803] = 18, + [80121] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421548,47 +430436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4905), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, - STATE(2843), 1, - sym__type, + ACTIONS(7386), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4183), 4, + STATE(4318), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70872] = 18, + ACTIONS(4903), 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, + [80175] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421599,47 +430479,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3128), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym__, - ACTIONS(7283), 1, - anon_sym_POUND, - STATE(909), 1, - sym__type, - STATE(974), 1, - sym__static_type_identifier, - STATE(1063), 1, - sym_long_identifier, - STATE(1154), 1, - sym_type_argument, + ACTIONS(7388), 1, + anon_sym_new, + ACTIONS(7394), 1, + anon_sym_static, + ACTIONS(7397), 1, + anon_sym_member, + ACTIONS(7400), 1, + anon_sym_abstract, + ACTIONS(7403), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5025), 1, + sym_member_defn, + STATE(5243), 1, + sym_attributes, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7285), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4184), 4, + ACTIONS(7391), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4591), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(4319), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1153), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [70941] = 18, + aux_sym__member_defns_repeat1, + [80253] = 22, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421650,47 +430536,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(7303), 1, + anon_sym_y, + ACTIONS(7305), 1, + anon_sym_uy, + ACTIONS(7307), 1, + anon_sym_s, + ACTIONS(7309), 1, + anon_sym_us, + ACTIONS(7313), 1, + aux_sym_uint32_token1, + ACTIONS(7315), 1, + anon_sym_n, + ACTIONS(7317), 1, + anon_sym_un, + ACTIONS(7321), 1, + aux_sym_uint64_token1, + ACTIONS(7406), 1, + anon_sym_l, + ACTIONS(7408), 1, + anon_sym_L, + ACTIONS(7410), 1, + anon_sym_lf, + ACTIONS(7412), 1, + anon_sym_LF, + STATE(4320), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2526), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [80329] = 18, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6866), 1, sym_identifier, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3641), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4185), 4, + ACTIONS(4793), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4321), 4, sym_block_comment, sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71010] = 18, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4795), 8, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [80397] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421701,47 +430638,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3644), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4186), 4, + ACTIONS(4629), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4322), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71079] = 18, + ACTIONS(4631), 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, + [80465] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421752,47 +430688,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5442), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4187), 4, + STATE(4323), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71148] = 18, + ACTIONS(2966), 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(2964), 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, + [80517] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421803,47 +430730,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4966), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5444), 1, - sym__type, + ACTIONS(7414), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4188), 4, + STATE(4324), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71217] = 18, + ACTIONS(4964), 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, + [80571] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421854,47 +430773,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5196), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3873), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, + STATE(4375), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4548), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4189), 4, + STATE(4325), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71286] = 10, + ACTIONS(5194), 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, + [80627] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421905,26 +430817,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3165), 1, + ACTIONS(4966), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7416), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4190), 4, + STATE(4326), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 19, + ACTIONS(4964), 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, @@ -421937,7 +430849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [71339] = 18, + [80681] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421948,47 +430860,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, - anon_sym_LPAREN, - ACTIONS(7099), 1, - anon_sym__, - ACTIONS(7101), 1, - anon_sym_POUND, - STATE(410), 1, - sym__type, - STATE(2956), 1, - sym__static_type_identifier, - STATE(3013), 1, - sym_type_argument, - STATE(3093), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4191), 4, + STATE(4327), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71408] = 10, + ACTIONS(3661), 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(3663), 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, + [80733] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -421999,39 +430902,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4855), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7418), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6961), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(4192), 4, + STATE(4328), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6963), 18, - anon_sym_module, + ACTIONS(4853), 17, + sym__newline, 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_exception, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [71461] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [80787] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422042,47 +430945,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4855), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, - STATE(5422), 1, - sym__type, + ACTIONS(7420), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4193), 4, + STATE(4329), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71530] = 18, + ACTIONS(4853), 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, + [80841] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422093,47 +430988,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5406), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4194), 4, + STATE(4330), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71599] = 18, + ACTIONS(3064), 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(3062), 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, + [80893] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422144,47 +431030,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - ACTIONS(6514), 1, - sym_identifier, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3645), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4195), 4, + STATE(4331), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71668] = 18, + ACTIONS(3094), 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(3092), 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, + [80945] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422195,47 +431072,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7091), 1, - anon_sym__, - ACTIONS(7093), 1, - anon_sym_POUND, - STATE(840), 1, - sym__type, - STATE(863), 1, - sym__static_type_identifier, - STATE(881), 1, - sym_long_identifier, - STATE(883), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4196), 4, + STATE(4332), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(891), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71737] = 18, + ACTIONS(3098), 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(3096), 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, + [80997] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422246,47 +431114,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym__, - ACTIONS(6402), 1, - anon_sym_POUND, - ACTIONS(6514), 1, - sym_identifier, - STATE(3640), 1, - sym__static_type_identifier, - STATE(3647), 1, - sym__type, - STATE(3683), 1, - sym_type_argument, - STATE(3722), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4197), 4, + STATE(4333), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3723), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71806] = 18, + ACTIONS(3040), 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(3042), 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, + [81049] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422297,47 +431156,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3340), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(991), 1, - sym__type, - STATE(1271), 1, - sym__static_type_identifier, - STATE(1447), 1, - sym_type_argument, - STATE(1454), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4198), 4, + STATE(4334), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1444), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71875] = 18, + ACTIONS(3090), 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(3088), 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, + [81101] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422348,47 +431198,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3340), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(1015), 1, - sym__type, - STATE(1271), 1, - sym__static_type_identifier, - STATE(1447), 1, - sym_type_argument, - STATE(1454), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4199), 4, + STATE(4335), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1444), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [71944] = 18, + ACTIONS(3080), 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(3078), 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, + [81153] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422399,47 +431240,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3340), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4855), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(1010), 1, - sym__type, - STATE(1271), 1, - sym__static_type_identifier, - STATE(1447), 1, - sym_type_argument, - STATE(1454), 1, - sym_long_identifier, + ACTIONS(7422), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4200), 4, + STATE(4336), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1444), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72013] = 10, + ACTIONS(4853), 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, + [81207] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422450,27 +431283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4201), 4, + STATE(4337), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 9, + ACTIONS(3064), 8, 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(2988), 11, + ACTIONS(3062), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -422482,7 +431314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [72066] = 18, + [81259] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422493,47 +431325,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5450), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4202), 4, + STATE(4338), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72135] = 18, + ACTIONS(3074), 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(3076), 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, + [81311] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422544,47 +431367,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4939), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5403), 1, - sym__type, + ACTIONS(7424), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4203), 4, + STATE(4339), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72204] = 10, + ACTIONS(4937), 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, + [81365] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422595,39 +431410,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4945), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7426), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4204), 4, + STATE(4340), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 8, + ACTIONS(4943), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + 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_POUNDendif, - ACTIONS(2977), 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, - [72257] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81419] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422638,31 +431453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7252), 1, + anon_sym_STAR, + STATE(4369), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4205), 4, + STATE(4341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 8, + ACTIONS(3015), 7, + 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(3066), 12, - anon_sym_and, + ACTIONS(3013), 10, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -422670,7 +431486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [72310] = 12, + [81475] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422681,31 +431497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4972), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, - anon_sym_DOT, - STATE(4181), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7428), 1, + anon_sym_and, + STATE(4379), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4206), 4, + STATE(4342), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 7, + ACTIONS(4970), 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(2959), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -422714,8 +431527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [72367] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [81531] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422726,47 +431541,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5128), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4612), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4207), 4, + STATE(4343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4614), 8, + ACTIONS(5126), 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, - [72436] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81583] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422777,27 +431583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4208), 4, + STATE(4344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 9, + ACTIONS(3094), 8, + 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, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2988), 11, + ACTIONS(3092), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -422809,7 +431614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [72489] = 18, + [81635] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422820,47 +431625,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5116), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5455), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4209), 4, + STATE(4345), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72558] = 27, + ACTIONS(5114), 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, + [81687] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422871,56 +431667,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5172), 1, - sym_interface_implementation, - STATE(5178), 1, - sym__member_defns, - STATE(5344), 1, - sym_attributes, - STATE(6018), 1, - aux_sym__object_expression_inner_repeat1, - STATE(7661), 1, - sym__type_defn_elements, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4210), 4, + STATE(4346), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [72645] = 17, + ACTIONS(3098), 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(3096), 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, + [81739] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422931,46 +431709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5064), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4462), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4211), 4, + STATE(4347), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4464), 9, + ACTIONS(5062), 18, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, anon_sym_and, - anon_sym_with, + 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, - [72712] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81791] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -422981,47 +431751,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5463), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4212), 4, + STATE(4348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72781] = 18, + ACTIONS(3070), 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(3072), 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, + [81843] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423032,47 +431793,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4929), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, + ACTIONS(7430), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4638), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4213), 4, + STATE(4349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4640), 8, - anon_sym_and, + ACTIONS(4927), 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, - [72850] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81897] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423083,47 +431836,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, - anon_sym_LPAREN, - ACTIONS(7099), 1, - anon_sym__, - ACTIONS(7101), 1, - anon_sym_POUND, - STATE(411), 1, - sym__type, - STATE(2956), 1, - sym__static_type_identifier, - STATE(3013), 1, - sym_type_argument, - STATE(3093), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4214), 4, + STATE(4350), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72919] = 18, + ACTIONS(3040), 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(3042), 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, + [81949] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423134,47 +431878,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5386), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4215), 4, + STATE(4351), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [72988] = 10, + ACTIONS(3066), 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(3068), 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, + [82001] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423185,39 +431920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4216), 4, + STATE(4352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6496), 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(6498), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3090), 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, - [73041] = 18, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3088), 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, + [82053] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423228,47 +431962,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5468), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4217), 4, + STATE(4353), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73110] = 11, + ACTIONS(3080), 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(3078), 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, + [82105] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423279,27 +432004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5015), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7290), 1, - anon_sym_and, + ACTIONS(7432), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4218), 5, + STATE(4354), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 17, - sym__newline, + ACTIONS(3082), 7, 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(3084), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -423308,11 +432035,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, + sym_identifier, + [82159] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6648), 1, + anon_sym_new, + ACTIONS(6652), 1, + anon_sym_static, + ACTIONS(6654), 1, + anon_sym_member, + ACTIONS(6658), 1, + anon_sym_abstract, + ACTIONS(6660), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4376), 1, + aux_sym__member_defns_repeat1, + STATE(5008), 1, + sym_member_defn, + STATE(5061), 1, + sym_additional_constr_defn, + STATE(5422), 1, + sym_attributes, + STATE(8236), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6650), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4711), 4, + anon_sym_LBRACK_LT, + anon_sym_and, anon_sym_POUNDendif, anon_sym_POUNDelse, - [73165] = 10, + STATE(4355), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [82237] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423323,39 +432102,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6648), 1, + anon_sym_new, + ACTIONS(6652), 1, + anon_sym_static, + ACTIONS(6654), 1, + anon_sym_member, + ACTIONS(6658), 1, + anon_sym_abstract, + ACTIONS(6660), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4355), 1, + aux_sym__member_defns_repeat1, + STATE(5008), 1, + sym_member_defn, + STATE(5061), 1, + sym_additional_constr_defn, + STATE(5422), 1, + sym_attributes, + STATE(8236), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4219), 4, + ACTIONS(6650), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4733), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6492), 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(6494), 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, - [73218] = 12, + [82315] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423366,28 +432157,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4999), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7293), 1, - anon_sym_and, - STATE(4218), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4220), 4, + STATE(4357), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 17, - sym__newline, + ACTIONS(3058), 8, 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(3060), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -423396,11 +432187,8 @@ 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, - [73275] = 18, + sym_identifier, + [82367] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423411,47 +432199,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(3876), 1, - sym__type, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4221), 4, + ACTIONS(4549), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73344] = 18, + ACTIONS(4551), 8, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82435] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423462,47 +432249,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3003), 1, - sym__type, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(7434), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4222), 4, + STATE(4359), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73413] = 17, + ACTIONS(3058), 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(3060), 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, + [82489] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423513,46 +432292,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4449), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4223), 4, + STATE(4360), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4451), 9, + ACTIONS(3054), 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(3048), 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, - [73480] = 18, + sym_identifier, + [82541] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423563,47 +432334,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(2977), 1, - sym__static_type_identifier, - STATE(2994), 1, - sym__type, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4224), 4, + STATE(4361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73549] = 18, + ACTIONS(2981), 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(2979), 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, + [82593] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423614,47 +432376,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(2977), 1, - sym__static_type_identifier, - STATE(2989), 1, - sym__type, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(7436), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4225), 4, + STATE(4362), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73618] = 18, + ACTIONS(3058), 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(3060), 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, + [82647] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423665,47 +432419,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5414), 1, - sym__type, + ACTIONS(7290), 1, + anon_sym_STAR, + STATE(4367), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4226), 4, + STATE(4363), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73687] = 18, + ACTIONS(3015), 6, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + 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, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [82703] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423716,47 +432463,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, - STATE(5530), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4227), 4, + ACTIONS(4579), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73756] = 18, + ACTIONS(4581), 8, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82771] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423767,47 +432513,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3128), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym__, - ACTIONS(7283), 1, - anon_sym_POUND, - STATE(904), 1, - sym__type, - STATE(974), 1, - sym__static_type_identifier, - STATE(1063), 1, - sym_long_identifier, - STATE(1154), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7285), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4228), 4, + STATE(4365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1153), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73825] = 18, + ACTIONS(2966), 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(2964), 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, + [82823] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423818,47 +432555,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5397), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4229), 4, + STATE(4366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73894] = 18, + ACTIONS(3074), 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(3076), 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, + [82875] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423869,47 +432597,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5523), 1, - sym__type, + ACTIONS(7438), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4230), 4, + STATE(4367), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [73963] = 18, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 6, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(2886), 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, + [82929] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423920,47 +432640,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, sym_long_identifier, - STATE(5521), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4231), 4, + ACTIONS(4629), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4368), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74032] = 10, + ACTIONS(4631), 8, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82997] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -423971,28 +432690,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7441), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4232), 4, + STATE(4369), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 9, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 7, + 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, - anon_sym_POUNDelse, - ACTIONS(3026), 11, - anon_sym_and, + ACTIONS(2886), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -424003,7 +432722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [74085] = 18, + [83051] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424014,47 +432733,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3221), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - ACTIONS(6973), 1, - sym_identifier, - STATE(3842), 1, - sym__type, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4233), 4, + STATE(4370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74154] = 18, + ACTIONS(3219), 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, + [83103] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424065,47 +432775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - ACTIONS(6973), 1, - sym_identifier, - STATE(3867), 1, - sym__type, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4234), 4, + STATE(4371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74223] = 18, + ACTIONS(3070), 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(3072), 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, + [83155] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424116,47 +432817,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(421), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4235), 4, + STATE(4372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74292] = 18, + ACTIONS(3066), 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(3068), 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, + [83207] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424167,47 +432859,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5506), 1, - sym__type, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6711), 1, + anon_sym_static, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4317), 1, + aux_sym__member_defns_repeat1, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5025), 1, + sym_member_defn, + STATE(5243), 1, + sym_attributes, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4236), 4, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4733), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(4373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74361] = 18, + [83285] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424218,47 +432914,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, - STATE(5574), 1, - sym__type, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4237), 4, + ACTIONS(4579), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74430] = 10, + ACTIONS(4581), 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, + [83353] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424269,39 +432964,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5202), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7444), 1, + anon_sym_interface, + STATE(4548), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4238), 4, + STATE(4375), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7295), 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(7297), 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, - [74483] = 18, + aux_sym__object_expression_inner_repeat1, + ACTIONS(5200), 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, + [83409] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424312,47 +433008,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5580), 1, - sym__type, + ACTIONS(7447), 1, + anon_sym_new, + ACTIONS(7453), 1, + anon_sym_static, + ACTIONS(7456), 1, + anon_sym_member, + ACTIONS(7459), 1, + anon_sym_abstract, + ACTIONS(7462), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5008), 1, + sym_member_defn, + STATE(5061), 1, + sym_additional_constr_defn, + STATE(5422), 1, + sym_attributes, + STATE(8236), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4239), 4, + ACTIONS(7450), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4591), 3, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4376), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74552] = 18, + aux_sym__member_defns_repeat1, + [83487] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424363,47 +433063,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3864), 1, - sym__type, - STATE(3879), 1, - sym__static_type_identifier, - STATE(4301), 1, - sym_type_argument, - STATE(4382), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4240), 4, + ACTIONS(4545), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4377), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4379), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74621] = 18, + ACTIONS(4547), 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, + [83555] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424414,47 +433113,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, - STATE(2828), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4241), 4, + STATE(4378), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74690] = 18, + ACTIONS(2981), 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(2979), 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, + [83607] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424465,47 +433155,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4960), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5355), 1, - sym__type, + ACTIONS(7428), 1, + anon_sym_and, + STATE(4382), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4242), 4, + STATE(4379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74759] = 11, + ACTIONS(4958), 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, + [83663] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424516,29 +433199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7299), 1, - anon_sym_DOT, + ACTIONS(7465), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4243), 5, + STATE(4380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 8, + ACTIONS(3082), 7, + sym__newline, 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(2988), 10, + ACTIONS(3084), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -424549,7 +433231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [74814] = 17, + [83717] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424560,46 +433242,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6906), 1, sym_identifier, - ACTIONS(6996), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, anon_sym_LT2, - ACTIONS(6998), 1, + ACTIONS(7294), 1, anon_sym_LBRACK_RBRACK, - STATE(4315), 1, + STATE(4363), 1, aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4462), 3, - sym__dedent, + ACTIONS(4549), 3, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(4244), 4, + anon_sym_POUNDendif, + STATE(4381), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4464), 9, - anon_sym_with, + ACTIONS(4551), 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, - [74881] = 18, + [83785] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424610,47 +433292,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4951), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(412), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(7467), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4245), 4, + STATE(4382), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [74950] = 12, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 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, + [83839] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424661,30 +433335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6792), 1, - anon_sym_DOT, - STATE(4243), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4246), 4, + STATE(4383), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 8, + ACTIONS(3058), 8, + sym__newline, 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(2973), 10, + ACTIONS(3060), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -424695,7 +433366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [75007] = 18, + [83891] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424706,47 +433377,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3881), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4247), 4, + STATE(4384), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75076] = 18, + ACTIONS(3545), 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(3543), 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, + [83943] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424757,47 +433419,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3868), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4248), 4, + ACTIONS(4793), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75145] = 18, + ACTIONS(4795), 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, + [84011] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424808,47 +433469,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3870), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4249), 4, + STATE(4386), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75214] = 18, + ACTIONS(3419), 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(3421), 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, + [84063] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424859,47 +433511,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym__, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(6988), 1, - sym_identifier, - STATE(3862), 1, - sym__static_type_identifier, - STATE(3869), 1, - sym__type, - STATE(4357), 1, - sym_type_argument, - STATE(4406), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4250), 4, + STATE(4387), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4410), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75283] = 18, + ACTIONS(3499), 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(3501), 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, + [84115] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424910,47 +433553,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5534), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4251), 4, + STATE(4388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75352] = 18, + ACTIONS(3399), 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(3397), 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, + [84167] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -424961,47 +433595,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5228), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5413), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4252), 4, + STATE(4389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75421] = 11, + ACTIONS(5226), 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, + [84218] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425012,30 +433636,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4945), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7302), 1, - anon_sym_STAR, + ACTIONS(7470), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4253), 5, + STATE(4390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 7, + ACTIONS(4943), 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(2916), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -425044,8 +433664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [75476] = 12, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [84271] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425056,26 +433678,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5034), 1, + ACTIONS(5064), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7293), 1, - anon_sym_and, - STATE(4220), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4254), 4, + STATE(4391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 17, + ACTIONS(5062), 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, @@ -425089,8 +433708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [75533] = 18, + [84322] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425101,47 +433719,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5556), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4255), 4, + STATE(4392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75602] = 12, + ACTIONS(3064), 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(3062), 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, + [84373] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425152,29 +433760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6820), 1, - anon_sym_STAR, - STATE(4253), 1, - aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4256), 4, + STATE(4393), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 7, + ACTIONS(3094), 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, - anon_sym_POUNDelse, - ACTIONS(2986), 11, + ACTIONS(3092), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -425186,7 +433790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [75659] = 18, + [84424] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425197,47 +433801,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5116), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5432), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4257), 4, + STATE(4394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75728] = 11, + ACTIONS(5114), 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, + [84475] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425248,19 +433842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7305), 1, - anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4258), 4, + STATE(4395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, + ACTIONS(3098), 7, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_DASH_GT, @@ -425268,8 +433860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3064), 11, + ACTIONS(3096), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -425281,7 +433872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [75783] = 18, + [84526] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425292,47 +433883,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5554), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4259), 4, + STATE(4396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75852] = 18, + ACTIONS(3040), 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(3042), 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, + [84577] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425343,149 +433924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5553), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4260), 4, + STATE(4397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [75921] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6889), 1, + ACTIONS(3090), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - ACTIONS(6891), 1, anon_sym_STAR, - ACTIONS(6893), 1, anon_sym_LT2, - ACTIONS(6895), 1, anon_sym_LBRACK_RBRACK, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4644), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4261), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4646), 8, + anon_sym_POUNDendif, + ACTIONS(3088), 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, - [75990] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5551), 1, - sym__type, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4262), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76059] = 18, + [84628] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425496,47 +433965,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5550), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4263), 4, + STATE(4398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76128] = 18, + ACTIONS(3080), 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(3078), 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, + [84679] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425547,47 +434006,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5048), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5545), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4264), 4, + STATE(4399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76197] = 18, + ACTIONS(5046), 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, + [84730] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425598,47 +434047,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3169), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5132), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7209), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym__, - ACTIONS(7213), 1, - anon_sym_POUND, - STATE(949), 1, - sym__type, - STATE(1065), 1, - sym__static_type_identifier, - STATE(1260), 1, - sym_type_argument, - STATE(1267), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7215), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4265), 4, + STATE(4400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1258), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76266] = 18, + ACTIONS(5130), 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, + [84781] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425649,47 +434088,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5128), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5540), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4266), 4, + STATE(4401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76335] = 18, + ACTIONS(5126), 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, + [84832] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425700,98 +434129,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5537), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4267), 4, + STATE(4402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76404] = 18, + ACTIONS(3054), 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(3048), 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, + [84883] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3656), 1, - sym__type, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4268), 4, + STATE(4403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76473] = 18, + ACTIONS(3074), 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(3076), 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, + [84934] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425802,47 +434211,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3008), 1, - sym__type, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4269), 4, + STATE(4404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76542] = 18, + ACTIONS(3070), 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(3072), 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, + [84985] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425853,47 +434252,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3340), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(972), 1, - sym__type, - STATE(1271), 1, - sym__static_type_identifier, - STATE(1447), 1, - sym_type_argument, - STATE(1454), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4270), 4, + STATE(4405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1444), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76611] = 18, + ACTIONS(3066), 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(3068), 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, + [85036] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425904,47 +434293,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5458), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4271), 4, + STATE(4406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76680] = 18, + ACTIONS(2119), 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, + [85087] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -425955,47 +434334,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3662), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, + ACTIONS(7472), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4272), 4, + STATE(4407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76749] = 18, + ACTIONS(3082), 6, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3084), 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, + [85140] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426006,47 +434376,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5531), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4273), 4, + STATE(4408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76818] = 18, + ACTIONS(3058), 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(3060), 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, + [85191] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426057,47 +434417,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_POUND, - STATE(2123), 1, - sym__static_type_identifier, - STATE(2546), 1, - sym__type, - STATE(2591), 1, - sym_type_argument, - STATE(2613), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4274), 4, + STATE(4409), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2597), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76887] = 18, + ACTIONS(3529), 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, + [85242] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426108,47 +434458,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5529), 1, - sym__type, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6711), 1, + anon_sym_static, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4319), 1, + aux_sym__member_defns_repeat1, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5025), 1, + sym_member_defn, + STATE(5243), 1, + sym_attributes, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4275), 4, + ACTIONS(4711), 2, + sym__newline, + sym__dedent, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(4410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [76956] = 18, + [85321] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426159,47 +434513,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5476), 1, - sym__type, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4444), 1, + aux_sym__member_defns_repeat1, + STATE(5183), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4276), 4, + STATE(4411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77025] = 18, + ACTIONS(4733), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [85384] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426210,47 +434560,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7091), 1, - anon_sym__, - ACTIONS(7093), 1, - anon_sym_POUND, - STATE(828), 1, - sym__type, - STATE(863), 1, - sym__static_type_identifier, - STATE(881), 1, - sym_long_identifier, - STATE(883), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4277), 4, + STATE(4412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(891), 10, - sym_simple_type, - sym_generic_type, - 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] = 18, + ACTIONS(2119), 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, + [85435] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426261,47 +434601,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5215), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5385), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4278), 4, + STATE(4413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77163] = 18, + ACTIONS(5213), 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, + [85486] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426312,47 +434642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5060), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7089), 1, - anon_sym_LPAREN, - ACTIONS(7091), 1, - anon_sym__, - ACTIONS(7093), 1, - anon_sym_POUND, - STATE(835), 1, - sym__type, - STATE(863), 1, - sym__static_type_identifier, - STATE(881), 1, - sym_long_identifier, - STATE(883), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4279), 4, + STATE(4414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(891), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77232] = 18, + ACTIONS(5058), 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, + [85537] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426363,47 +434683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5112), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5526), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4280), 4, + STATE(4415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77301] = 18, + ACTIONS(5110), 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] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426414,47 +434724,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5108), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5404), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4281), 4, + STATE(4416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77370] = 18, + ACTIONS(5106), 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, + [85639] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426465,47 +434765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5092), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3663), 1, - sym__type, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4282), 4, + STATE(4417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77439] = 18, + ACTIONS(5090), 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, + [85690] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426516,47 +434806,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4915), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - sym_identifier, - STATE(3652), 1, - sym__type, - STATE(3657), 1, - sym__static_type_identifier, - STATE(3705), 1, - sym_type_argument, - STATE(3765), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4283), 4, + STATE(4418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3764), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77508] = 18, + ACTIONS(4913), 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, + [85741] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426567,47 +434847,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3169), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7209), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym__, - ACTIONS(7213), 1, - anon_sym_POUND, - STATE(945), 1, - sym__type, - STATE(1065), 1, - sym__static_type_identifier, - STATE(1260), 1, - sym_type_argument, - STATE(1267), 1, - sym_long_identifier, + ACTIONS(7476), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7215), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4284), 4, + STATE(4419), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1258), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77577] = 18, + ACTIONS(7474), 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, + [85792] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426618,47 +434888,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5512), 1, - sym__type, + ACTIONS(7478), 1, + anon_sym_new, + ACTIONS(7484), 1, + anon_sym_static, + ACTIONS(7487), 1, + anon_sym_member, + ACTIONS(7490), 1, + anon_sym_abstract, + ACTIONS(7493), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5159), 1, + sym_additional_constr_defn, + STATE(5174), 1, + sym_member_defn, + STATE(5336), 1, + sym_attributes, + STATE(8284), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4285), 4, + ACTIONS(4591), 2, + anon_sym_and, + anon_sym_POUNDendif, + ACTIONS(7481), 2, + anon_sym_default, + anon_sym_override, + STATE(4420), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77646] = 18, + aux_sym__member_defns_repeat1, + [85869] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426669,47 +434942,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3169), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(4551), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7209), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym__, - ACTIONS(7213), 1, - anon_sym_POUND, - STATE(922), 1, - sym__type, - STATE(1065), 1, - sym__static_type_identifier, - STATE(1260), 1, - sym_type_argument, - STATE(1267), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7215), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4286), 4, + STATE(4421), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1258), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77715] = 18, + ACTIONS(4549), 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] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426720,47 +434983,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5334), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5056), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7097), 1, - anon_sym_LPAREN, - ACTIONS(7099), 1, - anon_sym__, - ACTIONS(7101), 1, - anon_sym_POUND, - STATE(409), 1, - sym__type, - STATE(2956), 1, - sym__static_type_identifier, - STATE(3013), 1, - sym_type_argument, - STATE(3093), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4287), 4, + STATE(4422), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3089), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77784] = 17, + ACTIONS(5054), 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, + [85971] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426771,37 +435024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5120), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_LT2, - ACTIONS(6998), 1, - anon_sym_LBRACK_RBRACK, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4449), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4288), 4, + STATE(4423), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4451), 9, - anon_sym_with, + ACTIONS(5118), 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, @@ -426810,7 +435050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [77851] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86022] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426821,47 +435065,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5405), 1, - sym_identifier, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym__, - ACTIONS(7109), 1, - anon_sym_POUND, - STATE(433), 1, - sym__type, - STATE(2977), 1, - sym__static_type_identifier, - STATE(3079), 1, - sym_type_argument, - STATE(3120), 1, - sym_long_identifier, + ACTIONS(7496), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4289), 4, + STATE(4424), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3102), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77920] = 18, + ACTIONS(6085), 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, + [86073] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426872,47 +435106,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, + ACTIONS(6892), 1, sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, + ACTIONS(7498), 1, + anon_sym_DASH_GT, + ACTIONS(7500), 1, + anon_sym_when, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_LT2, + ACTIONS(7506), 1, + anon_sym_LBRACK_RBRACK, + STATE(4606), 1, + aux_sym_compound_type_repeat1, + STATE(4648), 1, + sym_type_arguments, + STATE(4703), 1, sym_long_identifier, - STATE(5502), 1, - sym__type, + STATE(5089), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4290), 4, + ACTIONS(5875), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4425), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [77989] = 18, + ACTIONS(5873), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [86144] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426923,47 +435157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - STATE(4888), 1, - sym__static_type_identifier, - STATE(5137), 1, - sym_type_argument, - STATE(5348), 1, - sym_long_identifier, - STATE(5490), 1, - sym__type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4291), 4, + STATE(4426), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5322), 10, - sym_simple_type, - sym_generic_type, - sym_paren_type, - sym_function_type, - sym_compound_type, - sym_postfix_type, - sym_list_type, - sym_static_type, - sym_constrained_type, - sym_flexible_type, - [78058] = 18, + ACTIONS(3064), 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(3062), 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, + [86195] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -426974,37 +435198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4660), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4292), 4, + STATE(4427), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4662), 8, + ACTIONS(3094), 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(3092), 10, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427013,7 +435227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [78126] = 10, + sym_identifier, + [86246] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427024,27 +435239,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4293), 4, + STATE(4428), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 9, + ACTIONS(3098), 8, 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(3026), 10, + ACTIONS(3096), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -427055,7 +435269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78178] = 10, + [86297] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427066,38 +435280,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4294), 4, + STATE(4429), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 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(3395), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3040), 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, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78230] = 23, + anon_sym_LBRACK_RBRACK, + ACTIONS(3042), 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, + [86348] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427108,51 +435321,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, - anon_sym_new, - ACTIONS(6626), 1, - anon_sym_static, - ACTIONS(6628), 1, - anon_sym_member, - ACTIONS(6632), 1, - anon_sym_abstract, - ACTIONS(6634), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4331), 1, - aux_sym__member_defns_repeat1, - STATE(4932), 1, - sym_member_defn, - STATE(5040), 1, - sym_additional_constr_defn, - STATE(5365), 1, - sym_attributes, - STATE(8102), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6624), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4510), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4295), 4, + STATE(4430), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [78308] = 10, + ACTIONS(3090), 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(3088), 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, + [86399] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427163,27 +435362,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4296), 4, + STATE(4431), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 8, - sym__newline, + ACTIONS(3080), 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(3082), 11, - anon_sym_and, + ACTIONS(3078), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -427194,7 +435392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78360] = 11, + [86450] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427205,22 +435403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5015), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7307), 1, - anon_sym_and, + ACTIONS(7510), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4297), 5, + STATE(4432), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 16, + ACTIONS(7508), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -427237,7 +435432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [78414] = 10, + anon_sym_POUNDelse, + [86501] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427248,27 +435444,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7514), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4298), 4, + STATE(4433), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 8, + ACTIONS(7512), 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] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4434), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3074), 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(3054), 11, - anon_sym_and, + ACTIONS(3076), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -427279,7 +435515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78466] = 18, + [86603] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427290,46 +435526,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5104), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4644), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4299), 4, + STATE(4435), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4646), 8, - anon_sym_and, + ACTIONS(5102), 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, - [78534] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86654] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427340,38 +435567,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7516), 1, + anon_sym_or, + STATE(4449), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4300), 4, + STATE(4436), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3733), 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(3735), 10, + ACTIONS(2979), 5, anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2981), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + 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, - [78586] = 11, + anon_sym_LBRACK_RBRACK, + [86709] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427382,28 +435610,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7310), 1, - anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4301), 4, + STATE(4437), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 7, + ACTIONS(3070), 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, - ACTIONS(3064), 11, - anon_sym_and, + ACTIONS(3072), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -427414,7 +435640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78640] = 18, + [86760] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427425,46 +435651,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4660), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4302), 4, + STATE(4438), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4662), 8, - anon_sym_and, + ACTIONS(3066), 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(3068), 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, - [78708] = 12, + sym_identifier, + [86811] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427475,40 +435692,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6977), 1, - anon_sym_STAR, - STATE(4304), 1, - aux_sym_compound_type_repeat1, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(6184), 1, + anon_sym_member, + ACTIONS(6188), 1, + anon_sym_abstract, + ACTIONS(6190), 1, + anon_sym_val, + ACTIONS(6711), 1, + anon_sym_static, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4410), 1, + aux_sym__member_defns_repeat1, + STATE(5014), 1, + sym_additional_constr_defn, + STATE(5025), 1, + sym_member_defn, + STATE(5243), 1, + sym_attributes, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4303), 4, + ACTIONS(4733), 2, + sym__newline, + sym__dedent, + ACTIONS(6180), 2, + anon_sym_default, + anon_sym_override, + STATE(4439), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 6, - anon_sym_LBRACK_LT, + [86890] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2986), 11, - anon_sym_and, - anon_sym_with, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6693), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6697), 1, anon_sym_static, + ACTIONS(6699), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(6703), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6705), 1, anon_sym_val, - sym_identifier, - [78764] = 11, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4420), 1, + aux_sym__member_defns_repeat1, + STATE(5159), 1, + sym_additional_constr_defn, + STATE(5174), 1, + sym_member_defn, + STATE(5336), 1, + sym_attributes, + STATE(8284), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6695), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4711), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(4440), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [86967] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427519,29 +435801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5096), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7312), 1, - anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4304), 5, + STATE(4441), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 6, + ACTIONS(5094), 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_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2916), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427550,8 +435827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [78818] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87018] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427562,46 +435842,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, + ACTIONS(7518), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4706), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4305), 4, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4442), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4708), 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, - [78886] = 11, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87071] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427612,29 +435884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5052), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7315), 1, - anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4306), 5, + STATE(4443), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 7, - sym__dedent, + ACTIONS(5050), 17, + 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_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2916), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427643,8 +435910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [78940] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87122] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427655,28 +435925,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4462), 1, + aux_sym__member_defns_repeat1, + STATE(5183), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4307), 4, + STATE(4444), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 9, + ACTIONS(4711), 11, 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(2988), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427685,8 +435961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [78992] = 18, + [87185] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427697,46 +435972,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, + ACTIONS(6693), 1, + anon_sym_new, + ACTIONS(6697), 1, + anon_sym_static, + ACTIONS(6699), 1, + anon_sym_member, + ACTIONS(6703), 1, + anon_sym_abstract, + ACTIONS(6705), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4440), 1, + aux_sym__member_defns_repeat1, + STATE(5159), 1, + sym_additional_constr_defn, + STATE(5174), 1, + sym_member_defn, + STATE(5336), 1, + sym_attributes, + STATE(8284), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4638), 3, + ACTIONS(6695), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(4733), 3, anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_and, anon_sym_POUNDendif, - STATE(4308), 4, + STATE(4445), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4640), 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, - [79060] = 10, + [87262] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427747,23 +436026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5122), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7523), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4309), 4, + STATE(4446), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 18, + ACTIONS(7521), 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, @@ -427778,7 +436056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [79112] = 10, + [87313] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427789,28 +436067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4310), 4, + STATE(4447), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 8, + ACTIONS(2119), 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_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3048), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427819,8 +436093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79164] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87364] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427831,46 +436108,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6988), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(6992), 1, + ACTIONS(7498), 1, anon_sym_DASH_GT, - ACTIONS(6994), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(6996), 1, + ACTIONS(7504), 1, anon_sym_LT2, - ACTIONS(6998), 1, + ACTIONS(7506), 1, anon_sym_LBRACK_RBRACK, - STATE(4315), 1, + STATE(4606), 1, aux_sym_compound_type_repeat1, - STATE(4441), 1, + STATE(4648), 1, sym_type_arguments, - STATE(4451), 1, + STATE(4703), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4612), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4311), 4, + ACTIONS(2906), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + STATE(4448), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4614), 8, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [79232] = 18, + ACTIONS(2904), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [87431] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427881,46 +436157,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, + ACTIONS(7516), 1, + anon_sym_or, + STATE(4442), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4638), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4312), 4, + STATE(4449), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4640), 8, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [79300] = 10, + ACTIONS(2962), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2960), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87486] = 20, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427931,38 +436202,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4313), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3050), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7525), 1, anon_sym_DASH_GT, + ACTIONS(7527), 1, + anon_sym_when, + ACTIONS(7529), 1, anon_sym_STAR, + ACTIONS(7531), 1, anon_sym_LT2, + ACTIONS(7533), 1, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3048), 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, - [79352] = 10, + STATE(4686), 1, + aux_sym_compound_type_repeat1, + STATE(4741), 1, + sym_type_arguments, + STATE(4753), 1, + sym_long_identifier, + STATE(5709), 1, + sym_type_argument_constraints, + ACTIONS(5875), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4450), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5873), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87557] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -427973,28 +436251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5074), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4314), 4, + STATE(4451), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 8, + ACTIONS(5072), 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(3042), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428003,8 +436277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79404] = 12, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87608] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428015,30 +436292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4795), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6994), 1, - anon_sym_STAR, - STATE(4306), 1, - aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4315), 4, + STATE(4452), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 7, - sym__dedent, + ACTIONS(4793), 17, + 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_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2986), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428047,8 +436318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79460] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87659] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428059,28 +436333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3531), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4316), 4, + STATE(4453), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 8, + ACTIONS(3529), 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(3099), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428089,8 +436359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79512] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87710] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428101,28 +436374,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5124), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4317), 4, + STATE(4454), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 8, + ACTIONS(5122), 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(3101), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428131,8 +436400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79564] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87761] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428143,28 +436415,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5132), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4318), 4, + STATE(4455), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 8, + ACTIONS(5130), 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(3044), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428173,8 +436441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79616] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87812] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428185,23 +436456,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5072), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7537), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4319), 4, + STATE(4456), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 18, + ACTIONS(7535), 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, @@ -428216,7 +436486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [79668] = 10, + [87863] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428227,28 +436497,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4320), 4, + STATE(4457), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 8, + ACTIONS(2119), 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(3093), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428257,8 +436523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79720] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87914] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428269,46 +436538,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(6975), 1, + ACTIONS(7498), 1, anon_sym_DASH_GT, - ACTIONS(6977), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(6979), 1, + ACTIONS(7504), 1, anon_sym_LT2, - ACTIONS(6981), 1, + ACTIONS(7506), 1, anon_sym_LBRACK_RBRACK, - STATE(4303), 1, + STATE(4606), 1, aux_sym_compound_type_repeat1, - STATE(4390), 1, + STATE(4648), 1, sym_type_arguments, - STATE(4404), 1, + STATE(4703), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4612), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4321), 4, + ACTIONS(2902), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + STATE(4458), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4614), 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, - [79788] = 10, + ACTIONS(2900), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [87981] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428319,27 +436587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7539), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4322), 4, + STATE(4459), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 8, + ACTIONS(3082), 7, + 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(3082), 11, - anon_sym_and, + ACTIONS(3084), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -428350,7 +436618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [79840] = 10, + [88034] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428361,28 +436629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4915), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7541), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4323), 4, + STATE(4460), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 8, + ACTIONS(4913), 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(3054), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428391,8 +436657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79892] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88087] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428403,28 +436671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4915), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7543), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4324), 4, + STATE(4461), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 8, + ACTIONS(4913), 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(3044), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428433,8 +436699,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79944] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88140] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4595), 1, + anon_sym_LBRACK_LT, + ACTIONS(4598), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7545), 1, + anon_sym_new, + ACTIONS(7551), 1, + anon_sym_static, + ACTIONS(7554), 1, + anon_sym_member, + ACTIONS(7557), 1, + anon_sym_abstract, + ACTIONS(7560), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5183), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(4591), 2, + sym__dedent, + anon_sym_interface, + ACTIONS(7548), 2, + anon_sym_default, + anon_sym_override, + STATE(4462), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__member_defns_repeat1, + [88217] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428445,28 +436767,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4966), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7563), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4325), 4, + STATE(4463), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 8, + ACTIONS(4964), 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(3101), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428475,8 +436795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79996] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88270] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428487,29 +436809,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4966), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7318), 1, - anon_sym_LT2, + ACTIONS(7565), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4326), 4, + STATE(4464), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 7, + ACTIONS(4964), 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_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3058), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428518,10 +436837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80050] = 22, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88323] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428532,48 +436851,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7010), 1, - anon_sym_y, - ACTIONS(7012), 1, - anon_sym_uy, - ACTIONS(7014), 1, - anon_sym_s, - ACTIONS(7016), 1, - anon_sym_us, - ACTIONS(7020), 1, - aux_sym_uint32_token1, - ACTIONS(7022), 1, - anon_sym_n, - ACTIONS(7024), 1, - anon_sym_un, - ACTIONS(7028), 1, - aux_sym_uint64_token1, - ACTIONS(7320), 1, - anon_sym_l, - ACTIONS(7322), 1, - anon_sym_L, - ACTIONS(7324), 1, - anon_sym_lf, - ACTIONS(7326), 1, - anon_sym_LF, - STATE(4327), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4465), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(3058), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [80126] = 12, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3060), 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, + [88374] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428584,23 +436892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5034), 1, + ACTIONS(4905), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7328), 1, - anon_sym_and, - STATE(4341), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(7567), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4328), 4, + STATE(4466), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 16, + ACTIONS(4903), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -428617,7 +436923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [80182] = 10, + [88427] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428628,23 +436934,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5126), 1, + ACTIONS(4905), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7569), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4329), 4, + STATE(4467), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 18, + ACTIONS(4903), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, - anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_new, @@ -428658,8 +436965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [80234] = 10, + [88480] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428670,28 +436976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5196), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4330), 4, + STATE(4468), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, + ACTIONS(5194), 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(3064), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428700,8 +437002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80286] = 23, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [88531] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428712,51 +437017,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4530), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7573), 1, + anon_sym_let, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4469), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(7571), 17, + sym__newline, anon_sym_LBRACK_LT, - ACTIONS(4533), 1, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7330), 1, anon_sym_new, - ACTIONS(7336), 1, + anon_sym_default, anon_sym_static, - ACTIONS(7339), 1, anon_sym_member, - ACTIONS(7342), 1, + anon_sym_interface, anon_sym_abstract, - ACTIONS(7345), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4932), 1, - sym_member_defn, - STATE(5040), 1, - sym_additional_constr_defn, - STATE(5365), 1, - sym_attributes, - STATE(8102), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7333), 2, - anon_sym_default, anon_sym_override, - ACTIONS(4526), 3, - anon_sym_and, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - STATE(4331), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym__member_defns_repeat1, - [80364] = 10, + [88582] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428767,38 +437058,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(7498), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_LT2, + ACTIONS(7506), 1, + anon_sym_LBRACK_RBRACK, + STATE(4606), 1, + aux_sym_compound_type_repeat1, + STATE(4648), 1, + sym_type_arguments, + STATE(4703), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4332), 4, + ACTIONS(2886), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + STATE(4470), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 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(3099), 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, - [80416] = 23, + ACTIONS(2882), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [88649] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428809,51 +437107,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4530), 1, - anon_sym_LBRACK_LT, - ACTIONS(4533), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7348), 1, - anon_sym_new, - ACTIONS(7354), 1, - anon_sym_static, - ACTIONS(7357), 1, - anon_sym_member, - ACTIONS(7360), 1, - anon_sym_abstract, - ACTIONS(7363), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5104), 1, - sym_member_defn, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5212), 1, - sym_attributes, - STATE(7793), 1, - sym_access_modifier, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(7498), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_LT2, + ACTIONS(7506), 1, + anon_sym_LBRACK_RBRACK, + STATE(4606), 1, + aux_sym_compound_type_repeat1, + STATE(4648), 1, + sym_type_arguments, + STATE(4703), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7351), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4526), 3, - sym__newline, - sym__dedent, + ACTIONS(2910), 4, + anon_sym_COLON, anon_sym_and, - STATE(4333), 5, + anon_sym_as, + anon_sym_when, + STATE(4471), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [80494] = 11, + ACTIONS(2908), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [88716] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428864,21 +437156,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, + ACTIONS(4855), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7366), 1, - anon_sym_COMMA, + ACTIONS(7575), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4334), 4, + STATE(4472), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 17, + ACTIONS(4853), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -428895,8 +437187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [80548] = 10, + [88769] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428907,38 +437198,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4855), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7577), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4335), 4, + STATE(4473), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3679), 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(3677), 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, - [80600] = 11, + ACTIONS(4853), 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, + [88822] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428949,21 +437240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, + ACTIONS(4855), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7368), 1, + ACTIONS(7579), 1, anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4336), 4, + STATE(4474), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 17, + ACTIONS(4853), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -428980,8 +437271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [80654] = 10, + [88875] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -428992,28 +437282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7583), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4337), 4, + STATE(4475), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 8, + ACTIONS(7581), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + 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_POUNDendif, - ACTIONS(3026), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429022,8 +437308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80706] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [88926] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429034,28 +437323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7587), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4338), 4, + STATE(4476), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 8, + ACTIONS(7585), 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(3072), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429064,8 +437349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80758] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [88977] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429076,21 +437364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4965), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7370), 1, - anon_sym_with, + ACTIONS(7591), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4339), 4, + STATE(4477), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 17, + ACTIONS(7589), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429108,7 +437394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [80812] = 11, + [89028] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429119,21 +437405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4859), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7372), 1, - anon_sym_with, + ACTIONS(7595), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4340), 4, + STATE(4478), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 17, + ACTIONS(7593), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429151,7 +437435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [80866] = 12, + [89079] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429162,23 +437446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4999), 1, + ACTIONS(4929), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7328), 1, - anon_sym_and, - STATE(4297), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(7597), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4341), 4, + STATE(4479), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 16, + ACTIONS(4927), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429195,7 +437477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [80922] = 10, + [89132] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429206,28 +437488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5100), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4342), 4, + STATE(4480), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 8, + ACTIONS(5098), 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_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3042), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429236,8 +437514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80974] = 18, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [89183] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429248,37 +437529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, + ACTIONS(7601), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4706), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4343), 4, + STATE(4481), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4708), 8, + ACTIONS(7599), 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, @@ -429287,7 +437555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [81042] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [89234] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429298,21 +437570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4985), 1, + ACTIONS(4939), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7374), 1, - anon_sym_COMMA, + ACTIONS(7603), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4344), 4, + STATE(4482), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 17, + ACTIONS(4937), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429329,8 +437601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [81096] = 11, + [89287] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429341,21 +437612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4985), 1, + ACTIONS(5080), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7376), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4345), 4, + STATE(4483), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 17, + ACTIONS(5078), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429373,7 +437642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [81150] = 18, + [89338] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429384,37 +437653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4547), 1, + anon_sym_let, + ACTIONS(5284), 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(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4644), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4346), 4, + STATE(4484), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4646), 8, + ACTIONS(4545), 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, @@ -429423,7 +437679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [81218] = 23, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [89389] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429434,51 +437694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, - anon_sym_new, - ACTIONS(6626), 1, - anon_sym_static, - ACTIONS(6628), 1, - anon_sym_member, - ACTIONS(6632), 1, - anon_sym_abstract, - ACTIONS(6634), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4295), 1, - aux_sym__member_defns_repeat1, - STATE(4932), 1, - sym_member_defn, - STATE(5040), 1, - sym_additional_constr_defn, - STATE(5365), 1, - sym_attributes, - STATE(8102), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6624), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4654), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4347), 4, + STATE(4485), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [81296] = 10, + ACTIONS(3054), 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(3048), 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, + [89440] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429489,38 +437735,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5088), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4348), 4, + STATE(4486), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3509), 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(3507), 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, - [81348] = 11, + ACTIONS(5086), 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, + [89491] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429531,29 +437776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5084), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7378), 1, - anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4349), 4, + STATE(4487), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 7, + ACTIONS(5082), 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_STAR, - anon_sym_LBRACK_RBRACK, - ACTIONS(3058), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429562,8 +437802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81402] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [89542] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429574,21 +437817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5007), 1, + ACTIONS(5232), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7380), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4350), 4, + STATE(4488), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 17, + ACTIONS(5230), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429606,7 +437847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [81456] = 11, + [89593] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429617,21 +437858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5007), 1, + ACTIONS(3531), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7382), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4351), 4, + STATE(4489), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 17, + ACTIONS(3529), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429649,7 +437888,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [81510] = 10, + [89644] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7525), 1, + anon_sym_DASH_GT, + ACTIONS(7529), 1, + anon_sym_STAR, + ACTIONS(7531), 1, + anon_sym_LT2, + ACTIONS(7533), 1, + anon_sym_LBRACK_RBRACK, + STATE(4686), 1, + aux_sym_compound_type_repeat1, + STATE(4741), 1, + sym_type_arguments, + STATE(4753), 1, + sym_long_identifier, + ACTIONS(2906), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4490), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2904), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [89710] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429660,38 +437947,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7605), 1, + anon_sym_or, + STATE(4550), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4352), 4, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4491), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(2981), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3072), 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, - [81562] = 10, + [89764] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429702,38 +437989,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4353), 4, + ACTIONS(2964), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4492), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3093), 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, - [81614] = 23, + [89816] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429744,51 +438030,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6681), 1, - anon_sym_static, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4364), 1, - aux_sym__member_defns_repeat1, - STATE(5104), 1, - sym_member_defn, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5212), 1, - sym_attributes, - STATE(7793), 1, - sym_access_modifier, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4654), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(2906), 3, + anon_sym_COLON, anon_sym_and, - STATE(4354), 4, + anon_sym_as, + STATE(4493), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [81692] = 11, + ACTIONS(2904), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [89882] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429799,21 +438078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4853), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7384), 1, - anon_sym_with, + ACTIONS(7496), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4355), 4, + STATE(4494), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 17, + ACTIONS(6085), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429830,8 +438107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [81746] = 10, + [89932] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429842,38 +438120,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3165), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4356), 4, + ACTIONS(7618), 1, + anon_sym_or, + STATE(4509), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2962), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4495), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 18, + ACTIONS(2960), 12, 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, - [81798] = 11, + 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, + [89986] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429884,29 +438160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7386), 1, - anon_sym_COLON_GT, + ACTIONS(7583), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4357), 4, + STATE(4496), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, - sym__dedent, + ACTIONS(7581), 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(3064), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429915,8 +438186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81852] = 12, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90036] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429927,24 +438200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5198), 1, + ACTIONS(4795), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7388), 1, - anon_sym_interface, - STATE(4484), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4358), 5, + STATE(4497), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - ACTIONS(5196), 15, + ACTIONS(4793), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -429954,13 +438222,14 @@ 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, - [81908] = 10, + [90086] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -429971,28 +438240,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5048), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4359), 4, + STATE(4498), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, + ACTIONS(5046), 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(3064), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430001,8 +438266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81960] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90136] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430013,28 +438280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7573), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4360), 4, + STATE(4499), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 8, + ACTIONS(7571), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + 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_POUNDendif, - ACTIONS(2988), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430043,8 +438306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82012] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90186] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430055,21 +438320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, + ACTIONS(4547), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7391), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4361), 4, + STATE(4500), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 17, + ACTIONS(4545), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430086,8 +438349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82066] = 11, + [90236] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430098,21 +438360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, + ACTIONS(5100), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7393), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4362), 4, + STATE(4501), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 17, + ACTIONS(5098), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430129,8 +438389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82120] = 12, + [90286] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430141,23 +438400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5192), 1, + ACTIONS(5232), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4358), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4484), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4363), 4, + STATE(4502), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 16, + ACTIONS(5230), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430174,7 +438429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [82176] = 23, + [90336] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430185,51 +438440,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4711), 1, + sym__dedent, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6177), 1, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6181), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6183), 1, + ACTIONS(6815), 1, anon_sym_val, - ACTIONS(6681), 1, - anon_sym_static, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4333), 1, + STATE(4462), 1, aux_sym__member_defns_repeat1, - STATE(5104), 1, + STATE(5183), 1, sym_member_defn, - STATE(5108), 1, + STATE(5215), 1, sym_additional_constr_defn, - STATE(5212), 1, + STATE(5331), 1, sym_attributes, - STATE(7793), 1, + STATE(7830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6173), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - ACTIONS(4510), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(4364), 4, + STATE(4503), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [82254] = 11, + [90414] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430240,21 +438494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, + ACTIONS(5080), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7395), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4365), 4, + STATE(4504), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 17, + ACTIONS(5078), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430271,50 +438523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82308] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4366), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3690), 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(3688), 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, - [82360] = 16, + [90464] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430325,33 +438534,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5056), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4373), 1, - aux_sym__member_defns_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5170), 1, - sym_member_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4367), 4, + STATE(4505), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4654), 11, - sym__dedent, + ACTIONS(5054), 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, @@ -430361,7 +438560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [82423] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90514] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430372,37 +438574,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7620), 1, + anon_sym_DOT, + STATE(4492), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4368), 4, + STATE(4506), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [82474] = 10, + ACTIONS(2956), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2954), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [90568] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430413,19 +438616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5048), 1, + ACTIONS(5084), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4369), 4, + STATE(4507), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 17, + ACTIONS(5082), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430442,8 +438645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82525] = 10, + [90618] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430454,19 +438656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5104), 1, + ACTIONS(5088), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4370), 4, + STATE(4508), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5102), 17, + ACTIONS(5086), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430483,8 +438685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82576] = 12, + [90668] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430495,140 +438698,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7397), 1, + ACTIONS(7622), 1, anon_sym_or, - STATE(4416), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4371), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3017), 5, + ACTIONS(2990), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(3015), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [82631] = 23, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6642), 1, - anon_sym_new, - ACTIONS(6646), 1, - anon_sym_static, - ACTIONS(6648), 1, - anon_sym_member, - ACTIONS(6652), 1, - anon_sym_abstract, - ACTIONS(6654), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4419), 1, - aux_sym__member_defns_repeat1, - STATE(5176), 1, - sym_additional_constr_defn, - STATE(5193), 1, - sym_member_defn, - STATE(5207), 1, - sym_attributes, - STATE(8147), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6644), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4654), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(4372), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [82708] = 16, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4433), 1, - aux_sym__member_defns_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5170), 1, - sym_member_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4373), 4, + STATE(4509), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 11, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 12, + 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [82771] = 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, + [90720] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430639,27 +438737,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4374), 4, + STATE(4510), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 8, - sym__dedent, + ACTIONS(2119), 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(3048), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430668,8 +438763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82822] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90770] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430680,27 +438777,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7587), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4375), 4, + STATE(4511), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 8, - sym__dedent, + ACTIONS(7585), 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(3042), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430709,8 +438803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82873] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90820] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430721,37 +438817,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5058), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4376), 4, + STATE(4512), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5056), 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, - [82924] = 10, + ACTIONS(3090), 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(3088), 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, + [90870] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430762,27 +438857,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7476), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4377), 4, + STATE(4513), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 8, - sym__dedent, + ACTIONS(7474), 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(3099), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430791,8 +438883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82975] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90920] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430803,23 +438897,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5072), 1, + ACTIONS(5124), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4378), 4, + STATE(4514), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 17, + ACTIONS(5122), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, - anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_new, @@ -430833,7 +438926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [83026] = 10, + [90970] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430844,27 +438937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4379), 4, + STATE(4515), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 7, + ACTIONS(2119), 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(3064), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430873,8 +438963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83077] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91020] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430885,21 +438977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4965), 1, + ACTIONS(5052), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7399), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4380), 4, + STATE(4516), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 16, + ACTIONS(5050), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -430916,7 +439006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [83130] = 10, + [91070] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430927,27 +439017,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7510), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4381), 4, + STATE(4517), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 8, - sym__dedent, + ACTIONS(7508), 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(3101), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430956,8 +439043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83181] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91120] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -430968,28 +439057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7401), 1, - anon_sym_LT2, + ACTIONS(7514), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4382), 4, + STATE(4518), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 6, + ACTIONS(7512), 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_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3058), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430998,8 +439083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83234] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91170] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431010,19 +439097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7601), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4383), 4, + STATE(4519), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 17, + ACTIONS(7599), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431039,8 +439126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83285] = 10, + [91220] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431051,37 +439137,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7625), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4384), 4, + ACTIONS(2990), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4520), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3044), 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, - [83336] = 10, + [91272] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431092,37 +439178,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4385), 4, + ACTIONS(5906), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4521), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(5908), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [91338] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7628), 1, + anon_sym_or, + STATE(4554), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4522), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2981), 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(3054), 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, - [83387] = 10, + [91392] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431133,37 +439268,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5084), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4386), 4, + ACTIONS(5890), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4523), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5082), 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, - [83438] = 10, + ACTIONS(5892), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [91458] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431174,19 +439316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5080), 1, + ACTIONS(5096), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4387), 4, + STATE(4524), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5078), 17, + ACTIONS(5094), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431203,8 +439345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83489] = 10, + [91508] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431215,19 +439356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7405), 1, + ACTIONS(5104), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4388), 4, + STATE(4525), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7403), 17, + ACTIONS(5102), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431244,8 +439385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83540] = 10, + [91558] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431256,19 +439396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7409), 1, + ACTIONS(5228), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4389), 4, + STATE(4526), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7407), 17, + ACTIONS(5226), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431285,8 +439425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83591] = 10, + [91608] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431297,27 +439436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4551), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4390), 4, + STATE(4527), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 7, + ACTIONS(4549), 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(3082), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431326,8 +439462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83642] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91658] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431338,21 +439476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, + ACTIONS(5120), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7411), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4391), 4, + STATE(4528), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 16, + ACTIONS(5118), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431369,7 +439505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [83695] = 11, + [91708] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431380,21 +439516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, + ACTIONS(4915), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7413), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4392), 4, + STATE(4529), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 16, + ACTIONS(4913), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431411,7 +439545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [83748] = 10, + [91758] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431422,19 +439556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7415), 1, + ACTIONS(5074), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4393), 4, + STATE(4530), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6039), 17, + ACTIONS(5072), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431451,8 +439585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83799] = 18, + [91808] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431463,45 +439598,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(7417), 1, + ACTIONS(7630), 1, anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7632), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7634), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7636), 1, anon_sym_LBRACK_RBRACK, - STATE(4590), 1, + STATE(4683), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, + STATE(4739), 1, sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2916), 4, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(2886), 3, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4394), 4, + STATE(4531), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2882), 7, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [83866] = 11, + anon_sym_SEMI, + [91874] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431512,38 +439646,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4859), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7425), 1, - anon_sym_with, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4395), 4, + ACTIONS(7618), 1, + anon_sym_or, + STATE(4495), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4532), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 16, + ACTIONS(2981), 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, - [83919] = 10, + 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, + [91928] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431554,19 +439686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7429), 1, + ACTIONS(5092), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4396), 4, + STATE(4533), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7427), 17, + ACTIONS(5090), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431583,8 +439715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83970] = 10, + [91978] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431595,19 +439726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, + ACTIONS(5108), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4397), 4, + STATE(4534), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 17, + ACTIONS(5106), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431624,8 +439755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84021] = 11, + [92028] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431636,21 +439766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4985), 1, + ACTIONS(5112), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7431), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4398), 4, + STATE(4535), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 16, + ACTIONS(5110), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431667,7 +439795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [84074] = 11, + [92078] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431678,38 +439806,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4985), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7433), 1, - anon_sym_COMMA, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4399), 4, + ACTIONS(2902), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4536), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 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, - [84127] = 10, + ACTIONS(2900), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [92144] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431720,37 +439854,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5096), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4400), 4, + ACTIONS(2886), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4537), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 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, - [84178] = 10, + ACTIONS(2882), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [92210] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431761,37 +439902,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5126), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4401), 4, + STATE(4538), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, + ACTIONS(3046), 6, + anon_sym_COLON, 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, - [84229] = 10, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [92260] = 24, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431802,37 +439942,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(4733), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4503), 1, + aux_sym__member_defns_repeat1, + STATE(5183), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4402), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4539), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 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(3093), 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, - [84280] = 10, + [92338] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431843,19 +439996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7437), 1, + ACTIONS(3531), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4403), 4, + STATE(4540), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7435), 17, + ACTIONS(3529), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431872,8 +440025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84331] = 10, + [92388] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431884,37 +440036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4404), 4, + STATE(4541), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 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(3072), 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(3094), 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(3092), 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, - [84382] = 10, + [92438] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -431925,19 +440076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7441), 1, + ACTIONS(7523), 1, anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4405), 4, + STATE(4542), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7439), 17, + ACTIONS(7521), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431954,50 +440105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84433] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7443), 1, - anon_sym_LT2, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4406), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3056), 7, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - ACTIONS(3058), 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, - [84486] = 10, + [92488] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432008,19 +440116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7447), 1, + ACTIONS(5060), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4407), 4, + STATE(4543), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7445), 17, + ACTIONS(5058), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432037,8 +440145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84537] = 18, + [92538] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432049,45 +440156,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7061), 1, sym_identifier, - ACTIONS(7417), 1, + ACTIONS(7610), 1, anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7612), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7614), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7616), 1, anon_sym_LBRACK_RBRACK, - STATE(4590), 1, + STATE(4654), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, + STATE(4756), 1, sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2886), 4, + ACTIONS(2910), 3, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4408), 4, + STATE(4544), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 6, + ACTIONS(2908), 6, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [84604] = 10, + [92604] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432098,19 +440204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7451), 1, + ACTIONS(3531), 1, anon_sym_let, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4409), 4, + STATE(4545), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7449), 17, + ACTIONS(3529), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432127,8 +440233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84655] = 10, + [92654] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432139,27 +440244,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2121), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4410), 4, + STATE(4546), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, - sym__dedent, + ACTIONS(2119), 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(3064), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -432168,8 +440270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [84706] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92704] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432180,27 +440284,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5196), 1, + anon_sym_let, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4411), 4, + STATE(4547), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 8, - sym__dedent, + ACTIONS(5194), 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(3093), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -432209,8 +440310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [84757] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92754] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432221,19 +440324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, + ACTIONS(5215), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4412), 4, + STATE(4548), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 17, + ACTIONS(5213), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432250,8 +440353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84808] = 10, + [92804] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432262,19 +440364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5076), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7595), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4413), 4, + STATE(4549), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 17, + ACTIONS(7593), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432291,8 +440393,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84859] = 10, + [92854] = 12, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7605), 1, + anon_sym_or, + STATE(4520), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2962), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4550), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2960), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [92908] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(7498), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_LT2, + ACTIONS(7506), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7638), 1, + anon_sym_when, + STATE(4606), 1, + aux_sym_compound_type_repeat1, + STATE(4648), 1, + sym_type_arguments, + STATE(4703), 1, + sym_long_identifier, + STATE(5089), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5875), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4551), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5873), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [92978] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432303,19 +440496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7455), 1, + ACTIONS(7591), 1, anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4414), 4, + STATE(4552), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7453), 17, + ACTIONS(7589), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432332,8 +440525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84910] = 10, + [93028] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432344,37 +440536,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_when, + ACTIONS(7644), 1, + anon_sym_STAR, + ACTIONS(7646), 1, + anon_sym_LT2, + ACTIONS(7648), 1, + anon_sym_LBRACK_RBRACK, + STATE(4761), 1, + aux_sym_compound_type_repeat1, + STATE(4825), 1, + sym_long_identifier, + STATE(4919), 1, + sym_type_arguments, + STATE(5089), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4415), 4, + ACTIONS(5875), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + ACTIONS(5873), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4553), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 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(3044), 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, - [84961] = 11, + [93098] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432385,38 +440588,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7457), 1, + ACTIONS(7628), 1, anon_sym_or, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2977), 5, + STATE(4569), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2962), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4416), 5, + STATE(4554), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 11, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2960), 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, - [85014] = 10, + [93152] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432427,37 +440630,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7525), 1, + anon_sym_DASH_GT, + ACTIONS(7529), 1, + anon_sym_STAR, + ACTIONS(7531), 1, + anon_sym_LT2, + ACTIONS(7533), 1, + anon_sym_LBRACK_RBRACK, + STATE(4686), 1, + aux_sym_compound_type_repeat1, + STATE(4741), 1, + sym_type_arguments, + STATE(4753), 1, + sym_long_identifier, + ACTIONS(2910), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4555), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2908), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, + [93218] = 18, + ACTIONS(3), 1, sym_line_comment, - STATE(4417), 4, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7630), 1, + anon_sym_DASH_GT, + ACTIONS(7632), 1, + anon_sym_STAR, + ACTIONS(7634), 1, + anon_sym_LT2, + ACTIONS(7636), 1, + anon_sym_LBRACK_RBRACK, + STATE(4683), 1, + aux_sym_compound_type_repeat1, + STATE(4739), 1, + sym_long_identifier, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(2906), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4556), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(2904), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [93284] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7650), 1, anon_sym_DASH_GT, + ACTIONS(7652), 1, + anon_sym_when, + ACTIONS(7654), 1, anon_sym_STAR, + ACTIONS(7656), 1, anon_sym_LT2, + ACTIONS(7658), 1, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3101), 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, - [85065] = 18, + STATE(4714), 1, + aux_sym_compound_type_repeat1, + STATE(4872), 1, + sym_long_identifier, + STATE(4931), 1, + sym_type_arguments, + STATE(5887), 1, + sym_type_argument_constraints, + ACTIONS(5875), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4557), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5873), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [93354] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432468,45 +440776,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7105), 1, sym_identifier, - ACTIONS(7417), 1, + ACTIONS(7525), 1, anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7529), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7531), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7533), 1, anon_sym_LBRACK_RBRACK, - STATE(4590), 1, + STATE(4686), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, + STATE(4741), 1, sym_type_arguments, - STATE(4674), 1, + STATE(4753), 1, sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2928), 4, + ACTIONS(2886), 3, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_when, - STATE(4418), 4, + STATE(4558), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2882), 7, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [85132] = 23, + anon_sym_SEMI, + [93420] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432517,50 +440822,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6642), 1, - anon_sym_new, - ACTIONS(6646), 1, - anon_sym_static, - ACTIONS(6648), 1, - anon_sym_member, - ACTIONS(6652), 1, - anon_sym_abstract, - ACTIONS(6654), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4456), 1, - aux_sym__member_defns_repeat1, - STATE(5176), 1, - sym_additional_constr_defn, - STATE(5193), 1, - sym_member_defn, - STATE(5207), 1, - sym_attributes, - STATE(8147), 1, - sym_access_modifier, + ACTIONS(7620), 1, + anon_sym_DOT, + STATE(4506), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6644), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4510), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(4419), 4, + STATE(4559), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [85209] = 20, + ACTIONS(2988), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2986), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [93474] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -432573,37 +440866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(7460), 1, + ACTIONS(7630), 1, anon_sym_DASH_GT, - ACTIONS(7462), 1, - anon_sym_when, - ACTIONS(7464), 1, + ACTIONS(7632), 1, anon_sym_STAR, - ACTIONS(7466), 1, + ACTIONS(7634), 1, anon_sym_LT2, - ACTIONS(7468), 1, + ACTIONS(7636), 1, anon_sym_LBRACK_RBRACK, - STATE(4660), 1, + STATE(4683), 1, aux_sym_compound_type_repeat1, - STATE(4704), 1, - sym_type_arguments, - STATE(4726), 1, + STATE(4739), 1, sym_long_identifier, - STATE(5602), 1, - sym_type_argument_constraints, - ACTIONS(5867), 2, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(5890), 3, anon_sym_COLON, + anon_sym_and, anon_sym_as, - STATE(4420), 4, + STATE(4560), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5865), 7, + ACTIONS(5892), 7, sym__newline, sym__dedent, anon_sym_COMMA, @@ -432611,7 +440901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [85280] = 11, + [93540] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432622,21 +440912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5007), 1, + ACTIONS(5132), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7470), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4421), 4, + STATE(4561), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 16, + ACTIONS(5130), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432653,7 +440941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [85333] = 11, + [93590] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432664,21 +440952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5007), 1, + ACTIONS(5132), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7472), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4422), 4, + STATE(4562), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 16, + ACTIONS(5130), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432695,48 +440981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [85386] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4640), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, + [93640] = 18, + ACTIONS(3), 1, sym_line_comment, - STATE(4423), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4638), 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, - [85437] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432747,37 +440994,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5054), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4424), 4, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7525), 1, + anon_sym_DASH_GT, + ACTIONS(7529), 1, + anon_sym_STAR, + ACTIONS(7531), 1, + anon_sym_LT2, + ACTIONS(7533), 1, + anon_sym_LBRACK_RBRACK, + STATE(4686), 1, + aux_sym_compound_type_repeat1, + STATE(4741), 1, + sym_type_arguments, + STATE(4753), 1, + sym_long_identifier, + ACTIONS(2902), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4563), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 17, + ACTIONS(2900), 7, 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, - [85488] = 10, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [93706] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432788,19 +441040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5217), 1, + ACTIONS(2121), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4425), 4, + STATE(4564), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5215), 17, + ACTIONS(2119), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432817,8 +441069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85539] = 10, + [93756] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432829,37 +441080,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4426), 4, + STATE(4565), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(2990), 6, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3099), 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, - [85590] = 18, + [93806] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432870,45 +441122,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(7417), 1, + ACTIONS(7630), 1, anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7632), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7634), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7636), 1, anon_sym_LBRACK_RBRACK, - STATE(4590), 1, + STATE(4683), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, + STATE(4739), 1, sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2912), 4, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(2902), 3, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4427), 4, + STATE(4566), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2900), 7, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [85657] = 10, + anon_sym_SEMI, + [93872] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432919,37 +441170,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5112), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4428), 4, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7630), 1, + anon_sym_DASH_GT, + ACTIONS(7632), 1, + anon_sym_STAR, + ACTIONS(7634), 1, + anon_sym_LT2, + ACTIONS(7636), 1, + anon_sym_LBRACK_RBRACK, + STATE(4683), 1, + aux_sym_compound_type_repeat1, + STATE(4739), 1, + sym_long_identifier, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(2910), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4567), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 17, + ACTIONS(2908), 7, 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, - [85708] = 10, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [93938] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -432960,37 +441216,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4429), 4, + STATE(4568), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 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(3042), 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(3064), 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(3062), 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, - [85759] = 10, + [93988] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433001,37 +441258,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4430), 4, + ACTIONS(7660), 1, + anon_sym_or, + ACTIONS(2990), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4569), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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(3048), 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, - [85810] = 10, + [94040] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433042,19 +441297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5192), 1, + ACTIONS(3531), 1, anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4431), 4, + STATE(4570), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 17, + ACTIONS(3529), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433071,8 +441326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85861] = 10, + [94090] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433083,19 +441337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4646), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7537), 1, + anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4432), 4, + STATE(4571), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 17, + ACTIONS(7535), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433112,62 +441366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85912] = 23, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4530), 1, - anon_sym_LBRACK_LT, - ACTIONS(4533), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7474), 1, - anon_sym_new, - ACTIONS(7480), 1, - anon_sym_static, - ACTIONS(7483), 1, - anon_sym_member, - ACTIONS(7486), 1, - anon_sym_abstract, - ACTIONS(7489), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5170), 1, - sym_member_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, + [94140] = 18, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(4526), 2, - sym__dedent, - anon_sym_interface, - ACTIONS(7477), 2, - anon_sym_default, - anon_sym_override, - STATE(4433), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym__member_defns_repeat1, - [85989] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433178,47 +441379,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(7417), 1, + ACTIONS(7630), 1, anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7632), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7634), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7636), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(7492), 1, - anon_sym_when, - STATE(4590), 1, + STATE(4683), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, + STATE(4739), 1, sym_long_identifier, - STATE(4975), 1, - sym_type_argument_constraints, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5867), 2, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(5906), 3, anon_sym_COLON, + anon_sym_and, anon_sym_as, - STATE(4434), 4, + STATE(4572), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5865), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(5908), 7, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [86060] = 10, + anon_sym_SEMI, + [94206] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433229,37 +441427,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5044), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4435), 4, + ACTIONS(7663), 1, + anon_sym_DOT, + STATE(4599), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2988), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4573), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 17, + ACTIONS(2986), 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, - [86111] = 11, + 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, + [94259] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433270,38 +441466,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7494), 1, - anon_sym_with, + ACTIONS(7665), 1, + anon_sym_DOT, + STATE(4626), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4436), 4, + ACTIONS(2988), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4574), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 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, - [86164] = 24, + ACTIONS(2986), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94312] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433312,51 +441509,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6681), 1, - anon_sym_static, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4446), 1, - aux_sym__member_defns_repeat1, - STATE(5104), 1, - sym_member_defn, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5212), 1, - sym_attributes, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4654), 2, - sym__newline, - sym__dedent, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(4437), 4, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(7667), 1, + anon_sym_DASH_GT, + ACTIONS(7669), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LT2, + ACTIONS(7673), 1, + anon_sym_LBRACK_RBRACK, + STATE(4793), 1, + aux_sym_compound_type_repeat1, + STATE(4832), 1, + sym_type_arguments, + STATE(4865), 1, + sym_long_identifier, + ACTIONS(5890), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4575), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [86243] = 10, + ACTIONS(5892), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [94377] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433367,37 +441556,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5088), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4438), 4, + ACTIONS(7675), 1, + anon_sym_or, + ACTIONS(2990), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4576), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 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, - [86294] = 10, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 11, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94428] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433408,37 +441596,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4439), 4, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_DASH_GT, + ACTIONS(7654), 1, + anon_sym_STAR, + ACTIONS(7656), 1, + anon_sym_LT2, + ACTIONS(7658), 1, + anon_sym_LBRACK_RBRACK, + STATE(4714), 1, + aux_sym_compound_type_repeat1, + STATE(4872), 1, + sym_long_identifier, + STATE(4931), 1, + sym_type_arguments, + ACTIONS(2906), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4577), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [86345] = 10, + ACTIONS(2904), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [94493] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433449,37 +441641,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7498), 1, - anon_sym_let, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + ACTIONS(7644), 1, + anon_sym_STAR, + ACTIONS(7646), 1, + anon_sym_LT2, + ACTIONS(7648), 1, + anon_sym_LBRACK_RBRACK, + STATE(4761), 1, + aux_sym_compound_type_repeat1, + STATE(4825), 1, + sym_long_identifier, + STATE(4919), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4440), 4, + ACTIONS(2908), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2910), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + STATE(4578), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7496), 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, - [86396] = 10, + [94558] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433490,37 +441690,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4441), 4, + ACTIONS(7678), 1, + anon_sym_DOT, + STATE(4584), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2956), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4579), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 8, + ACTIONS(2954), 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(3082), 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, - [86447] = 10, + [94611] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433531,37 +441729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5062), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7680), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4442), 4, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4580), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 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, - [86498] = 11, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94662] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433572,38 +441769,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7500), 1, - anon_sym_COMMA, + ACTIONS(7683), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4443), 4, + STATE(4581), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 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, - [86551] = 10, + ACTIONS(3060), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3058), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94713] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433614,37 +441811,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4444), 4, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(7667), 1, + anon_sym_DASH_GT, + ACTIONS(7669), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LT2, + ACTIONS(7673), 1, + anon_sym_LBRACK_RBRACK, + STATE(4793), 1, + aux_sym_compound_type_repeat1, + STATE(4832), 1, + sym_type_arguments, + STATE(4865), 1, + sym_long_identifier, + ACTIONS(5906), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4582), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(5908), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3054), 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, - [86602] = 10, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [94778] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433655,37 +441858,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4614), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4445), 4, + ACTIONS(7685), 1, + anon_sym_or, + STATE(4576), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2962), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4583), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 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, - [86653] = 24, + ACTIONS(2960), 11, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94831] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433696,51 +441899,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(6177), 1, - anon_sym_member, - ACTIONS(6181), 1, - anon_sym_abstract, - ACTIONS(6183), 1, - anon_sym_val, - ACTIONS(6681), 1, - anon_sym_static, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4333), 1, - aux_sym__member_defns_repeat1, - STATE(5104), 1, - sym_member_defn, - STATE(5108), 1, - sym_additional_constr_defn, - STATE(5212), 1, - sym_attributes, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4510), 2, - sym__newline, - sym__dedent, - ACTIONS(6173), 2, - anon_sym_default, - anon_sym_override, - STATE(4446), 4, + ACTIONS(7687), 1, + anon_sym_DOT, + ACTIONS(2964), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4584), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [86732] = 10, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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, + [94882] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433751,37 +441939,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5231), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4447), 4, + ACTIONS(7685), 1, + anon_sym_or, + STATE(4583), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4585), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5229), 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, - [86783] = 10, + ACTIONS(2981), 11, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94935] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433792,37 +441978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5100), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7690), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4448), 4, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4586), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5098), 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, - [86834] = 10, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94986] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433833,37 +442018,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5092), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + ACTIONS(7644), 1, + anon_sym_STAR, + ACTIONS(7646), 1, + anon_sym_LT2, + ACTIONS(7648), 1, + anon_sym_LBRACK_RBRACK, + STATE(4761), 1, + aux_sym_compound_type_repeat1, + STATE(4825), 1, + sym_long_identifier, + STATE(4919), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4449), 4, + ACTIONS(2900), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2902), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + STATE(4587), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 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, - [86885] = 10, + [95051] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433874,37 +442067,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4450), 4, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_DASH_GT, + ACTIONS(7654), 1, + anon_sym_STAR, + ACTIONS(7656), 1, + anon_sym_LT2, + ACTIONS(7658), 1, + anon_sym_LBRACK_RBRACK, + STATE(4714), 1, + aux_sym_compound_type_repeat1, + STATE(4872), 1, + sym_long_identifier, + STATE(4931), 1, + sym_type_arguments, + ACTIONS(2902), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4588), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 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, - [86936] = 10, + ACTIONS(2900), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [95116] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433915,26 +442112,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2986), 1, + anon_sym_LT2, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6620), 1, + anon_sym_DOT, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4451), 4, + STATE(4589), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 8, - sym__dedent, + ACTIONS(7693), 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(3072), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -433944,8 +442143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [86987] = 10, + [95171] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433956,37 +442154,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7697), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4452), 4, + ACTIONS(2964), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4590), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [87038] = 11, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_EQ2, + [95222] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -433997,38 +442196,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5022), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7502), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4453), 4, + STATE(4591), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 16, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 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, - [87091] = 11, + 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, + [95271] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434039,38 +442233,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4853), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7504), 1, - anon_sym_with, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DASH_GT, + ACTIONS(7702), 1, + anon_sym_STAR, + ACTIONS(7704), 1, + anon_sym_LT2, + ACTIONS(7706), 1, + anon_sym_LBRACK_RBRACK, + STATE(4792), 1, + aux_sym_compound_type_repeat1, + STATE(4834), 1, + sym_type_arguments, + STATE(4915), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4454), 4, + ACTIONS(2908), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2910), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + STATE(4592), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 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, - [87144] = 10, + [95336] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434081,37 +442280,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7508), 1, - anon_sym_let, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + ACTIONS(7644), 1, + anon_sym_STAR, + ACTIONS(7646), 1, + anon_sym_LT2, + ACTIONS(7648), 1, + anon_sym_LBRACK_RBRACK, + STATE(4761), 1, + aux_sym_compound_type_repeat1, + STATE(4825), 1, + sym_long_identifier, + STATE(4919), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4455), 4, + ACTIONS(2882), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2886), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + STATE(4593), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7506), 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, - [87195] = 23, + [95401] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434122,50 +442329,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4530), 1, - anon_sym_LBRACK_LT, - ACTIONS(4533), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7510), 1, - anon_sym_new, - ACTIONS(7516), 1, - anon_sym_static, - ACTIONS(7519), 1, - anon_sym_member, - ACTIONS(7522), 1, - anon_sym_abstract, - ACTIONS(7525), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5176), 1, - sym_additional_constr_defn, - STATE(5193), 1, - sym_member_defn, - STATE(5207), 1, - sym_attributes, - STATE(8147), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(4526), 2, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(7667), 1, + anon_sym_DASH_GT, + ACTIONS(7669), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LT2, + ACTIONS(7673), 1, + anon_sym_LBRACK_RBRACK, + STATE(4793), 1, + aux_sym_compound_type_repeat1, + STATE(4832), 1, + sym_type_arguments, + STATE(4865), 1, + sym_long_identifier, + ACTIONS(2902), 3, + anon_sym_COLON, anon_sym_and, - anon_sym_POUNDendif, - ACTIONS(7513), 2, - anon_sym_default, - anon_sym_override, - STATE(4456), 5, + anon_sym_as, + STATE(4594), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [87272] = 10, + ACTIONS(2900), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [95466] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434176,37 +442376,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5108), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4457), 4, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(7667), 1, + anon_sym_DASH_GT, + ACTIONS(7669), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LT2, + ACTIONS(7673), 1, + anon_sym_LBRACK_RBRACK, + STATE(4793), 1, + aux_sym_compound_type_repeat1, + STATE(4832), 1, + sym_type_arguments, + STATE(4865), 1, + sym_long_identifier, + ACTIONS(2886), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4595), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 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, - [87323] = 10, + ACTIONS(2882), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [95531] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434217,37 +442421,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5122), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_LT2, + ACTIONS(7506), 1, + anon_sym_LBRACK_RBRACK, + STATE(4606), 1, + aux_sym_compound_type_repeat1, + STATE(4648), 1, + sym_type_arguments, + STATE(4703), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4458), 4, + ACTIONS(5906), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + STATE(4596), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 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, - [87374] = 12, + ACTIONS(5908), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + [95594] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434258,29 +442467,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7397), 1, + ACTIONS(7708), 1, anon_sym_or, - STATE(4371), 1, + STATE(4580), 1, aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4459), 4, + STATE(4597), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 5, + ACTIONS(2962), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(3028), 11, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2960), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -434290,7 +442497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [87429] = 10, + [95647] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434301,78 +442510,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4460), 4, + ACTIONS(7710), 1, + anon_sym_DOT, + ACTIONS(2964), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4598), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 17, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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, - [87480] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5066), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + 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, + [95698] = 12, + ACTIONS(3), 1, sym_line_comment, - STATE(4461), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5064), 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, - [87531] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434383,37 +442550,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5211), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4462), 4, + ACTIONS(7663), 1, + anon_sym_DOT, + STATE(4598), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2956), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4599), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5209), 17, + ACTIONS(2954), 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, - [87582] = 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, + [95751] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434424,37 +442589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7530), 1, - anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4463), 4, + STATE(4600), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7528), 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, - [87633] = 10, + ACTIONS(3046), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95800] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434465,37 +442628,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5076), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + ACTIONS(7644), 1, + anon_sym_STAR, + ACTIONS(7646), 1, + anon_sym_LT2, + ACTIONS(7648), 1, + anon_sym_LBRACK_RBRACK, + STATE(4761), 1, + aux_sym_compound_type_repeat1, + STATE(4825), 1, + sym_long_identifier, + STATE(4919), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4464), 4, + ACTIONS(2904), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2906), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + STATE(4601), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 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, - [87684] = 10, + [95865] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434506,37 +442677,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5118), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4465), 4, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7630), 1, + anon_sym_DASH_GT, + ACTIONS(7632), 1, + anon_sym_STAR, + ACTIONS(7634), 1, + anon_sym_LT2, + ACTIONS(7636), 1, + anon_sym_LBRACK_RBRACK, + STATE(4683), 1, + aux_sym_compound_type_repeat1, + STATE(4739), 1, + sym_long_identifier, + STATE(4745), 1, + sym_type_arguments, + ACTIONS(5921), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4602), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 17, + ACTIONS(5919), 7, 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, - [87735] = 24, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [95930] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434549,48 +442724,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(4654), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, + ACTIONS(6803), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(6807), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(6809), 1, anon_sym_member, - ACTIONS(6748), 1, + ACTIONS(6813), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(6815), 1, anon_sym_val, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4470), 1, - aux_sym__member_defns_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5170), 1, + STATE(4539), 1, sym_member_defn, - STATE(5344), 1, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, sym_attributes, - STATE(7728), 1, + STATE(7830), 1, sym_access_modifier, + STATE(8262), 1, + sym__member_defns, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(6805), 2, anon_sym_default, anon_sym_override, - STATE(4466), 4, + STATE(4603), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [87813] = 10, + [96005] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434601,36 +442774,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7437), 1, - anon_sym_let, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DASH_GT, + ACTIONS(7702), 1, + anon_sym_STAR, + ACTIONS(7704), 1, + anon_sym_LT2, + ACTIONS(7706), 1, + anon_sym_LBRACK_RBRACK, + STATE(4792), 1, + aux_sym_compound_type_repeat1, + STATE(4834), 1, + sym_type_arguments, + STATE(4915), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4467), 4, + ACTIONS(5890), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(5892), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4604), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7435), 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, - [87863] = 18, + [96070] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -434643,42 +442823,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(7532), 1, + ACTIONS(7667), 1, anon_sym_DASH_GT, - ACTIONS(7534), 1, + ACTIONS(7669), 1, anon_sym_STAR, - ACTIONS(7536), 1, + ACTIONS(7671), 1, anon_sym_LT2, - ACTIONS(7538), 1, + ACTIONS(7673), 1, anon_sym_LBRACK_RBRACK, - STATE(4623), 1, + STATE(4793), 1, aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, + STATE(4832), 1, sym_type_arguments, - ACTIONS(2912), 3, + STATE(4865), 1, + sym_long_identifier, + ACTIONS(2910), 3, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4468), 4, + STATE(4605), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 7, - sym__newline, - sym__dedent, + ACTIONS(2908), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [87929] = 10, + anon_sym_RBRACE, + [96135] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434689,36 +442868,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5062), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7502), 1, + anon_sym_STAR, + STATE(4622), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4469), 4, + STATE(4606), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 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, - [87979] = 24, + ACTIONS(3013), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3015), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96188] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434729,50 +442909,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4510), 1, - sym__dedent, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4433), 1, - aux_sym__member_defns_repeat1, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5170), 1, - sym_member_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7614), 1, + anon_sym_LT2, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4470), 4, + ACTIONS(5921), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4607), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [88057] = 10, + ACTIONS(5919), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [96253] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434783,76 +442956,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5088), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7713), 1, + anon_sym_or, + STATE(4618), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4471), 4, + STATE(4608), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 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, - [88107] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7498), 1, - anon_sym_let, - ACTIONS(3), 2, - anon_sym_SEMI, + ACTIONS(2979), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(2981), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96306] = 11, + ACTIONS(3), 1, sym_line_comment, - STATE(4472), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(7496), 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, - [88157] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434863,76 +442999,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4473), 4, + ACTIONS(7715), 1, + anon_sym_or, + ACTIONS(2990), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4609), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [88207] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 11, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, - sym_line_comment, - STATE(4474), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3040), 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(3042), 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, - [88257] = 18, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96357] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434943,44 +443037,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(7544), 1, + ACTIONS(7504), 1, anon_sym_LT2, - ACTIONS(7546), 1, + ACTIONS(7506), 1, anon_sym_LBRACK_RBRACK, - STATE(4649), 1, + STATE(4606), 1, aux_sym_compound_type_repeat1, - STATE(4718), 1, + STATE(4648), 1, sym_type_arguments, - STATE(4767), 1, + STATE(4703), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2928), 3, + ACTIONS(5890), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4475), 4, + anon_sym_when, + STATE(4610), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(5892), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [88323] = 10, + anon_sym_DASH_GT, + [96420] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -434991,36 +443085,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5058), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4476), 4, + STATE(4611), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5056), 16, + ACTIONS(3046), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 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, - [88373] = 10, + 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, + [96469] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435031,36 +443122,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7447), 1, - anon_sym_let, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4477), 4, + STATE(4612), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7445), 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, - [88423] = 10, + ACTIONS(2979), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2981), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96518] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435071,36 +443161,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7451), 1, - anon_sym_let, + ACTIONS(7708), 1, + anon_sym_or, + STATE(4597), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4478), 4, + STATE(4613), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7449), 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, - [88473] = 10, + ACTIONS(2979), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2981), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96571] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435111,24 +443202,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4640), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6835), 1, + anon_sym_EQ, + ACTIONS(6839), 1, + anon_sym_COLON, + ACTIONS(7718), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4479), 4, + STATE(4614), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 16, - sym__newline, + ACTIONS(6837), 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, @@ -435137,10 +443232,7 @@ 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, - [88523] = 10, + [96624] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435151,36 +443243,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5054), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7078), 1, + sym__member_defns, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4480), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4615), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 16, - sym__newline, + [96699] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [88573] = 11, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7341), 1, + sym__member_defns, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4616), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [96774] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -435193,35 +443349,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7548), 1, + ACTIONS(7720), 1, anon_sym_or, - ACTIONS(2977), 4, + STATE(4609), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2962), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4481), 5, + STATE(4617), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 12, - sym__newline, - sym__dedent, + ACTIONS(2960), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [88625] = 10, + [96827] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435232,36 +443388,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5192), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7713), 1, + anon_sym_or, + STATE(4586), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4482), 4, + STATE(4618), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 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, - [88675] = 10, + ACTIONS(2962), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(2960), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96880] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435272,36 +443429,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7415), 1, - anon_sym_let, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + STATE(7937), 1, + sym__member_defns, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4483), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4619), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6039), 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, - [88725] = 10, + [96955] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435312,36 +443481,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5217), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(6807), 1, + anon_sym_static, + ACTIONS(6809), 1, + anon_sym_member, + ACTIONS(6813), 1, + anon_sym_abstract, + ACTIONS(6815), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + STATE(7879), 1, + sym__member_defns, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4484), 4, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4620), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5215), 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, - [88775] = 10, + [97030] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435352,38 +443533,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5044), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(4634), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4485), 4, + STATE(4621), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 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, - [88825] = 18, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(2988), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2986), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_EQ2, + [97083] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435394,44 +443574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7532), 1, - anon_sym_DASH_GT, - ACTIONS(7534), 1, + ACTIONS(7724), 1, anon_sym_STAR, - ACTIONS(7536), 1, - anon_sym_LT2, - ACTIONS(7538), 1, - anon_sym_LBRACK_RBRACK, - STATE(4623), 1, - aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, - sym_type_arguments, - ACTIONS(2916), 3, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2886), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4486), 4, + anon_sym_when, + sym_identifier, + STATE(4622), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 7, - sym__newline, - sym__dedent, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 9, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [88891] = 18, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97134] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435442,42 +443614,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7532), 1, + ACTIONS(7700), 1, anon_sym_DASH_GT, - ACTIONS(7534), 1, + ACTIONS(7702), 1, anon_sym_STAR, - ACTIONS(7536), 1, + ACTIONS(7704), 1, anon_sym_LT2, - ACTIONS(7538), 1, + ACTIONS(7706), 1, anon_sym_LBRACK_RBRACK, - STATE(4623), 1, + STATE(4792), 1, aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, + STATE(4834), 1, sym_type_arguments, - ACTIONS(2886), 3, + STATE(4915), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2904), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2906), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4487), 4, + anon_sym_in, + STATE(4623), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 7, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [88957] = 12, + [97199] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435488,78 +443661,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7551), 1, - anon_sym_or, - STATE(4546), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DASH_GT, + ACTIONS(7702), 1, + anon_sym_STAR, + ACTIONS(7704), 1, + anon_sym_LT2, + ACTIONS(7706), 1, + anon_sym_LBRACK_RBRACK, + STATE(4792), 1, + aux_sym_compound_type_repeat1, + STATE(4834), 1, + sym_type_arguments, + STATE(4915), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3017), 4, + ACTIONS(5906), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - sym_identifier, - STATE(4488), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3015), 11, - anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_in, + ACTIONS(5908), 4, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [89011] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5104), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4489), 4, + STATE(4624), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5102), 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, - [89061] = 10, + [97264] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435570,38 +443708,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4490), 4, + STATE(4625), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [89111] = 12, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 11, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97313] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435612,36 +443747,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7553), 1, - anon_sym_or, - STATE(4496), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3017), 4, + ACTIONS(7665), 1, + anon_sym_DOT, + STATE(4627), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2956), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4491), 4, + STATE(4626), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 12, - sym__newline, - sym__dedent, + ACTIONS(2954), 10, + 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_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [89165] = 10, + [97366] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435652,36 +443788,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5112), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7727), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4492), 4, + ACTIONS(2964), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4627), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 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, - [89215] = 12, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97417] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -435694,23 +443830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7555), 1, - anon_sym_or, - STATE(4481), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3017), 4, + ACTIONS(7678), 1, + anon_sym_DOT, + STATE(4579), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2988), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4493), 4, + STATE(4628), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 12, + ACTIONS(2986), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -435718,12 +443854,11 @@ 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, - [89269] = 10, + [97470] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435734,24 +443869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(2986), 1, + anon_sym_LT2, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6620), 1, + anon_sym_DOT, + ACTIONS(7732), 1, + anon_sym_LPAREN, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4494), 4, + STATE(4629), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 16, - sym__newline, + ACTIONS(7730), 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, @@ -435760,10 +443900,7 @@ 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, - [89319] = 18, + [97525] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -435776,34 +443913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7460), 1, - anon_sym_DASH_GT, - ACTIONS(7464), 1, - anon_sym_STAR, - ACTIONS(7466), 1, - anon_sym_LT2, - ACTIONS(7468), 1, - anon_sym_LBRACK_RBRACK, - STATE(4660), 1, - aux_sym_compound_type_repeat1, - STATE(4704), 1, - sym_type_arguments, - STATE(4726), 1, - sym_long_identifier, - ACTIONS(2912), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - STATE(4495), 4, + STATE(4630), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 7, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 12, sym__newline, sym__dedent, anon_sym_COMMA, @@ -435811,7 +443934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89385] = 11, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97574] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -435824,22 +443952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_or, - ACTIONS(2977), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4496), 5, + STATE(4631), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 12, + ACTIONS(3046), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 12, sym__newline, sym__dedent, anon_sym_COMMA, @@ -435852,49 +443978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [89437] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5080), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4497), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5078), 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, - [89487] = 18, - ACTIONS(3), 1, - sym_line_comment, + [97623] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435905,82 +443989,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(7460), 1, - anon_sym_DASH_GT, - ACTIONS(7464), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(7466), 1, + ACTIONS(7504), 1, anon_sym_LT2, - ACTIONS(7468), 1, + ACTIONS(7506), 1, anon_sym_LBRACK_RBRACK, - STATE(4660), 1, + STATE(4606), 1, aux_sym_compound_type_repeat1, - STATE(4704), 1, + STATE(4648), 1, sym_type_arguments, - STATE(4726), 1, + STATE(4703), 1, sym_long_identifier, - ACTIONS(2916), 3, + STATE(5089), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5875), 3, anon_sym_COLON, anon_sym_as, anon_sym_when, - STATE(4498), 4, + STATE(4632), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 7, - sym__newline, - sym__dedent, + ACTIONS(5873), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [89553] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4499), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2103), 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, - [89603] = 10, + anon_sym_DASH_GT, + [97688] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -435991,64 +444036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2986), 1, + anon_sym_LT2, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4500), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3050), 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(3048), 9, + ACTIONS(6620), 1, + anon_sym_DOT, + ACTIONS(7736), 1, anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - [89653] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5084), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4501), 4, + STATE(4633), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5082), 16, - sym__newline, + ACTIONS(7734), 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, @@ -436057,10 +444067,7 @@ 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, - [89703] = 10, + [97743] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436071,36 +444078,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5211), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(4590), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4502), 4, + STATE(4634), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5209), 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, - [89753] = 10, + ACTIONS(2956), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2954), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_EQ2, + [97796] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436111,36 +444119,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5066), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4503), 4, + ACTIONS(5890), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4635), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5064), 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, - [89803] = 10, + ACTIONS(5892), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [97859] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436151,36 +444165,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3648), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7738), 1, + anon_sym_y, + ACTIONS(7740), 1, + anon_sym_uy, + ACTIONS(7742), 1, + anon_sym_s, + ACTIONS(7744), 1, + anon_sym_us, + ACTIONS(7746), 1, + anon_sym_l, + ACTIONS(7748), 1, + aux_sym_uint32_token1, + ACTIONS(7750), 1, + anon_sym_n, + ACTIONS(7752), 1, + anon_sym_un, + ACTIONS(7754), 1, + anon_sym_L, + ACTIONS(7756), 1, + aux_sym_uint64_token1, + ACTIONS(7758), 1, + aux_sym_bignum_token1, + ACTIONS(7760), 1, + aux_sym_decimal_token1, + ACTIONS(7762), 1, + anon_sym_DOT2, + ACTIONS(7764), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4504), 4, + ACTIONS(2526), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4636), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [89853] = 18, + [97934] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -436193,82 +444219,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(7460), 1, + ACTIONS(7667), 1, anon_sym_DASH_GT, - ACTIONS(7464), 1, + ACTIONS(7669), 1, anon_sym_STAR, - ACTIONS(7466), 1, + ACTIONS(7671), 1, anon_sym_LT2, - ACTIONS(7468), 1, + ACTIONS(7673), 1, anon_sym_LBRACK_RBRACK, - STATE(4660), 1, + STATE(4793), 1, aux_sym_compound_type_repeat1, - STATE(4704), 1, + STATE(4832), 1, sym_type_arguments, - STATE(4726), 1, + STATE(4865), 1, sym_long_identifier, - ACTIONS(2886), 3, + ACTIONS(2906), 3, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4505), 4, + STATE(4637), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 7, - sym__newline, - sym__dedent, + ACTIONS(2904), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89919] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5231), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4506), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5229), 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, - [89969] = 10, + anon_sym_RBRACE, + [97999] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436279,36 +444264,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5096), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_DASH_GT, + ACTIONS(7612), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_LBRACK_RBRACK, + STATE(4654), 1, + aux_sym_compound_type_repeat1, + STATE(4756), 1, + sym_long_identifier, + STATE(4757), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4507), 4, + ACTIONS(5906), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4638), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 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, - [90019] = 10, + ACTIONS(5908), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [98062] = 23, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436318,37 +444309,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 1, anon_sym_POUNDload, ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5100), 1, - anon_sym_let, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4508), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5098), 16, - sym__newline, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90069] = 10, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7602), 1, + sym__member_defns, + STATE(7830), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4639), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [98137] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436359,36 +444362,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4509), 4, + STATE(4640), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 6, + ACTIONS(2964), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, anon_sym_when, - anon_sym_or, sym_identifier, - ACTIONS(2975), 11, + ACTIONS(2966), 11, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90119] = 18, + [98186] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436399,44 +444403,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(7049), 1, sym_identifier, - ACTIONS(7540), 1, + ACTIONS(7650), 1, anon_sym_DASH_GT, - ACTIONS(7542), 1, + ACTIONS(7654), 1, anon_sym_STAR, - ACTIONS(7544), 1, + ACTIONS(7656), 1, anon_sym_LT2, - ACTIONS(7546), 1, + ACTIONS(7658), 1, anon_sym_LBRACK_RBRACK, - STATE(4649), 1, + STATE(4714), 1, aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, + STATE(4872), 1, sym_long_identifier, - ACTIONS(3), 2, + STATE(4931), 1, + sym_type_arguments, + ACTIONS(2910), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4641), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2908), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, + [98251] = 18, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2912), 3, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_DASH_GT, + ACTIONS(7654), 1, + anon_sym_STAR, + ACTIONS(7656), 1, + anon_sym_LT2, + ACTIONS(7658), 1, + anon_sym_LBRACK_RBRACK, + STATE(4714), 1, + aux_sym_compound_type_repeat1, + STATE(4872), 1, + sym_long_identifier, + STATE(4931), 1, + sym_type_arguments, + ACTIONS(2886), 3, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4510), 4, + anon_sym_when, + STATE(4642), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2882), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [90185] = 10, + anon_sym_SEMI, + anon_sym_RBRACE, + [98316] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436447,36 +444495,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4646), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DASH_GT, + ACTIONS(7702), 1, + anon_sym_STAR, + ACTIONS(7704), 1, + anon_sym_LT2, + ACTIONS(7706), 1, + anon_sym_LBRACK_RBRACK, + STATE(4792), 1, + aux_sym_compound_type_repeat1, + STATE(4834), 1, + sym_type_arguments, + STATE(4915), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4511), 4, + ACTIONS(2882), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2886), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + STATE(4643), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 16, - sym__newline, + [98381] = 23, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, anon_sym_new, - anon_sym_default, + ACTIONS(6807), 1, anon_sym_static, + ACTIONS(6809), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(6813), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(6815), 1, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90235] = 18, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4539), 1, + sym_member_defn, + STATE(5215), 1, + sym_additional_constr_defn, + STATE(5331), 1, + sym_attributes, + STATE(7830), 1, + sym_access_modifier, + STATE(8206), 1, + sym__member_defns, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6805), 2, + anon_sym_default, + anon_sym_override, + STATE(4644), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [98456] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436487,44 +444596,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7544), 1, - anon_sym_LT2, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2916), 3, + ACTIONS(7720), 1, + anon_sym_or, + STATE(4617), 1, + aux_sym_type_argument_repeat1, + ACTIONS(2979), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4512), 4, + sym_identifier, + STATE(4645), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2981), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [90301] = 18, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98509] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436535,44 +444635,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7540), 1, + ACTIONS(7700), 1, anon_sym_DASH_GT, - ACTIONS(7542), 1, + ACTIONS(7702), 1, anon_sym_STAR, - ACTIONS(7544), 1, + ACTIONS(7704), 1, anon_sym_LT2, - ACTIONS(7546), 1, + ACTIONS(7706), 1, anon_sym_LBRACK_RBRACK, - STATE(4649), 1, + STATE(4792), 1, aux_sym_compound_type_repeat1, - STATE(4718), 1, + STATE(4834), 1, sym_type_arguments, - STATE(4767), 1, + STATE(4915), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2886), 3, + ACTIONS(2900), 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2902), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4513), 4, + anon_sym_in, + STATE(4646), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 6, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [90367] = 12, + [98574] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436583,29 +444682,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7560), 1, + ACTIONS(7766), 1, anon_sym_DOT, - STATE(4515), 1, + STATE(4649), 1, aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4514), 4, + STATE(4647), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2973), 5, + ACTIONS(2988), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, anon_sym_when, sym_identifier, - ACTIONS(2971), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2986), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -436614,7 +444711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90421] = 11, + [98626] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436625,26 +444722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7562), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2988), 5, + STATE(4648), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3072), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4515), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 10, + ACTIONS(3070), 10, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -436655,7 +444749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90473] = 10, + [98674] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436666,36 +444760,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7405), 1, - anon_sym_let, + ACTIONS(7766), 1, + anon_sym_DOT, + STATE(4656), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4516), 4, + STATE(4649), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7403), 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, - [90523] = 10, + ACTIONS(2956), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(2954), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98726] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436706,36 +444802,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7429), 1, - anon_sym_let, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4517), 4, + ACTIONS(7768), 1, + anon_sym_DOT, + STATE(4659), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2988), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4650), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7427), 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, - [90573] = 10, + ACTIONS(2986), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98778] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436746,36 +444840,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4973), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7770), 1, + anon_sym_with, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, + STATE(5990), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4518), 4, + ACTIONS(4823), 2, + anon_sym_and, + anon_sym_interface, + ACTIONS(4821), 3, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + STATE(4651), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 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, - [90623] = 10, + [98846] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436786,36 +444890,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7530), 1, - anon_sym_let, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4519), 4, + ACTIONS(7772), 1, + anon_sym_DOT, + STATE(4664), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2988), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4652), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7528), 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, - [90673] = 10, + ACTIONS(2986), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98898] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436826,24 +444928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5118), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7736), 1, + anon_sym_LPAREN, + ACTIONS(7774), 1, + anon_sym_LT2, + STATE(4894), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4520), 4, + STATE(4653), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 16, - sym__newline, + ACTIONS(7734), 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, @@ -436852,10 +444957,7 @@ 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, - [90723] = 10, + [98950] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436866,80 +444968,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7612), 1, + anon_sym_STAR, + STATE(4676), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4521), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3103), 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(3101), 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, - [90773] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7555), 1, - anon_sym_or, - STATE(4493), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3026), 4, + ACTIONS(3013), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4522), 4, + STATE(4654), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 12, - sym__newline, - sym__dedent, + ACTIONS(3015), 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_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90827] = 12, - ACTIONS(3), 1, - sym_line_comment, + [99002] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436950,36 +445008,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7553), 1, - anon_sym_or, - STATE(4491), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3026), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2964), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4523), 4, + STATE(4655), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 12, - sym__newline, - sym__dedent, + ACTIONS(2966), 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_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90881] = 10, + [99050] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -436990,36 +445046,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7441), 1, - anon_sym_let, + ACTIONS(7776), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4524), 4, + ACTIONS(2964), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4656), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7439), 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, - [90931] = 10, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99100] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437030,36 +445085,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5076), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5544), 1, + anon_sym_LBRACK_LT, + STATE(4667), 1, + aux_sym_attributes_repeat1, + STATE(4886), 1, + sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4525), 4, + ACTIONS(6775), 2, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(4657), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 16, - sym__newline, - anon_sym_LBRACK_LT, + ACTIONS(6773), 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, - [90981] = 10, + sym_identifier, + [99154] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437070,36 +445128,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5092), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4526), 4, + ACTIONS(7779), 1, + anon_sym_DOT, + ACTIONS(2964), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4658), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 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, - [91031] = 18, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99204] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -437112,42 +445167,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7532), 1, - anon_sym_DASH_GT, - ACTIONS(7534), 1, - anon_sym_STAR, - ACTIONS(7536), 1, - anon_sym_LT2, - ACTIONS(7538), 1, - anon_sym_LBRACK_RBRACK, - STATE(4623), 1, - aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, - sym_type_arguments, - ACTIONS(5891), 3, + ACTIONS(7768), 1, + anon_sym_DOT, + STATE(4658), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2956), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4527), 4, + anon_sym_when, + sym_identifier, + STATE(4659), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 7, - sym__newline, - sym__dedent, + ACTIONS(2954), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [91097] = 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99256] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437158,24 +445205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7508), 1, - anon_sym_let, + ACTIONS(6839), 1, + anon_sym_COLON, + ACTIONS(7718), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4528), 4, + STATE(4660), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7506), 16, - sym__newline, + ACTIONS(6837), 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, @@ -437184,10 +445233,7 @@ 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, - [91147] = 10, + [99306] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437198,24 +445244,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5108), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7784), 1, + anon_sym_COLON, + ACTIONS(7786), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4529), 4, + STATE(4661), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 16, - sym__newline, + ACTIONS(7782), 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, @@ -437224,10 +445272,9 @@ 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, - [91197] = 18, + [99356] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437238,84 +445285,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7544), 1, - anon_sym_LT2, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5879), 3, + ACTIONS(7788), 1, + anon_sym_COLON_GT, + ACTIONS(3060), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4530), 4, + sym_identifier, + STATE(4662), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3058), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [91263] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7409), 1, - anon_sym_let, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99406] = 11, + ACTIONS(3), 1, sym_line_comment, - STATE(4531), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(7407), 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, - [91313] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437326,38 +445324,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7560), 1, + ACTIONS(7790), 1, anon_sym_DOT, - STATE(4514), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4532), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2959), 5, + ACTIONS(2964), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - ACTIONS(2957), 10, - anon_sym_EQ, - anon_sym_RPAREN, + STATE(4663), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [91367] = 20, + [99456] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -437370,44 +445363,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7565), 1, - anon_sym_DASH_GT, - ACTIONS(7567), 1, - anon_sym_when, - ACTIONS(7569), 1, - anon_sym_STAR, - ACTIONS(7571), 1, - anon_sym_LT2, - ACTIONS(7573), 1, - anon_sym_LBRACK_RBRACK, - STATE(4749), 1, - aux_sym_compound_type_repeat1, - STATE(4795), 1, - sym_type_arguments, - STATE(4797), 1, - sym_long_identifier, - STATE(5731), 1, - sym_type_argument_constraints, - ACTIONS(5867), 2, + ACTIONS(7772), 1, + anon_sym_DOT, + STATE(4663), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2956), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - STATE(4533), 4, + sym_identifier, + STATE(4664), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5865), 6, + ACTIONS(2954), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [91437] = 10, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99508] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437418,86 +445401,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4614), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7793), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4534), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4612), 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, - [91487] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7460), 1, - anon_sym_DASH_GT, - ACTIONS(7464), 1, - anon_sym_STAR, - ACTIONS(7466), 1, - anon_sym_LT2, - ACTIONS(7468), 1, - anon_sym_LBRACK_RBRACK, - STATE(4660), 1, - aux_sym_compound_type_repeat1, - STATE(4704), 1, - sym_type_arguments, - STATE(4726), 1, - sym_long_identifier, - ACTIONS(2928), 3, + ACTIONS(3060), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4535), 4, + sym_identifier, + STATE(4665), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 7, - sym__newline, - sym__dedent, + ACTIONS(3058), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [91553] = 18, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99558] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437508,42 +445440,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7532), 1, - anon_sym_DASH_GT, - ACTIONS(7534), 1, - anon_sym_STAR, - ACTIONS(7536), 1, - anon_sym_LT2, - ACTIONS(7538), 1, - anon_sym_LBRACK_RBRACK, - STATE(4623), 1, - aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, - sym_type_arguments, - ACTIONS(2928), 3, + ACTIONS(2979), 1, anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4536), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7795), 1, + anon_sym_or, + STATE(4672), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4666), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 7, - sym__newline, - sym__dedent, + ACTIONS(2981), 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, - [91619] = 20, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99610] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437554,46 +445480,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7575), 1, - anon_sym_DASH_GT, - ACTIONS(7577), 1, - anon_sym_when, - ACTIONS(7579), 1, - anon_sym_STAR, - ACTIONS(7581), 1, - anon_sym_LT2, - ACTIONS(7583), 1, - anon_sym_LBRACK_RBRACK, - STATE(4710), 1, - aux_sym_compound_type_repeat1, - STATE(4834), 1, - sym_long_identifier, - STATE(4868), 1, - sym_type_arguments, - STATE(4975), 1, - sym_type_argument_constraints, + ACTIONS(7797), 1, + anon_sym_LBRACK_LT, + STATE(4886), 1, + sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5867), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - ACTIONS(5865), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4537), 4, + ACTIONS(6742), 2, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(4667), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91689] = 10, + aux_sym_attributes_repeat1, + ACTIONS(6737), 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, + [99662] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437604,24 +445520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7455), 1, - anon_sym_let, + ACTIONS(7802), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4538), 4, + STATE(4668), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7453), 16, - sym__newline, + aux_sym_union_type_fields_repeat1, + ACTIONS(7800), 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, @@ -437630,10 +445547,7 @@ 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, - [91739] = 10, + [99710] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437644,24 +445558,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5076), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7807), 1, + anon_sym_STAR, + STATE(4673), 1, + aux_sym_union_type_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4539), 4, + STATE(4669), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 16, - sym__newline, + ACTIONS(7805), 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, @@ -437670,10 +445586,7 @@ 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] = 12, + [99760] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437684,38 +445597,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7551), 1, - anon_sym_or, - STATE(4488), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3026), 4, + STATE(4670), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3046), 6, anon_sym_COLON, anon_sym_and, anon_sym_as, + anon_sym_in, + anon_sym_or, sym_identifier, - STATE(4540), 4, + ACTIONS(3044), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99808] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7809), 1, + anon_sym_STAR, + ACTIONS(2886), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4671), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, - anon_sym_EQ, - anon_sym_RPAREN, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 10, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [91843] = 10, + [99858] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437726,36 +445674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(2962), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7795), 1, + anon_sym_or, + STATE(4695), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4541), 4, + STATE(4672), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [91893] = 10, + ACTIONS(2960), 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_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99910] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437766,24 +445714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2105), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7807), 1, + anon_sym_STAR, + STATE(4668), 1, + aux_sym_union_type_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4542), 4, + STATE(4673), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 16, - sym__newline, + ACTIONS(7812), 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, @@ -437792,10 +445742,7 @@ 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, - [91943] = 18, + [99960] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437806,44 +445753,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7544), 1, - anon_sym_LT2, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5891), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4543), 4, + STATE(4674), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 6, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2964), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2966), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [92009] = 10, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_EQ2, + [100008] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437854,36 +445793,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4544), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3066), 6, + ACTIONS(2964), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_when, - anon_sym_or, sym_identifier, - ACTIONS(3068), 11, - anon_sym_EQ, - anon_sym_RPAREN, + STATE(4675), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2966), 12, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [92059] = 20, + [100056] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437894,46 +445829,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7417), 1, - anon_sym_DASH_GT, - ACTIONS(7419), 1, + ACTIONS(7814), 1, anon_sym_STAR, - ACTIONS(7421), 1, - anon_sym_LT2, - ACTIONS(7423), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7585), 1, - anon_sym_when, - STATE(4590), 1, - aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, - sym_long_identifier, - STATE(4975), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5867), 2, + ACTIONS(2886), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - STATE(4545), 4, + sym_identifier, + STATE(4676), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5865), 5, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 9, anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [92129] = 11, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100106] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437944,39 +445868,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7587), 1, - anon_sym_or, + ACTIONS(7817), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2977), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4546), 5, + STATE(4677), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 11, + ACTIONS(3134), 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_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [92181] = 18, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_f, + aux_sym_decimal_token1, + [100156] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -437987,42 +445907,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7532), 1, + ACTIONS(7700), 1, anon_sym_DASH_GT, - ACTIONS(7534), 1, + ACTIONS(7702), 1, anon_sym_STAR, - ACTIONS(7536), 1, + ACTIONS(7704), 1, anon_sym_LT2, - ACTIONS(7538), 1, + ACTIONS(7706), 1, anon_sym_LBRACK_RBRACK, - STATE(4623), 1, + STATE(4792), 1, aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, + STATE(4834), 1, sym_type_arguments, - ACTIONS(5879), 3, + STATE(4915), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5921), 3, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4547), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5881), 7, - sym__newline, - sym__dedent, + anon_sym_in, + ACTIONS(5919), 4, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [92247] = 10, + STATE(4678), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [100220] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438033,24 +445953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5048), 1, - anon_sym_let, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7695), 1, + anon_sym_LPAREN, + ACTIONS(7774), 1, + anon_sym_LT2, + STATE(4845), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4548), 4, + STATE(4679), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 16, - sym__newline, + ACTIONS(7693), 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, @@ -438059,10 +445982,9 @@ 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, - [92297] = 17, + [100272] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438073,44 +445995,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5879), 3, + ACTIONS(2964), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4549), 4, + sym_identifier, + STATE(4680), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 6, - anon_sym_EQ, + ACTIONS(2966), 12, + sym__newline, + 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, - [92360] = 18, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_LBRACK_RBRACK, + [100320] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438121,41 +446031,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4681), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3042), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, sym_identifier, - ACTIONS(7590), 1, + ACTIONS(3040), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_DASH_GT, - ACTIONS(7592), 1, anon_sym_STAR, - ACTIONS(7594), 1, anon_sym_LT2, - ACTIONS(7596), 1, anon_sym_LBRACK_RBRACK, - STATE(4742), 1, - aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(2916), 3, + [100368] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3151), 1, anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4550), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7819), 1, + sym_int, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4682), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 6, + ACTIONS(3153), 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_RBRACE, - [92425] = 18, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + anon_sym_f, + aux_sym_decimal_token1, + [100418] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438168,41 +446110,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_STAR, - ACTIONS(7594), 1, - anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, + STATE(4693), 1, aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(5891), 3, + ACTIONS(3013), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4551), 4, + sym_identifier, + STATE(4683), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 6, + ACTIONS(3015), 10, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [92490] = 18, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100470] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438215,41 +446150,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(7565), 1, + ACTIONS(7667), 1, anon_sym_DASH_GT, - ACTIONS(7569), 1, + ACTIONS(7669), 1, anon_sym_STAR, - ACTIONS(7571), 1, + ACTIONS(7671), 1, anon_sym_LT2, - ACTIONS(7573), 1, + ACTIONS(7673), 1, anon_sym_LBRACK_RBRACK, - STATE(4749), 1, + STATE(4793), 1, aux_sym_compound_type_repeat1, - STATE(4795), 1, + STATE(4832), 1, sym_type_arguments, - STATE(4797), 1, + STATE(4865), 1, sym_long_identifier, - ACTIONS(2916), 3, + ACTIONS(5921), 2, anon_sym_COLON, anon_sym_as, - anon_sym_when, - STATE(4552), 4, + STATE(4684), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2914), 6, + ACTIONS(5919), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [92555] = 12, + [100534] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438260,37 +446194,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6786), 1, - anon_sym_EQ, - ACTIONS(6790), 1, - anon_sym_COLON, - ACTIONS(7598), 1, - anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4553), 4, + STATE(4685), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6788), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3046), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, 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, - [92608] = 18, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100582] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438303,41 +446234,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, + ACTIONS(7529), 1, anon_sym_STAR, - ACTIONS(7594), 1, - anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, + STATE(4671), 1, aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(5879), 3, + ACTIONS(3013), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4554), 4, + anon_sym_when, + sym_identifier, + STATE(4686), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 6, + ACTIONS(3015), 10, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [92673] = 23, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100634] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438348,48 +446274,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7188), 1, - sym__member_defns, - STATE(7728), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4555), 4, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4687), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92748] = 13, + ACTIONS(2981), 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, + [100682] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438400,38 +446310,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2957), 1, - anon_sym_LT2, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - ACTIONS(7602), 1, - anon_sym_LPAREN, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4556), 4, + STATE(4688), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7600), 12, + ACTIONS(3060), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3058), 10, 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, - [92803] = 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100730] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438442,25 +446348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4557), 4, + STATE(4689), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 5, + ACTIONS(2990), 6, anon_sym_COLON, anon_sym_and, anon_sym_as, + anon_sym_in, anon_sym_or, sym_identifier, - ACTIONS(2975), 11, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2992), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -438470,9 +446375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [92852] = 11, - ACTIONS(3), 1, - sym_line_comment, + [100778] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438483,36 +446386,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7604), 1, - anon_sym_or, - ACTIONS(2977), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4558), 5, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4690), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 11, + ACTIONS(2990), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [92903] = 18, - ACTIONS(3), 1, - sym_line_comment, + [100826] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438523,41 +446424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7565), 1, - anon_sym_DASH_GT, - ACTIONS(7569), 1, - anon_sym_STAR, - ACTIONS(7571), 1, - anon_sym_LT2, - ACTIONS(7573), 1, - anon_sym_LBRACK_RBRACK, - STATE(4749), 1, - aux_sym_compound_type_repeat1, - STATE(4795), 1, - sym_type_arguments, - STATE(4797), 1, - sym_long_identifier, - ACTIONS(2912), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - STATE(4559), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4691), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 6, + ACTIONS(3096), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3098), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [92968] = 12, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100874] = 22, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438568,37 +446462,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7607), 1, - anon_sym_or, - STATE(4607), 1, - aux_sym_type_argument_repeat1, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(5562), 1, + anon_sym_new, + ACTIONS(7821), 1, + sym_identifier, + ACTIONS(7823), 1, + anon_sym_do, + ACTIONS(7827), 1, + anon_sym_static, + ACTIONS(7829), 1, + anon_sym_member, + ACTIONS(7831), 1, + anon_sym_abstract, + ACTIONS(7833), 1, + anon_sym_val, + STATE(5085), 1, + sym_additional_constr_defn, + STATE(6681), 1, + sym_function_or_value_defn, + STATE(7896), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4560), 4, + ACTIONS(7825), 2, + anon_sym_default, + anon_sym_override, + STATE(4692), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3015), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93021] = 11, + [100946] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438609,36 +446514,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7609), 1, + ACTIONS(7835), 1, anon_sym_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2916), 5, + ACTIONS(2886), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4561), 5, + STATE(4693), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, aux_sym_compound_type_repeat1, - ACTIONS(2914), 9, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2882), 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, - [93072] = 18, + [100996] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438649,45 +446551,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, + ACTIONS(6892), 1, sym_identifier, - ACTIONS(7419), 1, + ACTIONS(7498), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(7421), 1, + ACTIONS(7504), 1, anon_sym_LT2, - ACTIONS(7423), 1, + ACTIONS(7506), 1, anon_sym_LBRACK_RBRACK, - STATE(4590), 1, + STATE(4606), 1, aux_sym_compound_type_repeat1, - STATE(4652), 1, + STATE(4648), 1, sym_type_arguments, - STATE(4674), 1, + STATE(4703), 1, sym_long_identifier, - STATE(4975), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5867), 3, + ACTIONS(5921), 3, anon_sym_COLON, anon_sym_as, anon_sym_when, - STATE(4562), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5865), 5, + ACTIONS(5919), 4, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - [93137] = 12, - ACTIONS(3), 1, - sym_line_comment, + STATE(4694), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [101060] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438698,35 +446597,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7612), 1, - anon_sym_DOT, - STATE(4566), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2973), 4, + ACTIONS(2990), 1, anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4563), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7838), 1, + anon_sym_or, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4695), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 11, - sym__newline, - sym__dedent, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 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_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93190] = 12, + [101110] = 12, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7732), 1, + anon_sym_LPAREN, + ACTIONS(7774), 1, + anon_sym_LT2, + STATE(4808), 1, + sym_type_arguments, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4696), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(7730), 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, + [101162] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438739,23 +446678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7612), 1, - anon_sym_DOT, - STATE(4563), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2959), 4, + ACTIONS(2979), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4564), 4, + STATE(4697), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 11, + ACTIONS(2981), 12, sym__newline, sym__dedent, anon_sym_COMMA, @@ -438763,11 +446698,12 @@ 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, - [93243] = 12, + [101210] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438778,37 +446714,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_or, - STATE(4574), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4565), 4, + STATE(4698), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 5, + ACTIONS(3078), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(3028), 9, + ACTIONS(3080), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93296] = 11, + [101258] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438821,34 +446754,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7616), 1, - anon_sym_DOT, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4566), 5, + STATE(4699), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 11, - sym__newline, - sym__dedent, + ACTIONS(3046), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + ACTIONS(3044), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93347] = 17, + [101306] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438859,42 +446792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5891), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4567), 4, + STATE(4700), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 6, - anon_sym_EQ, + ACTIONS(2990), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + ACTIONS(2992), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [93410] = 12, + anon_sym_LBRACK_RBRACK, + [101354] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438905,27 +446828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7607), 1, - anon_sym_or, - STATE(4560), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4568), 4, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4701), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3028), 9, + ACTIONS(2981), 11, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -438935,7 +446855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93463] = 12, + [101402] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -438948,23 +446868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7619), 1, - anon_sym_DOT, - STATE(4570), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2973), 4, + ACTIONS(7841), 1, + anon_sym_COLON_GT, + ACTIONS(3060), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4569), 4, + STATE(4702), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 11, + ACTIONS(3058), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -438976,9 +446894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93516] = 11, - ACTIONS(3), 1, - sym_line_comment, + [101452] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -438989,34 +446905,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7621), 1, - anon_sym_DOT, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4570), 5, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4703), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 11, - sym__newline, - sym__dedent, + ACTIONS(3048), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3054), 10, + 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_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93567] = 18, + [101500] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439027,43 +446943,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7540), 1, - anon_sym_DASH_GT, - ACTIONS(7542), 1, - anon_sym_STAR, - ACTIONS(7544), 1, - anon_sym_LT2, - ACTIONS(7546), 1, - anon_sym_LBRACK_RBRACK, - STATE(4649), 1, - aux_sym_compound_type_repeat1, - STATE(4718), 1, - sym_type_arguments, - STATE(4767), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5916), 2, - anon_sym_COLON, - anon_sym_as, - STATE(4571), 4, + STATE(4704), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5914), 6, + ACTIONS(3076), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3074), 10, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [93632] = 10, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101548] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -439076,33 +446983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4572), 4, + STATE(4705), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 5, + ACTIONS(3046), 5, anon_sym_COLON, anon_sym_as, anon_sym_when, anon_sym_or, sym_identifier, - ACTIONS(3068), 12, - sym__newline, - sym__dedent, + ACTIONS(3044), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93681] = 10, + [101596] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -439115,33 +447021,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4573), 4, + STATE(4706), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 5, + ACTIONS(2990), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, anon_sym_or, sym_identifier, - ACTIONS(3068), 12, - sym__newline, - sym__dedent, + ACTIONS(2992), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93730] = 12, + [101644] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439152,37 +447057,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_or, - STATE(4614), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4574), 4, + STATE(4707), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 5, + ACTIONS(3068), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(3015), 9, + ACTIONS(3066), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [93783] = 12, + [101692] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439193,37 +447095,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7624), 1, - anon_sym_DOT, - STATE(4581), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7843), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4575), 4, + STATE(4708), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 5, + ACTIONS(3084), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2957), 9, + ACTIONS(3082), 9, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_EQ2, - [93836] = 23, + [101742] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439234,48 +447134,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, - STATE(8031), 1, - sym__member_defns, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4576), 4, + STATE(4709), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [93911] = 23, + ACTIONS(3088), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3090), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101790] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439286,48 +447172,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7626), 1, - anon_sym_y, - ACTIONS(7628), 1, - anon_sym_uy, - ACTIONS(7630), 1, - anon_sym_s, - ACTIONS(7632), 1, - anon_sym_us, - ACTIONS(7634), 1, - anon_sym_l, - ACTIONS(7636), 1, - aux_sym_uint32_token1, - ACTIONS(7638), 1, - anon_sym_n, - ACTIONS(7640), 1, - anon_sym_un, - ACTIONS(7642), 1, - anon_sym_L, - ACTIONS(7644), 1, - aux_sym_uint64_token1, - ACTIONS(7646), 1, - aux_sym_bignum_token1, - ACTIONS(7648), 1, - aux_sym_decimal_token1, - ACTIONS(7650), 1, - anon_sym_DOT2, - ACTIONS(7652), 1, - aux_sym_float_token1, + ACTIONS(6949), 1, + sym_identifier, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7845), 1, + anon_sym_with, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, + STATE(5991), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2526), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4577), 4, + ACTIONS(4823), 2, + anon_sym_and, + anon_sym_interface, + ACTIONS(4821), 3, + anon_sym_LBRACK_LT, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4710), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [93986] = 23, + [101858] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439338,48 +447220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7010), 1, - sym__member_defns, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4578), 4, + STATE(4711), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94061] = 18, + ACTIONS(3092), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(3094), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101906] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439390,43 +447258,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7654), 1, - anon_sym_DASH_GT, - ACTIONS(7656), 1, - anon_sym_STAR, - ACTIONS(7658), 1, - anon_sym_LT2, - ACTIONS(7660), 1, - anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5891), 4, + STATE(4712), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3062), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, - ACTIONS(5893), 4, + anon_sym_when, + sym_identifier, + ACTIONS(3064), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - STATE(4579), 4, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101954] = 12, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7847), 1, + anon_sym_or, + STATE(4784), 1, + aux_sym_type_argument_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2962), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(4713), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94126] = 18, + ACTIONS(2960), 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, + [102005] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439437,43 +447337,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, ACTIONS(7654), 1, - anon_sym_DASH_GT, - ACTIONS(7656), 1, anon_sym_STAR, - ACTIONS(7658), 1, - anon_sym_LT2, - ACTIONS(7660), 1, - anon_sym_LBRACK_RBRACK, STATE(4750), 1, aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5879), 4, + ACTIONS(3013), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - anon_sym_in, - ACTIONS(5881), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4580), 4, + anon_sym_when, + sym_identifier, + STATE(4714), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94191] = 12, + ACTIONS(3015), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102056] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439484,27 +447374,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7624), 1, - anon_sym_DOT, - STATE(4594), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4581), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2973), 5, + ACTIONS(3062), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, sym_identifier, - ACTIONS(2971), 9, + STATE(4715), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3064), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -439513,8 +447400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_EQ2, - [94244] = 10, + [102103] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439525,35 +447413,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4582), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3026), 5, + ACTIONS(3042), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - ACTIONS(3028), 11, - anon_sym_EQ, - anon_sym_RPAREN, + STATE(4716), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3040), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [94293] = 11, + [102150] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439564,36 +447448,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7662), 1, - anon_sym_COLON_GT, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(7849), 1, + anon_sym_do, + ACTIONS(7853), 1, + anon_sym_static, + ACTIONS(7855), 1, + anon_sym_member, + ACTIONS(7857), 1, + anon_sym_abstract, + ACTIONS(7859), 1, + anon_sym_val, + STATE(4443), 1, + sym_additional_constr_defn, + STATE(4446), 1, + sym_function_or_value_defn, + STATE(8256), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4583), 4, + ACTIONS(7851), 2, + anon_sym_default, + anon_sym_override, + STATE(4717), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 5, + [102219] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3096), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - ACTIONS(3062), 10, - anon_sym_EQ, - anon_sym_RPAREN, + STATE(4718), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3098), 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, - [94344] = 23, + [102266] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439604,48 +447533,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(6143), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(7861), 1, + anon_sym_do, + ACTIONS(7865), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(7867), 1, anon_sym_member, - ACTIONS(6748), 1, + ACTIONS(7869), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(7871), 1, anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, + STATE(4516), 1, sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(6983), 1, - sym__member_defns, - STATE(7728), 1, + STATE(4542), 1, + sym_function_or_value_defn, + STATE(8276), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(7863), 2, anon_sym_default, anon_sym_override, - STATE(4584), 4, + STATE(4719), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94419] = 12, + [102335] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -439658,35 +447583,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7664), 1, - anon_sym_or, - STATE(4558), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3017), 4, + ACTIONS(3092), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4585), 4, + STATE(4720), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, + ACTIONS(3094), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [94472] = 13, + [102382] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439697,38 +447620,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2957), 1, - anon_sym_LT2, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - ACTIONS(7668), 1, - anon_sym_LPAREN, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4586), 4, + ACTIONS(2979), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4721), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7666), 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, - [94527] = 23, + ACTIONS(2981), 11, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102429] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439739,48 +447655,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(6178), 1, anon_sym_new, - ACTIONS(6742), 1, + ACTIONS(7873), 1, + anon_sym_do, + ACTIONS(7877), 1, anon_sym_static, - ACTIONS(6744), 1, + ACTIONS(7879), 1, anon_sym_member, - ACTIONS(6748), 1, + ACTIONS(7881), 1, anon_sym_abstract, - ACTIONS(6750), 1, + ACTIONS(7883), 1, anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, + STATE(5085), 1, sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7344), 1, - sym__member_defns, - STATE(7728), 1, + STATE(6681), 1, + sym_function_or_value_defn, + STATE(7896), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, + ACTIONS(7875), 2, anon_sym_default, anon_sym_override, - STATE(4587), 4, + STATE(4722), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94602] = 18, + [102498] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -439793,41 +447705,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, - anon_sym_STAR, - ACTIONS(7594), 1, - anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, - aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(2912), 3, + ACTIONS(3062), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4588), 4, + sym_identifier, + STATE(4723), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2910), 6, + ACTIONS(3064), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [94667] = 23, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102545] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439838,48 +447740,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7648), 1, - sym__member_defns, - STATE(7728), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4589), 4, + ACTIONS(3068), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4724), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94742] = 12, + ACTIONS(3066), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102592] = 21, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439890,37 +447777,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7419), 1, - anon_sym_STAR, - STATE(4561), 1, - aux_sym_compound_type_repeat1, + ACTIONS(7738), 1, + anon_sym_y, + ACTIONS(7740), 1, + anon_sym_uy, + ACTIONS(7742), 1, + anon_sym_s, + ACTIONS(7744), 1, + anon_sym_us, + ACTIONS(7748), 1, + aux_sym_uint32_token1, + ACTIONS(7750), 1, + anon_sym_n, + ACTIONS(7752), 1, + anon_sym_un, + ACTIONS(7756), 1, + aux_sym_uint64_token1, + ACTIONS(7885), 1, + anon_sym_l, + ACTIONS(7887), 1, + anon_sym_L, + ACTIONS(7889), 1, + anon_sym_lf, + ACTIONS(7891), 1, + anon_sym_LF, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4590), 4, + ACTIONS(2526), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4725), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2984), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94795] = 18, + [102661] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -439933,33 +447827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7071), 1, - sym_identifier, - ACTIONS(7532), 1, - anon_sym_DASH_GT, - ACTIONS(7534), 1, - anon_sym_STAR, - ACTIONS(7536), 1, - anon_sym_LT2, - ACTIONS(7538), 1, - anon_sym_LBRACK_RBRACK, - STATE(4623), 1, - aux_sym_compound_type_repeat1, - STATE(4702), 1, - sym_long_identifier, - STATE(4753), 1, - sym_type_arguments, - ACTIONS(5916), 2, + ACTIONS(3060), 4, anon_sym_COLON, anon_sym_as, - STATE(4591), 4, + anon_sym_when, + sym_identifier, + STATE(4726), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5914), 7, + ACTIONS(3058), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -439967,9 +447847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [94860] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102708] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -439980,33 +447862,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4592), 4, + ACTIONS(7895), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4727), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_or, - sym_identifier, - ACTIONS(2975), 12, - sym__newline, + aux_sym_union_type_cases_repeat1, + ACTIONS(7893), 12, 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, - [94909] = 18, + 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, + [102755] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440019,41 +447901,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7565), 1, - anon_sym_DASH_GT, - ACTIONS(7569), 1, - anon_sym_STAR, - ACTIONS(7571), 1, - anon_sym_LT2, - ACTIONS(7573), 1, - anon_sym_LBRACK_RBRACK, - STATE(4749), 1, - aux_sym_compound_type_repeat1, - STATE(4795), 1, - sym_type_arguments, - STATE(4797), 1, - sym_long_identifier, - ACTIONS(2886), 3, + ACTIONS(3088), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4593), 4, + sym_identifier, + STATE(4728), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 6, + ACTIONS(3090), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [94974] = 11, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102802] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440064,36 +447936,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7670), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2988), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4594), 5, + STATE(4729), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 9, + ACTIONS(3176), 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_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_EQ2, - [95025] = 18, + anon_sym_f, + aux_sym_decimal_token1, + [102849] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440106,41 +447975,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, - anon_sym_STAR, - ACTIONS(7594), 1, + ACTIONS(7898), 1, anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, - aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(2886), 3, + ACTIONS(3084), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4595), 4, + anon_sym_when, + sym_identifier, + STATE(4730), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2884), 6, + ACTIONS(3082), 10, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [95090] = 12, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [102898] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440151,26 +448011,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7673), 1, - anon_sym_DOT, - STATE(4616), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2959), 4, + ACTIONS(3088), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4596), 4, + STATE(4731), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 10, + ACTIONS(3090), 10, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -440181,7 +448037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95143] = 13, + [102945] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440192,38 +448050,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2957), 1, - anon_sym_LT2, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - ACTIONS(7677), 1, - anon_sym_LPAREN, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4597), 4, + ACTIONS(7900), 1, + anon_sym_COLON_GT, + ACTIONS(3060), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4732), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7675), 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, - [95198] = 18, + ACTIONS(3058), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102994] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440234,43 +448086,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7654), 1, - anon_sym_DASH_GT, - ACTIONS(7656), 1, - anon_sym_STAR, - ACTIONS(7658), 1, - anon_sym_LT2, - ACTIONS(7660), 1, - anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2912), 4, + ACTIONS(3076), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, - STATE(4598), 4, + sym_identifier, + STATE(4733), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95263] = 11, + ACTIONS(3074), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [103041] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440283,34 +448125,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7679), 1, - anon_sym_or, - ACTIONS(2977), 4, + ACTIONS(3078), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4599), 5, + STATE(4734), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 11, + ACTIONS(3080), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95314] = 17, + [103088] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440321,42 +448160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7419), 1, - anon_sym_STAR, - ACTIONS(7421), 1, - anon_sym_LT2, - ACTIONS(7423), 1, - anon_sym_LBRACK_RBRACK, - STATE(4590), 1, - aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, - sym_long_identifier, + ACTIONS(7904), 1, + anon_sym_PIPE, + STATE(4727), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5891), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_when, - STATE(4600), 4, + STATE(4735), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - [95377] = 18, + ACTIONS(7902), 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, + [103137] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440369,88 +448200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7180), 1, - sym_identifier, - ACTIONS(7565), 1, - anon_sym_DASH_GT, - ACTIONS(7569), 1, - anon_sym_STAR, - ACTIONS(7571), 1, - anon_sym_LT2, - ACTIONS(7573), 1, - anon_sym_LBRACK_RBRACK, - STATE(4749), 1, - aux_sym_compound_type_repeat1, - STATE(4795), 1, - sym_type_arguments, - STATE(4797), 1, - sym_long_identifier, - ACTIONS(2928), 3, + ACTIONS(3060), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4601), 4, + sym_identifier, + STATE(4736), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 6, + ACTIONS(3058), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [95442] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7575), 1, anon_sym_DASH_GT, - ACTIONS(7579), 1, anon_sym_STAR, - ACTIONS(7581), 1, anon_sym_LT2, - ACTIONS(7583), 1, anon_sym_LBRACK_RBRACK, - STATE(4710), 1, - aux_sym_compound_type_repeat1, - STATE(4834), 1, - sym_long_identifier, - STATE(4868), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2926), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2928), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - STATE(4602), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [95507] = 10, + [103184] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440461,35 +448235,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2990), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4603), 4, + STATE(4737), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_or, - sym_identifier, - ACTIONS(3068), 11, + ACTIONS(2992), 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_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95556] = 18, + anon_sym_or, + [103231] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440500,43 +448272,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7654), 1, - anon_sym_DASH_GT, - ACTIONS(7656), 1, - anon_sym_STAR, - ACTIONS(7658), 1, - anon_sym_LT2, - ACTIONS(7660), 1, - anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, + ACTIONS(7904), 1, + anon_sym_PIPE, + STATE(4787), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2884), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2886), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - STATE(4604), 4, + STATE(4738), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95621] = 12, + ACTIONS(7906), 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, + [103280] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440549,23 +448312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7619), 1, - anon_sym_DOT, - STATE(4569), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2959), 4, + ACTIONS(3048), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4605), 4, + STATE(4739), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 11, + ACTIONS(3054), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -440577,7 +448336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95674] = 12, + [103327] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440590,35 +448349,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7682), 1, - anon_sym_or, - STATE(4608), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3026), 4, + ACTIONS(3068), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4606), 4, + STATE(4740), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, + ACTIONS(3066), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95727] = 11, + [103374] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440629,36 +448386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7684), 1, - anon_sym_or, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2977), 5, + ACTIONS(3072), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, anon_sym_when, sym_identifier, - STATE(4607), 5, + STATE(4741), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 9, + ACTIONS(3070), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95778] = 12, + [103421] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440671,37 +448423,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7682), 1, - anon_sym_or, - STATE(4599), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3017), 4, + ACTIONS(3076), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4608), 4, + STATE(4742), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, + ACTIONS(3074), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95831] = 18, - ACTIONS(3), 1, - sym_line_comment, + [103468] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440712,43 +448458,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, - anon_sym_STAR, - ACTIONS(7594), 1, - anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, - aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(2928), 3, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(3096), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4609), 4, + sym_identifier, + STATE(4743), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 6, + ACTIONS(3098), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [95896] = 12, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [103515] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440759,35 +448495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7664), 1, - anon_sym_or, - STATE(4585), 1, - aux_sym_type_argument_repeat1, - ACTIONS(3026), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(3042), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4610), 4, + STATE(4744), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, + ACTIONS(3040), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95949] = 10, + [103562] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -440800,20 +448534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4611), 4, + ACTIONS(3072), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4745), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - anon_sym_or, - sym_identifier, - ACTIONS(2975), 12, + ACTIONS(3070), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -440821,12 +448554,11 @@ 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, - [95998] = 18, + [103609] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440837,43 +448569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7575), 1, - anon_sym_DASH_GT, - ACTIONS(7579), 1, - anon_sym_STAR, - ACTIONS(7581), 1, - anon_sym_LT2, - ACTIONS(7583), 1, - anon_sym_LBRACK_RBRACK, - STATE(4710), 1, - aux_sym_compound_type_repeat1, - STATE(4834), 1, - sym_long_identifier, - STATE(4868), 1, - sym_type_arguments, + ACTIONS(6387), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, + STATE(4746), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6389), 13, + 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, - ACTIONS(2912), 4, - anon_sym_COLON, - anon_sym_as, anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, anon_sym_when, - STATE(4612), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [96063] = 18, + anon_sym_LT2, + [103656] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440884,43 +448606,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, - sym_identifier, - ACTIONS(7654), 1, - anon_sym_DASH_GT, - ACTIONS(7656), 1, - anon_sym_STAR, - ACTIONS(7658), 1, - anon_sym_LT2, - ACTIONS(7660), 1, - anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, + ACTIONS(5890), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 4, + STATE(4747), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5892), 13, + 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, - ACTIONS(2928), 4, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [103703] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3068), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, - STATE(4613), 4, + sym_identifier, + STATE(4748), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [96128] = 11, + ACTIONS(3066), 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, + [103750] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440931,36 +448680,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7687), 1, - anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2977), 5, + STATE(4749), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2979), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(2981), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [103797] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7908), 1, + anon_sym_STAR, + ACTIONS(2886), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4614), 5, + STATE(4750), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 9, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96179] = 18, + [103846] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -440971,43 +448755,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, + ACTIONS(6906), 1, sym_identifier, - ACTIONS(7575), 1, + ACTIONS(7288), 1, anon_sym_DASH_GT, - ACTIONS(7579), 1, + ACTIONS(7290), 1, anon_sym_STAR, - ACTIONS(7581), 1, + ACTIONS(7292), 1, anon_sym_LT2, - ACTIONS(7583), 1, + ACTIONS(7294), 1, anon_sym_LBRACK_RBRACK, - STATE(4710), 1, + ACTIONS(7911), 1, + anon_sym_with, + STATE(4363), 1, aux_sym_compound_type_repeat1, - STATE(4834), 1, + STATE(4402), 1, sym_long_identifier, - STATE(4868), 1, + STATE(4404), 1, sym_type_arguments, + STATE(6183), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2916), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - STATE(4615), 4, + ACTIONS(4821), 2, + anon_sym_LBRACK_LT, + anon_sym_POUNDendif, + ACTIONS(4823), 2, + anon_sym_and, + anon_sym_interface, + STATE(4751), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [96244] = 12, + [103913] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441018,37 +448804,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7673), 1, - anon_sym_DOT, - STATE(4618), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2973), 4, + ACTIONS(3076), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4616), 4, + STATE(4752), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3074), 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, - [96297] = 18, + [103960] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441059,43 +448841,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, + ACTIONS(3048), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, sym_identifier, - ACTIONS(7654), 1, + STATE(4753), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3054), 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(7656), 1, anon_sym_STAR, - ACTIONS(7658), 1, anon_sym_LT2, - ACTIONS(7660), 1, anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, + [104007] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2914), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2916), 4, + ACTIONS(3092), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_in, - STATE(4617), 4, + sym_identifier, + STATE(4754), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [96362] = 11, + ACTIONS(3094), 10, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [104054] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441106,25 +448913,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7690), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2988), 4, + ACTIONS(3078), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4618), 5, + STATE(4755), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 10, + ACTIONS(3080), 10, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -441135,7 +448939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96413] = 10, + [104101] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441146,35 +448950,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4619), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2988), 5, + ACTIONS(3048), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - ACTIONS(2990), 11, + STATE(4756), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3054), 10, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96462] = 17, + [104148] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441185,42 +448987,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7419), 1, - anon_sym_STAR, - ACTIONS(7421), 1, - anon_sym_LT2, - ACTIONS(7423), 1, - anon_sym_LBRACK_RBRACK, - STATE(4590), 1, - aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5879), 4, + ACTIONS(3072), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4620), 4, + sym_identifier, + STATE(4757), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 5, + ACTIONS(3070), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_DASH_GT, - [96525] = 18, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [104195] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441231,43 +449026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7575), 1, - anon_sym_DASH_GT, - ACTIONS(7579), 1, - anon_sym_STAR, - ACTIONS(7581), 1, - anon_sym_LT2, - ACTIONS(7583), 1, - anon_sym_LBRACK_RBRACK, - STATE(4710), 1, - aux_sym_compound_type_repeat1, - STATE(4834), 1, - sym_long_identifier, - STATE(4868), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2884), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2886), 4, + ACTIONS(7913), 1, + anon_sym_COLON_GT, + ACTIONS(3060), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, anon_sym_when, - STATE(4621), 4, + sym_identifier, + STATE(4758), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [96590] = 23, + ACTIONS(3058), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [104244] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441278,48 +449062,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_member, - ACTIONS(6748), 1, - anon_sym_abstract, - ACTIONS(6750), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4466), 1, - sym_member_defn, - STATE(5139), 1, - sym_additional_constr_defn, - STATE(5344), 1, - sym_attributes, - STATE(7728), 1, - sym_access_modifier, - STATE(7747), 1, - sym__member_defns, + ACTIONS(7915), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6740), 2, - anon_sym_default, - anon_sym_override, - STATE(4622), 4, + ACTIONS(2886), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4759), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [96665] = 12, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 7, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [104293] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -441332,34 +449102,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7534), 1, - anon_sym_STAR, - STATE(4678), 1, - aux_sym_compound_type_repeat1, - ACTIONS(2986), 4, + ACTIONS(2979), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4623), 4, + STATE(4760), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 10, - sym__newline, - sym__dedent, + ACTIONS(2981), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96717] = 10, + [104340] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441370,34 +449137,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7644), 1, + anon_sym_STAR, + STATE(4759), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4624), 4, + STATE(4761), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3044), 5, + ACTIONS(3013), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, anon_sym_when, sym_identifier, - ACTIONS(3046), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3015), 7, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96765] = 11, + [104391] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441408,35 +449176,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7693), 1, - anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2988), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4625), 5, + STATE(4762), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 8, + ACTIONS(3134), 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_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96815] = 11, + anon_sym_f, + aux_sym_decimal_token1, + [104438] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -441449,22 +449215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7696), 1, - anon_sym_STAR, - ACTIONS(2916), 4, + ACTIONS(3078), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4626), 5, + STATE(4763), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 10, + ACTIONS(3080), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -441473,9 +449236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96865] = 10, + [104485] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441486,34 +449252,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2988), 4, + ACTIONS(3088), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4627), 4, + STATE(4764), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 11, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3090), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [96913] = 13, + [104532] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441524,37 +449287,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2988), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5563), 1, - anon_sym_LBRACK_LT, - STATE(4664), 1, - aux_sym_attributes_repeat1, - STATE(4782), 1, - sym__attribute_set, + ACTIONS(7918), 1, + anon_sym_DOT, + STATE(4790), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6730), 2, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4628), 4, + STATE(4765), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6728), 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, - [96967] = 10, + ACTIONS(2986), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104583] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -441567,19 +449328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3026), 4, + ACTIONS(3042), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4629), 4, + STATE(4766), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 12, + ACTIONS(3040), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -441587,12 +449348,11 @@ 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, - [97015] = 10, + [104630] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441603,34 +449363,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7920), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4630), 4, + STATE(4767), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 6, + ACTIONS(3060), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_or, + anon_sym_when, sym_identifier, - ACTIONS(2975), 9, + ACTIONS(3058), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97063] = 18, + [104679] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441641,42 +449403,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7126), 1, + ACTIONS(3096), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, sym_identifier, - ACTIONS(7654), 1, + STATE(4768), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3098), 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(7656), 1, anon_sym_STAR, - ACTIONS(7658), 1, anon_sym_LT2, - ACTIONS(7660), 1, anon_sym_LBRACK_RBRACK, - STATE(4750), 1, - aux_sym_compound_type_repeat1, - STATE(4792), 1, - sym_type_arguments, - STATE(4878), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, + [104726] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(5916), 3, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3092), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, - ACTIONS(5914), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4631), 4, + anon_sym_when, + sym_identifier, + STATE(4769), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [97127] = 12, + ACTIONS(3094), 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, + [104773] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -441689,34 +449477,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7699), 1, - anon_sym_DOT, - STATE(4643), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2959), 4, + ACTIONS(3062), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4632), 4, + STATE(4770), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 10, + ACTIONS(3064), 11, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97179] = 10, + [104820] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -441729,32 +449514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4633), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3066), 5, + ACTIONS(7922), 1, + anon_sym_STAR, + ACTIONS(2886), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_or, sym_identifier, - ACTIONS(3068), 11, + STATE(4771), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97227] = 11, + [104869] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441765,22 +449550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7701), 1, - aux_sym_float_token1, + ACTIONS(5906), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4634), 4, + STATE(4772), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 13, + ACTIONS(5908), 13, anon_sym_EQ, + anon_sym_and, anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, @@ -441789,11 +449573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_in, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_when, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [97277] = 11, + [104916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441804,27 +449587,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7705), 1, - anon_sym_STAR, - STATE(4662), 1, - aux_sym_union_type_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4635), 4, + STATE(4773), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7703), 13, + ACTIONS(7800), 14, sym__dedent, anon_sym_LBRACK_LT, 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, @@ -441832,7 +449612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [97327] = 12, + [104961] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441843,113 +449623,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7707), 1, - anon_sym_DOT, - STATE(4625), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4636), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2973), 5, + ACTIONS(3046), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(2971), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97379] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7709), 1, - anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2916), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4637), 5, + STATE(4774), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 9, + ACTIONS(3044), 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_in, anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97429] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(4638), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2977), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, anon_sym_or, - sym_identifier, - ACTIONS(2975), 11, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97477] = 10, + [105008] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -441960,24 +449660,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4639), 4, + STATE(4775), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 6, + ACTIONS(2979), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_or, sym_identifier, - ACTIONS(3068), 9, + ACTIONS(2981), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -441987,9 +449686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97525] = 11, - ACTIONS(3), 1, - sym_line_comment, + [105055] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442000,33 +449697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7712), 1, - anon_sym_DOT, - ACTIONS(2988), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(3060), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4640), 5, + STATE(4776), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 10, + ACTIONS(3058), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97575] = 10, + [105102] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442037,34 +449734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6596), 1, + aux_sym_decimal_token1, + ACTIONS(6729), 1, + anon_sym_f, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4641), 4, + STATE(4777), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3054), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3052), 10, + ACTIONS(2526), 11, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97623] = 22, + [105153] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442075,86 +449773,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(5579), 1, - anon_sym_new, - ACTIONS(7715), 1, - sym_identifier, - ACTIONS(7717), 1, - anon_sym_do, - ACTIONS(7721), 1, - anon_sym_static, - ACTIONS(7723), 1, - anon_sym_member, - ACTIONS(7725), 1, - anon_sym_abstract, - ACTIONS(7727), 1, - anon_sym_val, - STATE(5093), 1, - sym_additional_constr_defn, - STATE(6682), 1, - sym_function_or_value_defn, - STATE(7793), 1, - sym_access_modifier, + ACTIONS(7925), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7719), 2, - anon_sym_default, - anon_sym_override, - STATE(4642), 4, + STATE(4778), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [97695] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7699), 1, - anon_sym_DOT, - STATE(4640), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2973), 4, + ACTIONS(3060), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - STATE(4643), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2971), 10, + ACTIONS(3058), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97747] = 11, + [105202] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442165,25 +449811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6790), 1, - anon_sym_COLON, - ACTIONS(7598), 1, - anon_sym_of, + ACTIONS(7904), 1, + anon_sym_PIPE, + STATE(4735), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4644), 4, + STATE(4779), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6788), 13, + ACTIONS(7927), 12, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_with, anon_sym_new, anon_sym_default, @@ -442193,7 +449838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [97797] = 11, + [105251] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -442206,33 +449851,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7729), 1, - anon_sym_DOT, - ACTIONS(2988), 4, + ACTIONS(2964), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4645), 5, + STATE(4780), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 10, + ACTIONS(2966), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97847] = 10, + [105298] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442243,34 +449886,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7929), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3026), 4, + ACTIONS(3084), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4646), 4, + STATE(4781), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, + ACTIONS(3082), 9, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97895] = 10, + [105347] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442281,34 +449926,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4647), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3064), 5, + ACTIONS(7931), 1, + anon_sym_LT2, + ACTIONS(3084), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - ACTIONS(3062), 10, - anon_sym_EQ, - anon_sym_RPAREN, + STATE(4782), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3082), 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_LT2, anon_sym_LBRACK_RBRACK, - [97943] = 12, + [105396] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -442321,34 +449964,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7732), 1, - anon_sym_DOT, - STATE(4645), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2973), 4, + ACTIONS(2964), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4648), 4, + STATE(4783), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 10, + ACTIONS(2966), 11, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [97995] = 12, + [105443] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442359,36 +449999,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7542), 1, - anon_sym_STAR, - STATE(4637), 1, - aux_sym_compound_type_repeat1, + ACTIONS(7933), 1, + anon_sym_or, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2986), 4, + ACTIONS(2990), 3, anon_sym_COLON, anon_sym_and, - anon_sym_as, sym_identifier, - STATE(4649), 4, + STATE(4784), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 9, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 9, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [98047] = 10, + [105492] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442399,36 +450037,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6434), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4650), 4, + STATE(4785), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 6, - anon_sym_COLON, + ACTIONS(6436), 13, + anon_sym_EQ, + anon_sym_and, anon_sym_as, - anon_sym_in, - anon_sym_when, - anon_sym_or, - sym_identifier, - ACTIONS(2975), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98095] = 18, - ACTIONS(3), 1, - sym_line_comment, + [105539] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442439,40 +450074,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - sym_identifier, - ACTIONS(7590), 1, - anon_sym_DASH_GT, - ACTIONS(7592), 1, - anon_sym_STAR, - ACTIONS(7594), 1, - anon_sym_LT2, - ACTIONS(7596), 1, - anon_sym_LBRACK_RBRACK, - STATE(4742), 1, - aux_sym_compound_type_repeat1, - STATE(4810), 1, - sym_type_arguments, - STATE(4851), 1, - sym_long_identifier, - ACTIONS(5916), 2, + ACTIONS(6430), 1, anon_sym_COLON, - anon_sym_as, - STATE(4651), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4786), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5914), 6, + ACTIONS(6432), 13, + 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_RBRACE, - [98159] = 10, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [105586] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442483,34 +450111,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7904), 1, + anon_sym_PIPE, + STATE(4727), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4652), 4, + STATE(4787), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3082), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3084), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98207] = 10, + ACTIONS(7927), 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, + [105635] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442521,34 +450149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6426), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4653), 4, + STATE(4788), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 5, - anon_sym_COLON, + ACTIONS(6428), 13, + anon_sym_EQ, anon_sym_and, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2990), 10, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_EQ2, - [98255] = 12, + [105682] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442559,38 +450186,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7734), 1, - anon_sym_or, - STATE(4658), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4654), 4, + STATE(4789), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 12, - anon_sym_EQ, + ACTIONS(2964), 5, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(2966), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - [98307] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_LBRACK_RBRACK, + [105729] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442601,32 +450223,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2956), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4655), 4, + ACTIONS(7918), 1, + anon_sym_DOT, + STATE(4794), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4790), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 5, - anon_sym_COLON, + ACTIONS(2954), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_when, - anon_sym_or, - sym_identifier, - ACTIONS(3068), 11, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98355] = 11, + [105780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442637,23 +450262,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7738), 1, - anon_sym_COLON, - ACTIONS(7740), 1, - anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4656), 4, + STATE(4791), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7736), 13, + ACTIONS(3219), 14, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_PIPE, anon_sym_with, @@ -442661,11 +450284,10 @@ 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, - [98405] = 20, + [105825] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442676,44 +450298,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(7702), 1, anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7742), 1, - anon_sym_with, - STATE(3972), 1, + STATE(4796), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, - STATE(5926), 1, - sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4819), 2, + STATE(4792), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3013), 5, + anon_sym_COLON, anon_sym_and, - anon_sym_interface, - ACTIONS(4817), 3, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - STATE(4657), 4, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(3015), 7, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [105876] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7669), 1, + anon_sym_STAR, + STATE(4771), 1, + aux_sym_compound_type_repeat1, + ACTIONS(3013), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4793), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [98473] = 12, + ACTIONS(3015), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [105927] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442724,23 +450376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3017), 1, + ACTIONS(2964), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7734), 1, - anon_sym_or, - STATE(4685), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7936), 1, + anon_sym_DOT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4658), 4, + STATE(4794), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 12, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -442750,12 +450401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - [98525] = 12, - ACTIONS(3), 1, - sym_line_comment, + [105976] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442766,36 +450414,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7732), 1, - anon_sym_DOT, - STATE(4648), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2959), 4, + ACTIONS(6418), 1, anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4659), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4795), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 10, + ACTIONS(6420), 13, + 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_RBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98577] = 12, - ACTIONS(3), 1, - sym_line_comment, + [106023] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442806,34 +450451,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7464), 1, + ACTIONS(7939), 1, anon_sym_STAR, - STATE(4626), 1, - aux_sym_compound_type_repeat1, - ACTIONS(2986), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2886), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - STATE(4660), 4, + STATE(4796), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 10, - sym__newline, - sym__dedent, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 7, 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, - [98629] = 12, + [106072] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7950), 1, + anon_sym_DQUOTE, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4797), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106130] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442844,36 +450531,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7668), 1, - anon_sym_LPAREN, - ACTIONS(7744), 1, - anon_sym_LT2, - STATE(4859), 1, - sym_type_arguments, + ACTIONS(7960), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4661), 4, + STATE(4798), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7666), 12, - anon_sym_EQ, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 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, - [98681] = 10, + [106176] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7963), 1, + anon_sym_DQUOTE, + STATE(4811), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4799), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106234] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442884,34 +450609,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, - anon_sym_STAR, + ACTIONS(7965), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4662), 5, + STATE(4800), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_union_type_fields_repeat1, - ACTIONS(7746), 13, - sym__dedent, + ACTIONS(4937), 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, - [98729] = 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [106280] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442922,35 +450645,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3146), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7751), 1, - sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4663), 4, + STATE(4801), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3148), 13, - anon_sym_EQ, + ACTIONS(3042), 5, + anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(3040), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [106326] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4802), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3078), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_in, + sym_identifier, + ACTIONS(3080), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [98779] = 12, + anon_sym_LBRACK_RBRACK, + [106372] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -442961,27 +450717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7753), 1, - anon_sym_LBRACK_LT, - STATE(4782), 1, - sym__attribute_set, + ACTIONS(7967), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6706), 2, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4664), 5, + STATE(4803), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6701), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(4853), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -442989,10 +450740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [98831] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [106418] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443003,34 +450753,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3026), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4665), 4, + ACTIONS(7969), 1, + anon_sym_with, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4804), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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, - [98879] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(4853), 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, + [106464] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443041,32 +450789,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4666), 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4805), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 12, - sym__newline, - 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, - [98927] = 11, + ACTIONS(7971), 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, + [106510] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -443079,33 +450827,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7756), 1, - anon_sym_COLON_GT, - ACTIONS(3064), 4, + ACTIONS(3060), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4667), 4, + STATE(4806), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 11, - sym__newline, - sym__dedent, + ACTIONS(3058), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [98977] = 10, + [106556] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443116,34 +450863,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4668), 4, + ACTIONS(7975), 1, + anon_sym_LT2, + ACTIONS(3084), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4807), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3066), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - anon_sym_or, - sym_identifier, - ACTIONS(3068), 9, + ACTIONS(3082), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [99025] = 11, + [106604] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443154,35 +450898,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7758), 1, - anon_sym_COLON_GT, + ACTIONS(7979), 1, + anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4669), 4, + STATE(4808), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, + ACTIONS(7977), 12, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99075] = 10, + 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, + [106650] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443193,34 +450934,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7981), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4670), 4, + STATE(4809), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3093), 5, - anon_sym_COLON, + ACTIONS(4903), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3095), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99123] = 12, + 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, + [106696] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443231,120 +450970,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7677), 1, - anon_sym_LPAREN, - ACTIONS(7744), 1, - anon_sym_LT2, - STATE(4882), 1, - sym_type_arguments, + ACTIONS(7983), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4671), 4, + STATE(4810), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7675), 12, - anon_sym_EQ, + ACTIONS(4903), 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, - [99175] = 18, - ACTIONS(7), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [106742] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7985), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7417), 1, - anon_sym_DASH_GT, - ACTIONS(7419), 1, - anon_sym_STAR, - ACTIONS(7421), 1, - anon_sym_LT2, - ACTIONS(7423), 1, - anon_sym_LBRACK_RBRACK, - STATE(4590), 1, - aux_sym_compound_type_repeat1, - STATE(4652), 1, - sym_type_arguments, - STATE(4674), 1, - sym_long_identifier, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5916), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - ACTIONS(5914), 4, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4672), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4811), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99239] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [106800] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7987), 1, + anon_sym_DQUOTE, + STATE(4813), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4673), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4812), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 12, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + [106858] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7989), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99287] = 10, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4813), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106916] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443355,25 +451132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4674), 4, + STATE(4814), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3072), 5, + ACTIONS(3076), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(3076), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3074), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -443382,46 +451157,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [99335] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [106962] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7991), 1, + anon_sym_DQUOTE, + STATE(4893), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7760), 1, - anon_sym_COLON_GT, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4675), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4815), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 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, - [99385] = 10, + [107020] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443432,36 +451210,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7993), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4676), 4, + STATE(4816), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3099), 5, - anon_sym_COLON, + ACTIONS(4964), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3097), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99433] = 10, - ACTIONS(3), 1, - sym_line_comment, + 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, + [107066] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443472,34 +451246,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4677), 4, + ACTIONS(7995), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4817), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2977), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - anon_sym_or, - sym_identifier, - ACTIONS(2975), 11, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + 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, + [107112] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(7997), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99481] = 11, - ACTIONS(3), 1, sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4818), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107170] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443510,33 +451324,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7762), 1, - anon_sym_STAR, - ACTIONS(2916), 4, - anon_sym_COLON, + ACTIONS(7999), 1, anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4678), 5, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4819), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 10, - sym__newline, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 11, 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, - [99531] = 12, + anon_sym_LBRACK_LT, + 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, + [107216] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443547,36 +451360,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7602), 1, - anon_sym_LPAREN, - ACTIONS(7744), 1, - anon_sym_LT2, - STATE(4801), 1, - sym_type_arguments, + ACTIONS(8002), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4679), 4, + STATE(4820), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7600), 12, - anon_sym_EQ, + ACTIONS(4853), 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, - [99583] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107262] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8004), 1, + anon_sym_DQUOTE, + STATE(4818), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4821), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107320] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443587,34 +451438,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8006), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4680), 4, + STATE(4822), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 5, - anon_sym_COLON, + ACTIONS(4927), 12, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3103), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99631] = 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, + [107366] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443625,34 +451474,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8008), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4681), 4, + STATE(4823), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3042), 5, - anon_sym_COLON, + ACTIONS(4943), 12, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3040), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99679] = 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, + [107412] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8010), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4824), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107470] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443663,25 +451552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4682), 4, + STATE(4825), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, ACTIONS(3048), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, anon_sym_when, sym_identifier, - ACTIONS(3050), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3054), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -443690,7 +451577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [99727] = 11, + [107516] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443701,26 +451588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7705), 1, - anon_sym_STAR, - STATE(4635), 1, - aux_sym_union_type_fields_repeat1, + ACTIONS(8012), 1, + anon_sym_and, + STATE(4819), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4683), 4, + STATE(4826), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7765), 13, + ACTIONS(4958), 11, 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, @@ -443729,7 +451614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [99777] = 11, + [107564] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443740,35 +451625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7767), 1, - anon_sym_LT2, + ACTIONS(8014), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4684), 4, + STATE(4827), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3058), 5, - anon_sym_COLON, + ACTIONS(4913), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(3056), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [99827] = 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, + [107610] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443779,35 +451661,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7769), 1, - anon_sym_or, + ACTIONS(8016), 1, + anon_sym_and, + STATE(4849), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4685), 5, + STATE(4828), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [99877] = 12, + ACTIONS(4970), 11, + 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, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107658] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443818,27 +451698,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7707), 1, - anon_sym_DOT, - STATE(4636), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4686), 4, + STATE(4829), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2959), 5, + ACTIONS(3096), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_when, sym_identifier, - ACTIONS(2957), 8, + ACTIONS(3098), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -443847,7 +451723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [99929] = 20, + [107704] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443858,44 +451734,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6816), 1, - sym_identifier, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7772), 1, - anon_sym_with, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, - sym_long_identifier, - STATE(5867), 1, - sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4819), 2, - anon_sym_and, - anon_sym_interface, - ACTIONS(4817), 3, - anon_sym_LBRACK_LT, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4687), 4, + STATE(4830), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99997] = 10, + ACTIONS(3092), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(3094), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [107750] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443906,33 +451772,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4688), 4, + ACTIONS(3068), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4831), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 13, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, + ACTIONS(3066), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [100044] = 10, + anon_sym_LBRACK_RBRACK, + [107796] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443943,33 +451808,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(3054), 4, + ACTIONS(3072), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4689), 4, + STATE(4832), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3070), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [100091] = 21, + [107842] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -443980,44 +451842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7626), 1, - anon_sym_y, - ACTIONS(7628), 1, - anon_sym_uy, - ACTIONS(7630), 1, - anon_sym_s, - ACTIONS(7632), 1, - anon_sym_us, - ACTIONS(7636), 1, - aux_sym_uint32_token1, - ACTIONS(7638), 1, - anon_sym_n, - ACTIONS(7640), 1, - anon_sym_un, - ACTIONS(7644), 1, - aux_sym_uint64_token1, - ACTIONS(7774), 1, - anon_sym_l, - ACTIONS(7776), 1, - anon_sym_L, - ACTIONS(7778), 1, - anon_sym_lf, - ACTIONS(7780), 1, - anon_sym_LF, + ACTIONS(8018), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2526), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4690), 4, + STATE(4833), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [100160] = 12, + ACTIONS(4913), 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, + [107888] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444028,35 +451878,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, - anon_sym_DOT, - STATE(4694), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4691), 4, + STATE(4834), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 11, - anon_sym_EQ, + ACTIONS(3072), 5, + anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(3070), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - [100211] = 9, + anon_sym_LBRACK_RBRACK, + [107934] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8020), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4835), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107992] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8022), 1, + anon_sym_DQUOTE, + STATE(4835), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4836), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [108050] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8024), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4837), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [108108] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444067,146 +452040,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8026), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4692), 4, + STATE(4838), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7746), 14, + ACTIONS(4937), 12, + sym__newline, sym__dedent, 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, - [100256] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [108154] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8028), 1, + anon_sym_DQUOTE, + STATE(4824), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7784), 1, - anon_sym_LT2, - ACTIONS(3058), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4693), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4839), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 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, - [100305] = 12, - ACTIONS(7), 1, + [108212] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8030), 1, + anon_sym_DQUOTE, + STATE(4860), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2973), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, - anon_sym_DOT, - STATE(4744), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4694), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4840), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [100356] = 10, - ACTIONS(7), 1, + [108270] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8032), 1, + anon_sym_DQUOTE, + STATE(4847), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6380), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4695), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4841), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6382), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [100403] = 10, + [108328] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444217,35 +452202,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4696), 4, + STATE(4842), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 5, + ACTIONS(3068), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, anon_sym_in, sym_identifier, - ACTIONS(3028), 9, + ACTIONS(3066), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [100450] = 11, - ACTIONS(3), 1, - sym_line_comment, + [108374] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444256,32 +452238,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7786), 1, - anon_sym_LT2, - ACTIONS(3058), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4697), 4, + ACTIONS(8034), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4843), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 10, + ACTIONS(4903), 12, 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, - [100499] = 10, + 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, + [108420] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444292,35 +452274,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8012), 1, + anon_sym_and, + STATE(4826), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4698), 4, + STATE(4844), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100546] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(4970), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [108468] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444331,68 +452311,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3026), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4699), 4, + ACTIONS(8038), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4845), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8036), 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, + [108514] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8040), 1, + anon_sym_DQUOTE, + STATE(4837), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100593] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4846), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [108572] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8042), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3054), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4700), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4847), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 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, - [100640] = 11, + [108630] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444403,22 +452431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7790), 1, - anon_sym_PIPE, - STATE(4732), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(7732), 1, + anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4701), 4, + STATE(4848), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7788), 12, - sym__dedent, + ACTIONS(7730), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_with, @@ -444430,9 +452456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [100689] = 10, - ACTIONS(3), 1, - sym_line_comment, + [108676] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444443,31 +452467,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3072), 4, - anon_sym_COLON, + ACTIONS(8016), 1, anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4702), 4, + STATE(4855), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4849), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 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, - [100736] = 9, + ACTIONS(4958), 11, + 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, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [108724] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444478,24 +452504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8044), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4703), 4, + STATE(4850), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 14, + ACTIONS(4853), 12, sym__newline, sym__dedent, 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, @@ -444503,7 +452529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [100781] = 10, + [108770] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -444516,31 +452542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3082), 4, + ACTIONS(3076), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4704), 4, + STATE(4851), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 11, - sym__newline, - sym__dedent, + ACTIONS(3074), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [100828] = 10, + [108816] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444551,33 +452576,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8046), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3099), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4705), 4, + STATE(4852), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100875] = 10, + ACTIONS(4853), 12, + sym__newline, + sym__dedent, + 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, + [108862] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444588,70 +452612,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6376), 1, - anon_sym_COLON, + ACTIONS(8048), 1, + anon_sym_interface, + STATE(5208), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4706), 4, + STATE(4853), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6378), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [100922] = 10, - ACTIONS(7), 1, + aux_sym__object_expression_inner_repeat1, + ACTIONS(5200), 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, + [108910] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8051), 1, + anon_sym_DQUOTE, + STATE(4859), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6384), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4707), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4854), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6386), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [100969] = 11, + [108968] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444662,71 +452691,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7792), 1, - anon_sym_COLON_GT, + ACTIONS(8053), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4708), 4, + STATE(4855), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3062), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101018] = 10, - ACTIONS(7), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 11, + 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, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [109014] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8062), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8065), 1, + anon_sym_LBRACE2, + ACTIONS(8068), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + sym__inside_string_marker, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6388), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4709), 4, + ACTIONS(8056), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8059), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4856), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6390), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [101065] = 12, + aux_sym_format_string_repeat1, + [109070] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444737,35 +452768,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7579), 1, - anon_sym_STAR, - STATE(4764), 1, - aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4710), 4, + STATE(4857), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 5, + ACTIONS(3062), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_when, sym_identifier, - ACTIONS(2984), 7, + ACTIONS(3064), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [101116] = 10, + [109116] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444776,19 +452804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2977), 1, + ACTIONS(2964), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4711), 4, + STATE(4858), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 13, + ACTIONS(2966), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -444796,135 +452824,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_DOT, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - anon_sym_or, - [101163] = 10, - ACTIONS(7), 1, + [109162] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8073), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5891), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4712), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4859), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [101210] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + [109220] = 16, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3093), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4713), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3095), 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, - [101257] = 21, - ACTIONS(7), 1, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8075), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(7794), 1, - anon_sym_do, - ACTIONS(7798), 1, - anon_sym_static, - ACTIONS(7800), 1, - anon_sym_member, - ACTIONS(7802), 1, - anon_sym_abstract, - ACTIONS(7804), 1, - anon_sym_val, - STATE(4369), 1, - sym_additional_constr_defn, - STATE(4440), 1, - sym_function_or_value_defn, - STATE(8121), 1, - sym_access_modifier, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7796), 2, - anon_sym_default, - anon_sym_override, - STATE(4714), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4860), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101326] = 10, + [109278] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444935,19 +452924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3188), 1, + ACTIONS(2979), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4715), 4, + STATE(4861), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3190), 13, + ACTIONS(2981), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -444957,11 +452946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_in, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_when, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [101373] = 10, + [109324] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -444972,107 +452960,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3048), 4, + ACTIONS(2990), 4, anon_sym_COLON, anon_sym_and, - anon_sym_as, + anon_sym_or, sym_identifier, - STATE(4716), 4, + STATE(4862), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 10, + ACTIONS(2992), 9, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [101420] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + [109370] = 16, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(3042), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4717), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3040), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101467] = 10, - ACTIONS(7), 1, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8077), 1, + anon_sym_DQUOTE, + STATE(4878), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3082), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4718), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4863), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101514] = 10, + [109428] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445083,33 +453038,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8079), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3101), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4719), 4, + STATE(4864), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101561] = 10, + ACTIONS(4903), 12, + sym__newline, + sym__dedent, + 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, + [109474] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -445122,182 +453076,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3026), 4, + ACTIONS(3048), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4720), 4, + STATE(4865), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 11, + ACTIONS(3054), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [101608] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + [109520] = 16, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4721), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3062), 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, - [101655] = 11, - ACTIONS(7), 1, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8081), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7806), 1, - anon_sym_COLON_GT, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4722), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4866), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3062), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101704] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + [109578] = 16, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_COLON, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4723), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6280), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [101751] = 10, - ACTIONS(7), 1, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8083), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5879), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4724), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4867), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 13, - 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [101798] = 10, - ACTIONS(3), 1, - sym_line_comment, + [109636] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445308,68 +453194,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3048), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4725), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3050), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [101845] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3072), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4726), 4, + STATE(4868), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 11, - sym__newline, + ACTIONS(3219), 13, 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, - [101892] = 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, + [109680] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445380,147 +453229,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7808), 1, - anon_sym_or, - STATE(4735), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3017), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4727), 4, + ACTIONS(6922), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(4869), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 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, - [101943] = 10, - ACTIONS(7), 1, + ACTIONS(6920), 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, + [109726] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8085), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3066), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4728), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4870), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - anon_sym_or, - [101990] = 11, - ACTIONS(7), 1, + [109784] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8087), 1, + anon_sym_DQUOTE, + STATE(4867), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7810), 1, - anon_sym_LT2, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3058), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4729), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3056), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [102039] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4730), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4871), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3062), 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, - [102086] = 10, + sym_preproc_line, + [109842] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -445533,31 +453351,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3048), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4731), 4, + STATE(4872), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 11, - sym__newline, - sym__dedent, + ACTIONS(3054), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [102133] = 11, + [109888] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445568,84 +453385,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2910), 1, + anon_sym_and, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7790), 1, - anon_sym_PIPE, - STATE(4765), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4732), 4, + ACTIONS(2908), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(4873), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7812), 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, - [102182] = 21, - ACTIONS(7), 1, + [109950] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8095), 1, + anon_sym_DQUOTE, + STATE(4866), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(7814), 1, - anon_sym_do, - ACTIONS(7818), 1, - anon_sym_static, - ACTIONS(7820), 1, - anon_sym_member, - ACTIONS(7822), 1, - anon_sym_abstract, - ACTIONS(7824), 1, - anon_sym_val, - STATE(5093), 1, - sym_additional_constr_defn, - STATE(6682), 1, - sym_function_or_value_defn, - STATE(7793), 1, - sym_access_modifier, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7816), 2, - anon_sym_default, - anon_sym_override, - STATE(4733), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4874), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102251] = 11, - ACTIONS(3), 1, - sym_line_comment, + [110008] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445656,32 +453471,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, - anon_sym_COLON_GT, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4734), 4, + STATE(4853), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5208), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4875), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102300] = 11, + ACTIONS(5194), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [110056] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445692,36 +453508,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7828), 1, - anon_sym_or, + ACTIONS(8097), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2977), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4735), 5, + STATE(4876), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 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, - [102349] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(4964), 12, + sym__newline, + sym__dedent, + 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, + [110102] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445732,118 +453544,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3054), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4736), 4, + ACTIONS(8099), 1, + anon_sym_LT2, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4877), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 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, - [102396] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3093), 4, + ACTIONS(3084), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, + anon_sym_in, sym_identifier, - STATE(4737), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3095), 11, - sym__newline, - sym__dedent, + ACTIONS(3082), 7, 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, - [102443] = 21, - ACTIONS(7), 1, + [110150] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8101), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(6087), 1, - anon_sym_new, - ACTIONS(7831), 1, - anon_sym_do, - ACTIONS(7835), 1, - anon_sym_static, - ACTIONS(7837), 1, - anon_sym_member, - ACTIONS(7839), 1, - anon_sym_abstract, - ACTIONS(7841), 1, - anon_sym_val, - STATE(4472), 1, - sym_function_or_value_defn, - STATE(4548), 1, - sym_additional_constr_defn, - STATE(8140), 1, - sym_access_modifier, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7833), 2, - anon_sym_default, - anon_sym_override, - STATE(4738), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4878), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102512] = 11, - ACTIONS(3), 1, - sym_line_comment, + [110208] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445854,32 +453623,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7843), 1, - anon_sym_STAR, - ACTIONS(2916), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4739), 5, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4879), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102561] = 11, + ACTIONS(4964), 12, + sym__newline, + sym__dedent, + 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, + [110254] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445890,36 +453659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7790), 1, - anon_sym_PIPE, - STATE(4765), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(8105), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4740), 4, + STATE(4880), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7788), 12, + ACTIONS(4913), 12, + sym__newline, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [102610] = 10, - ACTIONS(3), 1, - sym_line_comment, + [110300] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445930,33 +453695,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3042), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4741), 4, + ACTIONS(8107), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4881), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 11, + ACTIONS(4913), 12, 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, - [102657] = 12, - ACTIONS(3), 1, - sym_line_comment, + 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, + [110346] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -445967,70 +453731,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7592), 1, - anon_sym_STAR, - STATE(4752), 1, - aux_sym_compound_type_repeat1, - ACTIONS(2986), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4742), 4, + ACTIONS(8109), 1, + anon_sym_with, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4882), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102708] = 10, - ACTIONS(7), 1, + ACTIONS(4853), 12, + sym__newline, + sym__dedent, + 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, + [110392] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8111), 1, + anon_sym_DQUOTE, + STATE(4885), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4743), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4883), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3026), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3028), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102755] = 11, + [110450] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446041,72 +453809,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(2906), 1, + anon_sym_and, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7846), 1, - anon_sym_DOT, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4744), 5, + ACTIONS(2904), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(4884), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [102804] = 11, - ACTIONS(7), 1, + [110512] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8113), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7849), 1, - anon_sym_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2916), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4745), 5, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4885), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 7, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102853] = 10, + [110570] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446117,72 +453895,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4746), 4, + ACTIONS(6945), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(4886), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, + ACTIONS(6943), 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, - ACTIONS(2990), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [102900] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [110616] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8115), 1, + anon_sym_DQUOTE, + STATE(4797), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3044), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4747), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4887), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 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, - [102947] = 10, - ACTIONS(3), 1, - sym_line_comment, + [110674] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446193,31 +453973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3044), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4748), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4888), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 11, - sym__newline, - sym__dedent, + ACTIONS(3060), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(3058), 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_LT2, anon_sym_LBRACK_RBRACK, - [102994] = 12, + [110720] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446230,23 +454011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7569), 1, - anon_sym_STAR, - STATE(4739), 1, - aux_sym_compound_type_repeat1, - ACTIONS(2986), 4, + ACTIONS(3062), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4749), 4, + STATE(4889), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 9, + ACTIONS(3064), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -446254,9 +454031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103045] = 12, + [110766] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446267,82 +454045,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7656), 1, - anon_sym_STAR, - STATE(4745), 1, - aux_sym_compound_type_repeat1, + ACTIONS(8117), 1, + anon_sym_and, + STATE(4949), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4750), 4, + STATE(4890), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2984), 7, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103096] = 20, - ACTIONS(7), 1, + ACTIONS(4970), 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, + [110814] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8119), 1, + anon_sym_DQUOTE, + STATE(4870), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, - sym_identifier, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7852), 1, - anon_sym_with, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, - STATE(6014), 1, - sym__object_members, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4817), 2, - anon_sym_LBRACK_LT, - anon_sym_POUNDendif, - ACTIONS(4819), 2, - anon_sym_and, - anon_sym_interface, - STATE(4751), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4891), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103163] = 11, + [110872] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446355,22 +454126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7854), 1, - anon_sym_STAR, - ACTIONS(2916), 4, + ACTIONS(3092), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4752), 5, + STATE(4892), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 9, + ACTIONS(3094), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -446378,46 +454146,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103212] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [110918] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8121), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3082), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4753), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4893), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 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, - [103259] = 11, + [110976] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446428,22 +454202,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7790), 1, - anon_sym_PIPE, - STATE(4740), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(8125), 1, + anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4754), 4, + STATE(4894), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7857), 12, - sym__dedent, + ACTIONS(8123), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_with, @@ -446455,9 +454227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [103308] = 10, - ACTIONS(3), 1, - sym_line_comment, + [111022] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446468,68 +454238,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4755), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4895), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 11, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(7296), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103355] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [111066] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8127), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3042), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4756), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4896), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 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, - [103402] = 10, + [111124] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446542,31 +454317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3099), 4, + ACTIONS(3096), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4757), 4, + STATE(4897), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 11, - sym__newline, - sym__dedent, + ACTIONS(3098), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103449] = 10, + [111170] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446579,33 +454353,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3101), 4, + ACTIONS(3042), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4758), 4, + STATE(4898), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 11, - sym__newline, - sym__dedent, + ACTIONS(3040), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103496] = 10, - ACTIONS(3), 1, - sym_line_comment, + [111216] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446616,31 +454387,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(2988), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4759), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4899), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 11, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(7266), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103543] = 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, + [111260] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446653,31 +454424,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3099), 4, + ACTIONS(3088), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4760), 4, + STATE(4900), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 11, - sym__newline, - sym__dedent, + ACTIONS(3090), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103590] = 10, + [111306] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446688,70 +454458,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2886), 1, + anon_sym_and, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3093), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4761), 4, + ACTIONS(2882), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(4901), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103637] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [111368] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8129), 1, + anon_sym_DQUOTE, + STATE(4904), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3101), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4762), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4902), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 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, - [103684] = 10, + [111426] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446762,108 +454546,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(3044), 4, + ACTIONS(3078), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4763), 4, + STATE(4903), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 10, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3080), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103731] = 11, - ACTIONS(7), 1, + [111472] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8131), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7859), 1, - anon_sym_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2916), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4764), 5, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4904), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 7, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103780] = 10, - ACTIONS(7), 1, + [111530] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8133), 1, + anon_sym_DQUOTE, + STATE(4896), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7864), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4765), 5, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4905), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_union_type_cases_repeat1, - ACTIONS(7862), 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, - [103827] = 12, + [111588] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446874,35 +454664,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6571), 1, - aux_sym_decimal_token1, - ACTIONS(6694), 1, - anon_sym_f, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4766), 4, + STATE(4906), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 11, - anon_sym_EQ, + ACTIONS(3060), 5, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3058), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - [103878] = 10, + anon_sym_LBRACK_RBRACK, + [111634] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446913,33 +454700,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3072), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4767), 4, + STATE(4907), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [103925] = 11, + ACTIONS(3219), 13, + 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, + anon_sym_POUNDelse, + [111678] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -446952,21 +454737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7867), 1, - anon_sym_COLON_GT, - ACTIONS(3064), 4, + ACTIONS(3078), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4768), 4, + STATE(4908), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, + ACTIONS(3080), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -446977,9 +454760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [103974] = 10, - ACTIONS(3), 1, - sym_line_comment, + [111724] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -446990,74 +454771,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2902), 1, + anon_sym_and, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3099), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, + ACTIONS(6713), 1, sym_identifier, - STATE(4769), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2900), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(4909), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [104020] = 16, + [111786] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, + ACTIONS(7946), 1, aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, + ACTIONS(7948), 1, anon_sym_LBRACE2, - ACTIONS(7877), 1, - anon_sym_DQUOTE, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, + ACTIONS(7958), 1, sym__inside_string_marker, - STATE(4790), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + STATE(4856), 1, aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5577), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(7942), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + STATE(5576), 2, sym__string_char, sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(7944), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4770), 4, + STATE(4910), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [104078] = 11, - ACTIONS(3), 1, - sym_line_comment, + [111844] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447068,31 +454857,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7887), 1, - anon_sym_LT2, - ACTIONS(3058), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4771), 4, + ACTIONS(8137), 1, + anon_sym_with, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4911), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [104126] = 10, + ACTIONS(4943), 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] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447103,74 +454893,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7889), 1, - anon_sym_and, + ACTIONS(7695), 1, + anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4772), 5, + STATE(4912), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 11, - sym__newline, - sym__dedent, + ACTIONS(7693), 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, - [104172] = 16, - ACTIONS(5), 1, + [111936] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(3076), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4913), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3074), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [111982] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7892), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8139), 1, + anon_sym_LT2, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4773), 4, + STATE(4914), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [104230] = 10, + ACTIONS(3084), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3082), 7, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [112030] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447181,23 +455002,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4774), 4, + STATE(4915), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3044), 5, + ACTIONS(3048), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_when, sym_identifier, - ACTIONS(3046), 8, + ACTIONS(3054), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447206,7 +455027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104276] = 10, + [112076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447217,74 +455038,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7894), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4775), 4, + STATE(4916), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 12, - sym__newline, + ACTIONS(7893), 13, sym__dedent, 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, - [104322] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7896), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4776), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [104380] = 10, + [112120] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447297,19 +455075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3048), 4, + ACTIONS(3088), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4777), 4, + STATE(4917), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 10, + ACTIONS(3090), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447320,7 +455098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104426] = 10, + [112166] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447331,32 +455109,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7898), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4778), 4, + STATE(4918), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 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, - [104472] = 10, + ACTIONS(3068), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3066), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [112212] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447367,23 +455145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4779), 4, + STATE(4919), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3048), 5, + ACTIONS(3072), 5, anon_sym_COLON, anon_sym_as, anon_sym_in, anon_sym_when, sym_identifier, - ACTIONS(3050), 8, + ACTIONS(3070), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447392,49 +455170,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104518] = 16, + [112258] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, + ACTIONS(7946), 1, aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, + ACTIONS(7948), 1, anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, + ACTIONS(7958), 1, sym__inside_string_marker, - ACTIONS(7900), 1, + ACTIONS(8141), 1, anon_sym_DQUOTE, - STATE(4811), 1, + STATE(4930), 1, aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5577), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(7942), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + STATE(5576), 2, sym__string_char, sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(7944), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4780), 4, + STATE(4920), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [112316] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4921), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [104576] = 10, + [112374] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447447,19 +455267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3054), 4, + ACTIONS(3042), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, sym_identifier, - STATE(4781), 4, + STATE(4922), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 10, + ACTIONS(3040), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447470,43 +455290,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104622] = 10, - ACTIONS(7), 1, + [112420] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8145), 1, + anon_sym_DQUOTE, + STATE(4910), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6881), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4782), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4923), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6879), 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, - [104668] = 10, + [112478] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447517,32 +455345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7902), 1, - anon_sym_with, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4783), 4, + ACTIONS(3096), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4924), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 12, - sym__newline, - sym__dedent, - 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, - [104714] = 10, + ACTIONS(3098), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [112524] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447553,32 +455379,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7904), 1, - anon_sym_COMMA, + ACTIONS(7847), 1, + anon_sym_or, + STATE(4713), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4784), 4, + ACTIONS(2979), 2, + anon_sym_and, + sym_identifier, + STATE(4925), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 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, - [104760] = 10, + ACTIONS(2981), 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, + [112574] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447591,19 +455419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3042), 4, + ACTIONS(3092), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4785), 4, + STATE(4926), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 10, + ACTIONS(3094), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447614,7 +455442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104806] = 10, + [112620] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447625,68 +455453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7906), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4786), 4, + STATE(4927), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 12, - sym__newline, - sym__dedent, - 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, - [104852] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3099), 4, + ACTIONS(3062), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, + anon_sym_when, sym_identifier, - STATE(4787), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3097), 10, + ACTIONS(3064), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104898] = 10, + [112666] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447699,19 +455491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3101), 4, + ACTIONS(3062), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, sym_identifier, - STATE(4788), 4, + STATE(4928), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 10, + ACTIONS(3064), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447722,84 +455514,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [104944] = 9, - ACTIONS(7), 1, + [112712] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8147), 1, + anon_sym_DQUOTE, + STATE(4921), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4789), 4, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4929), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7862), 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, - [104988] = 16, + [112770] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, + ACTIONS(7946), 1, aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, + ACTIONS(7948), 1, anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, + ACTIONS(7958), 1, sym__inside_string_marker, - ACTIONS(7908), 1, + ACTIONS(8149), 1, anon_sym_DQUOTE, - STATE(4794), 1, + STATE(4856), 1, aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5577), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(7942), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + STATE(5576), 2, sym__string_char, sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(7944), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4790), 4, + STATE(4930), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105046] = 10, + [112828] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447812,19 +455611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3044), 4, + ACTIONS(3072), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4791), 4, + STATE(4931), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 10, + ACTIONS(3070), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447835,7 +455634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105092] = 10, + [112874] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447846,23 +455645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4792), 4, + STATE(4932), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3082), 5, + ACTIONS(3092), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(3084), 8, + ACTIONS(3094), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447871,7 +455670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105138] = 10, + [112920] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447882,73 +455681,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7910), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4793), 4, + STATE(4933), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 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, - [105184] = 15, - ACTIONS(5), 1, + ACTIONS(3088), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3090), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [112966] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4934), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3076), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3074), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [113012] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7918), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7921), 1, - anon_sym_LBRACE2, - ACTIONS(7924), 1, - anon_sym_DQUOTE, - ACTIONS(7926), 1, - sym__inside_string_marker, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7912), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7915), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4794), 5, + STATE(4935), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_format_string_repeat1, - [105240] = 10, + ACTIONS(3088), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(3090), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [113058] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -447961,19 +455791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3082), 4, + ACTIONS(3060), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4795), 4, + STATE(4936), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 10, + ACTIONS(3058), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -447984,7 +455814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105286] = 10, + [113104] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -447995,32 +455827,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4796), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3093), 5, + ACTIONS(8151), 1, + anon_sym_LT2, + ACTIONS(3084), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, anon_sym_when, sym_identifier, - ACTIONS(3095), 8, + STATE(4937), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3082), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105332] = 10, + [113152] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -448033,19 +455864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3072), 4, + ACTIONS(3068), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(4797), 4, + STATE(4938), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 10, + ACTIONS(3066), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -448056,7 +455887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105378] = 10, + [113198] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448067,23 +455898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4798), 4, + STATE(4939), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3054), 5, + ACTIONS(3078), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(3052), 8, + ACTIONS(3080), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -448092,7 +455923,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105424] = 10, + [113244] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8153), 1, + anon_sym_DQUOTE, + STATE(4948), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4940), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [113302] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448103,23 +455976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4799), 4, + STATE(4941), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3044), 5, + ACTIONS(3042), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(3046), 8, + ACTIONS(3040), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -448128,9 +456001,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105470] = 10, - ACTIONS(3), 1, + [113348] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + aux_sym__simple_string_char_token1, + ACTIONS(7948), 1, + anon_sym_LBRACE2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(7958), 1, + sym__inside_string_marker, + ACTIONS(8155), 1, + anon_sym_DQUOTE, + STATE(4856), 1, + aux_sym_format_string_repeat1, + STATE(5577), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(7942), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5576), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(7944), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4942), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [113406] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(6926), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(4943), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6924), 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, + [113452] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448141,30 +456090,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3093), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(3046), 4, anon_sym_COLON, anon_sym_and, - anon_sym_as, + anon_sym_or, sym_identifier, - STATE(4800), 4, + STATE(4944), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 10, + ACTIONS(3044), 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_RBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [105516] = 10, + [113498] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448175,32 +456126,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7931), 1, - anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4801), 4, + STATE(4945), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7929), 12, - anon_sym_EQ, + ACTIONS(4927), 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, - [105562] = 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [113544] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448211,119 +456162,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7933), 1, - anon_sym_and, - STATE(4832), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4802), 4, + STATE(4946), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [105610] = 16, + ACTIONS(3096), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + ACTIONS(3098), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [113590] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, + ACTIONS(7946), 1, aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, + ACTIONS(7948), 1, anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, + ACTIONS(7958), 1, sym__inside_string_marker, - ACTIONS(7935), 1, + ACTIONS(8159), 1, anon_sym_DQUOTE, - STATE(4823), 1, + STATE(4942), 1, aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5577), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(7942), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + STATE(5576), 2, sym__string_char, sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(7944), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4803), 4, + STATE(4947), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105668] = 16, + [113648] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, + ACTIONS(7946), 1, aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, + ACTIONS(7948), 1, anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, + ACTIONS(7958), 1, sym__inside_string_marker, - ACTIONS(7937), 1, + ACTIONS(8161), 1, anon_sym_DQUOTE, - STATE(4776), 1, + STATE(4856), 1, aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5577), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(7942), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + STATE(5576), 2, sym__string_char, sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(7944), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4804), 4, + STATE(4948), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [113706] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8117), 1, + anon_sym_and, + STATE(4798), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4949), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4958), 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, + [113754] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(8163), 1, + anon_sym_do, + ACTIONS(8165), 1, + anon_sym_member, + ACTIONS(8167), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4508), 1, + sym_value_declaration, + STATE(4510), 1, + sym_do, + STATE(4515), 1, + sym_function_or_value_defn, + STATE(5940), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4950), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [113819] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8169), 1, + anon_sym_do, + ACTIONS(8171), 1, + anon_sym_let, + ACTIONS(8173), 1, + anon_sym_let_BANG, + ACTIONS(8175), 1, + anon_sym_member, + ACTIONS(8177), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5153), 1, + sym_function_or_value_defn, + STATE(5181), 1, + sym_value_declaration, + STATE(5188), 1, + sym_do, + STATE(5968), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4951), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105726] = 10, - ACTIONS(3), 1, - sym_line_comment, + [113884] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448334,30 +456409,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3093), 4, + ACTIONS(3615), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4805), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4952), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 10, + ACTIONS(3613), 11, + 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_RBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [105772] = 10, + [113929] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448368,21 +456444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7939), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4806), 4, + STATE(4953), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, - sym__newline, - sym__dedent, + ACTIONS(5094), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -448393,7 +456465,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [105818] = 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [113972] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448404,33 +456478,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3611), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4849), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5172), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4807), 4, + STATE(4954), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 11, - sym__dedent, + ACTIONS(3609), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [114017] = 9, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4955), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4545), 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [105866] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [114060] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448441,76 +456547,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3603), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7943), 1, - anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4808), 4, + STATE(4956), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7941), 12, + ACTIONS(3601), 11, 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, - [105912] = 16, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [114105] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7945), 1, + ACTIONS(8185), 1, anon_sym_DQUOTE, - STATE(4883), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8187), 1, + anon_sym_DQUOTEB, + STATE(4994), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4809), 4, + STATE(4957), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105970] = 10, - ACTIONS(3), 1, - sym_line_comment, + [114160] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448521,72 +456622,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3082), 4, - anon_sym_COLON, + ACTIONS(8189), 1, anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4810), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4958), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106016] = 16, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4949), 10, + 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, + anon_sym_POUNDendif, + [114205] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7947), 1, + ACTIONS(8192), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8194), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4811), 4, + STATE(4959), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106074] = 10, + [114260] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448597,32 +456697,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8196), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4812), 4, + STATE(4960), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3042), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3040), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106120] = 10, + ACTIONS(4913), 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, + [114305] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448633,19 +456732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7949), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4813), 4, + STATE(4961), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 12, + ACTIONS(5102), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -448658,9 +456755,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [106166] = 10, - ACTIONS(3), 1, + [114348] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8198), 1, + anon_sym_DQUOTE, + ACTIONS(8200), 1, + anon_sym_DQUOTEB, + STATE(4959), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4962), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [114403] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448671,30 +456806,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3054), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4814), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4963), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5098), 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, + [114446] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8202), 1, + anon_sym_and, + STATE(4958), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106212] = 10, + sym_line_comment, + STATE(4964), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4958), 10, + 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, + anon_sym_POUNDendif, + [114493] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448705,19 +456876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7951), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4815), 4, + STATE(4965), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, + ACTIONS(5114), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -448730,7 +456899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [106258] = 10, + [114536] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448741,19 +456910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7953), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4816), 4, + STATE(4966), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 12, + ACTIONS(3529), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -448766,7 +456933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [106304] = 11, + [114579] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448777,33 +456944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7933), 1, + ACTIONS(8202), 1, anon_sym_and, - STATE(4802), 1, + STATE(4964), 1, aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4817), 4, + STATE(4967), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 11, - sym__dedent, + ACTIONS(4970), 10, anon_sym_LBRACK_LT, 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, - [106352] = 10, + anon_sym_POUNDendif, + [114626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448814,19 +456980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7955), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4818), 4, + STATE(4968), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 12, + ACTIONS(4549), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -448839,88 +457003,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [106398] = 16, + [114669] = 9, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4969), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5062), 12, + sym__newline, + sym__dedent, + 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, + [114712] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7957), 1, + ACTIONS(8204), 1, anon_sym_DQUOTE, - STATE(4914), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8206), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4819), 4, + STATE(4970), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106456] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [114767] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8208), 1, + anon_sym_DQUOTE, + ACTIONS(8210), 1, + anon_sym_DQUOTEB, + STATE(4970), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7959), 1, - anon_sym_LT2, - ACTIONS(3058), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4820), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4971), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [106504] = 10, - ACTIONS(3), 1, - sym_line_comment, + [114822] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448931,32 +457128,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3044), 4, + ACTIONS(3572), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4821), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4972), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 10, + ACTIONS(3570), 11, + 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_RBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106550] = 10, - ACTIONS(3), 1, - sym_line_comment, + [114867] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -448967,72 +457163,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3101), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4822), 4, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(7855), 1, + anon_sym_member, + ACTIONS(7859), 1, + anon_sym_val, + ACTIONS(8212), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4412), 1, + sym_do, + STATE(4443), 1, + sym_value_declaration, + STATE(4447), 1, + sym_function_or_value_defn, + STATE(5999), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4973), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3103), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106596] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [114932] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7961), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8214), 1, + anon_sym_COMMA, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4823), 4, + STATE(4974), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106654] = 10, + ACTIONS(4903), 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, + [114977] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449043,21 +457243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7963), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4824), 4, + STATE(4975), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 12, - sym__newline, - sym__dedent, + ACTIONS(5130), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -449068,7 +457264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [106700] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [115020] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449079,118 +457277,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4825), 4, + STATE(4976), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3048), 5, - anon_sym_COLON, + ACTIONS(5130), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3050), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106746] = 16, + 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, + [115063] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7965), 1, + ACTIONS(8216), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8218), 1, + anon_sym_DQUOTEB, + STATE(4989), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4826), 4, + STATE(4977), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106804] = 16, + [115118] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7967), 1, + ACTIONS(8220), 1, anon_sym_DQUOTE, - STATE(4902), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8222), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4827), 4, + STATE(4978), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106862] = 10, - ACTIONS(3), 1, - sym_line_comment, + [115173] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449201,30 +457391,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3064), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4828), 4, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(8224), 1, + anon_sym_do, + ACTIONS(8226), 1, + anon_sym_member, + ACTIONS(8228), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4406), 1, + sym_function_or_value_defn, + STATE(4412), 1, + sym_do, + STATE(4486), 1, + sym_value_declaration, + STATE(5999), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4979), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + [115238] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8169), 1, + anon_sym_do, + ACTIONS(8171), 1, + anon_sym_let, + ACTIONS(8173), 1, + anon_sym_let_BANG, + ACTIONS(8230), 1, + anon_sym_member, + ACTIONS(8232), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5153), 1, + sym_function_or_value_defn, + STATE(5188), 1, + sym_do, + STATE(5223), 1, + sym_value_declaration, + STATE(5968), 1, + sym_attributes, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [106908] = 10, + sym_line_comment, + STATE(4980), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [115303] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449235,21 +457481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7969), 1, + ACTIONS(8234), 1, anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4829), 4, + STATE(4981), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 12, - sym__newline, - sym__dedent, + ACTIONS(4964), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -449260,51 +457504,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [106954] = 16, - ACTIONS(5), 1, + anon_sym_POUNDendif, + [115348] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, ACTIONS(7879), 1, + anon_sym_member, + ACTIONS(7883), 1, + anon_sym_val, + ACTIONS(8236), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4998), 1, + sym_do, + STATE(5085), 1, + sym_value_declaration, + STATE(5175), 1, + sym_function_or_value_defn, + STATE(5969), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4982), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [115413] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7971), 1, + ACTIONS(8238), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8240), 1, + anon_sym_DQUOTEB, + STATE(4978), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4830), 4, + STATE(4983), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107012] = 10, - ACTIONS(3), 1, - sym_line_comment, + [115468] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449315,30 +457601,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3042), 4, + ACTIONS(8242), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4984), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4903), 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, + [115513] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3619), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4831), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4985), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3040), 10, + ACTIONS(3617), 11, + 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_RBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107058] = 10, + [115558] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449349,32 +457671,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3627), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7973), 1, - anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4832), 5, + STATE(4986), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 11, - sym__dedent, + ACTIONS(3625), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [115603] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(8244), 1, + anon_sym_do, + ACTIONS(8246), 1, anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, + ACTIONS(8248), 1, anon_sym_val, - [107104] = 11, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4998), 1, + sym_do, + STATE(5095), 1, + sym_function_or_value_defn, + STATE(5132), 1, + sym_value_declaration, + STATE(5969), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4987), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [115668] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449385,22 +457751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7976), 1, - anon_sym_and, - STATE(4844), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4833), 4, + STATE(4988), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 11, + ACTIONS(5126), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -449409,45 +457774,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [107152] = 10, - ACTIONS(7), 1, + [115711] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8250), 1, + anon_sym_DQUOTE, + ACTIONS(8252), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4834), 4, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4989), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3072), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3076), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107198] = 10, + [115766] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449458,32 +457825,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4835), 4, + STATE(4990), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3093), 5, - anon_sym_COLON, + ACTIONS(5078), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3095), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107244] = 9, + 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, + [115809] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8254), 1, + anon_sym_DQUOTE, + ACTIONS(8256), 1, + anon_sym_DQUOTEB, + STATE(4997), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(4991), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [115864] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449494,21 +457899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4836), 4, + STATE(4992), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 13, + ACTIONS(5082), 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, @@ -449518,7 +457922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [107288] = 9, + [115907] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449529,73 +457933,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4837), 4, + STATE(4993), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7042), 13, + ACTIONS(5130), 12, + sym__newline, sym__dedent, 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, - [107332] = 16, + [115950] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7978), 1, + ACTIONS(8258), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8260), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4838), 4, + STATE(4994), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107390] = 10, + [116005] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3631), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(4995), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3629), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [116050] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449606,23 +458042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6802), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4839), 4, + STATE(4996), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6800), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(3219), 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, @@ -449630,136 +458064,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [107436] = 16, + anon_sym_POUNDendif, + [116093] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7980), 1, + ACTIONS(8262), 1, anon_sym_DQUOTE, - STATE(4875), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8264), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4840), 4, + STATE(4997), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107494] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [116148] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7982), 1, - anon_sym_DQUOTE, - STATE(4852), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4841), 4, + STATE(4998), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107552] = 16, + ACTIONS(2119), 12, + sym__newline, + sym__dedent, + 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, + [116191] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7984), 1, + ACTIONS(8266), 1, anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8268), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4842), 4, + STATE(4999), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107610] = 10, - ACTIONS(3), 1, - sym_line_comment, + [116246] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449770,30 +458190,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3064), 4, + ACTIONS(3647), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4843), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5000), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 10, + ACTIONS(3645), 11, + 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_RBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107656] = 10, + [116291] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449804,21 +458225,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7986), 1, - anon_sym_and, + ACTIONS(8270), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4844), 5, + STATE(5001), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 11, + ACTIONS(4964), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -449828,92 +458249,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [107702] = 16, + [116336] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7989), 1, + ACTIONS(8272), 1, anon_sym_DQUOTE, - STATE(4872), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8274), 1, + anon_sym_DQUOTEB, + STATE(4999), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4845), 4, + STATE(5002), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107760] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [116391] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7991), 1, - anon_sym_DQUOTE, - STATE(4865), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8276), 1, + anon_sym_with, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4846), 4, + STATE(5003), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107818] = 11, + ACTIONS(4853), 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, + [116436] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449924,35 +458335,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7993), 1, - anon_sym_LT2, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(8226), 1, + anon_sym_member, + ACTIONS(8228), 1, + anon_sym_val, + ACTIONS(8278), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4412), 1, + sym_do, + STATE(4457), 1, + sym_function_or_value_defn, + STATE(4486), 1, + sym_value_declaration, + STATE(5999), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4847), 4, + STATE(5004), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3058), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3056), 7, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [107866] = 10, - ACTIONS(3), 1, + [116501] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8280), 1, + anon_sym_DQUOTE, + ACTIONS(8282), 1, + anon_sym_DQUOTEB, + STATE(5021), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5005), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [116556] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449963,30 +458420,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3048), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4848), 4, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(7867), 1, + anon_sym_member, + ACTIONS(7871), 1, + anon_sym_val, + ACTIONS(8163), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4510), 1, + sym_do, + STATE(4515), 1, + sym_function_or_value_defn, + STATE(4516), 1, + sym_value_declaration, + STATE(5940), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5006), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3050), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107912] = 11, + [116621] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -449997,24 +458465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7995), 1, - anon_sym_interface, - STATE(5172), 1, - sym_interface_implementation, + ACTIONS(8284), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4849), 5, + STATE(5007), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - ACTIONS(5196), 10, - sym__dedent, + ACTIONS(4853), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -450023,51 +458488,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [107960] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + anon_sym_POUNDendif, + [116666] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(7998), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4850), 4, + STATE(5008), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108018] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(5122), 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, + [116709] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450078,108 +458534,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3072), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4851), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5009), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108064] = 16, + ACTIONS(2119), 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, + [116752] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8000), 1, + ACTIONS(8286), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8288), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4852), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108122] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(3066), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - sym_identifier, - STATE(4853), 4, + STATE(5010), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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, - [108168] = 10, + [116807] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450190,32 +458608,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(35), 1, + anon_sym_let, + ACTIONS(37), 1, + anon_sym_let_BANG, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8290), 1, + anon_sym_do, + ACTIONS(8292), 1, + anon_sym_member, + ACTIONS(8294), 1, + anon_sym_val, + STATE(2756), 1, + sym_value_declaration, + STATE(2773), 1, + sym_function_or_value_defn, + STATE(2827), 1, + sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5954), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4854), 4, + STATE(5011), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3054), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3052), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108214] = 10, + [116872] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450226,19 +458653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2988), 1, + ACTIONS(3651), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4855), 4, + STATE(5012), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 12, + ACTIONS(3649), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -450246,12 +458673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DOT, anon_sym_in, anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [108260] = 10, + [116917] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450262,32 +458688,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4856), 4, + STATE(5013), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 5, - anon_sym_COLON, - anon_sym_and, + ACTIONS(3653), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3103), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108306] = 9, + [116962] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450298,31 +458723,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4857), 4, + STATE(5014), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7054), 13, + ACTIONS(5058), 12, + sym__newline, sym__dedent, 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, - [108350] = 10, + [117005] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450333,68 +458757,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4858), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3028), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, + ACTIONS(8296), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [108396] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8004), 1, - anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4859), 4, + STATE(5015), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(8002), 12, - anon_sym_EQ, + ACTIONS(4853), 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, - [108442] = 10, + anon_sym_POUNDendif, + [117050] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450405,32 +458792,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4860), 4, + STATE(5016), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3099), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3097), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108488] = 10, + ACTIONS(5054), 12, + sym__newline, + sym__dedent, + 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, + [117093] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450441,32 +458826,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7602), 1, - anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4861), 4, + STATE(5017), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7600), 12, - anon_sym_EQ, + ACTIONS(4913), 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, - [108534] = 10, + anon_sym_POUNDendif, + [117138] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450477,32 +458861,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(7867), 1, + anon_sym_member, + ACTIONS(7871), 1, + anon_sym_val, + ACTIONS(8300), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4510), 1, + sym_do, + STATE(4516), 1, + sym_value_declaration, + STATE(4546), 1, + sym_function_or_value_defn, + STATE(5940), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4862), 4, + STATE(5018), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3099), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3097), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108580] = 10, + [117203] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450513,116 +458906,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3659), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4863), 4, + STATE(5019), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 5, - anon_sym_COLON, + ACTIONS(3657), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3062), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108626] = 16, + [117248] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8006), 1, + ACTIONS(8302), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8304), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4864), 4, + STATE(5020), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108684] = 16, + [117303] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8008), 1, + ACTIONS(8306), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8308), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4865), 4, + STATE(5021), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108742] = 10, + [117358] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450633,21 +459021,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8010), 1, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(7855), 1, + anon_sym_member, + ACTIONS(7859), 1, + anon_sym_val, + ACTIONS(8224), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4406), 1, + sym_function_or_value_defn, + STATE(4412), 1, + sym_do, + STATE(4443), 1, + sym_value_declaration, + STATE(5999), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5022), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [117423] = 11, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6489), 1, + anon_sym_COLON, + ACTIONS(8310), 1, + anon_sym_as, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5023), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6491), 10, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [117470] = 9, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4866), 4, + STATE(5024), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 12, - sym__newline, - sym__dedent, + ACTIONS(5050), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -450658,7 +459123,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [108788] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [117513] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450669,32 +459136,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4867), 4, + STATE(5025), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3064), 5, - anon_sym_COLON, + ACTIONS(5122), 12, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3062), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108834] = 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, + [117556] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450705,74 +459170,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6438), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4868), 4, + STATE(5026), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3082), 5, - anon_sym_COLON, + ACTIONS(6440), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3084), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [108880] = 16, + [117601] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8012), 1, + ACTIONS(8312), 1, anon_sym_DQUOTE, - STATE(4877), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8314), 1, + anon_sym_DQUOTEB, + STATE(5020), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5027), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [117656] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8316), 1, + anon_sym_DQUOTE, + ACTIONS(8318), 1, + anon_sym_DQUOTEB, + STATE(5076), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4869), 4, + STATE(5028), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108938] = 10, + [117711] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450783,32 +459285,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8320), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6963), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4870), 4, + STATE(5029), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6961), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(4937), 11, + 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [108984] = 11, + [117756] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450819,22 +459320,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7976), 1, - anon_sym_and, - STATE(4833), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(8322), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4871), 4, + STATE(5030), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 11, + ACTIONS(4937), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -450844,50 +459344,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109032] = 16, - ACTIONS(5), 1, + [117801] = 20, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(8324), 1, + anon_sym_do, + ACTIONS(8326), 1, + anon_sym_let, + ACTIONS(8328), 1, + anon_sym_let_BANG, + ACTIONS(8330), 1, + anon_sym_member, + ACTIONS(8332), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5009), 1, + sym_function_or_value_defn, + STATE(5106), 1, + sym_value_declaration, + STATE(5107), 1, + sym_do, + STATE(5979), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5031), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [117866] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8014), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6438), 1, + anon_sym_COLON, + ACTIONS(8334), 1, + anon_sym_LT2, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4872), 4, + STATE(5032), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109090] = 9, + ACTIONS(6440), 10, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + [117913] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -450898,115 +459436,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4873), 4, + STATE(5033), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 13, - sym__dedent, + ACTIONS(5126), 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, - [109134] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [117956] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8016), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4874), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [109192] = 16, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8018), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(6477), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4875), 4, + STATE(5034), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109250] = 18, + ACTIONS(6479), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118001] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451017,82 +459505,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2912), 1, - anon_sym_and, - ACTIONS(5467), 1, + ACTIONS(3594), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2910), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4876), 4, + STATE(5035), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109312] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(3596), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118046] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8026), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3457), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4877), 4, + STATE(5036), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109370] = 10, + ACTIONS(3455), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118091] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451103,74 +459575,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3549), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4878), 4, + STATE(5037), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3072), 5, - anon_sym_COLON, - anon_sym_and, + ACTIONS(3547), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3076), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [109416] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [118136] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8028), 1, - anon_sym_DQUOTE, - STATE(4864), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6481), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4879), 4, + STATE(5038), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109474] = 10, + ACTIONS(6483), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118181] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451181,32 +459645,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3592), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8030), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4880), 4, + STATE(5039), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 12, - sym__newline, - sym__dedent, - 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, - [109520] = 10, + ACTIONS(3590), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118226] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451217,19 +459680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8032), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4881), 4, + STATE(5040), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, + ACTIONS(5110), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -451240,9 +459703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109566] = 10, + [118269] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451253,162 +459714,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8036), 1, - anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4882), 4, + STATE(5041), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(8034), 12, - anon_sym_EQ, + ACTIONS(5106), 12, + sym__newline, + 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [109612] = 16, + [118312] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8038), 1, + ACTIONS(8336), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8338), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4883), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [109670] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2916), 1, - anon_sym_and, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2914), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4884), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [109732] = 18, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2886), 1, - anon_sym_and, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2884), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4885), 4, + STATE(5042), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109794] = 10, + [118367] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451419,21 +459788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8040), 1, - anon_sym_COMMA, + ACTIONS(8340), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4886), 4, + STATE(5043), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 12, - sym__newline, - sym__dedent, + ACTIONS(4943), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -451444,7 +459811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [109840] = 10, + anon_sym_POUNDendif, + [118412] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451455,19 +459823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8042), 1, - anon_sym_COMMA, + ACTIONS(8342), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4887), 4, + STATE(5044), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, + ACTIONS(4927), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -451479,8 +459847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109886] = 12, + [118457] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451491,34 +459858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7808), 1, - anon_sym_or, - STATE(4727), 1, - aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_and, - sym_identifier, - STATE(4888), 4, + STATE(5045), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 9, + ACTIONS(3673), 11, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [109936] = 18, + [118502] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451529,40 +459893,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2928), 1, - anon_sym_and, - ACTIONS(5467), 1, + ACTIONS(3741), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2926), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4889), 4, + STATE(5046), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109998] = 10, + ACTIONS(3739), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118547] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451573,32 +459928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3743), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8044), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4890), 4, + STATE(5047), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 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, - [110044] = 10, + ACTIONS(3745), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118592] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451609,74 +459963,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7668), 1, - anon_sym_LPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4891), 4, + STATE(5048), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7666), 12, - anon_sym_EQ, + ACTIONS(5090), 12, + sym__newline, + 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [110090] = 16, + [118635] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8046), 1, + ACTIONS(8344), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8346), 1, + anon_sym_DQUOTEB, + STATE(5042), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4892), 4, + STATE(5049), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110148] = 11, + [118690] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451687,75 +460037,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3682), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8048), 1, - anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4893), 4, + STATE(5050), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3058), 5, - anon_sym_COLON, - anon_sym_and, + ACTIONS(3680), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3056), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [110196] = 16, + anon_sym_when, + anon_sym_LT2, + [118735] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8050), 1, + ACTIONS(8348), 1, anon_sym_DQUOTE, - STATE(4874), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8350), 1, + anon_sym_DQUOTEB, + STATE(5081), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4894), 4, + STATE(5051), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110254] = 10, + [118790] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451766,32 +460112,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3686), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4895), 4, + STATE(5052), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3042), 5, - anon_sym_COLON, - anon_sym_and, + ACTIONS(3684), 11, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(3040), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [110300] = 10, + [118835] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451802,19 +460147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8052), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4896), 4, + STATE(5053), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 12, + ACTIONS(4913), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -451825,135 +460170,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [110346] = 16, - ACTIONS(5), 1, + [118878] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3734), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5054), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3732), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118923] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8054), 1, - anon_sym_DQUOTE, - STATE(4899), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3568), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4897), 4, + STATE(5055), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110404] = 16, + ACTIONS(3566), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [118968] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8056), 1, + ACTIONS(8352), 1, anon_sym_DQUOTE, - STATE(4850), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8354), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4898), 4, + STATE(5056), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110462] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [119023] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8058), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4899), 4, + STATE(5057), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110520] = 10, + ACTIONS(4793), 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, + [119066] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -451964,19 +460325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8060), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4900), 4, + STATE(5058), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 12, + ACTIONS(5082), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -451989,91 +460348,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [110566] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + [119109] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8062), 1, - anon_sym_DQUOTE, - STATE(4892), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3717), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4901), 4, + STATE(5059), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110624] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(3715), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [119154] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8064), 1, - anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4902), 4, + STATE(5060), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110682] = 10, + ACTIONS(3723), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [119199] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452084,19 +460429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8066), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4903), 4, + STATE(5061), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 12, + ACTIONS(5058), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452109,7 +460452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [110728] = 10, + [119242] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452120,19 +460463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8068), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4904), 4, + STATE(5062), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 12, + ACTIONS(5072), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452145,91 +460486,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [110774] = 16, + [119285] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8070), 1, + ACTIONS(8356), 1, anon_sym_DQUOTE, - STATE(4838), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, + ACTIONS(8358), 1, + anon_sym_DQUOTEB, + STATE(5074), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4905), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [110832] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8072), 1, - anon_sym_DQUOTE, - STATE(4916), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4906), 4, + STATE(5063), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110890] = 10, + [119340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452240,19 +460537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8074), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4907), 4, + STATE(5064), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 12, + ACTIONS(3529), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452265,49 +460560,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [110936] = 16, + [119383] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8076), 1, + ACTIONS(8360), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8362), 1, + anon_sym_DQUOTEB, + STATE(5096), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5065), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [119438] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8364), 1, + anon_sym_DQUOTE, + ACTIONS(8366), 1, + anon_sym_DQUOTEB, + STATE(5077), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4908), 4, + STATE(5066), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110994] = 10, + [119493] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452318,32 +460651,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8324), 1, + anon_sym_do, + ACTIONS(8326), 1, + anon_sym_let, + ACTIONS(8328), 1, + anon_sym_let_BANG, + ACTIONS(8368), 1, + anon_sym_member, + ACTIONS(8370), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5009), 1, + sym_function_or_value_defn, + STATE(5024), 1, + sym_value_declaration, + STATE(5107), 1, + sym_do, + STATE(5979), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2977), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - sym_identifier, - STATE(4909), 4, + STATE(5067), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 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, - [111040] = 11, + [119558] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452354,24 +460696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8078), 1, - anon_sym_and, - STATE(4911), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4910), 4, + STATE(5068), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 11, + ACTIONS(4549), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452380,7 +460719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [111088] = 11, + [119601] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452391,24 +460730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8078), 1, - anon_sym_and, - STATE(4772), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4911), 4, + STATE(5069), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 11, + ACTIONS(5078), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452417,49 +460753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [111136] = 16, - ACTIONS(5), 1, + [119644] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(8372), 1, + anon_sym_with, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5070), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4943), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [119689] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8080), 1, - anon_sym_DQUOTE, - STATE(4826), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4912), 4, + STATE(5071), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111194] = 10, + ACTIONS(5118), 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, + [119732] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452470,200 +460833,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6485), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4913), 4, + STATE(5072), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6487), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [119777] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3475), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5073), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3477), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [119822] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8374), 1, + anon_sym_DQUOTE, + ACTIONS(8376), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5074), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3101), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - ACTIONS(3103), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [111240] = 16, + [119877] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8082), 1, + ACTIONS(8378), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8380), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4914), 4, + STATE(5075), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111298] = 16, + [119932] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8084), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - STATE(4773), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8384), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4915), 4, + STATE(5076), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111356] = 16, + [119987] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8086), 1, + ACTIONS(8386), 1, anon_sym_DQUOTE, - STATE(4794), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8388), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4916), 4, + STATE(5077), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111414] = 16, + [120042] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7873), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7875), 1, - anon_sym_LBRACE2, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(7885), 1, - sym__inside_string_marker, - ACTIONS(8088), 1, + ACTIONS(8390), 1, anon_sym_DQUOTE, - STATE(4908), 1, - aux_sym_format_string_repeat1, - STATE(5449), 1, + ACTIONS(8392), 1, + anon_sym_DQUOTEB, + STATE(5056), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7869), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - STATE(5483), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7871), 3, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4917), 4, + STATE(5078), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111472] = 11, + [120097] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452674,21 +461103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, + ACTIONS(6503), 1, anon_sym_COLON, - ACTIONS(8090), 1, - anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4918), 4, + STATE(5079), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 10, + ACTIONS(6505), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -452699,7 +461126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DASH_GT, anon_sym_when, - [111519] = 10, + anon_sym_LT2, + [120142] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452710,19 +461138,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3718), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4919), 4, + STATE(5080), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5126), 12, + sym__dedent, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [120185] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8394), 1, + anon_sym_DQUOTE, + ACTIONS(8396), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5081), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [120240] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6495), 1, + anon_sym_COLON, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5082), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3720), 11, + ACTIONS(6497), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -452734,7 +461236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [111564] = 10, + [120285] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452745,19 +461247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6488), 1, + ACTIONS(6533), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4920), 4, + STATE(5083), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6490), 11, + ACTIONS(6535), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -452769,42 +461271,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [111609] = 10, - ACTIONS(7), 1, + [120330] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8398), 1, + anon_sym_DQUOTE, + ACTIONS(8400), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8092), 1, - anon_sym_and, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4921), 5, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5084), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5013), 10, - 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, - anon_sym_POUNDendif, - [111654] = 10, + [120385] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452815,31 +461322,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8095), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4922), 4, + STATE(5085), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 11, + ACTIONS(5050), 12, + sym__newline, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [111699] = 20, + [120428] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8402), 1, + anon_sym_DQUOTE, + ACTIONS(8404), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5086), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [120483] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452852,39 +461398,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8097), 1, - anon_sym_do, - ACTIONS(8099), 1, + ACTIONS(6139), 1, anon_sym_let, - ACTIONS(8101), 1, + ACTIONS(6141), 1, anon_sym_let_BANG, - ACTIONS(8103), 1, + ACTIONS(8165), 1, anon_sym_member, - ACTIONS(8105), 1, + ACTIONS(8167), 1, anon_sym_val, - STATE(3804), 1, + ACTIONS(8406), 1, + anon_sym_do, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4924), 1, + STATE(4508), 1, sym_value_declaration, - STATE(4926), 1, - sym_function_or_value_defn, - STATE(5076), 1, + STATE(4510), 1, sym_do, - STATE(5907), 1, + STATE(4564), 1, + sym_function_or_value_defn, + STATE(5940), 1, sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4923), 4, + STATE(5087), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111764] = 9, + [120548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452895,17 +461441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4924), 4, + STATE(5088), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 12, + ACTIONS(5102), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452916,9 +461464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [111807] = 9, + [120591] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452929,17 +461475,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6499), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4925), 4, + STATE(5089), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 12, + ACTIONS(6501), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [120636] = 9, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5090), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5094), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452950,9 +461533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [111850] = 9, + [120679] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -452963,17 +461544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4926), 4, + STATE(5091), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 12, + ACTIONS(5118), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -452984,49 +461567,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [111893] = 15, + [120722] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8113), 1, + ACTIONS(8417), 1, anon_sym_DQUOTE, - ACTIONS(8115), 1, + ACTIONS(8419), 1, anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8408), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8414), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8411), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4927), 4, + STATE(5092), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111948] = 9, + aux_sym__string_literal_repeat1, + [120775] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453037,17 +461617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4928), 4, + STATE(5093), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 12, + ACTIONS(5130), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -453060,7 +461640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [111991] = 9, + [120818] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453071,17 +461651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4929), 4, + STATE(5094), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, + ACTIONS(4913), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -453094,7 +461674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [112034] = 20, + [120861] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453105,41 +461685,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(35), 1, - anon_sym_let, - ACTIONS(37), 1, - anon_sym_let_BANG, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - ACTIONS(8119), 1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5095), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2119), 12, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, anon_sym_member, - ACTIONS(8121), 1, + anon_sym_abstract, + anon_sym_override, anon_sym_val, - STATE(2740), 1, - sym_function_or_value_defn, - STATE(2747), 1, - sym_value_declaration, - STATE(2775), 1, - sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5994), 1, - sym_attributes, - ACTIONS(3), 2, + [120904] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8421), 1, + anon_sym_DQUOTE, + ACTIONS(8423), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4930), 4, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5096), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [112099] = 10, + [120959] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453150,19 +461759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6537), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4931), 4, + STATE(5097), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3452), 11, + ACTIONS(6539), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -453174,86 +461783,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [112144] = 9, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + [121004] = 15, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4932), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5102), 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, - [112187] = 20, - ACTIONS(7), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8425), 1, + anon_sym_DQUOTE, + ACTIONS(8427), 1, + anon_sym_DQUOTEB, + STATE(5084), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(7800), 1, - anon_sym_member, - ACTIONS(7804), 1, - anon_sym_val, - ACTIONS(8123), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4368), 1, - sym_function_or_value_defn, - STATE(4369), 1, - sym_value_declaration, - STATE(4439), 1, - sym_do, - STATE(5937), 1, - sym_attributes, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4933), 4, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5098), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [112252] = 20, + [121059] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453264,41 +461834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8097), 1, - anon_sym_do, - ACTIONS(8099), 1, - anon_sym_let, - ACTIONS(8101), 1, - anon_sym_let_BANG, - ACTIONS(8125), 1, - anon_sym_member, - ACTIONS(8127), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4926), 1, - sym_function_or_value_defn, - STATE(5076), 1, - sym_do, - STATE(5083), 1, - sym_value_declaration, - STATE(5907), 1, - sym_attributes, + ACTIONS(6620), 1, + anon_sym_DOT, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4934), 4, + ACTIONS(2988), 2, + anon_sym_and, + sym_identifier, + STATE(5099), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [112317] = 9, + ACTIONS(2986), 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, + [121108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453309,19 +461871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4935), 4, + STATE(5100), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 12, - sym__newline, - sym__dedent, + ACTIONS(5062), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -453332,47 +461892,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [112360] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [121151] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8129), 1, - anon_sym_DQUOTE, - ACTIONS(8131), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3635), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4936), 4, + STATE(5101), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [112415] = 10, + ACTIONS(3633), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [121196] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453383,31 +461940,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8133), 1, - anon_sym_COMMA, + ACTIONS(8429), 1, + anon_sym_do, + ACTIONS(8431), 1, + anon_sym_let, + ACTIONS(8433), 1, + anon_sym_let_BANG, + ACTIONS(8435), 1, + anon_sym_member, + ACTIONS(8437), 1, + anon_sym_val, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5166), 1, + sym_value_declaration, + STATE(5168), 1, + sym_do, + STATE(5225), 1, + sym_function_or_value_defn, + STATE(5927), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4937), 4, + STATE(5102), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112460] = 9, + [121261] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453418,19 +461985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4938), 4, + STATE(5103), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 12, - sym__newline, - sym__dedent, + ACTIONS(5046), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -453441,7 +462006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [112503] = 9, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [121304] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453452,30 +462019,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8439), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4939), 4, + STATE(5104), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 12, + ACTIONS(4913), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [112546] = 10, + [121349] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453486,19 +462054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8135), 1, + ACTIONS(8441), 1, anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4940), 4, + STATE(5105), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 11, + ACTIONS(4913), 11, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -453510,7 +462078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [112591] = 10, + [121394] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453521,31 +462089,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8137), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4941), 4, + STATE(5106), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 11, - sym__dedent, + ACTIONS(5086), 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [112636] = 9, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [121437] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453556,17 +462123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4942), 4, + STATE(5107), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 12, + ACTIONS(2119), 12, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -453579,127 +462146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_POUNDendif, anon_sym_POUNDelse, - [112679] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8139), 1, - anon_sym_DQUOTE, - ACTIONS(8141), 1, - anon_sym_DQUOTEB, - STATE(4936), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4943), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [112734] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8143), 1, - anon_sym_DQUOTE, - ACTIONS(8145), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4944), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [112789] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8147), 1, - anon_sym_DQUOTE, - ACTIONS(8149), 1, - anon_sym_DQUOTEB, - STATE(4927), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4945), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [112844] = 11, + [121480] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453710,32 +462157,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8151), 1, - anon_sym_and, - STATE(4921), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4946), 4, + STATE(5108), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4997), 10, + ACTIONS(5114), 12, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [112891] = 9, + [121523] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453746,110 +462191,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8443), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4947), 4, + STATE(5109), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5098), 12, + ACTIONS(4964), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [112934] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [121568] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8153), 1, - anon_sym_DQUOTE, - ACTIONS(8155), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4948), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [112989] = 15, - ACTIONS(5), 1, + ACTIONS(3667), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8157), 1, - anon_sym_DQUOTE, - ACTIONS(8159), 1, - anon_sym_DQUOTEB, - STATE(4968), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4949), 4, + STATE(5110), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113044] = 20, + ACTIONS(3665), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [121613] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453862,39 +462263,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8161), 1, - anon_sym_do, - ACTIONS(8163), 1, + ACTIONS(5548), 1, anon_sym_let, - ACTIONS(8165), 1, + ACTIONS(5550), 1, anon_sym_let_BANG, - ACTIONS(8167), 1, + ACTIONS(8246), 1, anon_sym_member, - ACTIONS(8169), 1, + ACTIONS(8248), 1, anon_sym_val, - STATE(3804), 1, + ACTIONS(8445), 1, + anon_sym_do, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(5151), 1, - sym_function_or_value_defn, - STATE(5169), 1, - sym_value_declaration, - STATE(5171), 1, + STATE(4998), 1, sym_do, - STATE(5916), 1, + STATE(5132), 1, + sym_value_declaration, + STATE(5213), 1, + sym_function_or_value_defn, + STATE(5969), 1, sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4950), 4, + STATE(5111), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113109] = 10, + [121678] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -453905,19 +462306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6460), 1, + ACTIONS(3696), 1, anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4951), 4, + STATE(5112), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6462), 11, + ACTIONS(3694), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -453929,81 +462330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [113154] = 9, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4952), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5074), 12, - sym__newline, - sym__dedent, - 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, - [113197] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8171), 1, - anon_sym_DQUOTE, - ACTIONS(8173), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4953), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [113252] = 10, + [121723] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454014,19 +462341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6506), 1, + ACTIONS(6517), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4954), 4, + STATE(5113), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6508), 11, + ACTIONS(6519), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -454038,47 +462365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [113297] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8175), 1, - anon_sym_DQUOTE, - ACTIONS(8177), 1, - anon_sym_DQUOTEB, - STATE(4944), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4955), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [113352] = 10, + [121768] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454089,31 +462376,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8179), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4956), 4, + STATE(5114), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 11, - sym__dedent, + ACTIONS(5054), 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [113397] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [121811] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454124,19 +462410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6510), 1, + ACTIONS(3702), 1, anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4957), 4, + STATE(5115), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6512), 11, + ACTIONS(3700), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -454148,82 +462434,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [113442] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8181), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4958), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5005), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113487] = 15, + [121856] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8183), 1, + ACTIONS(8447), 1, anon_sym_DQUOTE, - ACTIONS(8185), 1, + ACTIONS(8449), 1, anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5131), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8183), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4959), 4, + STATE(5116), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113542] = 9, + [121911] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454234,20 +462485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8451), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4960), 4, + STATE(5117), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 12, + ACTIONS(4903), 11, sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -454257,7 +462509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [113585] = 10, + [121956] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454268,108 +462520,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3708), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4961), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3706), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, + ACTIONS(8453), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [113630] = 12, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2959), 2, - anon_sym_and, - sym_identifier, - STATE(4962), 4, + STATE(5118), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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, - [113679] = 15, + ACTIONS(4903), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [122001] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8187), 1, + ACTIONS(8455), 1, anon_sym_DQUOTE, - ACTIONS(8189), 1, + ACTIONS(8457), 1, anon_sym_DQUOTEB, - STATE(4948), 1, + STATE(5075), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8183), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4963), 4, + STATE(5119), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113734] = 10, + [122056] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454380,31 +462595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3712), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4964), 4, + STATE(5120), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3710), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [113779] = 9, + ACTIONS(5110), 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, + [122099] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454415,30 +462629,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8459), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4965), 4, + STATE(5121), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 12, - sym__newline, + ACTIONS(4853), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [113822] = 20, + [122144] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454449,41 +462664,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(8191), 1, - anon_sym_do, - ACTIONS(8193), 1, - anon_sym_member, - ACTIONS(8195), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4435), 1, - sym_value_declaration, - STATE(4439), 1, - sym_do, - STATE(4452), 1, - sym_function_or_value_defn, - STATE(5937), 1, - sym_attributes, + ACTIONS(8461), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4966), 4, + STATE(5122), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113887] = 9, + ACTIONS(4853), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [122189] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454494,17 +462699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4967), 4, + STATE(5123), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 12, + ACTIONS(5072), 12, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -454515,49 +462722,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [113930] = 15, + [122232] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8463), 1, + anon_sym_DQUOTE, + ACTIONS(8465), 1, + anon_sym_DQUOTEB, + STATE(5086), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5124), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [122287] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8197), 1, + ACTIONS(8467), 1, anon_sym_DQUOTE, - ACTIONS(8199), 1, + ACTIONS(8469), 1, anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5136), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8183), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4968), 4, + STATE(5125), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113985] = 10, + [122342] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454568,19 +462813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8201), 1, + ACTIONS(8471), 1, anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4969), 4, + STATE(5126), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 11, + ACTIONS(4853), 11, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -454592,7 +462837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114030] = 9, + [122387] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454603,17 +462848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4970), 4, + STATE(5127), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 12, + ACTIONS(4793), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -454626,7 +462871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114073] = 10, + [122430] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454637,31 +462882,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8203), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4971), 4, + STATE(5128), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 11, - sym__dedent, + ACTIONS(5106), 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [114118] = 9, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [122473] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8473), 1, + anon_sym_DQUOTE, + ACTIONS(8475), 1, + anon_sym_DQUOTEB, + STATE(5133), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5129), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [122528] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454672,17 +462956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4972), 4, + STATE(5130), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 12, + ACTIONS(5046), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -454695,42 +462979,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114161] = 10, - ACTIONS(7), 1, + [122571] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8477), 1, + anon_sym_DQUOTE, + ACTIONS(8479), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3026), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4973), 4, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5131), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 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, - [114206] = 10, + [122626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454741,66 +463030,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8205), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4974), 4, + STATE(5132), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 11, + ACTIONS(5086), 12, + sym__newline, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [114251] = 10, - ACTIONS(7), 1, + [122669] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8481), 1, + anon_sym_DQUOTE, + ACTIONS(8483), 1, + anon_sym_DQUOTEB, + STATE(5092), 1, + aux_sym__string_literal_repeat1, + STATE(5574), 1, + sym__string_char, + STATE(5615), 1, + sym__simple_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6464), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(4975), 4, + ACTIONS(8179), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8183), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8181), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5133), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6466), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [114296] = 10, + [122724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454811,31 +463104,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4976), 4, + STATE(5134), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [114341] = 9, + ACTIONS(5090), 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, + [122767] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454846,70 +463138,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(35), 1, + anon_sym_let, + ACTIONS(37), 1, + anon_sym_let_BANG, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8290), 1, + anon_sym_do, + ACTIONS(8485), 1, + anon_sym_member, + ACTIONS(8487), 1, + anon_sym_val, + STATE(2773), 1, + sym_function_or_value_defn, + STATE(2787), 1, + sym_value_declaration, + STATE(2827), 1, + sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5954), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4977), 4, + STATE(5135), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5098), 12, - sym__newline, - sym__dedent, - 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, - [114384] = 15, + [122832] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8207), 1, + ACTIONS(8489), 1, anon_sym_DQUOTE, - ACTIONS(8209), 1, + ACTIONS(8491), 1, anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5092), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8183), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4978), 4, + STATE(5136), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [122887] = 10, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6529), 1, + anon_sym_COLON, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5137), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114439] = 10, + ACTIONS(6531), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [122932] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -454920,19 +463258,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8211), 1, + ACTIONS(8493), 1, anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4979), 4, + STATE(5138), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 11, + ACTIONS(4964), 11, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -454944,87 +463282,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114484] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [122977] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8213), 1, - anon_sym_DQUOTE, - ACTIONS(8215), 1, - anon_sym_DQUOTEB, - STATE(4989), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4980), 4, + STATE(5139), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114539] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(5114), 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, + [123020] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8217), 1, - anon_sym_DQUOTE, - ACTIONS(8219), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4981), 4, + STATE(5140), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114594] = 9, + ACTIONS(2526), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [123065] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455035,30 +463362,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8495), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4982), 4, + STATE(5141), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5064), 12, - sym__newline, + ACTIONS(4927), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [114637] = 11, + [123110] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455069,22 +463397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6500), 1, + ACTIONS(6509), 1, anon_sym_COLON, - ACTIONS(8221), 1, - anon_sym_as, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4983), 4, + STATE(5142), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6502), 10, + ACTIONS(6511), 11, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -455094,7 +463421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [114684] = 10, + [123155] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455105,19 +463432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, + ACTIONS(6521), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4984), 4, + STATE(5143), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 11, + ACTIONS(6523), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -455129,47 +463456,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [114729] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [123200] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8223), 1, - anon_sym_DQUOTE, - ACTIONS(8225), 1, - anon_sym_DQUOTEB, - STATE(4978), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6525), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4985), 4, + STATE(5144), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114784] = 9, + ACTIONS(6527), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [123245] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455180,17 +463502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4986), 4, + STATE(5145), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5082), 12, + ACTIONS(4545), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -455203,7 +463525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114827] = 20, + [123288] = 20, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455216,39 +463538,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8161), 1, + ACTIONS(8429), 1, anon_sym_do, - ACTIONS(8163), 1, + ACTIONS(8431), 1, anon_sym_let, - ACTIONS(8165), 1, + ACTIONS(8433), 1, anon_sym_let_BANG, - ACTIONS(8227), 1, + ACTIONS(8497), 1, anon_sym_member, - ACTIONS(8229), 1, + ACTIONS(8499), 1, anon_sym_val, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(5146), 1, + STATE(5164), 1, sym_value_declaration, - STATE(5151), 1, - sym_function_or_value_defn, - STATE(5171), 1, + STATE(5168), 1, sym_do, - STATE(5916), 1, + STATE(5225), 1, + sym_function_or_value_defn, + STATE(5927), 1, sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4987), 4, + STATE(5146), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114892] = 9, + [123353] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455259,17 +463581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4988), 4, + STATE(5147), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 12, + ACTIONS(5098), 12, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -455282,127 +463604,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [114935] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [123396] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8231), 1, - anon_sym_DQUOTE, - ACTIONS(8233), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6513), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4989), 4, + STATE(5148), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114990] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(6515), 11, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [123441] = 20, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8235), 1, - anon_sym_DQUOTE, - ACTIONS(8237), 1, - anon_sym_DQUOTEB, - STATE(4981), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(7879), 1, + anon_sym_member, + ACTIONS(7883), 1, + anon_sym_val, + ACTIONS(8244), 1, + anon_sym_do, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4998), 1, + sym_do, + STATE(5085), 1, + sym_value_declaration, + STATE(5095), 1, + sym_function_or_value_defn, + STATE(5969), 1, + sym_attributes, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4990), 4, + STATE(5149), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115045] = 15, + [123506] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8239), 1, + ACTIONS(8501), 1, anon_sym_DQUOTE, - ACTIONS(8241), 1, + ACTIONS(8503), 1, anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5010), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, + STATE(5574), 1, sym__string_char, - STATE(5489), 1, + STATE(5615), 1, sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8179), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8183), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8181), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4991), 4, + STATE(5150), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115100] = 9, + [123561] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455413,18 +463735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4992), 4, + STATE(5151), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5078), 12, - sym__newline, + ACTIONS(5062), 12, sym__dedent, anon_sym_LBRACK_LT, anon_sym_and, @@ -455433,50 +463754,11 @@ 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, - [115143] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8243), 1, - anon_sym_DQUOTE, - ACTIONS(8245), 1, - anon_sym_DQUOTEB, - STATE(5004), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4993), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [115198] = 20, + [123604] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455487,41 +463769,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8247), 1, - anon_sym_do, - ACTIONS(8249), 1, - anon_sym_let, - ACTIONS(8251), 1, - anon_sym_let_BANG, - ACTIONS(8253), 1, - anon_sym_member, - ACTIONS(8255), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5141), 1, - sym_do, - STATE(5194), 1, - sym_function_or_value_defn, - STATE(5196), 1, - sym_value_declaration, - STATE(5901), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4994), 4, + ACTIONS(2979), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(5152), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115263] = 9, + ACTIONS(2981), 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, + [123649] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455532,104 +463804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(4995), 4, + STATE(5153), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 12, - sym__newline, + ACTIONS(2119), 11, sym__dedent, 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, - [115306] = 9, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4996), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4644), 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [115349] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8257), 1, - anon_sym_DQUOTE, - ACTIONS(8259), 1, - anon_sym_DQUOTEB, - STATE(4953), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, + [123691] = 11, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4997), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [115404] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455640,71 +463839,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6492), 1, + ACTIONS(3132), 1, anon_sym_COLON, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(4998), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8505), 1, + aux_sym_float_token1, + STATE(5154), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6494), 11, - anon_sym_EQ, + ACTIONS(3134), 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_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [115449] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8261), 1, - anon_sym_DQUOTE, - ACTIONS(8263), 1, - anon_sym_DQUOTEB, - STATE(5027), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4999), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [115504] = 9, + anon_sym_f, + aux_sym_decimal_token1, + [123737] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455715,30 +463872,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5000), 4, + STATE(5155), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 12, + ACTIONS(5082), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [115547] = 10, + [123779] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455749,31 +463905,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6496), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5001), 4, + STATE(5156), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6498), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [115592] = 20, + ACTIONS(5098), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [123821] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455784,121 +463938,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(7820), 1, - anon_sym_member, - ACTIONS(7824), 1, - anon_sym_val, - ACTIONS(8265), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4970), 1, - sym_do, - STATE(5093), 1, - sym_value_declaration, - STATE(5180), 1, - sym_function_or_value_defn, - STATE(5925), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5002), 4, + STATE(5157), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115657] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(5078), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [123863] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8267), 1, - anon_sym_DQUOTE, - ACTIONS(8269), 1, - anon_sym_DQUOTEB, - STATE(5060), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5003), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [115712] = 15, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8271), 1, - anon_sym_DQUOTE, - ACTIONS(8273), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5004), 4, + STATE(5158), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115767] = 11, + ACTIONS(5194), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [123905] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455909,22 +464004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8151), 1, - anon_sym_and, - STATE(4946), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5005), 4, + STATE(5159), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5032), 10, + ACTIONS(5058), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -455934,7 +464026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - [115814] = 20, + [123947] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455945,41 +464037,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8247), 1, - anon_sym_do, - ACTIONS(8249), 1, - anon_sym_let, - ACTIONS(8251), 1, - anon_sym_let_BANG, - ACTIONS(8275), 1, - anon_sym_member, - ACTIONS(8277), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5141), 1, - sym_do, - STATE(5174), 1, - sym_value_declaration, - STATE(5194), 1, - sym_function_or_value_defn, - STATE(5901), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5006), 4, + STATE(5160), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115879] = 10, + ACTIONS(5230), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [123989] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -455990,31 +464072,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3704), 1, + ACTIONS(2964), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5007), 4, + ACTIONS(8507), 1, + anon_sym_DOT, + STATE(5161), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3702), 11, - anon_sym_EQ, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 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_in, - anon_sym_DASH_GT, - anon_sym_when, + anon_sym_SEMI, anon_sym_LT2, - [115924] = 9, + [124035] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456025,70 +464105,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5008), 4, + STATE(5162), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5078), 12, + ACTIONS(4913), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [115967] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8279), 1, - anon_sym_DQUOTE, - ACTIONS(8281), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5009), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [116022] = 10, + [124077] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456099,19 +464138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8283), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5010), 4, + STATE(5163), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 11, + ACTIONS(5102), 11, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -456123,7 +464160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [116067] = 9, + [124119] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456134,17 +464171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5011), 4, + STATE(5164), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5064), 12, + ACTIONS(5086), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -456156,8 +464193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [116110] = 10, + [124161] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456168,31 +464204,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3675), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5012), 4, + STATE(5165), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3673), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [116155] = 9, + ACTIONS(5082), 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, + [124203] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456203,19 +464237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5013), 4, + STATE(5166), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 12, - sym__newline, - sym__dedent, + ACTIONS(5050), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -456226,7 +464258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [116198] = 10, + anon_sym_POUNDendif, + [124245] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456237,31 +464270,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3609), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5014), 4, + STATE(5167), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3607), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [116243] = 20, + ACTIONS(5078), 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, + [124287] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456272,41 +464303,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(8285), 1, - anon_sym_do, - ACTIONS(8287), 1, - anon_sym_member, - ACTIONS(8289), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4485), 1, - sym_value_declaration, - STATE(4541), 1, - sym_do, - STATE(4542), 1, - sym_function_or_value_defn, - STATE(5898), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5015), 4, + STATE(5168), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116308] = 9, + ACTIONS(2119), 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, + [124329] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456317,30 +464336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5016), 4, + STATE(5169), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 12, - sym__newline, + ACTIONS(5094), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [116351] = 10, + [124371] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456351,231 +464369,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3554), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5017), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3552), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [116396] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8291), 1, - anon_sym_DQUOTE, - ACTIONS(8293), 1, - anon_sym_DQUOTEB, - STATE(5077), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5018), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [116451] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8295), 1, - anon_sym_DQUOTE, - ACTIONS(8297), 1, - anon_sym_DQUOTEB, - STATE(4991), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5019), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [116506] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8299), 1, - anon_sym_DQUOTE, - ACTIONS(8301), 1, - anon_sym_DQUOTEB, - STATE(5036), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5020), 4, + STATE(5170), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116561] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(5046), 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, + [124413] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8303), 1, - anon_sym_DQUOTE, - ACTIONS(8305), 1, - anon_sym_DQUOTEB, - STATE(4959), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5021), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [116616] = 15, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8307), 1, - anon_sym_DQUOTE, - ACTIONS(8309), 1, - anon_sym_DQUOTEB, - STATE(5009), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5022), 4, + STATE(5171), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116671] = 10, + ACTIONS(4549), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [124455] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456586,31 +464435,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8311), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5023), 4, + STATE(5172), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 11, + ACTIONS(8510), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [116716] = 10, + [124497] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456621,31 +464468,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8313), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5024), 4, + STATE(5173), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 11, + ACTIONS(4545), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [116761] = 20, + [124539] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456656,41 +464501,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(8287), 1, - anon_sym_member, - ACTIONS(8289), 1, - anon_sym_val, - ACTIONS(8315), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4485), 1, - sym_value_declaration, - STATE(4499), 1, - sym_function_or_value_defn, - STATE(4541), 1, - sym_do, - STATE(5898), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5025), 4, + STATE(5174), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116826] = 10, + ACTIONS(5122), 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, + [124581] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456701,21 +464534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8317), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5026), 4, + STATE(5175), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 11, + ACTIONS(2119), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -456724,48 +464556,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [116871] = 15, + [124623] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8319), 1, + ACTIONS(8518), 1, anon_sym_DQUOTE, - ACTIONS(8321), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5232), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, + STATE(5675), 1, sym__simple_string_char, + STATE(5733), 1, + sym__string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8512), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8516), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8514), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(5027), 4, + STATE(5176), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116926] = 10, + [124675] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456776,31 +464605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8323), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5028), 4, + STATE(5177), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4983), 11, + ACTIONS(5054), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [116971] = 10, + [124717] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456811,66 +464638,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3611), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6178), 1, + anon_sym_new, + ACTIONS(7879), 1, + anon_sym_member, + ACTIONS(7881), 1, + anon_sym_abstract, + ACTIONS(7883), 1, + anon_sym_val, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(8522), 1, + anon_sym_static, + STATE(5085), 1, + sym_additional_constr_defn, + STATE(6495), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5029), 4, + ACTIONS(7875), 2, + anon_sym_default, + anon_sym_override, + STATE(5178), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3613), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117016] = 10, - ACTIONS(7), 1, + [124777] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8524), 1, + anon_sym_DQUOTE, + STATE(5197), 1, + aux_sym__string_literal_repeat1, + STATE(5675), 1, + sym__simple_string_char, + STATE(5733), 1, + sym__string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3626), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5030), 4, + ACTIONS(8512), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8516), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8514), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5179), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3628), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117061] = 10, + [124829] = 19, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456881,31 +464718,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3630), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(8528), 1, + anon_sym_COMMA, + ACTIONS(8530), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + STATE(6279), 1, + aux_sym_types_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5031), 4, + STATE(5180), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3632), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117106] = 10, + [124891] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456916,31 +464761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8325), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5032), 4, + STATE(5181), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 11, + ACTIONS(5050), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [117151] = 10, + [124933] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456951,31 +464794,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3663), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5033), 4, + STATE(5182), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3661), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117196] = 9, + ACTIONS(5090), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [124975] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -456986,30 +464827,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5034), 4, + STATE(5183), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 12, - sym__newline, + ACTIONS(5122), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [117239] = 10, + [125017] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457020,71 +464860,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8327), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5035), 4, + STATE(5184), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5005), 11, + ACTIONS(5118), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [117284] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8329), 1, - anon_sym_DQUOTE, - ACTIONS(8331), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5036), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [117339] = 9, + [125059] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457095,30 +464893,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5037), 4, + STATE(5185), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 12, + ACTIONS(5110), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [117382] = 20, + [125101] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457129,41 +464926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(7837), 1, - anon_sym_member, - ACTIONS(7841), 1, - anon_sym_val, - ACTIONS(8333), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4494), 1, - sym_function_or_value_defn, - STATE(4541), 1, - sym_do, - STATE(4548), 1, - sym_value_declaration, - STATE(5898), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5038), 4, + STATE(5186), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117447] = 10, + ACTIONS(5098), 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, + [125143] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457174,31 +464959,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6435), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5039), 4, + STATE(5187), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6437), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117492] = 9, + ACTIONS(5130), 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, + [125185] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457209,69 +464992,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5040), 4, + STATE(5188), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 12, + ACTIONS(2119), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [117535] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8344), 1, - anon_sym_DQUOTE, - ACTIONS(8346), 1, - anon_sym_DQUOTEB, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, + [125227] = 11, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(8335), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8341), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8338), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5041), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym__string_literal_repeat1, - [117588] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457282,31 +465027,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3399), 1, + ACTIONS(3151), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5042), 4, + ACTIONS(8532), 1, + sym_int, + STATE(5189), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 11, - anon_sym_EQ, + ACTIONS(3153), 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_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [117633] = 10, + anon_sym_SEMI, + anon_sym_f, + aux_sym_decimal_token1, + [125273] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457317,19 +465060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8348), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5043), 4, + STATE(5190), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 11, + ACTIONS(5126), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -457341,52 +465082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - [117678] = 20, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(8350), 1, - anon_sym_do, - ACTIONS(8352), 1, - anon_sym_member, - ACTIONS(8354), 1, - anon_sym_val, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4970), 1, - sym_do, - STATE(5016), 1, - sym_value_declaration, - STATE(5184), 1, - sym_function_or_value_defn, - STATE(5925), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5044), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [117743] = 10, + [125315] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457397,71 +465093,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8356), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5045), 4, + STATE(5191), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5020), 11, + ACTIONS(5226), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [117788] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8358), 1, - anon_sym_DQUOTE, - ACTIONS(8360), 1, - anon_sym_DQUOTEB, - STATE(5052), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5046), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [117843] = 9, + [125357] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457472,30 +465126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5047), 4, + STATE(5192), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 12, + ACTIONS(5130), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [117886] = 9, + [125399] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457506,17 +465159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5048), 4, + STATE(5193), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 12, + ACTIONS(5130), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -457528,8 +465181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [117929] = 9, + [125441] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457540,30 +465192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5049), 4, + STATE(5194), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3167), 12, + ACTIONS(5130), 11, + 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [117972] = 10, + [125483] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457574,181 +465225,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6476), 1, - anon_sym_COLON, + ACTIONS(6693), 1, + anon_sym_new, + ACTIONS(8435), 1, + anon_sym_member, + ACTIONS(8437), 1, + anon_sym_val, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(8536), 1, + anon_sym_static, + ACTIONS(8538), 1, + anon_sym_abstract, + STATE(5166), 1, + sym_additional_constr_defn, + STATE(6482), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5050), 4, + ACTIONS(8534), 2, + anon_sym_default, + anon_sym_override, + STATE(5195), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6478), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118017] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [125543] = 12, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8362), 1, - anon_sym_DQUOTE, - ACTIONS(8364), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8540), 1, + anon_sym_LBRACK_LT, + STATE(5618), 1, + sym__attribute_set, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5051), 4, + ACTIONS(6737), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(6742), 4, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5196), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118072] = 15, + aux_sym_attributes_repeat1, + [125591] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8366), 1, + ACTIONS(8543), 1, anon_sym_DQUOTE, - ACTIONS(8368), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5199), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, + STATE(5675), 1, sym__simple_string_char, + STATE(5733), 1, + sym__string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8512), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8516), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8514), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(5052), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [118127] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8370), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5053), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5020), 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, - [118172] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6484), 1, - anon_sym_COLON, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5054), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6486), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118217] = 20, + STATE(5197), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [125643] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457759,76 +465341,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(7800), 1, - anon_sym_member, - ACTIONS(7804), 1, - anon_sym_val, - ACTIONS(8372), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4369), 1, - sym_value_declaration, - STATE(4412), 1, - sym_function_or_value_defn, - STATE(4439), 1, - sym_do, - STATE(5937), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5055), 4, + STATE(5198), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118282] = 10, - ACTIONS(7), 1, + ACTIONS(4545), 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, + [125685] = 13, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8417), 1, + anon_sym_DQUOTE, + STATE(5675), 1, + sym__simple_string_char, + STATE(5733), 1, + sym__string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3403), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5056), 4, + ACTIONS(8545), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8551), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8548), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5199), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3401), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118327] = 10, + aux_sym__string_literal_repeat1, + [125735] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457839,31 +465411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3543), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8554), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5057), 4, + ACTIONS(2886), 2, + anon_sym_and, + sym_identifier, + STATE(5200), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3541), 11, + aux_sym_compound_type_repeat1, + ACTIONS(2882), 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_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, anon_sym_LT2, - [118372] = 10, + anon_sym_LBRACK_RBRACK, + [125781] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457874,31 +465446,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3415), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5058), 4, + STATE(5201), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118417] = 10, + ACTIONS(5072), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [125823] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457909,71 +465479,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5059), 4, + STATE(5202), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118462] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(4793), 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, + [125865] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8374), 1, - anon_sym_DQUOTE, - ACTIONS(8376), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5060), 4, + STATE(5203), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118517] = 9, + ACTIONS(5046), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [125907] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -457984,30 +465545,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5061), 4, + STATE(5204), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 12, - sym__newline, + ACTIONS(3529), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [118560] = 20, + [125949] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458018,41 +465578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(8352), 1, - anon_sym_member, - ACTIONS(8354), 1, - anon_sym_val, - ACTIONS(8378), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4970), 1, - sym_do, - STATE(5016), 1, - sym_value_declaration, - STATE(5095), 1, - sym_function_or_value_defn, - STATE(5925), 1, - sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5062), 4, + STATE(5205), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118625] = 10, + ACTIONS(5072), 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, + [125991] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458063,31 +465611,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5063), 4, + STATE(5206), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118670] = 20, + ACTIONS(3529), 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, + [126033] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458098,41 +465644,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(8193), 1, + ACTIONS(6648), 1, + anon_sym_new, + ACTIONS(8368), 1, anon_sym_member, - ACTIONS(8195), 1, + ACTIONS(8370), 1, anon_sym_val, - ACTIONS(8372), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4412), 1, - sym_function_or_value_defn, - STATE(4435), 1, - sym_value_declaration, - STATE(4439), 1, - sym_do, - STATE(5937), 1, - sym_attributes, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_static, + ACTIONS(8561), 1, + anon_sym_abstract, + STATE(5024), 1, + sym_additional_constr_defn, + STATE(6498), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5064), 4, + ACTIONS(8557), 2, + anon_sym_default, + anon_sym_override, + STATE(5207), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118735] = 10, + [126093] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458143,71 +465686,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3427), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5065), 4, + STATE(5208), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3425), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118780] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(5213), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [126135] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8380), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, - anon_sym_DQUOTEB, - STATE(5051), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5066), 4, + STATE(5209), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118835] = 9, + ACTIONS(5090), 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, + [126177] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458218,19 +465752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5067), 4, + STATE(5210), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 12, - sym__newline, - sym__dedent, + ACTIONS(5106), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458241,7 +465773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [118878] = 10, + anon_sym_POUNDendif, + [126219] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458252,31 +465785,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3642), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5068), 4, + STATE(5211), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3644), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118923] = 10, + ACTIONS(5106), 11, + 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_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [126261] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458287,71 +465818,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6672), 1, + anon_sym_new, + ACTIONS(8292), 1, + anon_sym_member, + ACTIONS(8294), 1, + anon_sym_val, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(8565), 1, + anon_sym_static, + ACTIONS(8567), 1, + anon_sym_abstract, + STATE(2756), 1, + sym_additional_constr_defn, + STATE(6568), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5069), 4, + ACTIONS(8563), 2, + anon_sym_default, + anon_sym_override, + STATE(5212), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3653), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [118968] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [126321] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8384), 1, - anon_sym_DQUOTE, - ACTIONS(8386), 1, - anon_sym_DQUOTEB, - STATE(5088), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5070), 4, + STATE(5213), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119023] = 10, + ACTIONS(2119), 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, + [126363] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458362,31 +465893,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3431), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5071), 4, + STATE(5214), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3429), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [119068] = 9, + ACTIONS(3529), 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, + [126405] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458397,30 +465926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5072), 4, + STATE(5215), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 12, - sym__newline, + ACTIONS(5058), 11, sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [119111] = 10, + [126447] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458431,31 +465959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3605), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8091), 1, + anon_sym_STAR, + STATE(5200), 1, + aux_sym_compound_type_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5073), 4, + ACTIONS(3013), 2, + anon_sym_and, + sym_identifier, + STATE(5216), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3603), 11, + ACTIONS(3015), 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_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, anon_sym_LT2, - [119156] = 10, + anon_sym_LBRACK_RBRACK, + [126495] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458466,31 +465995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5074), 4, + STATE(5217), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3456), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [119201] = 10, + ACTIONS(5094), 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, + [126537] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458501,31 +466028,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6431), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5075), 4, + STATE(5218), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6433), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [119246] = 9, + ACTIONS(5102), 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, + [126579] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458536,17 +466061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5076), 4, + STATE(5219), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 12, + ACTIONS(3529), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458558,48 +466083,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119289] = 15, - ACTIONS(5), 1, + [126621] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(2988), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(8569), 1, + anon_sym_DOT, + STATE(5224), 1, + aux_sym_long_identifier_repeat1, + STATE(5220), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2986), 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, + [126669] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8388), 1, - anon_sym_DQUOTE, - ACTIONS(8390), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6198), 1, + anon_sym_LBRACK_LT, + STATE(5196), 1, + aux_sym_attributes_repeat1, + STATE(5618), 1, + sym__attribute_set, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5077), 4, + ACTIONS(6773), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(6775), 4, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5221), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119344] = 10, + [126719] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458610,31 +466167,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3462), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8571), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5078), 4, + ACTIONS(3060), 2, + anon_sym_and, + sym_identifier, + STATE(5222), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3460), 11, + ACTIONS(3058), 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_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, + anon_sym_STAR, anon_sym_LT2, - [119389] = 9, + anon_sym_LBRACK_RBRACK, + [126765] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458645,30 +466202,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5079), 4, + STATE(5223), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 12, + ACTIONS(5086), 11, + sym__dedent, 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_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119432] = 10, + [126807] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458679,31 +466237,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3470), 1, + ACTIONS(2956), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5080), 4, + ACTIONS(8569), 1, + anon_sym_DOT, + STATE(5161), 1, + aux_sym_long_identifier_repeat1, + STATE(5224), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3468), 11, - anon_sym_EQ, + ACTIONS(2954), 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_in, - anon_sym_DASH_GT, - anon_sym_when, + anon_sym_SEMI, anon_sym_LT2, - [119477] = 10, + [126855] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458714,31 +466271,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6468), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5081), 4, + STATE(5225), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6470), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [119522] = 10, + ACTIONS(2119), 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, + [126897] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458749,31 +466304,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6472), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5082), 4, + STATE(5226), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6474), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [119567] = 9, + ACTIONS(4913), 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, + [126939] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458784,17 +466337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5083), 4, + STATE(5227), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 12, + ACTIONS(5118), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458806,8 +466359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119610] = 9, + [126981] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458818,17 +466370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5084), 4, + STATE(5228), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5056), 12, + ACTIONS(5054), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458840,8 +466392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119653] = 9, + [127023] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458852,17 +466403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5085), 4, + STATE(5229), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 12, + ACTIONS(5114), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458874,8 +466425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119696] = 9, + [127065] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458886,17 +466436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5086), 4, + STATE(5230), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 12, + ACTIONS(5110), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458908,8 +466458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119739] = 9, + [127107] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458920,17 +466469,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5087), 4, + STATE(5231), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 12, + ACTIONS(5062), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -458942,48 +466491,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119782] = 15, + [127149] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8392), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(8394), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, + STATE(5199), 1, aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, + STATE(5675), 1, sym__simple_string_char, + STATE(5733), 1, + sym__string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, + ACTIONS(8512), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8516), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, + ACTIONS(8514), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(5088), 4, + STATE(5232), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119837] = 9, + [127201] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -458994,17 +466540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5089), 4, + STATE(5233), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 12, + ACTIONS(4549), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -459016,8 +466562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [119880] = 9, + [127243] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459028,20 +466573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5090), 4, + STATE(5234), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 12, + ACTIONS(4793), 11, sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -459051,7 +466595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [119923] = 10, + [127285] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459062,31 +466606,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8396), 1, - anon_sym_with, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7701), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5091), 4, + STATE(5235), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4851), 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, - [119968] = 20, + [127344] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459097,41 +466647,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(7837), 1, - anon_sym_member, - ACTIONS(7841), 1, - anon_sym_val, - ACTIONS(8315), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4499), 1, - sym_function_or_value_defn, - STATE(4541), 1, - sym_do, - STATE(4548), 1, - sym_value_declaration, - STATE(5898), 1, - sym_attributes, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN, + ACTIONS(8583), 1, + anon_sym__, + ACTIONS(8585), 1, + anon_sym_POUND, + STATE(3445), 1, + sym__static_type_identifier, + STATE(3524), 1, + sym_long_identifier, + STATE(3585), 1, + sym_atomic_type, + STATE(3589), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5092), 4, + ACTIONS(8587), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5236), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120033] = 9, + [127401] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459142,70 +466687,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(8589), 1, + anon_sym_and, + STATE(5245), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5093), 4, + STATE(5237), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 12, - sym__newline, - sym__dedent, - 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, - [120076] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(6375), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [127448] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8398), 1, - anon_sym_DQUOTE, - ACTIONS(8400), 1, - anon_sym_DQUOTEB, - STATE(5105), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6387), 1, + anon_sym_COLON, + ACTIONS(8591), 1, + anon_sym_and, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5094), 4, + STATE(5238), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120131] = 9, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [127493] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459216,30 +466756,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6387), 1, + anon_sym_COLON, + ACTIONS(8594), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5095), 4, + STATE(5239), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 12, - sym__newline, - sym__dedent, - 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, - [120174] = 10, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [127538] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459250,31 +466792,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3539), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8599), 1, + anon_sym_inline, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5223), 1, + sym_method_or_prop_defn, + STATE(5840), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5096), 4, + STATE(5240), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3537), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [120219] = 9, + [127597] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459285,30 +466831,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7120), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5097), 4, + STATE(5241), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 12, - sym__dedent, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [120262] = 10, + [127656] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459319,71 +466872,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8402), 1, - anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5098), 4, + ACTIONS(3072), 2, + anon_sym_and, + sym_identifier, + STATE(5242), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 11, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3070), 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, + [127699] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, 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, - [120307] = 15, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6178), 1, + anon_sym_new, ACTIONS(7879), 1, - anon_sym_POUNDnowarn, + anon_sym_member, ACTIONS(7881), 1, - anon_sym_POUNDlight, + anon_sym_abstract, ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8404), 1, - anon_sym_DQUOTE, - ACTIONS(8406), 1, - anon_sym_DQUOTEB, - STATE(5117), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + anon_sym_val, + ACTIONS(8522), 1, + anon_sym_static, + STATE(5085), 1, + sym_additional_constr_defn, + STATE(7896), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5099), 4, + ACTIONS(7875), 2, + anon_sym_default, + anon_sym_override, + STATE(5243), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120362] = 20, + [127756] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459394,41 +466947,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(7820), 1, - anon_sym_member, - ACTIONS(7824), 1, - anon_sym_val, - ACTIONS(8378), 1, - anon_sym_do, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4970), 1, - sym_do, - STATE(5093), 1, - sym_value_declaration, - STATE(5095), 1, - sym_function_or_value_defn, - STATE(5925), 1, - sym_attributes, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8605), 1, + anon_sym_inline, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4484), 1, + sym_method_or_prop_defn, + STATE(5851), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5100), 4, + STATE(5244), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120427] = 10, + [127815] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459439,71 +466986,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3638), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6379), 1, + anon_sym_COLON, + ACTIONS(8589), 1, + anon_sym_and, + STATE(5239), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5101), 4, + STATE(5245), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3640), 11, + ACTIONS(6381), 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_in, - anon_sym_DASH_GT, - anon_sym_when, anon_sym_LT2, - [120472] = 15, + [127862] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8408), 1, - anon_sym_DQUOTE, - ACTIONS(8410), 1, + ACTIONS(8611), 1, + anon_sym_DQUOTE2, + ACTIONS(8613), 1, anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, + STATE(5301), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5102), 4, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5246), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120527] = 10, + [127913] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459514,31 +467058,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8412), 1, - anon_sym_with, + ACTIONS(5940), 1, + anon_sym_new, + ACTIONS(7855), 1, + anon_sym_member, + ACTIONS(7857), 1, + anon_sym_abstract, + ACTIONS(7859), 1, + anon_sym_val, + ACTIONS(8615), 1, + anon_sym_static, + STATE(4443), 1, + sym_additional_constr_defn, + STATE(8256), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5103), 4, + ACTIONS(7851), 2, + anon_sym_default, + anon_sym_override, + STATE(5247), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4963), 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, - [120572] = 9, + [127970] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459549,70 +467098,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6060), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5104), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5248), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5102), 12, - sym__newline, - sym__dedent, - 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, - [120615] = 15, + [128027] = 18, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8414), 1, - anon_sym_DQUOTE, - ACTIONS(8416), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8621), 1, + anon_sym_inline, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4486), 1, + sym_method_or_prop_defn, + STATE(5816), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5105), 4, + STATE(5249), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120670] = 10, + [128086] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459623,65 +467181,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6480), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5106), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5250), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6482), 11, - anon_sym_EQ, + ACTIONS(3176), 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_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [120715] = 9, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_f, + aux_sym_decimal_token1, + [128129] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5107), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5082), 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, - [120758] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459692,65 +467214,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5108), 4, + STATE(5251), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 12, + ACTIONS(3134), 10, sym__newline, sym__dedent, - 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, - [120801] = 10, - ACTIONS(7), 1, + 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, + [128172] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8623), 1, + anon_sym_DQUOTE2, + ACTIONS(8625), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8418), 1, - anon_sym_with, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5109), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5252), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4857), 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, - [120846] = 20, + [128223] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459761,41 +467282,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(35), 1, - anon_sym_let, - ACTIONS(37), 1, - anon_sym_let_BANG, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - ACTIONS(8420), 1, - anon_sym_member, - ACTIONS(8422), 1, - anon_sym_val, - STATE(2740), 1, - sym_function_or_value_defn, - STATE(2745), 1, - sym_value_declaration, - STATE(2775), 1, - sym_do, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_PIPE, + ACTIONS(8631), 1, + anon_sym_LBRACE, + ACTIONS(8633), 1, + anon_sym_new, + STATE(3811), 1, + sym_union_type_cases, + STATE(4738), 1, + sym_union_type_case, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(5994), 1, + STATE(7746), 1, sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5110), 4, + STATE(5253), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120911] = 9, + [128282] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459806,30 +467323,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5111), 4, + ACTIONS(3068), 2, + anon_sym_and, + sym_identifier, + STATE(5254), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 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, - [120954] = 9, + ACTIONS(3066), 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, + [128325] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459840,138 +467356,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5112), 4, + ACTIONS(5164), 2, + sym__newline, + sym__dedent, + STATE(5255), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 12, - sym__newline, - sym__dedent, - 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, - [120997] = 15, + [128382] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8424), 1, - anon_sym_DQUOTE, - ACTIONS(8426), 1, + ACTIONS(8637), 1, + anon_sym_DQUOTE2, + ACTIONS(8639), 1, anon_sym_DQUOTEB, - STATE(5102), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, + STATE(5252), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5113), 4, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5256), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121052] = 9, - ACTIONS(7), 1, + [128433] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8641), 1, + anon_sym_DQUOTE2, + ACTIONS(8643), 1, + anon_sym_DQUOTEB, + STATE(5266), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5114), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5257), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 12, - sym__newline, - sym__dedent, - 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, - [121095] = 9, - ACTIONS(7), 1, + [128484] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8645), 1, + anon_sym_DQUOTE2, + ACTIONS(8647), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5115), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5258), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 12, - sym__newline, - sym__dedent, - 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, - [121138] = 9, + [128535] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -459982,70 +467507,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_LPAREN, + ACTIONS(8653), 1, + anon_sym__, + ACTIONS(8655), 1, + anon_sym_POUND, + STATE(5364), 1, + sym__static_type_identifier, + STATE(5583), 1, + sym_long_identifier, + STATE(5730), 1, + sym_type_argument, + STATE(5732), 1, + sym_atomic_type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5116), 4, + ACTIONS(8657), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5259), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 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, - [121181] = 15, + [128592] = 18, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8428), 1, - anon_sym_DQUOTE, - ACTIONS(8430), 1, - anon_sym_DQUOTEB, - STATE(5041), 1, - aux_sym__string_literal_repeat1, - STATE(5454), 1, - sym__string_char, - STATE(5489), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8107), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8111), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8109), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5117), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [121236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460056,30 +467549,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8659), 1, + anon_sym_inline, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4443), 1, + sym_method_or_prop_defn, + STATE(5836), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5118), 4, + STATE(5260), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5056), 12, - sym__newline, - sym__dedent, - 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, - [121279] = 10, + [128651] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460090,31 +467588,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3716), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5977), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5119), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5261), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3714), 11, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [121324] = 9, + [128708] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460125,67 +467628,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7213), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5120), 4, + STATE(5262), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 12, - sym__newline, - sym__dedent, - 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, - [121367] = 13, + [128767] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8344), 1, - anon_sym_DQUOTE, - STATE(5595), 1, + ACTIONS(8661), 1, + anon_sym_DQUOTE2, + ACTIONS(8663), 1, + anon_sym_DQUOTEB, + STATE(5258), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, sym__simple_string_char, - STATE(5652), 1, - sym__string_char, + STATE(5863), 1, + sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8432), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8438), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8435), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5121), 5, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5263), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__string_literal_repeat1, - [121417] = 9, + [128818] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460196,29 +467706,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8669), 1, + anon_sym__, + ACTIONS(8671), 1, + anon_sym_POUND, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5023), 1, + sym_atomic_type, + STATE(5026), 1, + sym_type_argument, + STATE(5032), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5122), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5264), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 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, - [121459] = 9, + [128875] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460229,62 +467746,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6216), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5123), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5265), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121501] = 9, - ACTIONS(7), 1, + [128932] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8673), 1, + anon_sym_DQUOTE2, + ACTIONS(8675), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5124), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5266), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5090), 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, - [121543] = 9, + [128983] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460295,29 +467823,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8677), 1, + sym_identifier, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5125), 4, + ACTIONS(5164), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5267), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4612), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121585] = 18, + [129040] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460328,38 +467863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(7820), 1, - anon_sym_member, - ACTIONS(7822), 1, - anon_sym_abstract, - ACTIONS(7824), 1, - anon_sym_val, - ACTIONS(8441), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8443), 1, - anon_sym_static, - STATE(5093), 1, - sym_additional_constr_defn, - STATE(6444), 1, - sym_access_modifier, + ACTIONS(8669), 1, + anon_sym__, + ACTIONS(8679), 1, + anon_sym_POUND, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5023), 1, + sym_atomic_type, + STATE(5026), 1, + sym_type_argument, + STATE(5032), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7816), 2, - anon_sym_default, - anon_sym_override, - STATE(5126), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5268), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121645] = 9, + [129097] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460370,62 +467903,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + ACTIONS(8681), 1, + sym__dedent, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6676), 1, + sym_record_field, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5127), 4, + STATE(5269), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121687] = 9, - ACTIONS(7), 1, + [129156] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8683), 1, + anon_sym_DQUOTE2, + ACTIONS(8685), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5128), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5270), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121729] = 9, + [129207] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460436,29 +467981,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(8687), 1, + anon_sym_and, + STATE(5350), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5129), 4, + STATE(5271), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5070), 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, - [121771] = 18, + ACTIONS(6375), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [129254] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460469,71 +468018,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6642), 1, - anon_sym_new, - ACTIONS(8253), 1, - anon_sym_member, - ACTIONS(8255), 1, - anon_sym_val, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(8447), 1, - anon_sym_static, - ACTIONS(8449), 1, - anon_sym_abstract, - STATE(5196), 1, - sym_additional_constr_defn, - STATE(6434), 1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8689), 1, + anon_sym_inline, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5173), 1, + sym_method_or_prop_defn, + STATE(5900), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8445), 2, - anon_sym_default, - anon_sym_override, - STATE(5130), 4, + STATE(5272), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121831] = 9, - ACTIONS(7), 1, + [129313] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8691), 1, + anon_sym_DQUOTE2, + ACTIONS(8693), 1, + anon_sym_DQUOTEB, + STATE(5270), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5131), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5273), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121873] = 18, + [129364] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460544,38 +468094,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6604), 1, - anon_sym_new, - ACTIONS(8119), 1, - anon_sym_member, - ACTIONS(8121), 1, - anon_sym_val, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(8453), 1, - anon_sym_static, - ACTIONS(8455), 1, - anon_sym_abstract, - STATE(2747), 1, - sym_additional_constr_defn, - STATE(6551), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7297), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8451), 2, - anon_sym_default, - anon_sym_override, - STATE(5132), 4, + STATE(5274), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [129423] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8695), 1, + anon_sym_DQUOTE2, + ACTIONS(8697), 1, + anon_sym_DQUOTEB, + STATE(5297), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5275), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [129474] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8699), 1, + anon_sym_DQUOTE2, + ACTIONS(8701), 1, + anon_sym_DQUOTEB, + STATE(5282), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5276), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121933] = 9, + [129525] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460586,29 +468209,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7038), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5133), 4, + STATE(5277), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5120), 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, - [121975] = 9, + [129584] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460619,29 +468250,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(8703), 1, + anon_sym_and, + STATE(5308), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5134), 4, + STATE(5278), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5078), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122017] = 9, + ACTIONS(6375), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [129631] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460652,29 +468285,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8705), 1, + anon_sym_EQ, + ACTIONS(8707), 1, + anon_sym_COLON, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_COLON_COLON, + ACTIONS(8715), 1, + anon_sym_PIPE, + ACTIONS(8717), 1, + anon_sym_AMP, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6512), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5135), 4, + STATE(5279), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5082), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122059] = 9, + [129690] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460685,99 +468326,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7356), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5136), 4, + STATE(5280), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5064), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122101] = 11, - ACTIONS(7), 1, + [129749] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8719), 1, + anon_sym_DQUOTE2, + ACTIONS(8721), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8457), 1, - anon_sym_COLON_GT, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3064), 2, - anon_sym_and, - sym_identifier, - STATE(5137), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5281), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 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, - [122147] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + [129800] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8723), 1, + anon_sym_DQUOTE2, + ACTIONS(8725), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8459), 1, - aux_sym_float_token1, - STATE(5138), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5282), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 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, - [122193] = 9, + [129851] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460788,31 +468441,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6008), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5139), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5283), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122235] = 11, - ACTIONS(3), 1, - sym_line_comment, + [129908] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460823,62 +468483,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3146), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8461), 1, - sym_int, - STATE(5140), 4, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(7825), 1, + anon_sym_inline, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5085), 1, + sym_method_or_prop_defn, + STATE(5896), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5284), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3148), 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, - [122281] = 9, - ACTIONS(7), 1, + [129967] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8727), 1, + anon_sym_DQUOTE2, + ACTIONS(8729), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5141), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5285), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [122323] = 9, + [130018] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460889,29 +468559,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5142), 4, + ACTIONS(8731), 2, + sym__newline, + sym__dedent, + STATE(5286), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [122365] = 9, + [130075] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460922,29 +468601,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(8733), 1, + anon_sym_COLON, + ACTIONS(8735), 1, + anon_sym_as, + ACTIONS(8737), 1, + anon_sym_COMMA, + ACTIONS(8739), 1, + anon_sym_COLON_COLON, + ACTIONS(8741), 1, + anon_sym_PIPE, + ACTIONS(8743), 1, + anon_sym_AMP, + ACTIONS(8747), 1, + sym__dedent, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6202), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(8745), 2, + sym__newline, anon_sym_SEMI, - sym_line_comment, - STATE(5143), 4, + STATE(5287), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122407] = 9, + [130134] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460955,29 +468640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, + anon_sym_GT, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5144), 4, + STATE(5288), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 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, - [122449] = 9, + [130193] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -460988,62 +468681,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6018), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5145), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5289), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 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, - [122491] = 9, - ACTIONS(7), 1, + [130250] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8749), 1, + anon_sym_DQUOTE2, + ACTIONS(8751), 1, + anon_sym_DQUOTEB, + STATE(5281), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5146), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5290), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122533] = 9, + [130301] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461054,62 +468758,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6951), 1, + anon_sym_DASH_GT, + ACTIONS(6953), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_LT2, + ACTIONS(6957), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8677), 1, + sym_identifier, + STATE(4274), 1, + aux_sym_compound_type_repeat1, + STATE(4348), 1, + sym_type_arguments, + STATE(4360), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5147), 4, + ACTIONS(5152), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5291), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122575] = 9, - ACTIONS(7), 1, + [130358] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8753), 1, + anon_sym_DQUOTE2, + ACTIONS(8755), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5148), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5292), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 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, - [122617] = 11, + [130409] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461120,31 +468837,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8463), 1, - anon_sym_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2916), 2, - anon_sym_and, - sym_identifier, - STATE(5149), 5, + ACTIONS(7238), 1, + aux_sym_decimal_token1, + ACTIONS(7369), 1, + anon_sym_f, + STATE(5293), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_compound_type_repeat1, - ACTIONS(2914), 7, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2526), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [122663] = 9, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130456] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461155,29 +468872,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8757), 1, + anon_sym_inline, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5166), 1, + sym_method_or_prop_defn, + STATE(5866), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5150), 4, + STATE(5294), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122705] = 9, + [130515] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461188,95 +468911,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5960), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5151), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5295), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122747] = 9, - ACTIONS(7), 1, + [130572] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8759), 1, + anon_sym_DQUOTE2, + ACTIONS(8761), 1, + anon_sym_DQUOTEB, + STATE(5285), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5152), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5296), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 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, - [122789] = 9, - ACTIONS(7), 1, + [130623] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8763), 1, + anon_sym_DQUOTE2, + ACTIONS(8765), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5153), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5297), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122831] = 9, + [130674] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461287,29 +469025,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6024), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5154), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5298), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122873] = 9, + [130731] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461320,95 +469067,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5155), 4, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(8767), 1, + anon_sym_and, + STATE(5332), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(5299), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 11, + ACTIONS(6375), 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122915] = 9, - ACTIONS(7), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130778] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8769), 1, + anon_sym_DQUOTE2, + ACTIONS(8771), 1, + anon_sym_DQUOTEB, + STATE(5292), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5156), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5300), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5098), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122957] = 9, - ACTIONS(7), 1, + [130829] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8773), 1, + anon_sym_DQUOTE2, + ACTIONS(8775), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5157), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5301), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5110), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [122999] = 9, + [130880] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461419,29 +469176,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5158), 4, + ACTIONS(8777), 1, + anon_sym_DOT, + STATE(5302), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5094), 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, - [123041] = 9, + aux_sym_long_identifier_repeat1, + ACTIONS(2966), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LT2, + [130925] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461452,29 +469210,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8780), 1, + anon_sym_inline, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5181), 1, + sym_method_or_prop_defn, + STATE(5897), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5159), 4, + STATE(5303), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5052), 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, - [123083] = 9, + [130984] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461485,29 +469249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7986), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5160), 4, + STATE(5304), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5209), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123125] = 18, + [131043] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461518,38 +469290,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, - anon_sym_new, - ACTIONS(8103), 1, - anon_sym_member, - ACTIONS(8105), 1, - anon_sym_val, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(8468), 1, - anon_sym_static, - ACTIONS(8470), 1, - anon_sym_abstract, - STATE(4924), 1, - sym_additional_constr_defn, - STATE(6447), 1, - sym_access_modifier, + ACTIONS(6387), 1, + anon_sym_COLON, + ACTIONS(8782), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8466), 2, - anon_sym_default, - anon_sym_override, - STATE(5161), 4, + STATE(5305), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123185] = 12, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [131088] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461560,32 +469326,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2956), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8022), 1, - anon_sym_STAR, - STATE(5149), 1, - aux_sym_compound_type_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2986), 2, - anon_sym_and, - sym_identifier, - STATE(5162), 4, + ACTIONS(8785), 1, + anon_sym_DOT, + STATE(5302), 1, + aux_sym_long_identifier_repeat1, + STATE(5306), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2984), 7, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2954), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [123233] = 9, + [131135] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461596,29 +469359,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7983), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5163), 4, + STATE(5307), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5060), 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, - [123275] = 9, + [131194] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461629,29 +469400,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6379), 1, + anon_sym_COLON, + ACTIONS(8703), 1, + anon_sym_and, + STATE(5305), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5164), 4, + STATE(5308), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5229), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123317] = 9, + ACTIONS(6381), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [131241] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461662,69 +469435,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5165), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5056), 11, + ACTIONS(27), 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, - [123359] = 14, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8478), 1, - anon_sym_DQUOTE, - STATE(5121), 1, - aux_sym__string_literal_repeat1, - STATE(5595), 1, - sym__simple_string_char, - STATE(5652), 1, - sym__string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6009), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8472), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8476), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8474), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5166), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5309), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123411] = 11, - ACTIONS(3), 1, - sym_line_comment, + [131298] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461735,62 +469475,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8480), 1, - anon_sym_DOT, - STATE(5167), 5, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6031), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5310), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 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, - [123457] = 9, - ACTIONS(7), 1, + [131355] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8787), 1, + anon_sym_DQUOTE2, + ACTIONS(8789), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5168), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5311), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5056), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123499] = 9, + [131406] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461801,62 +469552,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5890), 1, + anon_sym_and, + ACTIONS(5892), 1, + anon_sym_GT, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5169), 4, + STATE(5312), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123541] = 9, - ACTIONS(7), 1, + [131465] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8791), 1, + anon_sym_DQUOTE2, + ACTIONS(8793), 1, + anon_sym_DQUOTEB, + STATE(5311), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5170), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5313), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5102), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123583] = 9, + [131516] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461867,29 +469630,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7925), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5171), 4, + STATE(5314), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123625] = 9, + [131575] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461900,29 +469671,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5172), 4, + ACTIONS(8795), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(5315), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5215), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123667] = 9, + [131632] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461933,29 +469711,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6042), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5173), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5316), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4644), 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, - [123709] = 9, + [131689] = 18, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -461966,67 +469753,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(8733), 1, + anon_sym_COLON, + ACTIONS(8735), 1, + anon_sym_as, + ACTIONS(8737), 1, + anon_sym_COMMA, + ACTIONS(8739), 1, + anon_sym_COLON_COLON, + ACTIONS(8741), 1, + anon_sym_PIPE, + ACTIONS(8743), 1, + anon_sym_AMP, + ACTIONS(8797), 1, + sym__dedent, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6234), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(8745), 2, + sym__newline, anon_sym_SEMI, - sym_line_comment, - STATE(5174), 4, + STATE(5317), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5042), 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, - [123751] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [131748] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8483), 1, - anon_sym_DQUOTE, - STATE(5166), 1, - aux_sym__string_literal_repeat1, - STATE(5595), 1, - sym__simple_string_char, - STATE(5652), 1, - sym__string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8472), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8476), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8474), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5175), 4, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5318), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123803] = 9, + ACTIONS(2966), 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_DOT, + anon_sym_LT2, + [131791] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462037,29 +469825,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7922), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5176), 4, + STATE(5319), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5086), 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, - [123845] = 9, + [131850] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462070,29 +469866,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6046), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5177), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5320), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4971), 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, - [123887] = 9, + [131907] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462103,31 +469906,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8707), 1, + anon_sym_COLON, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_COLON_COLON, + ACTIONS(8715), 1, + anon_sym_PIPE, + ACTIONS(8717), 1, + anon_sym_AMP, + ACTIONS(8799), 1, + anon_sym_EQ, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6656), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5178), 4, + STATE(5321), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5190), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [123929] = 12, - ACTIONS(3), 1, - sym_line_comment, + [131966] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462138,30 +469947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8485), 1, - anon_sym_DOT, - STATE(5185), 1, - aux_sym_long_identifier_repeat1, - STATE(5179), 4, + ACTIONS(6672), 1, + anon_sym_new, + ACTIONS(8292), 1, + anon_sym_member, + ACTIONS(8294), 1, + anon_sym_val, + ACTIONS(8565), 1, + anon_sym_static, + ACTIONS(8567), 1, + anon_sym_abstract, + STATE(2756), 1, + sym_additional_constr_defn, + STATE(8072), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8563), 2, + anon_sym_default, + anon_sym_override, + STATE(5322), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 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, - [123977] = 9, + [132023] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462172,29 +469987,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5180), 4, + ACTIONS(8801), 2, + sym__newline, + sym__dedent, + STATE(5323), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [124019] = 9, + [132080] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462205,29 +470027,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7411), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5181), 4, + STATE(5324), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [124061] = 9, + [132139] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462238,67 +470070,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8803), 1, + anon_sym_inline, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5132), 1, + sym_method_or_prop_defn, + STATE(5865), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5182), 4, + STATE(5325), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(8487), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [124103] = 14, + [132198] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8489), 1, - anon_sym_DQUOTE, - STATE(5121), 1, - aux_sym__string_literal_repeat1, - STATE(5595), 1, + ACTIONS(8805), 1, + anon_sym_DQUOTE2, + ACTIONS(8807), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, sym__simple_string_char, - STATE(5652), 1, - sym__string_char, + STATE(5863), 1, + sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8472), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8476), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8474), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5183), 4, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5326), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124155] = 9, + [132249] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462309,31 +470146,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_PIPE, + ACTIONS(8633), 1, + anon_sym_new, + ACTIONS(8809), 1, + anon_sym_LBRACE, + STATE(3784), 1, + sym_union_type_cases, + STATE(4738), 1, + sym_union_type_case, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(7746), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5184), 4, + STATE(5327), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [124197] = 12, - ACTIONS(3), 1, - sym_line_comment, + [132308] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462344,30 +470187,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2973), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8485), 1, - anon_sym_DOT, - STATE(5167), 1, - aux_sym_long_identifier_repeat1, - STATE(5185), 4, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5932), 1, + sym_type_argument_defn, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5328), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 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, - [124245] = 19, + [132365] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462378,39 +470229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8493), 1, - anon_sym_COMMA, - ACTIONS(8495), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - STATE(6365), 1, - aux_sym_types_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8811), 1, + anon_sym_inline, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5164), 1, + sym_method_or_prop_defn, + STATE(5820), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5186), 4, + STATE(5329), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124307] = 9, + [132424] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462421,29 +470268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + ACTIONS(8813), 1, + sym__dedent, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6676), 1, + sym_record_field, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5187), 4, + STATE(5330), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [124349] = 9, + [132483] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462454,29 +470309,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6803), 1, + anon_sym_new, + ACTIONS(8175), 1, + anon_sym_member, + ACTIONS(8177), 1, + anon_sym_val, + ACTIONS(8817), 1, + anon_sym_static, + ACTIONS(8819), 1, + anon_sym_abstract, + STATE(5181), 1, + sym_additional_constr_defn, + STATE(7830), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5188), 4, + ACTIONS(8815), 2, + anon_sym_default, + anon_sym_override, + STATE(5331), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5078), 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, - [124391] = 9, + [132540] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462487,67 +470351,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5189), 4, + ACTIONS(6379), 1, + anon_sym_COLON, + ACTIONS(8767), 1, + anon_sym_and, + STATE(5355), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(5332), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5116), 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, - [124433] = 14, + ACTIONS(6381), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [132587] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8497), 1, - anon_sym_DQUOTE, - STATE(5183), 1, - aux_sym__string_literal_repeat1, - STATE(5595), 1, + ACTIONS(8821), 1, + anon_sym_DQUOTE2, + ACTIONS(8823), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, sym__simple_string_char, - STATE(5652), 1, - sym__string_char, + STATE(5863), 1, + sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8472), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8476), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8474), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(5190), 4, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5333), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124485] = 9, + [132638] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462558,29 +470421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6013), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5191), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5334), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5074), 11, - 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_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [124527] = 9, + [132695] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462591,29 +470461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6001), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5192), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5335), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5082), 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, - [124569] = 9, + [132752] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462624,29 +470501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6693), 1, + anon_sym_new, + ACTIONS(8435), 1, + anon_sym_member, + ACTIONS(8437), 1, + anon_sym_val, + ACTIONS(8536), 1, + anon_sym_static, + ACTIONS(8538), 1, + anon_sym_abstract, + STATE(5166), 1, + sym_additional_constr_defn, + STATE(8284), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5193), 4, + ACTIONS(8534), 2, + anon_sym_default, + anon_sym_override, + STATE(5336), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5102), 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, - [124611] = 9, + [132809] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462657,29 +470543,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8825), 1, + anon_sym_inline, + STATE(2558), 1, + sym_property_or_ident, + STATE(2787), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5853), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5194), 4, + STATE(5337), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2103), 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, - [124653] = 9, + [132868] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462690,29 +470582,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5195), 4, + ACTIONS(3096), 2, + anon_sym_and, + sym_identifier, + STATE(5338), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5064), 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, - [124695] = 9, + ACTIONS(3098), 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, + [132911] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462723,62 +470615,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5196), 4, + ACTIONS(5152), 2, + sym__newline, + sym__dedent, + STATE(5339), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5046), 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, - [124737] = 9, - ACTIONS(7), 1, + [132968] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8827), 1, + anon_sym_DQUOTE2, + ACTIONS(8829), 1, + anon_sym_DQUOTEB, + STATE(5384), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5340), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [133019] = 14, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8831), 1, + anon_sym_DQUOTE2, + ACTIONS(8833), 1, + anon_sym_DQUOTEB, + STATE(5333), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5197), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4638), 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, - [124779] = 9, + [133070] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462789,29 +470729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5998), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5198), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5342), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5106), 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, - [124821] = 9, + [133127] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462822,29 +470769,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5997), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5199), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5098), 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, - [124863] = 9, + [133184] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462855,31 +470809,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7860), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5200), 4, + STATE(5344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3646), 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, - [124905] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [133243] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462890,35 +470850,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8501), 1, - anon_sym_inline, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4534), 1, - sym_method_or_prop_defn, - STATE(5841), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7857), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5201), 4, + STATE(5345), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124964] = 17, + [133302] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462931,34 +470893,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(5933), 1, + STATE(5993), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5202), 4, + STATE(5346), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [133359] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8835), 1, + anon_sym_DQUOTE2, + ACTIONS(8837), 1, + anon_sym_DQUOTEB, + STATE(5326), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5347), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [133410] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8839), 1, + anon_sym_DQUOTE2, + ACTIONS(8841), 1, + anon_sym_DQUOTEB, + STATE(5340), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125021] = 12, + [133461] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -462969,31 +471005,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - ACTIONS(8511), 1, - anon_sym_EQ, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5203), 4, + ACTIONS(8843), 2, + sym__newline, + sym__dedent, + STATE(5349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 7, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [125068] = 10, + [133518] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463004,68 +471045,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6379), 1, + anon_sym_COLON, + ACTIONS(8687), 1, + anon_sym_and, + STATE(5238), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3093), 2, - anon_sym_and, - sym_identifier, - STATE(5204), 4, + STATE(5350), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3095), 8, + ACTIONS(6381), 7, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [125111] = 14, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [133565] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5986), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5351), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [133622] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8517), 1, + ACTIONS(8845), 1, anon_sym_DQUOTE2, - ACTIONS(8519), 1, + ACTIONS(8847), 1, anon_sym_DQUOTEB, - STATE(5224), 1, + STATE(5405), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5205), 4, + STATE(5352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125162] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [133673] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463076,35 +471157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8521), 1, - anon_sym_inline, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5169), 1, - sym_method_or_prop_defn, - STATE(5802), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7636), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5206), 4, + STATE(5353), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125221] = 17, + [133732] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463115,36 +471198,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6642), 1, - anon_sym_new, - ACTIONS(8253), 1, - anon_sym_member, - ACTIONS(8255), 1, - anon_sym_val, - ACTIONS(8447), 1, - anon_sym_static, - ACTIONS(8449), 1, - anon_sym_abstract, - STATE(5196), 1, - sym_additional_constr_defn, - STATE(8147), 1, - sym_access_modifier, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5987), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8445), 2, - anon_sym_default, - anon_sym_override, - STATE(5207), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5354), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [133789] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6387), 1, + anon_sym_COLON, + ACTIONS(8849), 1, + anon_sym_and, + STATE(5355), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125278] = 18, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133834] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463155,37 +471272,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8525), 1, + ACTIONS(8577), 1, anon_sym_mutable, - STATE(5472), 1, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(5902), 1, sym__attribute_set, - STATE(6099), 1, + STATE(6100), 1, sym_attributes, - STATE(6330), 1, + STATE(6360), 1, sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7882), 1, + STATE(7466), 1, sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5208), 4, + STATE(5356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125337] = 18, + [133893] = 18, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -463198,35 +471315,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8527), 1, + ACTIONS(8852), 1, anon_sym_inline, - STATE(2581), 1, + STATE(2569), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5174), 1, + STATE(5198), 1, sym_method_or_prop_defn, - STATE(5778), 1, + STATE(5838), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5209), 4, + STATE(5357), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125396] = 18, + [133952] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463237,39 +471354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8525), 1, + ACTIONS(8577), 1, anon_sym_mutable, - STATE(5472), 1, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(5902), 1, sym__attribute_set, - STATE(6099), 1, + STATE(6100), 1, sym_attributes, - STATE(6330), 1, + STATE(6360), 1, sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7879), 1, + STATE(7775), 1, sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5210), 4, + STATE(5358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125455] = 18, - ACTIONS(3), 1, - sym_line_comment, + [134011] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463280,35 +471395,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, - anon_sym_COLON, - ACTIONS(8531), 1, - anon_sym_as, - ACTIONS(8533), 1, - anon_sym_COMMA, - ACTIONS(8535), 1, - anon_sym_COLON_COLON, - ACTIONS(8537), 1, - anon_sym_PIPE, - ACTIONS(8539), 1, - anon_sym_AMP, - ACTIONS(8543), 1, - sym__dedent, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6225), 1, - aux_sym__list_pattern_content_repeat1, - ACTIONS(8541), 2, - sym__newline, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5973), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, anon_sym_SEMI, - STATE(5211), 4, + sym_line_comment, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5359), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125514] = 17, + [134068] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463319,36 +471435,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6171), 1, - anon_sym_new, - ACTIONS(7820), 1, - anon_sym_member, - ACTIONS(7822), 1, - anon_sym_abstract, - ACTIONS(7824), 1, - anon_sym_val, - ACTIONS(8443), 1, - anon_sym_static, - STATE(5093), 1, - sym_additional_constr_defn, - STATE(7793), 1, - sym_access_modifier, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8669), 1, + anon_sym__, + ACTIONS(8854), 1, + anon_sym_POUND, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5023), 1, + sym_atomic_type, + STATE(5026), 1, + sym_type_argument, + STATE(5032), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7816), 2, - anon_sym_default, - anon_sym_override, - STATE(5212), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5360), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125571] = 18, + [134125] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463359,37 +471475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7822), 1, - sym_record_fields, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5213), 4, + ACTIONS(3042), 2, + anon_sym_and, + sym_identifier, + STATE(5361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125630] = 10, + ACTIONS(3040), 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, + [134168] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -463402,27 +471510,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3188), 1, + ACTIONS(2988), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5214), 4, + ACTIONS(8785), 1, + anon_sym_DOT, + STATE(5306), 1, + aux_sym_long_identifier_repeat1, + STATE(5362), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3190), 10, - sym__newline, - sym__dedent, + ACTIONS(2986), 8, 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, - [125673] = 18, + anon_sym_RBRACE, + anon_sym_LT2, + [134215] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463433,115 +471543,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7819), 1, - sym_record_fields, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5215), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [125732] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8545), 1, - anon_sym_DQUOTE2, - ACTIONS(8547), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5216), 4, + ACTIONS(8856), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(5363), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125783] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8549), 1, - anon_sym_inline, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5196), 1, - sym_method_or_prop_defn, - STATE(5758), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, + [134272] = 12, + ACTIONS(3), 1, sym_line_comment, - STATE(5217), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [125842] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463552,37 +471585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(2979), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7758), 1, - sym_record_fields, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5218), 4, + ACTIONS(8858), 1, + anon_sym_or, + STATE(5417), 1, + aux_sym_type_argument_repeat1, + STATE(5364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125901] = 17, + ACTIONS(2981), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [134319] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463595,34 +471620,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(5922), 1, + STATE(5956), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5219), 4, + STATE(5365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125958] = 18, + [134376] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463633,37 +471658,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, - STATE(7755), 1, - sym_record_fields, + ACTIONS(6620), 1, + anon_sym_DOT, + ACTIONS(8860), 1, + anon_sym_EQ, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5220), 4, + STATE(5366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126017] = 18, + ACTIONS(2986), 7, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [134423] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463674,74 +471693,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - ACTIONS(8551), 1, - sym__dedent, - STATE(5472), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(4224), 1, sym__attribute_set, - STATE(6099), 1, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5930), 1, + sym_type_argument_defn, + STATE(5949), 1, sym_attributes, - STATE(6851), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5221), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5367), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126076] = 14, + [134480] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8553), 1, + ACTIONS(8862), 1, anon_sym_DQUOTE2, - ACTIONS(8555), 1, + ACTIONS(8864), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5222), 4, + STATE(5368), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126127] = 12, + [134531] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463752,68 +471770,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, - anon_sym_COLON, - ACTIONS(8557), 1, - anon_sym_and, - STATE(5259), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7508), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5223), 4, + STATE(5369), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6270), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [126174] = 14, + [134590] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8559), 1, + ACTIONS(8866), 1, anon_sym_DQUOTE2, - ACTIONS(8561), 1, + ACTIONS(8868), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5368), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5224), 4, + STATE(5370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126225] = 12, + [134641] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -463826,20 +471850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2973), 1, + ACTIONS(3151), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(5226), 1, - aux_sym_long_identifier_repeat1, - STATE(5225), 4, + ACTIONS(8870), 1, + sym_int, + STATE(5371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2971), 8, + ACTIONS(3153), 9, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -463847,10 +471869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LT2, - [126272] = 11, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_f, + aux_sym_decimal_token1, + [134686] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463861,28 +471882,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8565), 1, - anon_sym_DOT, - STATE(5226), 5, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5929), 1, + sym_type_argument_defn, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2990), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LT2, - [126317] = 17, + [134743] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463893,73 +471922,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6818), 1, - anon_sym_DASH_GT, - ACTIONS(6820), 1, - anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8568), 1, - sym_identifier, - STATE(4256), 1, - aux_sym_compound_type_repeat1, - STATE(4322), 1, - sym_type_arguments, - STATE(4338), 1, - sym_long_identifier, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5941), 1, + sym_type_argument_defn, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5140), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5227), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126374] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [134800] = 18, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8570), 1, - anon_sym_DQUOTE2, - ACTIONS(8572), 1, - anon_sym_DQUOTEB, - STATE(5311), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(8132), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5228), 4, + STATE(5374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126425] = 17, + [134859] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -463970,73 +472003,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8574), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8576), 1, - anon_sym_LPAREN, - ACTIONS(8578), 1, - anon_sym__, - ACTIONS(8580), 1, - anon_sym_POUND, - STATE(4654), 1, - sym__static_type_identifier, - STATE(4918), 1, - sym_long_identifier, - STATE(4983), 1, - sym_atomic_type, - STATE(4984), 1, - sym_type_argument, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7771), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5229), 4, + STATE(5375), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126482] = 14, + [134918] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8582), 1, + ACTIONS(8872), 1, anon_sym_DQUOTE2, - ACTIONS(8584), 1, + ACTIONS(8874), 1, anon_sym_DQUOTEB, - STATE(5222), 1, + STATE(5392), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5230), 4, + STATE(5376), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126533] = 10, + [134969] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464047,20 +472081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3072), 2, + ACTIONS(3048), 2, anon_sym_and, sym_identifier, - STATE(5231), 4, + STATE(5377), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3076), 8, + ACTIONS(3054), 8, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -464069,117 +472103,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [126576] = 13, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [135012] = 18, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8592), 1, - anon_sym_DQUOTE2, - ACTIONS(8594), 1, - anon_sym_DQUOTEB, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7548), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8589), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8586), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5232), 5, + STATE(5378), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [126625] = 14, + [135071] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8596), 1, + ACTIONS(8876), 1, anon_sym_DQUOTE2, - ACTIONS(8598), 1, + ACTIONS(8878), 1, anon_sym_DQUOTEB, - STATE(5300), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5233), 4, + STATE(5379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126676] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [135122] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8600), 1, - anon_sym_DQUOTE2, - ACTIONS(8602), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5953), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5234), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126727] = 12, + [135179] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464190,31 +472232,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, - anon_sym_COLON, - ACTIONS(8604), 1, - anon_sym_and, - STATE(5328), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_PIPE, + ACTIONS(8633), 1, + anon_sym_new, + ACTIONS(8880), 1, + anon_sym_LBRACE, + STATE(3806), 1, + sym_union_type_cases, + STATE(4738), 1, + sym_union_type_case, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(7746), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5235), 4, + STATE(5381), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6270), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [126774] = 18, + [135238] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464225,74 +472273,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8606), 1, + ACTIONS(8882), 1, sym_identifier, - ACTIONS(8608), 1, - anon_sym_PIPE, - ACTIONS(8610), 1, - anon_sym_LBRACE, - ACTIONS(8612), 1, - anon_sym_new, - STATE(3754), 1, - sym_union_type_cases, - STATE(4754), 1, - sym_union_type_case, - STATE(5472), 1, + ACTIONS(8884), 1, + anon_sym_LPAREN, + ACTIONS(8886), 1, + anon_sym__, + ACTIONS(8888), 1, + anon_sym_POUND, + STATE(5613), 1, + sym__static_type_identifier, + STATE(5678), 1, + sym_long_identifier, + STATE(5847), 1, + sym_atomic_type, + STATE(5849), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8890), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5382), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [135295] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(4224), 1, sym__attribute_set, - STATE(7530), 1, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, sym_attributes, + STATE(5959), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5236), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5383), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126833] = 14, + [135352] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8614), 1, + ACTIONS(8898), 1, anon_sym_DQUOTE2, - ACTIONS(8616), 1, + ACTIONS(8900), 1, anon_sym_DQUOTEB, - STATE(5234), 1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(8895), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8892), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5384), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_verbatim_string_repeat1, + [135401] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8902), 1, + anon_sym_DQUOTE2, + ACTIONS(8904), 1, + anon_sym_DQUOTEB, + STATE(5379), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5237), 4, + STATE(5385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126884] = 17, + [135452] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464303,75 +472428,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, - sym_identifier, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, + ACTIONS(8906), 1, + aux_sym_float_token1, + STATE(5386), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3134), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_f, + aux_sym_decimal_token1, + [135497] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5975), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5140), 2, - sym__newline, - sym__dedent, - STATE(5238), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5387), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126941] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [135554] = 18, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8620), 1, - anon_sym_DQUOTE2, - ACTIONS(8622), 1, - anon_sym_DQUOTEB, - STATE(5359), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7588), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5239), 4, + STATE(5388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126992] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [135613] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464382,37 +472541,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8624), 1, - anon_sym_inline, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4485), 1, - sym_method_or_prop_defn, - STATE(5844), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8908), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5240), 4, + ACTIONS(3084), 2, + anon_sym_and, + sym_identifier, + STATE(5389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127051] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3082), 7, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [135658] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464423,35 +472575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8626), 1, - anon_sym_inline, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5125), 1, - sym_method_or_prop_defn, - STATE(5845), 1, - sym_access_modifier, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5942), 1, + sym_type_argument_defn, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5241), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127110] = 17, + [135715] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464462,73 +472615,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6087), 1, - anon_sym_new, - ACTIONS(7837), 1, - anon_sym_member, - ACTIONS(7839), 1, - anon_sym_abstract, - ACTIONS(7841), 1, - anon_sym_val, - ACTIONS(8628), 1, - anon_sym_static, - STATE(4548), 1, - sym_additional_constr_defn, - STATE(8140), 1, - sym_access_modifier, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(5996), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7833), 2, - anon_sym_default, - anon_sym_override, - STATE(5242), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127167] = 14, + [135772] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8630), 1, + ACTIONS(8910), 1, anon_sym_DQUOTE2, - ACTIONS(8632), 1, + ACTIONS(8912), 1, anon_sym_DQUOTEB, - STATE(5277), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5243), 4, + STATE(5392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127218] = 17, + [135823] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464539,36 +472692,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(5893), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7767), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5244), 4, + STATE(5393), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127275] = 18, + [135882] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464579,74 +472733,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5879), 1, - anon_sym_and, - ACTIONS(5881), 1, - anon_sym_GT, - ACTIONS(6828), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7627), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5245), 4, + STATE(5394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127334] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [135941] = 18, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8634), 1, - anon_sym_DQUOTE2, - ACTIONS(8636), 1, - anon_sym_DQUOTEB, - STATE(5254), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7751), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5246), 4, + STATE(5395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127385] = 18, + [136000] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464657,37 +472815,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8525), 1, + ACTIONS(8577), 1, anon_sym_mutable, - ACTIONS(8638), 1, - sym__dedent, - STATE(5472), 1, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(5902), 1, sym__attribute_set, - STATE(6099), 1, + STATE(6100), 1, sym_attributes, - STATE(6851), 1, + STATE(6360), 1, sym_record_field, - STATE(7390), 1, + STATE(7763), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5247), 4, + STATE(5396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127444] = 10, + [136059] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464698,29 +472856,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8617), 1, + anon_sym__, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(4666), 1, + sym__static_type_identifier, + STATE(5949), 1, + sym_attributes, + STATE(6007), 1, + sym_type_argument_defn, + STATE(6356), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3099), 2, - anon_sym_and, - sym_identifier, - STATE(5248), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3097), 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, - [127487] = 18, + [136116] = 18, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -464733,35 +472898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8640), 1, + ACTIONS(8914), 1, anon_sym_inline, - STATE(2585), 1, + STATE(2586), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(4445), 1, + STATE(5145), 1, sym_method_or_prop_defn, - STATE(5797), 1, + STATE(5850), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5249), 4, + STATE(5398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127546] = 17, + [136175] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464774,34 +472939,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(6144), 1, + STATE(6021), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5250), 4, + STATE(5399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127603] = 17, + [136232] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464812,70 +472977,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8642), 1, - sym_identifier, - ACTIONS(8644), 1, - anon_sym_LPAREN, - ACTIONS(8646), 1, - anon_sym__, - ACTIONS(8648), 1, - anon_sym_POUND, - STATE(5350), 1, - sym__static_type_identifier, - STATE(5508), 1, - sym_long_identifier, - STATE(5641), 1, - sym_type_argument, - STATE(5643), 1, - sym_atomic_type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8650), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5251), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [127660] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_COLON, - ACTIONS(8652), 1, + ACTIONS(3060), 2, anon_sym_and, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5252), 5, + sym_identifier, + STATE(5400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 7, - anon_sym_as, + ACTIONS(3058), 8, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_DASH_GT, - anon_sym_when, - [127705] = 17, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [136275] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464888,71 +473012,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(5985), 1, + STATE(6035), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5253), 4, + STATE(5401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127762] = 14, + [136332] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8655), 1, + ACTIONS(8916), 1, anon_sym_DQUOTE2, - ACTIONS(8657), 1, + ACTIONS(8918), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5254), 4, + STATE(5402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127813] = 17, + [136383] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -464965,34 +473089,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(5976), 1, + STATE(6056), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5255), 4, + STATE(5403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127870] = 17, + [136440] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465003,73 +473127,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5929), 1, - anon_sym_new, - ACTIONS(7800), 1, - anon_sym_member, - ACTIONS(7802), 1, - anon_sym_abstract, - ACTIONS(7804), 1, - anon_sym_val, - ACTIONS(8659), 1, - anon_sym_static, - STATE(4369), 1, - sym_additional_constr_defn, - STATE(8121), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7648), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7796), 2, - anon_sym_default, - anon_sym_override, - STATE(5256), 4, + STATE(5404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127927] = 14, + [136499] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8661), 1, + ACTIONS(8920), 1, anon_sym_DQUOTE2, - ACTIONS(8663), 1, + ACTIONS(8922), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5257), 4, + STATE(5405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127978] = 18, + [136550] = 18, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -465082,35 +473207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8665), 1, + ACTIONS(8924), 1, anon_sym_inline, - STATE(2585), 1, + STATE(2594), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(4435), 1, + STATE(5024), 1, sym_method_or_prop_defn, - STATE(5850), 1, + STATE(5885), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5258), 4, + STATE(5406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128037] = 12, + [136609] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465121,108 +473246,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(8557), 1, - anon_sym_and, - STATE(5252), 1, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5259), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6276), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [128084] = 17, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(27), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(5890), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7661), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5260), 4, + STATE(5407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128141] = 14, + [136668] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8667), 1, + ACTIONS(8926), 1, anon_sym_DQUOTE2, - ACTIONS(8669), 1, + ACTIONS(8928), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5402), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5261), 4, + STATE(5408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128192] = 17, + [136719] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465233,73 +473324,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5970), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(6910), 1, + anon_sym_DASH_GT, + ACTIONS(6912), 1, + anon_sym_STAR, + ACTIONS(6914), 1, + anon_sym_LT2, + ACTIONS(6916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8635), 1, + sym_identifier, + STATE(4231), 1, + aux_sym_compound_type_repeat1, + STATE(4312), 1, + sym_long_identifier, + STATE(4371), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5262), 4, + ACTIONS(8930), 2, + sym__newline, + sym__dedent, + STATE(5409), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128249] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [136776] = 10, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8671), 1, - anon_sym_DQUOTE2, - ACTIONS(8673), 1, - anon_sym_DQUOTEB, - STATE(5366), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5263), 4, + ACTIONS(3078), 2, + anon_sym_and, + sym_identifier, + STATE(5410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128300] = 17, + ACTIONS(3080), 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, + [136819] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465312,34 +473399,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, + STATE(5949), 1, sym_attributes, - STATE(5918), 1, + STATE(6010), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5264), 4, + STATE(5411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128357] = 17, + [136876] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465350,36 +473437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(5964), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7672), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5265), 4, + STATE(5412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128414] = 17, + [136935] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465392,34 +473480,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5967), 1, + STATE(5936), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5266), 4, + STATE(5413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128471] = 17, + [136992] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465430,69 +473518,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7683), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8675), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(5267), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [128528] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5268), 4, + STATE(5414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 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_DOT, - anon_sym_LT2, - [128571] = 18, + [137051] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465503,78 +473559,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(8606), 1, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8608), 1, - anon_sym_PIPE, - ACTIONS(8612), 1, - anon_sym_new, - ACTIONS(8677), 1, - anon_sym_LBRACE, - STATE(3748), 1, - sym_union_type_cases, - STATE(4754), 1, - sym_union_type_case, - STATE(5472), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(5902), 1, sym__attribute_set, - STATE(7530), 1, + STATE(6100), 1, sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7692), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5269), 4, + STATE(5415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128630] = 18, - ACTIONS(7), 1, + [137110] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(8932), 1, + anon_sym_DQUOTE2, + ACTIONS(8934), 1, + anon_sym_DQUOTEB, + STATE(5418), 1, + aux_sym_verbatim_string_repeat1, + STATE(5856), 1, + sym__simple_string_char, + STATE(5863), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8679), 1, - anon_sym_EQ, - ACTIONS(8681), 1, - anon_sym_COLON, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8685), 1, - anon_sym_COMMA, - ACTIONS(8687), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, - anon_sym_PIPE, - ACTIONS(8691), 1, - anon_sym_AMP, - STATE(5499), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6495), 1, - sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5270), 4, + ACTIONS(8609), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8607), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128689] = 11, + [137161] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -465587,19 +473639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2977), 1, + ACTIONS(2962), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8693), 1, + ACTIONS(8858), 1, anon_sym_or, - STATE(5271), 5, + STATE(5424), 1, + aux_sym_type_argument_repeat1, + STATE(5417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 8, + ACTIONS(2960), 8, sym__newline, sym__dedent, anon_sym_as, @@ -465608,85 +473661,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [128734] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8696), 1, - anon_sym_inline, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4369), 1, - sym_method_or_prop_defn, - STATE(5839), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5272), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [128793] = 14, + [137208] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8698), 1, + ACTIONS(8936), 1, anon_sym_DQUOTE2, - ACTIONS(8700), 1, + ACTIONS(8938), 1, anon_sym_DQUOTEB, - STATE(5257), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5273), 4, + STATE(5418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128844] = 17, + [137259] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465697,36 +473711,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5958), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8940), 1, + anon_sym_inline, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5106), 1, + sym_method_or_prop_defn, + STATE(5910), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5274), 4, + STATE(5419), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128901] = 17, + [137318] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465737,38 +473752,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5951), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8942), 1, + anon_sym_inline, + STATE(2558), 1, + sym_property_or_ident, + STATE(2758), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5899), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5275), 4, + STATE(5420), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128958] = 11, - ACTIONS(3), 1, - sym_line_comment, + [137377] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465779,141 +473793,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8702), 1, - aux_sym_float_token1, - STATE(5276), 4, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8944), 1, + anon_sym_inline, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4500), 1, + sym_method_or_prop_defn, + STATE(5886), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5421), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 9, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_f, - aux_sym_decimal_token1, - [129003] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [137436] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8704), 1, - anon_sym_DQUOTE2, - ACTIONS(8706), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6648), 1, + anon_sym_new, + ACTIONS(8368), 1, + anon_sym_member, + ACTIONS(8370), 1, + anon_sym_val, + ACTIONS(8559), 1, + anon_sym_static, + ACTIONS(8561), 1, + anon_sym_abstract, + STATE(5024), 1, + sym_additional_constr_defn, + STATE(8236), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5277), 4, + ACTIONS(8557), 2, + anon_sym_default, + anon_sym_override, + STATE(5422), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129054] = 14, + [137493] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8708), 1, + ACTIONS(8946), 1, anon_sym_DQUOTE2, - ACTIONS(8710), 1, + ACTIONS(8948), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5430), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5278), 4, + STATE(5423), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129105] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [137544] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8712), 1, - anon_sym_DQUOTE2, - ACTIONS(8714), 1, - anon_sym_DQUOTEB, - STATE(5296), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5279), 4, + ACTIONS(2990), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8950), 1, + anon_sym_or, + STATE(5424), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129156] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [137589] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465924,37 +473943,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(7719), 1, - anon_sym_inline, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5093), 1, - sym_method_or_prop_defn, - STATE(5798), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7710), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5280), 4, + STATE(5425), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129215] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [137648] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -465965,72 +473984,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8716), 1, - anon_sym_inline, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5122), 1, - sym_method_or_prop_defn, - STATE(5796), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8707), 1, + anon_sym_COLON, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_COLON_COLON, + ACTIONS(8715), 1, + anon_sym_PIPE, + ACTIONS(8717), 1, + anon_sym_AMP, + ACTIONS(8953), 1, + anon_sym_EQ, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6574), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5281), 4, + STATE(5426), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129274] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [137707] = 18, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8718), 1, - anon_sym_DQUOTE2, - ACTIONS(8720), 1, - anon_sym_DQUOTEB, - STATE(5298), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7717), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5282), 4, + STATE(5427), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129325] = 18, + [137766] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466041,37 +474066,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8681), 1, - anon_sym_COLON, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8685), 1, - anon_sym_COMMA, - ACTIONS(8687), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, - anon_sym_PIPE, - ACTIONS(8691), 1, - anon_sym_AMP, - ACTIONS(8722), 1, - anon_sym_EQ, - STATE(5499), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6636), 1, - sym_type_arguments, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7723), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5283), 4, + STATE(5428), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129384] = 17, + [137825] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466082,73 +474107,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5943), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(6143), 1, + anon_sym_new, + ACTIONS(7867), 1, + anon_sym_member, + ACTIONS(7869), 1, + anon_sym_abstract, + ACTIONS(7871), 1, + anon_sym_val, + ACTIONS(8955), 1, + anon_sym_static, + STATE(4516), 1, + sym_additional_constr_defn, + STATE(8276), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5284), 4, + ACTIONS(7863), 2, + anon_sym_default, + anon_sym_override, + STATE(5429), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129441] = 14, + [137882] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8724), 1, + ACTIONS(8957), 1, anon_sym_DQUOTE2, - ACTIONS(8726), 1, + ACTIONS(8959), 1, anon_sym_DQUOTEB, - STATE(5278), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5285), 4, + STATE(5430), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129492] = 17, + [137933] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466159,36 +474186,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - ACTIONS(6891), 1, - anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, sym_identifier, - STATE(3972), 1, - aux_sym_compound_type_repeat1, - STATE(4296), 1, - sym_type_arguments, - STATE(4352), 1, - sym_long_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8961), 1, + anon_sym_inline, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4508), 1, + sym_method_or_prop_defn, + STATE(5895), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5136), 2, - sym__newline, - sym__dedent, - STATE(5286), 4, + STATE(5431), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129549] = 18, + [137992] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466199,37 +474225,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, + ACTIONS(6797), 1, anon_sym_LBRACK_LT, - ACTIONS(8606), 1, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8608), 1, - anon_sym_PIPE, - ACTIONS(8612), 1, - anon_sym_new, - ACTIONS(8728), 1, - anon_sym_LBRACE, - STATE(3730), 1, - sym_union_type_cases, - STATE(4754), 1, - sym_union_type_case, - STATE(5472), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(5827), 1, + STATE(5902), 1, sym__attribute_set, - STATE(7530), 1, + STATE(6100), 1, sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7033), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5287), 4, + STATE(5432), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129608] = 17, + [138051] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466240,36 +474266,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8574), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8576), 1, - anon_sym_LPAREN, - ACTIONS(8578), 1, - anon_sym__, - ACTIONS(8730), 1, - anon_sym_POUND, - STATE(4654), 1, - sym__static_type_identifier, - STATE(4918), 1, - sym_long_identifier, - STATE(4983), 1, - sym_atomic_type, - STATE(4984), 1, - sym_type_argument, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7735), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5288), 4, + STATE(5433), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129665] = 17, + [138110] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466280,36 +474307,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(5947), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7739), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5289), 4, + STATE(5434), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129722] = 17, + [138169] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466322,34 +474350,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(27), 1, anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(8617), 1, anon_sym__, - STATE(3804), 1, + STATE(3858), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(4224), 1, sym__attribute_set, - STATE(4654), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5929), 1, + STATE(5934), 1, sym_type_argument_defn, - STATE(6151), 1, + STATE(5949), 1, + sym_attributes, + STATE(6356), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5290), 4, + STATE(5435), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129779] = 17, + [138226] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466360,36 +474390,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5875), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8963), 1, + anon_sym_inline, + STATE(2558), 1, + sym_property_or_ident, + STATE(2756), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5907), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5291), 4, + STATE(5436), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129836] = 17, + [138285] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466400,36 +474429,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(5892), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7743), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5292), 4, + STATE(5437), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129893] = 17, + [138344] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466440,36 +474472,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5979), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8965), 1, + anon_sym_inline, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4516), 1, + sym_method_or_prop_defn, + STATE(5912), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5293), 4, + STATE(5438), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129950] = 17, + [138403] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466480,38 +474511,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_PIPE, + ACTIONS(8633), 1, + anon_sym_new, + ACTIONS(8967), 1, + anon_sym_LBRACE, STATE(3804), 1, + sym_union_type_cases, + STATE(4738), 1, + sym_union_type_case, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, + STATE(7746), 1, sym_attributes, - STATE(5910), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5294), 4, + STATE(5439), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130007] = 12, - ACTIONS(3), 1, - sym_line_comment, + [138462] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466522,140 +474552,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6919), 1, - aux_sym_decimal_token1, - ACTIONS(7221), 1, - anon_sym_f, - STATE(5295), 4, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7747), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5440), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130054] = 14, + [138521] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8732), 1, + ACTIONS(8969), 1, anon_sym_DQUOTE2, - ACTIONS(8734), 1, + ACTIONS(8971), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5443), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5296), 4, + STATE(5441), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130105] = 14, + [138572] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8736), 1, + ACTIONS(8973), 1, anon_sym_DQUOTE2, - ACTIONS(8738), 1, + ACTIONS(8975), 1, anon_sym_DQUOTEB, - STATE(5303), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5297), 4, + STATE(5442), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130156] = 14, + [138623] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8740), 1, + ACTIONS(8977), 1, anon_sym_DQUOTE2, - ACTIONS(8742), 1, + ACTIONS(8979), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5384), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5298), 4, + STATE(5443), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130207] = 11, + [138674] = 18, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466666,67 +474706,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_COLON, - ACTIONS(8744), 1, - anon_sym_and, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(8981), 1, + anon_sym_inline, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4955), 1, + sym_method_or_prop_defn, + STATE(5878), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5299), 5, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [130252] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8747), 1, - anon_sym_DQUOTE2, - ACTIONS(8749), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5300), 4, + STATE(5444), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130303] = 12, + [138733] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466737,33 +474745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8751), 1, - anon_sym_LBRACK_LT, - STATE(5650), 1, - sym__attribute_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6706), 3, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - ACTIONS(6701), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, + ACTIONS(3076), 2, + anon_sym_and, sym_identifier, - STATE(5301), 5, + STATE(5445), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - [130350] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3074), 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, + [138776] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466774,72 +474778,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8754), 1, - anon_sym_inline, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4548), 1, - sym_method_or_prop_defn, - STATE(5851), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7534), 1, + sym_record_fields, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5302), 4, + STATE(5446), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130409] = 14, + [138835] = 14, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8756), 1, + ACTIONS(8983), 1, anon_sym_DQUOTE2, - ACTIONS(8758), 1, + ACTIONS(8985), 1, anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5442), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5856), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5863), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8609), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(8607), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5303), 4, + STATE(5447), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130460] = 17, + [138886] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466850,36 +474856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, aux_sym_attributes_repeat1, - STATE(3962), 1, + STATE(5902), 1, sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5871), 1, - sym_type_argument_defn, - STATE(5889), 1, + STATE(6100), 1, sym_attributes, - STATE(6151), 1, - sym_type_argument, + STATE(6360), 1, + sym_record_field, + STATE(7755), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5304), 4, + STATE(5448), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130517] = 12, + [138945] = 18, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466890,68 +474897,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(8760), 1, - anon_sym_and, - STATE(5299), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6360), 1, + sym_record_field, + STATE(7759), 1, + sym_record_fields, + STATE(8133), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5305), 4, + STATE(5449), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6276), 7, - anon_sym_EQ, + [139004] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8733), 1, + anon_sym_COLON, + ACTIONS(8735), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(8737), 1, anon_sym_COMMA, + ACTIONS(8739), 1, anon_sym_COLON_COLON, + ACTIONS(8741), 1, anon_sym_PIPE, + ACTIONS(8743), 1, anon_sym_AMP, - [130564] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(4645), 3, + sym__newline, + sym__dedent, + anon_sym_SEMI, + STATE(5450), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [139058] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8762), 1, - anon_sym_DQUOTE2, - ACTIONS(8764), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(8997), 1, + anon_sym_DASH_GT, + ACTIONS(8999), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5306), 4, + STATE(5451), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130615] = 17, + [139114] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -466962,36 +475015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5917), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9001), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5307), 4, + STATE(5452), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130672] = 18, + [139170] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467002,74 +475054,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8681), 1, - anon_sym_COLON, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8685), 1, - anon_sym_COMMA, - ACTIONS(8687), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, - anon_sym_PIPE, - ACTIONS(8691), 1, - anon_sym_AMP, - ACTIONS(8766), 1, - anon_sym_EQ, - STATE(5499), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6559), 1, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9003), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5308), 4, + STATE(5453), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130731] = 14, + [139226] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8768), 1, - anon_sym_DQUOTE2, - ACTIONS(8770), 1, - anon_sym_DQUOTEB, - STATE(5379), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4500), 1, + sym_method_or_prop_defn, + STATE(5886), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5309), 4, + STATE(5454), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130782] = 12, + [139282] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -467082,66 +475134,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2959), 1, + ACTIONS(2990), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(5225), 1, - aux_sym_long_identifier_repeat1, - STATE(5310), 4, + STATE(5455), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 8, + ACTIONS(2992), 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_RBRACE, - anon_sym_LT2, - [130829] = 14, - ACTIONS(5), 1, + anon_sym_or, + [139324] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(9005), 1, + anon_sym_and, + STATE(5495), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(5456), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6375), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [139370] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8772), 1, - anon_sym_DQUOTE2, - ACTIONS(8774), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8707), 1, + anon_sym_COLON, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5311), 4, + STATE(5457), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130880] = 17, + ACTIONS(6424), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [139414] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467152,36 +475231,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(3972), 1, + ACTIONS(9007), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4352), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8776), 2, - sym__newline, - sym__dedent, - STATE(5312), 4, + STATE(5458), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [139470] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9009), 1, + anon_sym_DASH_GT, + ACTIONS(9011), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5459), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130937] = 12, + [139526] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -467194,29 +475311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8778), 1, - anon_sym_or, - STATE(5271), 1, - aux_sym_type_argument_repeat1, - STATE(5313), 4, + ACTIONS(6418), 1, + anon_sym_COLON, + STATE(5460), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 8, + ACTIONS(6420), 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, - [130984] = 17, + [139568] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467227,38 +475341,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5868), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(9013), 1, + anon_sym_LPAREN, + ACTIONS(9017), 1, + anon_sym_not, + ACTIONS(9019), 1, + anon_sym_enum, + ACTIONS(9021), 1, + anon_sym_delegate, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5314), 4, + STATE(5461), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131041] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(9015), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + [139616] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467269,35 +475376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8780), 1, - anon_sym_inline, - STATE(2542), 1, - sym_property_or_ident, - STATE(2784), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5734), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8707), 1, + anon_sym_COLON, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5315), 4, + STATE(5462), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131100] = 17, + ACTIONS(6446), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [139660] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467308,36 +475409,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5973), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9023), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5316), 4, + STATE(5463), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131157] = 17, + [139716] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467348,36 +475448,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5991), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9025), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5317), 4, + STATE(5464), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131214] = 10, + [139772] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467388,29 +475489,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4508), 1, + sym_method_or_prop_defn, + STATE(5895), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3044), 2, - anon_sym_and, - sym_identifier, - STATE(5318), 4, + STATE(5465), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3046), 8, - anon_sym_EQ, - anon_sym_RPAREN, + [139828] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(8898), 1, + anon_sym_DQUOTE2, + STATE(5923), 1, + sym__simple_string_char, + STATE(5924), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9030), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9027), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5466), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_verbatim_string_repeat1, + [139874] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(3046), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5467), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3044), 9, + 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, - [131257] = 17, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_or, + [139916] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467421,38 +475592,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5876), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9033), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5319), 4, + STATE(5468), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131314] = 11, - ACTIONS(3), 1, - sym_line_comment, + [139972] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467463,28 +475631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3146), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8782), 1, - sym_int, - STATE(5320), 4, + ACTIONS(6379), 1, + anon_sym_COLON, + ACTIONS(9035), 1, + anon_sym_and, + STATE(5589), 1, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5469), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3148), 9, + ACTIONS(6381), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_f, - aux_sym_decimal_token1, - [131359] = 17, + anon_sym_in, + [140018] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467495,36 +475667,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5883), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5321), 4, + ACTIONS(8733), 1, + anon_sym_COLON, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5470), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131416] = 10, + ACTIONS(6424), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [140062] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467535,29 +475698,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6448), 1, + anon_sym_COLON, + ACTIONS(8711), 1, + anon_sym_COMMA, + STATE(5581), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3064), 2, - anon_sym_and, - sym_identifier, - STATE(5322), 4, + STATE(5471), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3062), 8, + ACTIONS(6450), 6, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [131459] = 13, + [140108] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467568,32 +475732,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACK_LT, - STATE(5301), 1, - aux_sym_attributes_repeat1, - STATE(5650), 1, - sym__attribute_set, + ACTIONS(8707), 1, + anon_sym_COLON, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_COLON_COLON, + ACTIONS(8715), 1, + anon_sym_PIPE, + ACTIONS(8717), 1, + anon_sym_AMP, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6730), 3, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - ACTIONS(6728), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5323), 4, + ACTIONS(4645), 2, + anon_sym_EQ, + anon_sym_LT2, + STATE(5472), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131508] = 10, + [140162] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467604,29 +475772,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(3082), 2, - anon_sym_and, - sym_identifier, - STATE(5324), 4, + ACTIONS(6426), 1, + anon_sym_COLON, + STATE(5473), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3084), 8, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6428), 9, + sym__newline, + sym__dedent, + anon_sym_and, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [131551] = 10, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [140204] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467637,29 +475804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5127), 1, + sym_method_or_prop_defn, + STATE(5804), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3054), 2, - anon_sym_and, - sym_identifier, - STATE(5325), 4, + STATE(5474), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3052), 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, - [131594] = 17, + [140260] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467670,36 +475843,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8574), 1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8576), 1, - anon_sym_LPAREN, - ACTIONS(8578), 1, - anon_sym__, - ACTIONS(8784), 1, - anon_sym_POUND, - STATE(4654), 1, - sym__static_type_identifier, - STATE(4918), 1, - sym_long_identifier, - STATE(4983), 1, - sym_atomic_type, - STATE(4984), 1, - sym_type_argument, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2756), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5907), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5326), 4, + STATE(5475), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131651] = 17, + [140316] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467710,36 +475880,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5884), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(9037), 1, + anon_sym_LPAREN, + ACTIONS(9041), 1, + anon_sym_not, + ACTIONS(9043), 1, + anon_sym_enum, + ACTIONS(9045), 1, + anon_sym_delegate, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5327), 4, + STATE(5476), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131708] = 12, + ACTIONS(9039), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + [140364] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467750,31 +475915,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, anon_sym_COLON, - ACTIONS(8604), 1, - anon_sym_and, - STATE(5352), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9047), 1, + anon_sym_DASH_GT, + ACTIONS(9049), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5328), 4, + STATE(5477), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6276), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [131755] = 17, + [140420] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467785,36 +475954,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5882), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9051), 1, + sym_identifier, + ACTIONS(9053), 1, + sym__dedent, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5329), 4, + STATE(5478), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131812] = 18, + [140476] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467825,39 +475995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7248), 1, - sym_record_fields, - STATE(7390), 1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4497), 1, + sym_method_or_prop_defn, + STATE(5876), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5330), 4, + STATE(5479), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131871] = 12, - ACTIONS(3), 1, - sym_line_comment, + [140532] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467868,29 +476032,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(8786), 1, - anon_sym_and, - STATE(5351), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(5331), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9055), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5480), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6276), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [131918] = 18, + [140588] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -467903,35 +476073,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8788), 1, - anon_sym_inline, - STATE(2557), 1, + STATE(2584), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5016), 1, + STATE(4516), 1, sym_method_or_prop_defn, - STATE(5818), 1, + STATE(5912), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5332), 4, + STATE(5481), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131977] = 17, + [140644] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467942,38 +476112,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5946), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5333), 4, + ACTIONS(5906), 1, + anon_sym_COLON, + STATE(5482), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132034] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5908), 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, + [140686] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -467984,72 +476142,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8790), 1, - anon_sym_inline, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5146), 1, - sym_method_or_prop_defn, - STATE(5766), 1, + ACTIONS(8577), 1, + anon_sym_mutable, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6100), 1, + sym_attributes, + STATE(6676), 1, + sym_record_field, + STATE(8133), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5334), 4, + STATE(5483), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132093] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [140742] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8792), 1, - anon_sym_DQUOTE2, - ACTIONS(8794), 1, - anon_sym_DQUOTEB, - STATE(5306), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9057), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5335), 4, + STATE(5484), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132144] = 17, + [140798] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468060,73 +476220,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(3972), 1, + ACTIONS(9059), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4352), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8796), 2, - sym__newline, - sym__dedent, - STATE(5336), 4, + STATE(5485), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132201] = 14, + [140854] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8798), 1, - anon_sym_DQUOTE2, - ACTIONS(8800), 1, - anon_sym_DQUOTEB, - STATE(5353), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4955), 1, + sym_method_or_prop_defn, + STATE(5878), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5337), 4, + STATE(5486), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132252] = 17, + [140910] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468137,75 +476300,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5912), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5338), 4, + ACTIONS(6430), 1, + anon_sym_COLON, + STATE(5487), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132309] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(6432), 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, + [140952] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8802), 1, - anon_sym_DQUOTE2, - ACTIONS(8804), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9061), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5339), 4, + STATE(5488), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132360] = 10, - ACTIONS(3), 1, - sym_line_comment, + [141008] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468216,101 +476369,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5340), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9063), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5489), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 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, - [132403] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [141064] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8806), 1, - anon_sym_DQUOTE2, - ACTIONS(8808), 1, - anon_sym_DQUOTEB, - STATE(5261), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9051), 1, + sym_identifier, + ACTIONS(9065), 1, + sym__dedent, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5341), 4, + STATE(5490), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132454] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [141120] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8810), 1, - anon_sym_DQUOTE2, - ACTIONS(8812), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9067), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5342), 4, + STATE(5491), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132505] = 17, + [141176] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468321,36 +476486,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8814), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8816), 1, - anon_sym_LPAREN, - ACTIONS(8818), 1, - anon_sym__, - ACTIONS(8820), 1, - anon_sym_POUND, - STATE(5492), 1, - sym__static_type_identifier, - STATE(5618), 1, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, sym_long_identifier, - STATE(5817), 1, - sym_type_argument, - STATE(5819), 1, - sym_atomic_type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8822), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5343), 4, + STATE(5492), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132562] = 17, + [141232] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468361,36 +476525,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5164), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6738), 1, - anon_sym_new, - ACTIONS(8227), 1, - anon_sym_member, - ACTIONS(8229), 1, - anon_sym_val, - ACTIONS(8826), 1, - anon_sym_static, - ACTIONS(8828), 1, - anon_sym_abstract, - STATE(5146), 1, - sym_additional_constr_defn, - STATE(7728), 1, - sym_access_modifier, + ACTIONS(7288), 1, + anon_sym_DASH_GT, + ACTIONS(7290), 1, + anon_sym_STAR, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9071), 1, + sym_identifier, + STATE(4363), 1, + aux_sym_compound_type_repeat1, + STATE(4402), 1, + sym_long_identifier, + STATE(4404), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8824), 2, - anon_sym_default, - anon_sym_override, - STATE(5344), 4, + STATE(5493), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132619] = 18, + [141288] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -468403,35 +476566,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8830), 1, - anon_sym_inline, - STATE(2595), 1, + STATE(2594), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5079), 1, + STATE(5024), 1, sym_method_or_prop_defn, - STATE(5780), 1, + STATE(5885), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5345), 4, + STATE(5494), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132678] = 18, + [141344] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -468444,35 +476605,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6379), 1, anon_sym_COLON, - ACTIONS(8531), 1, + ACTIONS(9005), 1, + anon_sym_and, + STATE(5651), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(5495), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6381), 7, anon_sym_as, - ACTIONS(8533), 1, anon_sym_COMMA, - ACTIONS(8535), 1, anon_sym_COLON_COLON, - ACTIONS(8537), 1, anon_sym_PIPE, - ACTIONS(8539), 1, anon_sym_AMP, - ACTIONS(8832), 1, - sym__dedent, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6359), 1, - aux_sym__list_pattern_content_repeat1, - ACTIONS(8541), 2, - sym__newline, anon_sym_SEMI, - STATE(5346), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [132737] = 18, + anon_sym_RBRACE, + [141390] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -468485,35 +476639,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(8834), 1, - anon_sym_inline, - STATE(2542), 1, + STATE(2594), 1, sym_property_or_ident, - STATE(2745), 1, - sym_method_or_prop_defn, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5840), 1, + STATE(5106), 1, + sym_method_or_prop_defn, + STATE(5910), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5347), 4, + STATE(5496), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132796] = 11, + [141446] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468524,32 +476676,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8836), 1, + ACTIONS(7774), 1, anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9073), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3058), 2, - anon_sym_and, - sym_identifier, - STATE(5348), 4, + STATE(5497), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3056), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [132841] = 18, - ACTIONS(5), 1, + [141502] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6434), 1, + anon_sym_COLON, + STATE(5498), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6436), 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, + [141544] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468560,35 +476747,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8838), 1, - anon_sym_inline, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4972), 1, - sym_method_or_prop_defn, - STATE(5829), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9075), 1, + anon_sym_DASH_GT, + ACTIONS(9077), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5349), 4, + STATE(5499), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132900] = 12, + [141600] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -468601,29 +476788,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8778), 1, - anon_sym_or, - STATE(5313), 1, - aux_sym_type_argument_repeat1, - STATE(5350), 4, + ACTIONS(6448), 1, + anon_sym_COLON, + ACTIONS(8737), 1, + anon_sym_COMMA, + STATE(5614), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5500), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 8, + ACTIONS(6450), 7, sym__newline, sym__dedent, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [132947] = 11, + [141646] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -468636,19 +476822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, + ACTIONS(8733), 1, anon_sym_COLON, - ACTIONS(8840), 1, - anon_sym_and, - STATE(5351), 5, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5501), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 8, + ACTIONS(6446), 8, sym__newline, sym__dedent, anon_sym_as, @@ -468657,7 +476842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [132992] = 11, + [141690] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468668,104 +476853,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, anon_sym_COLON, - ACTIONS(8843), 1, - anon_sym_and, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9079), 1, + anon_sym_DASH_GT, + ACTIONS(9081), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5352), 5, + STATE(5502), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 7, - anon_sym_EQ, + [141746] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8733), 1, + anon_sym_COLON, + ACTIONS(8735), 1, anon_sym_as, + ACTIONS(8737), 1, anon_sym_COMMA, + ACTIONS(8739), 1, anon_sym_COLON_COLON, + ACTIONS(8741), 1, anon_sym_PIPE, + ACTIONS(8743), 1, anon_sym_AMP, - anon_sym_LT2, - [133037] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(9083), 3, + sym__newline, + sym__dedent, + anon_sym_SEMI, + STATE(5503), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [141800] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8846), 1, - anon_sym_DQUOTE2, - ACTIONS(8848), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5353), 4, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5504), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133088] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(3176), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_f, + aux_sym_decimal_token1, + [141842] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8850), 1, - anon_sym_DQUOTE2, - ACTIONS(8852), 1, - anon_sym_DQUOTEB, - STATE(5364), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9085), 1, + anon_sym_DASH_GT, + ACTIONS(9087), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5354), 4, + STATE(5505), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133139] = 17, + [141898] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468776,73 +477001,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(5162), 1, + ACTIONS(9089), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8854), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(5355), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [133196] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(8856), 1, - anon_sym_DQUOTE2, - ACTIONS(8858), 1, - anon_sym_DQUOTEB, - STATE(5376), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5356), 4, + STATE(5506), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133247] = 12, + [141954] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468853,105 +477040,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, + ACTIONS(8987), 1, anon_sym_COLON, - ACTIONS(8760), 1, - anon_sym_and, - STATE(5305), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5357), 4, + STATE(5507), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6270), 7, - anon_sym_EQ, + ACTIONS(6446), 7, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [133294] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + anon_sym_DASH_GT, + anon_sym_when, + [141998] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8860), 1, - anon_sym_DQUOTE2, - ACTIONS(8862), 1, - anon_sym_DQUOTEB, - STATE(5339), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9091), 1, + anon_sym_DASH_GT, + ACTIONS(9093), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5358), 4, + STATE(5508), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133345] = 14, + [142054] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8864), 1, - anon_sym_DQUOTE2, - ACTIONS(8866), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2788), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5904), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5359), 4, + STATE(5509), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133396] = 17, + [142110] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -468962,36 +477153,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5938), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5360), 4, + STATE(5510), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133453] = 17, + ACTIONS(3134), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_f, + aux_sym_decimal_token1, + [142152] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469002,36 +477185,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5935), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5145), 1, + sym_method_or_prop_defn, + STATE(5850), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5361), 4, + STATE(5511), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133510] = 17, + [142208] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469042,36 +477222,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6818), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6820), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6822), 1, - anon_sym_LT2, - ACTIONS(6824), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8568), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(4256), 1, + ACTIONS(9095), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4322), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4338), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5136), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5362), 4, + STATE(5512), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133567] = 18, + [142264] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469082,74 +477263,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6330), 1, - sym_record_field, - STATE(7388), 1, - sym_record_fields, - STATE(7390), 1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5057), 1, + sym_method_or_prop_defn, + STATE(5830), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5363), 4, + STATE(5513), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133626] = 14, + [142320] = 13, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8868), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE2, - ACTIONS(8870), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, + STATE(5466), 1, aux_sym_verbatim_string_repeat1, - STATE(5776), 1, + STATE(5923), 1, sym__simple_string_char, - STATE(5777), 1, + STATE(5924), 1, sym__verbatim_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(9099), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, + ACTIONS(9097), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5364), 4, + STATE(5514), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133677] = 17, + [142368] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469160,75 +477335,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, - anon_sym_new, - ACTIONS(8103), 1, - anon_sym_member, - ACTIONS(8105), 1, - anon_sym_val, - ACTIONS(8468), 1, - anon_sym_static, - ACTIONS(8470), 1, - anon_sym_abstract, - STATE(4924), 1, - sym_additional_constr_defn, - STATE(8102), 1, - sym_access_modifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9103), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8466), 2, - anon_sym_default, - anon_sym_override, - STATE(5365), 4, + STATE(5515), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133734] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [142424] = 12, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8872), 1, - anon_sym_DQUOTE2, - ACTIONS(8874), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9105), 1, + anon_sym_LBRACK_LT, + STATE(5902), 1, + sym__attribute_set, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5366), 4, + ACTIONS(6737), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(6742), 3, + aux_sym_access_modifier_token1, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5516), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133785] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_attributes_repeat1, + [142470] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469239,37 +477408,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7250), 1, + anon_sym_DASH_GT, + ACTIONS(7252), 1, + anon_sym_STAR, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9051), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8876), 1, - anon_sym_inline, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5083), 1, - sym_method_or_prop_defn, - STATE(5775), 1, - sym_access_modifier, + ACTIONS(9108), 1, + sym__dedent, + STATE(4341), 1, + aux_sym_compound_type_repeat1, + STATE(4437), 1, + sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5367), 4, + STATE(5517), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133844] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [142526] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469280,37 +477447,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8878), 1, - anon_sym_inline, - STATE(2542), 1, - sym_property_or_ident, - STATE(2747), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5830), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8987), 1, + anon_sym_COLON, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5368), 4, + STATE(5518), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133903] = 12, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(6424), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [142570] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469321,29 +477480,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, - anon_sym_COLON, - ACTIONS(8786), 1, - anon_sym_and, - STATE(5331), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(5369), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9110), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5519), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6270), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133950] = 17, + [142626] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469354,36 +477519,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8880), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym__, - ACTIONS(8886), 1, - anon_sym_POUND, - STATE(3407), 1, - sym__static_type_identifier, - STATE(3476), 1, + ACTIONS(9112), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, sym_long_identifier, - STATE(3627), 1, - sym_type_argument, - STATE(3630), 1, - sym_atomic_type, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5370), 4, + STATE(5520), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134007] = 17, + [142682] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469394,38 +477558,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(3972), 1, + ACTIONS(9114), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4352), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8890), 2, - sym__newline, - sym__dedent, - STATE(5371), 4, + STATE(5521), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134064] = 18, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [142738] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469436,72 +477597,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(8892), 1, - anon_sym_inline, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4924), 1, - sym_method_or_prop_defn, - STATE(5748), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9116), 1, + anon_sym_LPAREN, + ACTIONS(9120), 1, + anon_sym_not, + ACTIONS(9122), 1, + anon_sym_enum, + ACTIONS(9124), 1, + anon_sym_delegate, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5372), 4, + STATE(5522), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134123] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(9118), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + [142786] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8894), 1, - anon_sym_DQUOTE2, - ACTIONS(8896), 1, - anon_sym_DQUOTEB, - STATE(5216), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9126), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5373), 4, + STATE(5523), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134174] = 18, + [142842] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469512,37 +477671,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8606), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8608), 1, - anon_sym_PIPE, - ACTIONS(8612), 1, - anon_sym_new, - ACTIONS(8898), 1, - anon_sym_LBRACE, - STATE(3758), 1, - sym_union_type_cases, - STATE(4754), 1, - sym_union_type_case, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(7530), 1, - sym_attributes, + ACTIONS(9128), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5374), 4, + STATE(5524), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134233] = 17, + [142898] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469553,73 +477710,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6604), 1, - anon_sym_new, - ACTIONS(8119), 1, - anon_sym_member, - ACTIONS(8121), 1, - anon_sym_val, - ACTIONS(8453), 1, - anon_sym_static, - ACTIONS(8455), 1, - anon_sym_abstract, - STATE(2747), 1, - sym_additional_constr_defn, - STATE(7836), 1, - sym_access_modifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9130), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8451), 2, - anon_sym_default, - anon_sym_override, - STATE(5375), 4, + STATE(5525), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134290] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [142954] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8900), 1, - anon_sym_DQUOTE2, - ACTIONS(8902), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9132), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5376), 4, + STATE(5526), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134341] = 17, + [143010] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469630,36 +477788,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5982), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5377), 4, + ACTIONS(9134), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5527), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134398] = 18, + ACTIONS(9136), 5, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + [143052] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469670,111 +477820,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5891), 1, - anon_sym_and, - ACTIONS(5893), 1, - anon_sym_GT, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - STATE(5162), 1, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5378), 4, + STATE(5528), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134457] = 14, + [143108] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8904), 1, - anon_sym_DQUOTE2, - ACTIONS(8906), 1, - anon_sym_DQUOTEB, - STATE(5232), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5202), 1, + sym_method_or_prop_defn, + STATE(5854), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5379), 4, + STATE(5529), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134508] = 14, - ACTIONS(5), 1, + [143164] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9140), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5530), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [143220] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8908), 1, - anon_sym_DQUOTE2, - ACTIONS(8910), 1, - anon_sym_DQUOTEB, - STATE(5342), 1, - aux_sym_verbatim_string_repeat1, - STATE(5776), 1, - sym__simple_string_char, - STATE(5777), 1, - sym__verbatim_string_char, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9142), 1, + anon_sym_COMMA, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8515), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8513), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5380), 4, + STATE(5531), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134559] = 17, + [143276] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469785,36 +477976,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5863), 1, - sym_type_argument_defn, - STATE(5889), 1, - sym_attributes, - STATE(6151), 1, - sym_type_argument, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9144), 1, + anon_sym_DASH_GT, + ACTIONS(9146), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5381), 4, + STATE(5532), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134616] = 17, + [143332] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469825,36 +478015,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6889), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6891), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6893), 1, - anon_sym_LT2, - ACTIONS(6895), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8618), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(3972), 1, + ACTIONS(9148), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4296), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4352), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8912), 2, - sym__newline, - sym__dedent, - STATE(5382), 4, + STATE(5533), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134673] = 17, + [143388] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469865,36 +478056,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym__, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(4654), 1, - sym__static_type_identifier, - STATE(5889), 1, - sym_attributes, - STATE(5955), 1, - sym_type_argument_defn, - STATE(6151), 1, - sym_type_argument, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5383), 4, + ACTIONS(8733), 1, + anon_sym_COLON, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5534), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134730] = 11, + ACTIONS(6460), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [143432] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -469907,27 +478089,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, + ACTIONS(5890), 1, anon_sym_COLON, - ACTIONS(8914), 1, - anon_sym_and, - STATE(5384), 5, + STATE(5535), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 7, + ACTIONS(5892), 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_RBRACE, - [134774] = 17, + [143474] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469938,35 +478121,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8917), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5385), 4, + ACTIONS(7325), 1, + aux_sym_decimal_token1, + ACTIONS(7410), 1, + anon_sym_f, + STATE(5536), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134830] = 17, + ACTIONS(2526), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [143520] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -469977,35 +478155,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8919), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5198), 1, + sym_method_or_prop_defn, + STATE(5838), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5386), 4, + STATE(5537), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134886] = 10, + [143576] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -470018,28 +478194,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5387), 4, + ACTIONS(6387), 1, + anon_sym_COLON, + STATE(5538), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 9, + ACTIONS(6389), 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_or, - [134928] = 10, - ACTIONS(3), 1, + [143618] = 13, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(9150), 1, + anon_sym_DQUOTE2, + STATE(5514), 1, + aux_sym_verbatim_string_repeat1, + STATE(5923), 1, + sym__simple_string_char, + STATE(5924), 1, + sym__verbatim_string_char, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(9099), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9097), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5539), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [143666] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470050,26 +478259,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3066), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5388), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9152), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5540), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 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, - [134970] = 11, + [143722] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470080,29 +478298,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, - anon_sym_COLON, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9154), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5389), 4, + STATE(5541), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [135014] = 11, + [143778] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470113,29 +478337,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, - anon_sym_COLON, - ACTIONS(8923), 1, - anon_sym_COMMA, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9156), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5390), 5, + STATE(5542), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6414), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [135058] = 12, + [143834] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470146,30 +478376,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_COLON, - ACTIONS(8926), 1, - anon_sym_COMMA, - STATE(5390), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9158), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5391), 4, + STATE(5543), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [135104] = 11, + [143890] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470180,31 +478415,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, - anon_sym_COLON, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9160), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5392), 4, + STATE(5544), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 7, - anon_sym_EQ, - anon_sym_as, + [143946] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9162), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [135148] = 10, - ACTIONS(3), 1, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, sym_line_comment, + STATE(5545), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [144002] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470215,26 +478493,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3188), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5393), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9164), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5546), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3190), 9, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + [144058] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2787), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5853), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_f, - aux_sym_decimal_token1, - [135190] = 11, + sym_line_comment, + STATE(5547), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [144114] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470245,29 +478573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, - anon_sym_COLON, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5164), 1, + sym_method_or_prop_defn, + STATE(5820), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5394), 4, + STATE(5548), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [135234] = 17, + [144170] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470278,37 +478610,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8930), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9166), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5395), 4, + STATE(5549), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135290] = 10, - ACTIONS(3), 1, - sym_line_comment, + [144226] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470319,26 +478649,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5396), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9168), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5550), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3132), 9, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_f, - aux_sym_decimal_token1, - [135332] = 17, + [144282] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470349,35 +478688,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8932), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9170), 1, + anon_sym_GT, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5397), 4, + STATE(5551), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135388] = 10, + [144338] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470388,28 +478729,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5132), 1, + sym_method_or_prop_defn, + STATE(5865), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6883), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_new, - sym_identifier, - STATE(5398), 4, + STATE(5552), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6885), 5, - anon_sym_LBRACK_LT, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_SQUOTE, - [135430] = 11, + [144394] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470420,31 +478766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, - anon_sym_COLON, - ACTIONS(8934), 1, - anon_sym_COMMA, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9172), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5399), 5, + STATE(5553), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6414), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [135474] = 12, - ACTIONS(3), 1, - sym_line_comment, + [144450] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470455,28 +478805,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8937), 1, - anon_sym_or, - STATE(5408), 1, - aux_sym_type_argument_repeat1, - STATE(5400), 4, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9174), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5554), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [135520] = 16, + [144506] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470487,34 +478844,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6410), 2, - anon_sym_EQ, - anon_sym_RPAREN, - STATE(5401), 4, + STATE(5555), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135574] = 16, + [144562] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470525,34 +478883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, - anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_COLON_COLON, - ACTIONS(8949), 1, - anon_sym_PIPE, - ACTIONS(8951), 1, - anon_sym_AMP, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9178), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6410), 2, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5402), 4, + STATE(5556), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135628] = 17, + [144618] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470563,35 +478922,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8953), 1, + ACTIONS(9180), 1, anon_sym_RPAREN, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5403), 4, + STATE(5557), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135684] = 17, + [144674] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470602,37 +478961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8955), 1, + ACTIONS(9182), 1, anon_sym_EQ, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5404), 4, + STATE(5558), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135740] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [144730] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470643,33 +479000,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4924), 1, - sym_method_or_prop_defn, - STATE(5748), 1, - sym_access_modifier, + ACTIONS(9184), 1, + anon_sym_GT, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5405), 4, + STATE(5559), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135796] = 17, + [144786] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470680,37 +479039,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8957), 1, + ACTIONS(9186), 1, anon_sym_RPAREN, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5406), 4, + STATE(5560), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135852] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [144842] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470721,66 +479078,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5083), 1, - sym_method_or_prop_defn, - STATE(5775), 1, - sym_access_modifier, + ACTIONS(9188), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5407), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [135908] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8959), 1, - anon_sym_or, - STATE(5408), 5, + STATE(5561), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2975), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [135952] = 11, + [144898] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470791,31 +479117,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, - anon_sym_COLON, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9190), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5409), 4, + STATE(5562), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [135996] = 10, - ACTIONS(3), 1, - sym_line_comment, + [144954] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470826,28 +479156,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5410), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2990), 9, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, anon_sym_COMMA, + ACTIONS(8991), 1, anon_sym_COLON_COLON, + ACTIONS(8993), 1, anon_sym_PIPE, + ACTIONS(8995), 1, anon_sym_AMP, + ACTIONS(9192), 1, + anon_sym_DASH_GT, + ACTIONS(9194), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LT2, - [136038] = 12, - ACTIONS(3), 1, sym_line_comment, + STATE(5563), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [145010] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470858,67 +479195,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - aux_sym_decimal_token1, - ACTIONS(7324), 1, - anon_sym_f, - STATE(5411), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2526), 7, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, anon_sym_COMMA, + ACTIONS(8991), 1, anon_sym_COLON_COLON, + ACTIONS(8993), 1, anon_sym_PIPE, + ACTIONS(8995), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [136084] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5196), 1, - sym_method_or_prop_defn, - STATE(5758), 1, - sym_access_modifier, + ACTIONS(9196), 1, + anon_sym_DASH_GT, + ACTIONS(9198), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5412), 4, + STATE(5564), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136140] = 17, + [145066] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470929,35 +479234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8962), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9200), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5413), 4, + STATE(5565), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136196] = 17, + [145122] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -470968,35 +479273,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8964), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5414), 4, + ACTIONS(6924), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5566), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136252] = 11, + ACTIONS(6926), 5, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + [145164] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471007,29 +479307,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, + ACTIONS(8733), 1, anon_sym_COLON, - STATE(5391), 1, + STATE(5500), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5415), 4, + STATE(5567), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6425), 7, - anon_sym_EQ, + ACTIONS(6456), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [136296] = 11, + anon_sym_SEMI, + [145208] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471040,29 +479340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, - anon_sym_COLON, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5181), 1, + sym_method_or_prop_defn, + STATE(5897), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5416), 4, + STATE(5568), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [136340] = 11, + [145264] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471073,29 +479377,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8928), 1, + ACTIONS(8707), 1, anon_sym_COLON, - STATE(5391), 1, + STATE(5471), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5417), 4, + STATE(5569), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 7, + ACTIONS(6456), 7, anon_sym_EQ, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - [136384] = 16, + anon_sym_LT2, + [145308] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471106,34 +479412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5570), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2966), 9, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - ACTIONS(4606), 2, - anon_sym_EQ, - anon_sym_RPAREN, - STATE(5418), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [136438] = 17, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LT2, + [145350] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471144,35 +479442,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8966), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9202), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_not, + ACTIONS(9208), 1, + anon_sym_enum, + ACTIONS(9210), 1, + anon_sym_delegate, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5419), 4, + STATE(5571), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136494] = 16, + ACTIONS(9204), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + [145398] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471183,73 +479477,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8968), 1, - sym_identifier, - STATE(4661), 1, - sym_long_identifier, - STATE(5782), 1, - sym_access_modifier, - STATE(5931), 1, - sym__static_type_identifier, - STATE(8042), 1, - sym_type_argument, + ACTIONS(8707), 1, + anon_sym_COLON, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5420), 4, + STATE(5572), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136548] = 17, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(6460), 7, + anon_sym_EQ, anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, anon_sym_COMMA, - ACTIONS(8947), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, anon_sym_PIPE, - ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(8970), 1, - anon_sym_DASH_GT, - ACTIONS(8972), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5421), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [136604] = 17, + anon_sym_LT2, + [145442] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471260,74 +479510,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6992), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6994), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6996), 1, - anon_sym_LT2, - ACTIONS(6998), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8974), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8976), 1, - sym__dedent, - STATE(4315), 1, + ACTIONS(9212), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4441), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4451), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5422), 4, + STATE(5573), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136660] = 17, - ACTIONS(7), 1, + [145498] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8978), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5423), 4, + ACTIONS(9216), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5574), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136716] = 17, + ACTIONS(9214), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + [145538] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471338,73 +479580,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(8707), 1, anon_sym_COLON, - ACTIONS(8945), 1, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5575), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6464), 7, + anon_sym_EQ, + anon_sym_as, anon_sym_COMMA, - ACTIONS(8947), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, anon_sym_PIPE, - ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(8980), 1, - anon_sym_DASH_GT, - ACTIONS(8982), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + anon_sym_LT2, + [145582] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5424), 4, + ACTIONS(9218), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(5576), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136772] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + ACTIONS(9220), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + [145622] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, - anon_sym_COLON, - ACTIONS(8531), 1, - anon_sym_as, - ACTIONS(8533), 1, - anon_sym_COMMA, - ACTIONS(8535), 1, - anon_sym_COLON_COLON, - ACTIONS(8537), 1, - anon_sym_PIPE, - ACTIONS(8539), 1, - anon_sym_AMP, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(8984), 3, - sym__newline, - sym__dedent, + ACTIONS(125), 2, anon_sym_SEMI, - STATE(5425), 4, + sym_line_comment, + ACTIONS(9222), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(5577), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136826] = 17, + ACTIONS(9224), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + [145662] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471415,35 +479675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8986), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8707), 1, + anon_sym_COLON, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5426), 4, + STATE(5578), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136882] = 17, + ACTIONS(6468), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [145706] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -471456,33 +479710,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2581), 1, + STATE(2574), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5174), 1, + STATE(5234), 1, sym_method_or_prop_defn, - STATE(5778), 1, + STATE(5893), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5427), 4, + STATE(5579), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136938] = 17, + [145762] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471493,35 +479749,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2990), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(9226), 1, + anon_sym_or, + STATE(5580), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(2992), 7, anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, anon_sym_COMMA, - ACTIONS(8947), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, anon_sym_PIPE, - ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(8988), 1, - anon_sym_DASH_GT, - ACTIONS(8990), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5428), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [136994] = 17, + anon_sym_RBRACE, + [145806] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471532,35 +479780,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6454), 1, + anon_sym_COLON, + ACTIONS(9229), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5429), 4, + STATE(5581), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137050] = 17, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6456), 6, + anon_sym_EQ, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [145850] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471571,35 +479813,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8994), 1, - anon_sym_EQ, - STATE(5162), 1, + ACTIONS(9232), 1, + anon_sym_RPAREN, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5430), 4, + STATE(5582), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137106] = 17, + [145906] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471610,35 +479854,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(6438), 1, + anon_sym_COLON, + ACTIONS(9234), 1, anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5431), 4, + STATE(5583), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137162] = 17, + ACTIONS(6440), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [145950] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471649,35 +479885,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(8998), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8707), 1, + anon_sym_COLON, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_COLON_COLON, + ACTIONS(8715), 1, + anon_sym_PIPE, + ACTIONS(8717), 1, + anon_sym_AMP, + STATE(5471), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5432), 4, + ACTIONS(6475), 2, + anon_sym_EQ, + anon_sym_LT2, + STATE(5584), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137218] = 17, + [146004] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -471690,66 +479925,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2542), 1, + STATE(2569), 1, sym_property_or_ident, - STATE(2746), 1, - sym_method_or_prop_defn, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5771), 1, + STATE(5166), 1, + sym_method_or_prop_defn, + STATE(5866), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5433), 4, + STATE(5585), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137274] = 11, - ACTIONS(7), 1, + [146060] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, - anon_sym_COLON, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5434), 4, + ACTIONS(9236), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(5586), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [137318] = 13, + ACTIONS(9238), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + [146100] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471760,31 +479993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9000), 1, - anon_sym_LPAREN, - ACTIONS(9004), 1, - anon_sym_not, - ACTIONS(9006), 1, - anon_sym_enum, - ACTIONS(9008), 1, - anon_sym_delegate, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9240), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5435), 4, + STATE(5587), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9002), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - [137366] = 17, + [146156] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471795,35 +480032,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, - anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_COLON_COLON, - ACTIONS(8949), 1, - anon_sym_PIPE, - ACTIONS(8951), 1, - anon_sym_AMP, - ACTIONS(9010), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(9012), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9242), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5436), 4, + STATE(5588), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137422] = 11, + [146212] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471834,68 +480071,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, + ACTIONS(6387), 1, anon_sym_COLON, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9244), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5437), 4, + STATE(5589), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 7, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [137466] = 17, + anon_sym_in, + [146256] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, anon_sym_POUNDlight, ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - 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, - ACTIONS(8974), 1, - sym_identifier, - ACTIONS(9014), 1, - sym__dedent, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6448), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + STATE(5636), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5438), 4, + STATE(5590), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137522] = 17, + ACTIONS(6450), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [146302] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471906,35 +480138,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(8987), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(8989), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(8991), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(8993), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(8995), 1, anon_sym_AMP, - ACTIONS(9016), 1, - anon_sym_DASH_GT, - ACTIONS(9018), 1, - anon_sym_when, - STATE(5460), 1, + STATE(5590), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5439), 4, + ACTIONS(4645), 2, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5591), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137578] = 17, + [146356] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -471947,33 +480178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2580), 1, + STATE(2586), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5169), 1, + STATE(5085), 1, sym_method_or_prop_defn, - STATE(5802), 1, + STATE(5896), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5440), 4, + STATE(5592), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137634] = 17, + [146412] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -471984,35 +480215,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9247), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9020), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9249), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5441), 4, + STATE(5593), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137690] = 17, + [146468] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472023,37 +480254,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9022), 1, + ACTIONS(9251), 1, anon_sym_EQ, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5442), 4, + STATE(5594), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137746] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [146524] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472064,33 +480293,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5122), 1, - sym_method_or_prop_defn, - STATE(5796), 1, - sym_access_modifier, + ACTIONS(9253), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5443), 4, + STATE(5595), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137802] = 17, + [146580] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472101,35 +480332,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9024), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5444), 4, + ACTIONS(6920), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5596), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137858] = 17, + ACTIONS(6922), 5, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + [146622] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472140,37 +480364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6992), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(6994), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(6996), 1, - anon_sym_LT2, - ACTIONS(6998), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8974), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9026), 1, - sym__dedent, - STATE(4315), 1, + ACTIONS(9255), 1, + anon_sym_EQ, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(4441), 1, + STATE(5242), 1, sym_type_arguments, - STATE(4451), 1, + STATE(5377), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5445), 4, + STATE(5597), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137914] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [146678] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472181,33 +480403,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5079), 1, - sym_method_or_prop_defn, - STATE(5780), 1, - sym_access_modifier, + ACTIONS(9257), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5446), 4, + STATE(5598), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137970] = 17, + [146734] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472218,97 +480442,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(9259), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(9261), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(9263), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(9265), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(9267), 1, anon_sym_AMP, - ACTIONS(9028), 1, - anon_sym_DASH_GT, - ACTIONS(9030), 1, - anon_sym_when, - STATE(5460), 1, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5447), 4, + ACTIONS(4645), 2, + anon_sym_EQ, + anon_sym_RPAREN, + STATE(5599), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138026] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [146788] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(9032), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(5448), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(9034), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - [138066] = 9, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9269), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9036), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(5449), 4, + STATE(5600), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9038), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - [138106] = 17, + [146844] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472319,35 +480519,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9040), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5450), 4, + STATE(5601), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138162] = 17, + ACTIONS(6456), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [146888] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472358,37 +480552,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(8987), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(8989), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(8991), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(8993), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(8995), 1, anon_sym_AMP, - ACTIONS(9042), 1, + ACTIONS(9271), 1, anon_sym_DASH_GT, - ACTIONS(9044), 1, + ACTIONS(9273), 1, anon_sym_when, - STATE(5460), 1, + STATE(5590), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5451), 4, + STATE(5602), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138218] = 17, + [146944] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9275), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(5603), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(9277), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + [146984] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472399,33 +480622,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5197), 1, - sym_method_or_prop_defn, - STATE(5812), 1, - sym_access_modifier, + ACTIONS(9279), 1, + anon_sym_COMMA, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5452), 4, + STATE(5604), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138274] = 17, + [147040] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -472438,64 +480663,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2580), 1, + STATE(2574), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5125), 1, + STATE(5173), 1, sym_method_or_prop_defn, - STATE(5845), 1, + STATE(5900), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5453), 4, + STATE(5605), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138330] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [147096] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9048), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5454), 4, + STATE(5606), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9046), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - [138370] = 17, + [147152] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472506,35 +480739,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9283), 1, anon_sym_EQ, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5455), 4, + STATE(5607), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138426] = 17, + [147208] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472545,35 +480778,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, - anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_COLON_COLON, - ACTIONS(8949), 1, - anon_sym_PIPE, - ACTIONS(8951), 1, - anon_sym_AMP, - ACTIONS(9052), 1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(9054), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9285), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5456), 4, + STATE(5608), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138482] = 17, + [147264] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472584,35 +480817,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9056), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5457), 4, + STATE(5609), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138538] = 17, + ACTIONS(6460), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [147308] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472623,35 +480850,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(7250), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(7252), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(9051), 1, sym_identifier, - ACTIONS(9058), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9287), 1, + sym__dedent, + STATE(4341), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(4437), 1, sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5458), 4, + STATE(5610), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138594] = 16, + [147364] = 16, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472662,34 +480891,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(8733), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(8735), 1, + anon_sym_as, + ACTIONS(8737), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(8739), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(8741), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(8743), 1, anon_sym_AMP, - STATE(5460), 1, + STATE(5500), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(6475), 3, + sym__newline, + sym__dedent, anon_sym_SEMI, - sym_line_comment, - ACTIONS(4606), 2, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5459), 4, + STATE(5611), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138648] = 12, + [147418] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472700,30 +480929,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_COLON, - ACTIONS(8945), 1, - anon_sym_COMMA, - STATE(5399), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4443), 1, + sym_method_or_prop_defn, + STATE(5836), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5460), 4, + STATE(5612), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 6, + [147474] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(2979), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9289), 1, + anon_sym_or, + STATE(5625), 1, + aux_sym_type_argument_repeat1, + STATE(5613), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2981), 7, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [138694] = 17, + anon_sym_SEMI, + anon_sym_RBRACE, + [147520] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472734,35 +481002,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(6454), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(9291), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + STATE(5614), 5, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6456), 7, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COLON_COLON, - ACTIONS(8949), 1, anon_sym_PIPE, - ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(9060), 1, - anon_sym_DASH_GT, - ACTIONS(9062), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + anon_sym_SEMI, + [147564] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5461), 4, + ACTIONS(9224), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5615), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138750] = 17, + ACTIONS(9222), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + [147604] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472773,35 +481064,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9064), 1, + ACTIONS(9294), 1, anon_sym_COMMA, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5462), 4, + STATE(5616), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138806] = 17, + [147660] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472812,35 +481103,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9066), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5463), 4, + STATE(5617), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138862] = 17, + ACTIONS(6464), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [147704] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472851,35 +481136,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_mutable, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6099), 1, - sym_attributes, - STATE(6851), 1, - sym_record_field, - STATE(7390), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5464), 4, + ACTIONS(6943), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5618), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138918] = 17, + ACTIONS(6945), 5, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + [147746] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472890,35 +481168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9068), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6373), 1, + anon_sym_COLON, + ACTIONS(9035), 1, + anon_sym_and, + STATE(5469), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5465), 4, + STATE(5619), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138974] = 17, + ACTIONS(6375), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [147792] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472929,35 +481204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9070), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5466), 4, + ACTIONS(8733), 1, + anon_sym_COLON, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5620), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139030] = 17, + ACTIONS(6468), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [147836] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -472968,35 +481235,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9072), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5467), 4, + STATE(5621), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139086] = 17, + ACTIONS(6468), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [147880] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473007,35 +481268,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9074), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5468), 4, + ACTIONS(6475), 2, + anon_sym_EQ, + anon_sym_RPAREN, + STATE(5622), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139142] = 17, + [147934] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473046,35 +481308,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9076), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5469), 4, + ACTIONS(8733), 1, + anon_sym_COLON, + STATE(5500), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5623), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139198] = 17, + ACTIONS(6464), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [147978] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473085,35 +481339,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(9296), 1, sym_identifier, - ACTIONS(9078), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, + STATE(4679), 1, sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + STATE(5881), 1, + sym_access_modifier, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8210), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5470), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5624), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139254] = 11, + [148032] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473124,29 +481379,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, + ACTIONS(2962), 1, anon_sym_COLON, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5471), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9289), 1, + anon_sym_or, + STATE(5580), 1, + aux_sym_type_argument_repeat1, + STATE(5625), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6425), 7, + ACTIONS(2960), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [139298] = 13, + anon_sym_SEMI, + anon_sym_RBRACE, + [148078] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473157,70 +481411,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - STATE(5491), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9298), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6728), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(6730), 3, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5472), 4, + STATE(5626), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139346] = 17, + [148134] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5047), 1, - sym_method_or_prop_defn, - STATE(5732), 1, - sym_access_modifier, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5473), 4, + ACTIONS(9238), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5627), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139402] = 17, + ACTIONS(9236), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + [148174] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473231,37 +481481,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, - anon_sym_COLON, - ACTIONS(8945), 1, - anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_COLON_COLON, - ACTIONS(8949), 1, - anon_sym_PIPE, - ACTIONS(8951), 1, - anon_sym_AMP, - ACTIONS(9080), 1, - anon_sym_DASH_GT, - ACTIONS(9082), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5474), 4, + ACTIONS(7212), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_new, + sym_identifier, + STATE(5628), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139458] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(7214), 5, + anon_sym_LBRACK_LT, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_SQUOTE, + [148216] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473272,33 +481513,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5146), 1, - sym_method_or_prop_defn, - STATE(5766), 1, - sym_access_modifier, + ACTIONS(9300), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5475), 4, + STATE(5629), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139514] = 17, + [148272] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473309,70 +481552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9084), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9302), 1, + anon_sym_GT, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5476), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [139570] = 13, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(9090), 1, - anon_sym_DQUOTE2, - STATE(5533), 1, - aux_sym_verbatim_string_repeat1, - STATE(5852), 1, - sym__verbatim_string_char, - STATE(5853), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(9088), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9086), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5477), 4, + STATE(5630), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139618] = 17, + [148328] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473383,35 +481591,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(7250), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(7252), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(7254), 1, + anon_sym_LT2, + ACTIONS(7256), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(9051), 1, sym_identifier, - ACTIONS(9092), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9304), 1, + sym__dedent, + STATE(4341), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(4437), 1, sym_type_arguments, + STATE(4485), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5478), 4, + STATE(5631), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139674] = 17, + [148384] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473422,35 +481630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9094), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9306), 1, + anon_sym_COMMA, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5479), 4, + STATE(5632), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139730] = 17, + [148440] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473461,37 +481669,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9096), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5480), 4, + ACTIONS(6475), 2, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5633), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139786] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148494] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473502,33 +481707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5093), 1, - sym_method_or_prop_defn, - STATE(5798), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9308), 1, + anon_sym_EQ, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5481), 4, + STATE(5634), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139842] = 13, + [148550] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473539,62 +481746,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9098), 1, - anon_sym_LPAREN, - ACTIONS(9102), 1, - anon_sym_not, - ACTIONS(9104), 1, - anon_sym_enum, - ACTIONS(9106), 1, - anon_sym_delegate, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(8987), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_COLON_COLON, + ACTIONS(8993), 1, + anon_sym_PIPE, + ACTIONS(8995), 1, + anon_sym_AMP, + ACTIONS(9310), 1, + anon_sym_DASH_GT, + ACTIONS(9312), 1, + anon_sym_when, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5482), 4, + STATE(5635), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9100), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - [139890] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [148606] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6454), 1, + anon_sym_COLON, + ACTIONS(9314), 1, + anon_sym_COMMA, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9108), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(5483), 4, + STATE(5636), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9110), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - [139930] = 17, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6456), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [148650] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -473607,33 +481820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2542), 1, + STATE(2562), 1, sym_property_or_ident, - STATE(2784), 1, - sym_method_or_prop_defn, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(5734), 1, + STATE(4486), 1, + sym_method_or_prop_defn, + STATE(5816), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5484), 4, + STATE(5637), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139986] = 11, + [148706] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473644,29 +481857,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, + ACTIONS(8987), 1, anon_sym_COLON, - STATE(5499), 1, + STATE(5590), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5485), 4, + STATE(5638), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 7, - anon_sym_EQ, + ACTIONS(6468), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [140030] = 17, + anon_sym_DASH_GT, + anon_sym_when, + [148750] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473677,37 +481890,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - 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, - ACTIONS(8974), 1, - sym_identifier, - ACTIONS(9112), 1, - sym__dedent, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, + ACTIONS(8987), 1, + anon_sym_COLON, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5486), 4, + STATE(5639), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140086] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6464), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [148794] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473718,95 +481923,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2542), 1, - sym_property_or_ident, - STATE(2747), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5830), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8987), 1, + anon_sym_COLON, + STATE(5590), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5487), 4, + STATE(5640), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140142] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(6460), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [148838] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(9034), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5488), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(9032), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - [140182] = 9, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + STATE(5516), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9038), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5489), 4, + ACTIONS(6773), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(6775), 3, + aux_sym_access_modifier_token1, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5641), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9036), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - [140222] = 17, + [148886] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473817,35 +481991,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5152), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(7288), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(7290), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(7292), 1, + anon_sym_LT2, + ACTIONS(7294), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(9071), 1, sym_identifier, - ACTIONS(9114), 1, - anon_sym_RPAREN, - STATE(5162), 1, + STATE(4363), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, + STATE(4402), 1, sym_long_identifier, - STATE(5324), 1, + STATE(4404), 1, sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5490), 4, + STATE(5642), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140278] = 12, + [148942] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473856,32 +482030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9116), 1, - anon_sym_LBRACK_LT, - STATE(5827), 1, - sym__attribute_set, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6701), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(6706), 3, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5491), 5, + STATE(5643), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - [140324] = 12, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(6424), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [148986] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473892,28 +482063,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8937), 1, - anon_sym_or, - STATE(5400), 1, - aux_sym_type_argument_repeat1, - STATE(5492), 4, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5644), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 7, + ACTIONS(6446), 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_RBRACE, - [140370] = 17, + [149030] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -473926,33 +482098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2585), 1, + STATE(2562), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(4423), 1, + STATE(4484), 1, sym_method_or_prop_defn, - STATE(5832), 1, + STATE(5851), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5493), 4, + STATE(5645), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140426] = 11, + [149086] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473963,29 +482135,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, + ACTIONS(6448), 1, anon_sym_COLON, - ACTIONS(9119), 1, - anon_sym_and, + ACTIONS(9261), 1, + anon_sym_COMMA, + STATE(5650), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5494), 5, + STATE(5646), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6280), 6, + ACTIONS(6450), 6, + anon_sym_EQ, anon_sym_as, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [140470] = 11, + [149132] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -473996,29 +482169,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, + ACTIONS(8987), 1, anon_sym_COLON, - STATE(5499), 1, + STATE(5590), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5495), 4, + STATE(5647), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 7, - anon_sym_EQ, + ACTIONS(6456), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [140514] = 11, + anon_sym_DASH_GT, + anon_sym_when, + [149176] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474029,29 +482202,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, - anon_sym_COLON, - STATE(5499), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9317), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5496), 4, + STATE(5648), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + [149232] = 17, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, anon_sym_LT2, - [140558] = 12, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9319), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5649), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [149288] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474062,30 +482280,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, + ACTIONS(6454), 1, anon_sym_COLON, - ACTIONS(9122), 1, - anon_sym_and, - STATE(5494), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(9321), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5497), 4, + STATE(5650), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6276), 6, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6456), 6, + anon_sym_EQ, anon_sym_as, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [140604] = 11, + [149332] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -474098,27 +482315,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6387), 1, anon_sym_COLON, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5498), 4, + ACTIONS(9324), 1, + anon_sym_and, + STATE(5651), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 8, - sym__newline, - sym__dedent, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6389), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [140648] = 12, + anon_sym_RBRACE, + [149376] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474129,30 +482348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_COLON, - ACTIONS(8685), 1, - anon_sym_COMMA, - STATE(5535), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4452), 1, + sym_method_or_prop_defn, + STATE(5874), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5499), 4, + STATE(5652), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [140694] = 16, + [149432] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474163,34 +482387,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, - anon_sym_COLON, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8685), 1, - anon_sym_COMMA, - ACTIONS(8687), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, - anon_sym_PIPE, - ACTIONS(8691), 1, - anon_sym_AMP, - STATE(5499), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(8597), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5223), 1, + sym_method_or_prop_defn, + STATE(5840), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4606), 2, - anon_sym_EQ, - anon_sym_LT2, - STATE(5500), 4, + STATE(5653), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140748] = 17, + [149488] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474201,35 +482424,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9124), 1, + ACTIONS(9327), 1, anon_sym_RPAREN, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5501), 4, + STATE(5654), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140804] = 17, + [149544] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474240,35 +482463,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(8089), 1, anon_sym_DASH_GT, - ACTIONS(8022), 1, + ACTIONS(8091), 1, anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9126), 1, - anon_sym_RPAREN, - STATE(5162), 1, + ACTIONS(9329), 1, + anon_sym_GT, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5502), 4, + STATE(5655), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140860] = 17, + [149600] = 17, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -474281,64 +482504,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, + ACTIONS(4518), 1, aux_sym_access_modifier_token1, - ACTIONS(8499), 1, + ACTIONS(8597), 1, sym_identifier, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - STATE(2571), 1, + STATE(2558), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(2758), 1, + sym_method_or_prop_defn, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(4548), 1, - sym_method_or_prop_defn, - STATE(5851), 1, + STATE(5899), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5503), 4, + STATE(5656), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140916] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [149656] = 17, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8089), 1, + anon_sym_DASH_GT, + ACTIONS(8091), 1, + anon_sym_STAR, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + ACTIONS(9331), 1, + anon_sym_RPAREN, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9128), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(5504), 4, + STATE(5657), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9130), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - [140956] = 17, + [149712] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474349,35 +482582,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9132), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6426), 1, + anon_sym_COLON, + STATE(5658), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6428), 8, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [149753] = 16, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9343), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5505), 4, + STATE(5659), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141012] = 17, + [149806] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474388,37 +482648,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9134), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9345), 1, anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5506), 4, + STATE(5660), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141068] = 17, - ACTIONS(5), 1, + [149859] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6533), 1, + anon_sym_COLON, + STATE(5661), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6535), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [149900] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474429,33 +482716,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5016), 1, - sym_method_or_prop_defn, - STATE(5818), 1, - sym_access_modifier, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9347), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5667), 1, + aux_sym_type_definition_repeat1, + STATE(7106), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5507), 4, + ACTIONS(5186), 2, + sym__newline, + sym__dedent, + STATE(5662), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141124] = 11, + [149951] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -474468,18 +482754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, + ACTIONS(6525), 1, anon_sym_COLON, - ACTIONS(9136), 1, - anon_sym_LT2, - STATE(5508), 4, + STATE(5663), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 8, + ACTIONS(6527), 8, sym__newline, sym__dedent, anon_sym_as, @@ -474488,7 +482772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [141168] = 11, + [149992] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -474501,18 +482785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6521), 1, anon_sym_COLON, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5509), 4, + STATE(5664), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 8, + ACTIONS(6523), 8, sym__newline, sym__dedent, anon_sym_as, @@ -474521,7 +482803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [141212] = 17, + [150033] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474532,35 +482814,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(35), 1, + anon_sym_let, + ACTIONS(37), 1, + anon_sym_let_BANG, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9138), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8290), 1, + anon_sym_do, + ACTIONS(9349), 1, + anon_sym_module, + ACTIONS(9351), 1, + anon_sym_type, + ACTIONS(9353), 1, + anon_sym_exception, + STATE(2816), 1, + sym_do, + STATE(2818), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5510), 4, + STATE(5665), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141268] = 17, + [150086] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474571,35 +482853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9140), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5511), 4, + ACTIONS(6509), 1, + anon_sym_COLON, + STATE(5666), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141324] = 17, + ACTIONS(6511), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [150127] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474610,35 +482882,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5180), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9142), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9355), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(7106), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5512), 4, + ACTIONS(5176), 2, + sym__newline, + sym__dedent, + STATE(5667), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141380] = 17, + aux_sym_type_definition_repeat1, + [150176] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474649,35 +482917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5140), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9144), 1, - sym_identifier, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, + ACTIONS(9347), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5662), 1, + aux_sym_type_definition_repeat1, + STATE(7106), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5513), 4, + ACTIONS(5170), 2, + sym__newline, + sym__dedent, + STATE(5668), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141436] = 12, + [150227] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -474690,28 +482955,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(6481), 1, anon_sym_COLON, - ACTIONS(8533), 1, - anon_sym_COMMA, - STATE(5557), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5514), 4, + STATE(5669), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 7, + ACTIONS(6483), 8, sym__newline, sym__dedent, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [141482] = 17, + [150268] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474722,37 +482986,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(6477), 1, anon_sym_COLON, - ACTIONS(8945), 1, + STATE(5670), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6479), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - ACTIONS(8947), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, anon_sym_PIPE, - ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(9146), 1, - anon_sym_DASH_GT, - ACTIONS(9148), 1, - anon_sym_when, - STATE(5460), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + anon_sym_SEMI, + [150309] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5515), 4, + ACTIONS(9236), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + ACTIONS(9238), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5671), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141538] = 16, - ACTIONS(3), 1, + [150348] = 16, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8429), 1, + anon_sym_do, + ACTIONS(8431), 1, + anon_sym_let, + ACTIONS(8433), 1, + anon_sym_let_BANG, + ACTIONS(9358), 1, + anon_sym_module, + ACTIONS(9360), 1, + anon_sym_type, + ACTIONS(9362), 1, + anon_sym_exception, + STATE(5187), 1, + sym_do, + STATE(5193), 1, + sym_function_or_value_defn, + ACTIONS(3), 2, + anon_sym_SEMI, sym_line_comment, + STATE(5672), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [150401] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474763,32 +483082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, - anon_sym_COLON, - ACTIONS(8531), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8533), 1, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, - ACTIONS(8535), 1, + ACTIONS(9263), 1, anon_sym_COLON_COLON, - ACTIONS(8537), 1, + ACTIONS(9265), 1, anon_sym_PIPE, - ACTIONS(8539), 1, + ACTIONS(9267), 1, anon_sym_AMP, - STATE(5514), 1, + ACTIONS(9364), 1, + anon_sym_RPAREN, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(4606), 3, - sym__newline, - sym__dedent, + ACTIONS(3), 2, anon_sym_SEMI, - STATE(5516), 4, + sym_line_comment, + STATE(5673), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141592] = 17, + [150454] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474799,69 +483119,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9150), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9347), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5667), 1, + aux_sym_type_definition_repeat1, + STATE(7106), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5517), 4, + ACTIONS(5170), 2, + sym__newline, + sym__dedent, + STATE(5674), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141648] = 12, + [150505] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(8592), 1, - anon_sym_DQUOTE2, - STATE(5852), 1, - sym__verbatim_string_char, - STATE(5853), 1, - sym__simple_string_char, ACTIONS(15), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9222), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + ACTIONS(9224), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5675), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [150544] = 15, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9347), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5674), 1, + aux_sym_type_definition_repeat1, + STATE(7106), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5190), 2, + sym__newline, + sym__dedent, + STATE(5676), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [150595] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9366), 1, + anon_sym_COLON, + STATE(5687), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5677), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6424), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [150638] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6438), 1, + anon_sym_COLON, + ACTIONS(9368), 1, + anon_sym_LT2, + STATE(5678), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6440), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [150681] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9366), 1, + anon_sym_COLON, + STATE(5687), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5679), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6446), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [150724] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9366), 1, + anon_sym_COLON, + ACTIONS(9370), 1, + anon_sym_as, + ACTIONS(9372), 1, + anon_sym_COMMA, + ACTIONS(9374), 1, + anon_sym_COLON_COLON, + ACTIONS(9376), 1, + anon_sym_PIPE, + ACTIONS(9378), 1, + anon_sym_AMP, + STATE(5687), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(4645), 2, anon_sym_SEMI, - sym_line_comment, - ACTIONS(9155), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9152), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5518), 5, + anon_sym_RBRACE, + STATE(5680), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [141694] = 17, + [150777] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474872,35 +483354,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9158), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9380), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5519), 4, + STATE(5681), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141750] = 17, + [150830] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474911,35 +483391,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9382), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5520), 4, + STATE(5682), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141806] = 17, + [150883] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474950,35 +483428,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9162), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9384), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5521), 4, + STATE(5683), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141862] = 17, + [150936] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -474989,35 +483465,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9164), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9386), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5522), 4, + STATE(5684), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141918] = 17, + [150989] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475028,37 +483502,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9166), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9388), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5523), 4, + STATE(5685), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141974] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [151042] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475069,33 +483539,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4445), 1, - sym_method_or_prop_defn, - STATE(5797), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9390), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5524), 4, + STATE(5686), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142030] = 12, + [151095] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -475108,28 +483578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6274), 1, + ACTIONS(6448), 1, anon_sym_COLON, - ACTIONS(9168), 1, - anon_sym_and, - STATE(5384), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(5525), 4, + ACTIONS(9372), 1, + anon_sym_COMMA, + STATE(5705), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5687), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6276), 7, + ACTIONS(6450), 6, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [142076] = 17, + [151140] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475140,37 +483609,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9170), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9392), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5526), 4, + STATE(5688), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142132] = 12, - ACTIONS(3), 1, - sym_line_comment, + [151193] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475181,28 +483646,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, - anon_sym_COLON, - ACTIONS(9168), 1, - anon_sym_and, - STATE(5525), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(5527), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6270), 7, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + ACTIONS(9394), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - [142178] = 17, + sym_line_comment, + STATE(5689), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [151246] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475213,35 +483683,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5136), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6975), 1, - anon_sym_DASH_GT, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_LT2, - ACTIONS(6981), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9144), 1, - sym_identifier, - STATE(4303), 1, - aux_sym_compound_type_repeat1, - STATE(4390), 1, - sym_type_arguments, - STATE(4404), 1, - sym_long_identifier, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9396), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5528), 4, + STATE(5690), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142234] = 17, + [151299] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475252,35 +483720,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9172), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9398), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5529), 4, + STATE(5691), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142290] = 17, + [151352] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475291,35 +483759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9174), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5530), 4, + ACTIONS(6529), 1, + anon_sym_COLON, + STATE(5692), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142346] = 17, + ACTIONS(6531), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [151393] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475330,37 +483788,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9176), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9400), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5531), 4, + STATE(5693), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142402] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [151446] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475371,68 +483825,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4485), 1, - sym_method_or_prop_defn, - STATE(5844), 1, - sym_access_modifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5532), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [142458] = 13, - ACTIONS(5), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(9178), 1, - anon_sym_DQUOTE2, - STATE(5518), 1, - aux_sym_verbatim_string_repeat1, - STATE(5852), 1, - sym__verbatim_string_char, - STATE(5853), 1, - sym__simple_string_char, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9402), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9088), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9086), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5533), 4, + STATE(5694), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142506] = 17, + [151499] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475443,35 +483862,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9180), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9404), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5534), 4, + STATE(5695), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142562] = 11, + [151552] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475482,29 +483899,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, anon_sym_COLON, - ACTIONS(9182), 1, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9406), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5535), 5, + STATE(5696), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6414), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [142606] = 11, + [151605] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -475517,27 +483938,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(9366), 1, anon_sym_COLON, - STATE(5514), 1, + STATE(5687), 1, aux_sym_repeat_pattern_repeat1, - STATE(5536), 4, + STATE(5697), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 8, - sym__newline, - sym__dedent, + ACTIONS(6456), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [142650] = 17, + anon_sym_RBRACE, + [151648] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475548,35 +483968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9185), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9408), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5537), 4, + STATE(5698), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142706] = 11, + [151701] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -475589,18 +484007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6495), 1, anon_sym_COLON, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5538), 4, + STATE(5699), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 8, + ACTIONS(6497), 8, sym__newline, sym__dedent, anon_sym_as, @@ -475609,7 +484025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [142750] = 17, + [151742] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475620,74 +484036,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4464), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9187), 1, - anon_sym_COMMA, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6620), 1, + anon_sym_DOT, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5539), 4, + STATE(5700), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142806] = 17, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, + ACTIONS(2986), 5, anon_sym_DASH_GT, - ACTIONS(8022), 1, anon_sym_STAR, - ACTIONS(8024), 1, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, sym_identifier, - ACTIONS(9189), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, + [151787] = 11, + ACTIONS(3), 1, sym_line_comment, - STATE(5540), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [142862] = 17, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475698,35 +484071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - 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, - ACTIONS(8974), 1, - sym_identifier, - ACTIONS(9191), 1, - sym__dedent, - STATE(4315), 1, - aux_sym_compound_type_repeat1, - STATE(4441), 1, - sym_type_arguments, - STATE(4451), 1, - sym_long_identifier, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5541), 4, + ACTIONS(9366), 1, + anon_sym_COLON, + STATE(5687), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5701), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142918] = 17, + ACTIONS(6460), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [151830] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475737,35 +484101,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9193), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9410), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5542), 4, + STATE(5702), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142974] = 17, + [151883] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475776,35 +484140,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9195), 1, - anon_sym_GT, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5543), 4, + ACTIONS(9366), 1, + anon_sym_COLON, + STATE(5687), 1, + aux_sym_repeat_pattern_repeat1, + STATE(5703), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143030] = 11, + ACTIONS(6464), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [151926] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -475817,27 +484172,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(9366), 1, anon_sym_COLON, - STATE(5514), 1, + STATE(5687), 1, aux_sym_repeat_pattern_repeat1, - STATE(5544), 4, + STATE(5704), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6425), 8, - sym__newline, - sym__dedent, + ACTIONS(6468), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [143074] = 17, + anon_sym_RBRACE, + [151969] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475848,35 +484204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9197), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5545), 4, + ACTIONS(6454), 1, + anon_sym_COLON, + ACTIONS(9412), 1, + anon_sym_COMMA, + STATE(5705), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143130] = 17, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6456), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [152012] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475887,35 +484234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(9259), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(9261), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(9263), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(9265), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(9267), 1, anon_sym_AMP, - ACTIONS(9199), 1, - anon_sym_DASH_GT, - ACTIONS(9201), 1, - anon_sym_when, - STATE(5460), 1, + ACTIONS(9415), 1, + anon_sym_EQ, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5546), 4, + STATE(5706), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143186] = 11, + [152065] = 16, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475926,31 +484273,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, + ACTIONS(9366), 1, anon_sym_COLON, - STATE(5460), 1, + ACTIONS(9370), 1, + anon_sym_as, + ACTIONS(9372), 1, + anon_sym_COMMA, + ACTIONS(9374), 1, + anon_sym_COLON_COLON, + ACTIONS(9376), 1, + anon_sym_PIPE, + ACTIONS(9378), 1, + anon_sym_AMP, + STATE(5687), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(6475), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5547), 4, + anon_sym_RBRACE, + STATE(5707), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [143230] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [152118] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -475961,33 +484308,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4972), 1, - sym_method_or_prop_defn, - STATE(5829), 1, - sym_access_modifier, + ACTIONS(35), 1, + anon_sym_let, + ACTIONS(37), 1, + anon_sym_let_BANG, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8290), 1, + anon_sym_do, + ACTIONS(9351), 1, + anon_sym_type, + ACTIONS(9353), 1, + anon_sym_exception, + ACTIONS(9417), 1, + anon_sym_module, + STATE(2816), 1, + sym_do, + STATE(2818), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5548), 4, + STATE(5708), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143286] = 11, + [152171] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -476000,18 +484347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6499), 1, anon_sym_COLON, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5549), 4, + STATE(5709), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 8, + ACTIONS(6501), 8, sym__newline, sym__dedent, anon_sym_as, @@ -476020,7 +484365,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [143330] = 17, + [152212] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476031,35 +484378,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9203), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5550), 4, + ACTIONS(6503), 1, + anon_sym_COLON, + STATE(5710), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143386] = 17, + ACTIONS(6505), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [152253] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476070,35 +484407,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9205), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9419), 1, + anon_sym_in, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5551), 4, + STATE(5711), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143442] = 16, + [152306] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476109,34 +484444,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, - anon_sym_COLON, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8685), 1, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, anon_sym_COMMA, - ACTIONS(8687), 1, + ACTIONS(9337), 1, anon_sym_COLON_COLON, - ACTIONS(8689), 1, + ACTIONS(9339), 1, anon_sym_PIPE, - ACTIONS(8691), 1, + ACTIONS(9341), 1, anon_sym_AMP, - STATE(5499), 1, + ACTIONS(9421), 1, + anon_sym_in, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6410), 2, - anon_sym_EQ, - anon_sym_LT2, - STATE(5552), 4, + STATE(5712), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143496] = 17, + [152359] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476147,35 +484483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9207), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5553), 4, + ACTIONS(6485), 1, + anon_sym_COLON, + STATE(5713), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143552] = 17, + ACTIONS(6487), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [152400] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476186,35 +484512,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9209), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6475), 1, + anon_sym_in, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5554), 4, + STATE(5714), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143608] = 11, + [152453] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476225,29 +484549,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9333), 1, anon_sym_COLON, - STATE(5460), 1, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_COLON_COLON, + ACTIONS(9339), 1, + anon_sym_PIPE, + ACTIONS(9341), 1, + anon_sym_AMP, + ACTIONS(9423), 1, + anon_sym_in, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5555), 4, + STATE(5715), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [143652] = 17, + [152506] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476258,37 +484586,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9211), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(6454), 1, + anon_sym_COLON, + ACTIONS(9425), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5556), 4, + ACTIONS(6456), 5, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5716), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143708] = 11, - ACTIONS(3), 1, - sym_line_comment, + aux_sym_repeat_pattern_repeat1, + [152549] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476299,27 +484618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, + ACTIONS(9333), 1, anon_sym_COLON, - ACTIONS(9213), 1, - anon_sym_COMMA, - STATE(5557), 5, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5717), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6414), 7, - sym__newline, - sym__dedent, + ACTIONS(6468), 6, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [143752] = 11, + anon_sym_in, + [152592] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476330,31 +484650,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, + ACTIONS(9333), 1, anon_sym_COLON, - STATE(5499), 1, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5558), 4, + STATE(5718), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 7, - anon_sym_EQ, + ACTIONS(6464), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [143796] = 17, - ACTIONS(5), 1, + anon_sym_in, + [152635] = 16, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9428), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5719), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [152688] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476365,33 +484719,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5115), 1, - sym_method_or_prop_defn, - STATE(5834), 1, - sym_access_modifier, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9430), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5725), 1, + aux_sym_type_definition_repeat1, + STATE(7102), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5559), 4, + ACTIONS(5186), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5720), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143852] = 17, + [152739] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476402,35 +484755,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9216), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9432), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5560), 4, + STATE(5721), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143908] = 17, + [152792] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476441,35 +484792,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9218), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(8244), 1, + anon_sym_do, + ACTIONS(9434), 1, + anon_sym_module, + ACTIONS(9436), 1, + anon_sym_type, + ACTIONS(9438), 1, + anon_sym_exception, + STATE(4993), 1, + sym_function_or_value_defn, + STATE(5093), 1, + sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5561), 4, + STATE(5722), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143964] = 16, + [152845] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -476482,34 +484831,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, + ACTIONS(6513), 1, anon_sym_COLON, - ACTIONS(8531), 1, + STATE(5723), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6515), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(8533), 1, anon_sym_COMMA, - ACTIONS(8535), 1, anon_sym_COLON_COLON, - ACTIONS(8537), 1, anon_sym_PIPE, - ACTIONS(8539), 1, anon_sym_AMP, - STATE(5514), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6410), 3, - sym__newline, - sym__dedent, anon_sym_SEMI, - STATE(5562), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [144018] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [152886] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476520,33 +484860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5128), 1, - sym_method_or_prop_defn, - STATE(5826), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9333), 1, + anon_sym_COLON, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5563), 4, + STATE(5724), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144074] = 13, + ACTIONS(6460), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [152929] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476557,33 +484892,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5180), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9220), 1, - anon_sym_LPAREN, - ACTIONS(9224), 1, - anon_sym_not, - ACTIONS(9226), 1, - anon_sym_enum, - ACTIONS(9228), 1, - anon_sym_delegate, + ACTIONS(9440), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(7102), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5564), 4, + ACTIONS(5176), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5725), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9222), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - [144122] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_type_definition_repeat1, + [152978] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476594,35 +484927,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2542), 1, - sym_property_or_ident, - STATE(2745), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5840), 1, - sym_access_modifier, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9430), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5720), 1, + aux_sym_type_definition_repeat1, + STATE(7102), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5565), 4, + ACTIONS(5170), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5726), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144178] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153029] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476633,33 +484963,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4534), 1, - sym_method_or_prop_defn, - STATE(5841), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9443), 1, + anon_sym_RPAREN, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5566), 4, + STATE(5727), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144234] = 11, + [153082] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476670,29 +485000,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, + ACTIONS(9333), 1, anon_sym_COLON, - STATE(5499), 1, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5567), 4, + STATE(5728), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6425), 7, - anon_sym_EQ, + ACTIONS(6456), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [144278] = 17, + anon_sym_in, + [153125] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476703,37 +485034,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9230), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(6387), 1, + anon_sym_COLON, + STATE(5729), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6389), 8, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_RBRACE, + [153166] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5568), 4, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6438), 1, + anon_sym_COLON, + STATE(5730), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144334] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6440), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [153207] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476744,33 +485094,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4435), 1, - sym_method_or_prop_defn, - STATE(5850), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9445), 1, + anon_sym_RPAREN, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5569), 4, + STATE(5731), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144390] = 10, + [153260] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -476783,62 +485133,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6376), 1, + ACTIONS(6489), 1, anon_sym_COLON, - STATE(5570), 4, + ACTIONS(9447), 1, + anon_sym_as, + STATE(5732), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6378), 9, + ACTIONS(6491), 7, 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, - [144432] = 12, - ACTIONS(7), 1, + [153303] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6268), 1, - anon_sym_COLON, - ACTIONS(9122), 1, - anon_sym_and, - STATE(5497), 1, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5571), 4, + ACTIONS(9214), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + ACTIONS(9216), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5733), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6270), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - [144478] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153342] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476849,33 +485193,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4369), 1, - sym_method_or_prop_defn, - STATE(5839), 1, - sym_access_modifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9449), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5572), 4, + STATE(5734), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144534] = 10, + [153395] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -476888,18 +485232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5891), 1, + ACTIONS(5890), 1, anon_sym_COLON, - STATE(5573), 4, + STATE(5735), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 9, - sym__newline, - sym__dedent, + ACTIONS(5892), 8, anon_sym_and, anon_sym_as, anon_sym_COMMA, @@ -476907,7 +485249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [144576] = 17, + anon_sym_RBRACE, + [153436] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476918,37 +485261,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9232), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9430), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5725), 1, + aux_sym_type_definition_repeat1, + STATE(7102), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5574), 4, + ACTIONS(5170), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5736), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144632] = 10, - ACTIONS(3), 1, - sym_line_comment, + [153487] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -476959,26 +485297,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, anon_sym_COLON, - STATE(5575), 4, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9451), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5737), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6280), 9, - sym__newline, - sym__dedent, - anon_sym_and, + [153540] = 16, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + ACTIONS(9453), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - [144674] = 10, + sym_line_comment, + STATE(5738), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [153593] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -476991,18 +485373,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5879), 1, + ACTIONS(5906), 1, anon_sym_COLON, - STATE(5576), 4, + STATE(5739), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 9, - sym__newline, - sym__dedent, + ACTIONS(5908), 8, anon_sym_and, anon_sym_as, anon_sym_COMMA, @@ -477010,7 +485390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [144716] = 17, + anon_sym_RBRACE, + [153634] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477021,35 +485402,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4645), 1, + anon_sym_in, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(8921), 1, + ACTIONS(9333), 1, anon_sym_COLON, - ACTIONS(8945), 1, + ACTIONS(9335), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(9337), 1, anon_sym_COLON_COLON, - ACTIONS(8949), 1, + ACTIONS(9339), 1, anon_sym_PIPE, - ACTIONS(8951), 1, + ACTIONS(9341), 1, anon_sym_AMP, - ACTIONS(9234), 1, - anon_sym_DASH_GT, - ACTIONS(9236), 1, - anon_sym_when, - STATE(5460), 1, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5577), 4, + STATE(5740), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144772] = 11, + [153687] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477060,31 +485439,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, + ACTIONS(6448), 1, anon_sym_COLON, - STATE(5499), 1, + ACTIONS(9335), 1, + anon_sym_COMMA, + STATE(5716), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5578), 4, + STATE(5741), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 7, - anon_sym_EQ, + ACTIONS(6450), 5, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [144816] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + [153732] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477095,33 +485474,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(8499), 1, - sym_identifier, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4479), 1, - sym_method_or_prop_defn, - STATE(5838), 1, - sym_access_modifier, - ACTIONS(3), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6537), 1, + anon_sym_COLON, + STATE(5742), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6539), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, + [153773] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5579), 4, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6517), 1, + anon_sym_COLON, + STATE(5743), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144872] = 17, + ACTIONS(6519), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [153814] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477132,35 +485534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9238), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9455), 1, + anon_sym_RPAREN, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5580), 4, + STATE(5744), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144928] = 17, + [153867] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477171,35 +485571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9240), 1, - anon_sym_EQ, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9430), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5736), 1, + aux_sym_type_definition_repeat1, + STATE(7102), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5581), 4, + ACTIONS(5190), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5745), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144984] = 10, + [153918] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477212,18 +485609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6388), 1, + ACTIONS(6418), 1, anon_sym_COLON, - STATE(5582), 4, + STATE(5746), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6390), 9, - sym__newline, - sym__dedent, + ACTIONS(6420), 8, anon_sym_and, anon_sym_as, anon_sym_COMMA, @@ -477231,7 +485626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145026] = 10, + anon_sym_RBRACE, + [153959] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477244,18 +485640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6384), 1, + ACTIONS(6430), 1, anon_sym_COLON, - STATE(5583), 4, + STATE(5747), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6386), 9, - sym__newline, - sym__dedent, + ACTIONS(6432), 8, anon_sym_and, anon_sym_as, anon_sym_COMMA, @@ -477263,7 +485657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145068] = 10, + anon_sym_RBRACE, + [154000] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477276,18 +485671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6380), 1, + ACTIONS(6434), 1, anon_sym_COLON, - STATE(5584), 4, + STATE(5748), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6382), 9, - sym__newline, - sym__dedent, + ACTIONS(6436), 8, anon_sym_and, anon_sym_as, anon_sym_COMMA, @@ -477295,7 +485688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145110] = 17, + anon_sym_RBRACE, + [154041] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477306,35 +485700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - ACTIONS(9242), 1, - anon_sym_RPAREN, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(8324), 1, + anon_sym_do, + ACTIONS(8326), 1, + anon_sym_let, + ACTIONS(8328), 1, + anon_sym_let_BANG, + ACTIONS(9457), 1, + anon_sym_module, + ACTIONS(9459), 1, + anon_sym_type, + ACTIONS(9461), 1, + anon_sym_exception, + STATE(4975), 1, + sym_do, + STATE(4976), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5585), 4, + STATE(5749), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145166] = 13, + [154094] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477345,31 +485737,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9244), 1, - anon_sym_LPAREN, - ACTIONS(9248), 1, - anon_sym_not, - ACTIONS(9250), 1, - anon_sym_enum, - ACTIONS(9252), 1, - anon_sym_delegate, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5586), 4, + ACTIONS(4462), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5750), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(9246), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - [145214] = 17, + [154145] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477380,37 +485773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(8020), 1, - anon_sym_DASH_GT, - ACTIONS(8022), 1, - anon_sym_STAR, - ACTIONS(8024), 1, + ACTIONS(8093), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8526), 1, sym_identifier, - ACTIONS(9254), 1, - anon_sym_COMMA, - STATE(5162), 1, + STATE(5216), 1, aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, + STATE(5242), 1, sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5587), 4, + ACTIONS(9463), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5751), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145270] = 10, - ACTIONS(3), 1, - sym_line_comment, + [154196] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477421,25 +485809,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3543), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5588), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3541), 8, - sym__newline, - sym__dedent, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + ACTIONS(9465), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - [145311] = 15, + sym_line_comment, + STATE(5752), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [154249] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477450,34 +485846,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9256), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5611), 1, - aux_sym_type_definition_repeat1, - STATE(7036), 1, - sym_attributes, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(8093), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8526), 1, + sym_identifier, + STATE(5216), 1, + aux_sym_compound_type_repeat1, + STATE(5242), 1, + sym_type_arguments, + STATE(5377), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5182), 2, - sym__newline, - sym__dedent, - STATE(5589), 4, + ACTIONS(9467), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5753), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145362] = 10, - ACTIONS(3), 1, - sym_line_comment, + [154300] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477488,27 +485882,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5070), 1, + anon_sym_RPAREN, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6496), 1, - anon_sym_COLON, - STATE(5590), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6498), 8, - sym__newline, - sym__dedent, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - [145403] = 10, - ACTIONS(3), 1, sym_line_comment, + STATE(5754), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [154353] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477519,25 +485919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6492), 1, - anon_sym_COLON, - STATE(5591), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6494), 8, - sym__newline, - sym__dedent, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + ACTIONS(9469), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - [145444] = 11, + sym_line_comment, + STATE(5755), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [154406] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477548,28 +485956,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, anon_sym_COLON, - STATE(5654), 1, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9471), 1, + anon_sym_EQ, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5592), 4, + STATE(5756), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - [145487] = 11, + [154459] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477580,28 +485993,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, anon_sym_COLON, - STATE(5654), 1, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + ACTIONS(9473), 1, + anon_sym_RPAREN, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5593), 4, + STATE(5757), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [154512] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5758), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 6, + ACTIONS(2526), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [145530] = 15, + anon_sym_SEMI, + [154553] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477612,62 +486063,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3696), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9256), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5606), 1, - aux_sym_type_definition_repeat1, - STATE(7036), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5182), 2, - sym__newline, - sym__dedent, - STATE(5594), 4, + STATE(5759), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145581] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + ACTIONS(3694), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [154594] = 11, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9333), 1, + anon_sym_COLON, + STATE(5741), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9036), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(9038), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5595), 4, + STATE(5760), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145620] = 16, + ACTIONS(6446), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [154637] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477678,33 +486126,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2990), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5761), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2992), 8, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9260), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_or, + [154678] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5596), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [145673] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477715,32 +486157,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3702), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9256), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5594), 1, - aux_sym_type_definition_repeat1, - STATE(7036), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5186), 2, - sym__newline, - sym__dedent, - STATE(5597), 4, + STATE(5762), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145724] = 16, + ACTIONS(3700), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [154719] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477751,33 +486186,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, + ACTIONS(9333), 1, anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9262), 1, - anon_sym_EQ, - STATE(5391), 1, + STATE(5741), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5598), 4, + STATE(5763), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145777] = 10, + ACTIONS(6424), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [154762] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477790,16 +486220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6435), 1, + ACTIONS(3725), 1, anon_sym_COLON, - STATE(5599), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5764), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6437), 8, + ACTIONS(3723), 8, sym__newline, sym__dedent, anon_sym_as, @@ -477808,7 +486238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145818] = 10, + [154803] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477821,16 +486251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6510), 1, + ACTIONS(3717), 1, anon_sym_COLON, - STATE(5600), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5765), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6512), 8, + ACTIONS(3715), 8, sym__newline, sym__dedent, anon_sym_as, @@ -477839,7 +486269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145859] = 12, + [154844] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477850,29 +486282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4466), 1, + ACTIONS(3682), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5601), 4, + STATE(5766), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2957), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [145904] = 10, + ACTIONS(3680), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [154885] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477885,25 +486313,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6464), 1, + ACTIONS(3046), 1, anon_sym_COLON, - STATE(5602), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5767), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6466), 8, - sym__newline, - sym__dedent, + ACTIONS(3044), 8, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [145945] = 11, + anon_sym_RBRACE, + anon_sym_or, + [154926] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -477914,28 +486344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(3675), 1, anon_sym_COLON, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5603), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5768), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6425), 6, + ACTIONS(3673), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [145988] = 10, + anon_sym_SEMI, + [154967] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477948,16 +486375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6460), 1, + ACTIONS(3667), 1, anon_sym_COLON, - STATE(5604), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5769), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6462), 8, + ACTIONS(3665), 8, sym__newline, sym__dedent, anon_sym_as, @@ -477966,7 +486393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146029] = 10, + [155008] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -477979,16 +486406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6506), 1, + ACTIONS(3659), 1, anon_sym_COLON, - STATE(5605), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5770), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6508), 8, + ACTIONS(3657), 8, sym__newline, sym__dedent, anon_sym_as, @@ -477997,7 +486424,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146070] = 14, + [155049] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478008,31 +486437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5170), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9264), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(7036), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5166), 2, - sym__newline, - sym__dedent, - STATE(5606), 5, + STATE(5771), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_definition_repeat1, - [146119] = 10, + ACTIONS(3653), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [155090] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478045,16 +486468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6484), 1, + ACTIONS(3651), 1, anon_sym_COLON, - STATE(5607), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5772), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6486), 8, + ACTIONS(3649), 8, sym__newline, sym__dedent, anon_sym_as, @@ -478063,7 +486486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146160] = 15, + [155131] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478074,32 +486499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3647), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9267), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5630), 1, - aux_sym_type_definition_repeat1, - STATE(7013), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5176), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5608), 4, + STATE(5773), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146211] = 10, + ACTIONS(3645), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [155172] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478112,16 +486530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6480), 1, + ACTIONS(3635), 1, anon_sym_COLON, - STATE(5609), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5774), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6482), 8, + ACTIONS(3633), 8, sym__newline, sym__dedent, anon_sym_as, @@ -478130,7 +486548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146252] = 10, + [155213] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478143,16 +486561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6476), 1, + ACTIONS(3631), 1, anon_sym_COLON, - STATE(5610), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5775), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6478), 8, + ACTIONS(3629), 8, sym__newline, sym__dedent, anon_sym_as, @@ -478161,7 +486579,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146293] = 15, + [155254] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478172,32 +486592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(3627), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9256), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5606), 1, - aux_sym_type_definition_repeat1, - STATE(7036), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5176), 2, - sym__newline, - sym__dedent, - STATE(5611), 4, + STATE(5776), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146344] = 16, + ACTIONS(3625), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [155295] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478208,33 +486623,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3619), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5777), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3617), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9269), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5612), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [146397] = 10, + [155336] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478247,16 +486654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6488), 1, + ACTIONS(3615), 1, anon_sym_COLON, - STATE(5613), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5778), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6490), 8, + ACTIONS(3613), 8, sym__newline, sym__dedent, anon_sym_as, @@ -478265,7 +486672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146438] = 16, + [155377] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478276,63 +486685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5050), 1, - anon_sym_RPAREN, - ACTIONS(5467), 1, + ACTIONS(3611), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5779), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3609), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5614), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [146491] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, anon_sym_SEMI, + [155418] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(9032), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(9034), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5615), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [146530] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478343,33 +486716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3603), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5780), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3601), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, anon_sym_COMMA, - ACTIONS(9273), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, anon_sym_PIPE, - ACTIONS(9277), 1, anon_sym_AMP, - ACTIONS(9279), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5616), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [146583] = 11, + [155459] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478382,26 +486747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3572), 1, anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5617), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5781), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6370), 7, + ACTIONS(3570), 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_RBRACE, - [146626] = 11, + [155500] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478414,26 +486778,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, + ACTIONS(3457), 1, anon_sym_COLON, - ACTIONS(9283), 1, - anon_sym_LT2, - STATE(5618), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5782), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 7, + ACTIONS(3455), 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_RBRACE, - [146669] = 11, + [155541] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478446,26 +486809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3592), 1, anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5619), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5783), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6374), 7, + ACTIONS(3590), 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_RBRACE, - [146712] = 12, + [155582] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478478,27 +486840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(3743), 1, anon_sym_COLON, - ACTIONS(9285), 1, - anon_sym_COMMA, - STATE(5628), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5620), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5784), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 6, + ACTIONS(3745), 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_RBRACE, - [146757] = 16, + [155623] = 16, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478511,31 +486871,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(9366), 1, anon_sym_COLON, - ACTIONS(9285), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, + ACTIONS(9370), 1, anon_sym_as, - ACTIONS(9289), 1, + ACTIONS(9372), 1, + anon_sym_COMMA, + ACTIONS(9374), 1, anon_sym_COLON_COLON, - ACTIONS(9291), 1, + ACTIONS(9376), 1, anon_sym_PIPE, - ACTIONS(9293), 1, + ACTIONS(9378), 1, anon_sym_AMP, - STATE(5620), 1, + STATE(5687), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(4606), 2, + ACTIONS(9475), 2, anon_sym_SEMI, anon_sym_RBRACE, - STATE(5621), 4, + STATE(5785), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146810] = 11, + [155676] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478548,26 +486908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3734), 1, anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5622), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5786), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 7, + ACTIONS(3732), 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_RBRACE, - [146853] = 11, + [155717] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478580,28 +486939,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3568), 1, anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5623), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5787), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 7, + ACTIONS(3566), 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_RBRACE, - [146896] = 11, - ACTIONS(3), 1, - sym_line_comment, + [155758] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478612,26 +486968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, - anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5624), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6425), 7, + ACTIONS(8709), 1, anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, anon_sym_COMMA, + ACTIONS(9263), 1, anon_sym_COLON_COLON, + ACTIONS(9265), 1, anon_sym_PIPE, + ACTIONS(9267), 1, anon_sym_AMP, + ACTIONS(9477), 1, + anon_sym_EQ, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - [146939] = 10, + sym_line_comment, + STATE(5788), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [155811] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478644,16 +487007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6431), 1, + ACTIONS(3686), 1, anon_sym_COLON, - STATE(5625), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5789), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6433), 8, + ACTIONS(3684), 8, sym__newline, sym__dedent, anon_sym_as, @@ -478662,7 +487025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [146980] = 16, + [155852] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478673,33 +487038,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3549), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5790), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3547), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9295), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5626), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [147033] = 11, + [155893] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478712,26 +487069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3475), 1, anon_sym_COLON, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - STATE(5627), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5791), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 7, + ACTIONS(3477), 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_RBRACE, - [147076] = 11, + [155934] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478744,26 +487100,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, + ACTIONS(3741), 1, anon_sym_COLON, - ACTIONS(9297), 1, - anon_sym_COMMA, - STATE(5628), 5, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5792), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6414), 6, + ACTIONS(3739), 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_RBRACE, - [147119] = 16, + [155975] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -478776,31 +487131,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3594), 1, anon_sym_COLON, - ACTIONS(9285), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5793), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3596), 8, + sym__newline, + sym__dedent, anon_sym_as, - ACTIONS(9289), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(9291), 1, anon_sym_PIPE, - ACTIONS(9293), 1, anon_sym_AMP, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6410), 2, anon_sym_SEMI, - anon_sym_RBRACE, - STATE(5629), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [147172] = 14, + [156016] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478811,31 +487160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5170), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5066), 1, + anon_sym_RPAREN, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9300), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(7013), 1, - sym_attributes, + ACTIONS(8709), 1, + anon_sym_as, + ACTIONS(9259), 1, + anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_COMMA, + ACTIONS(9263), 1, + anon_sym_COLON_COLON, + ACTIONS(9265), 1, + anon_sym_PIPE, + ACTIONS(9267), 1, + anon_sym_AMP, + STATE(5646), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5166), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5630), 5, + STATE(5794), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_definition_repeat1, - [147221] = 16, + [156069] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478846,33 +487197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6410), 1, - anon_sym_in, - ACTIONS(8683), 1, + ACTIONS(8709), 1, anon_sym_as, - ACTIONS(9258), 1, + ACTIONS(9259), 1, anon_sym_COLON, - ACTIONS(9271), 1, + ACTIONS(9261), 1, anon_sym_COMMA, - ACTIONS(9273), 1, + ACTIONS(9263), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, + ACTIONS(9265), 1, anon_sym_PIPE, - ACTIONS(9277), 1, + ACTIONS(9267), 1, anon_sym_AMP, - STATE(5654), 1, + ACTIONS(9479), 1, + anon_sym_RPAREN, + STATE(5646), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5631), 4, + STATE(5795), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147274] = 15, + [156122] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478883,32 +487236,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(2979), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9267), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5608), 1, - aux_sym_type_definition_repeat1, - STATE(7013), 1, - sym_attributes, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5182), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5632), 4, + STATE(5796), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147325] = 11, + ACTIONS(2981), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [156163] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478919,28 +487265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6412), 1, - anon_sym_COLON, - ACTIONS(9303), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6414), 5, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5633), 5, + ACTIONS(6920), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(6922), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5797), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [147368] = 16, + [156203] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478951,33 +487297,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3741), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5798), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3739), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9306), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_RBRACE, + [156243] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5634), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [147421] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -478988,28 +487327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(3568), 1, anon_sym_COLON, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5635), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5799), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6421), 6, + ACTIONS(3566), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [147464] = 10, + anon_sym_SEMI, + anon_sym_RBRACE, + [156283] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479022,25 +487357,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, + ACTIONS(3734), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5636), 4, + STATE(5800), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 8, - sym__newline, - sym__dedent, + ACTIONS(3732), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [147505] = 11, + anon_sym_RBRACE, + [156323] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479051,28 +487387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(3743), 1, anon_sym_COLON, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5637), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5801), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6429), 6, + ACTIONS(3745), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [147548] = 11, + anon_sym_SEMI, + anon_sym_RBRACE, + [156363] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479083,28 +487417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9258), 1, + ACTIONS(3592), 1, anon_sym_COLON, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5638), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5802), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 6, + ACTIONS(3590), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_in, - [147591] = 16, + anon_sym_SEMI, + anon_sym_RBRACE, + [156403] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479115,35 +487447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9308), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(1218), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2139), 1, + sym_op_identifier, + ACTIONS(9481), 1, + sym_identifier, + STATE(2196), 1, + sym__identifier_or_op, + STATE(2309), 1, + sym_long_identifier_or_op, + STATE(2520), 1, + sym_active_pattern, + STATE(2533), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5639), 4, + STATE(5803), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147644] = 10, - ACTIONS(3), 1, - sym_line_comment, + [156453] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479154,27 +487482,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_COLON, - STATE(5640), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5068), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5804), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6280), 8, - anon_sym_and, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [147685] = 10, - ACTIONS(3), 1, - sym_line_comment, + [156503] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479185,25 +487515,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, - anon_sym_COLON, - STATE(5641), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9487), 1, + anon_sym_default, + STATE(5538), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6870), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5805), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [147726] = 10, + [156551] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479216,17 +487551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5879), 1, + ACTIONS(3549), 1, anon_sym_COLON, - STATE(5642), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5806), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5881), 8, - anon_sym_and, + ACTIONS(3547), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479234,7 +487568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [147767] = 11, + [156591] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479247,49 +487581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6500), 1, + ACTIONS(3572), 1, anon_sym_COLON, - ACTIONS(9310), 1, - anon_sym_as, - STATE(5643), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6502), 7, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [147810] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5891), 1, - anon_sym_COLON, - STATE(5644), 4, + STATE(5807), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5893), 8, - anon_sym_and, + ACTIONS(3570), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479297,7 +487598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [147851] = 10, + [156631] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479310,17 +487611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6376), 1, + ACTIONS(3603), 1, anon_sym_COLON, - STATE(5645), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5808), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6378), 8, - anon_sym_and, + ACTIONS(3601), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479328,7 +487628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [147892] = 10, + [156671] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479341,17 +487641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6380), 1, + ACTIONS(3611), 1, anon_sym_COLON, - STATE(5646), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5809), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6382), 8, - anon_sym_and, + ACTIONS(3609), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479359,7 +487658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [147933] = 10, + [156711] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479372,17 +487671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6384), 1, + ACTIONS(3594), 1, anon_sym_COLON, - STATE(5647), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5810), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6386), 8, - anon_sym_and, + ACTIONS(3596), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479390,7 +487688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [147974] = 10, + [156751] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479403,17 +487701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6388), 1, + ACTIONS(3615), 1, anon_sym_COLON, - STATE(5648), 4, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5811), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6390), 8, - anon_sym_and, + ACTIONS(3613), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -479421,7 +487718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [148015] = 15, + [156791] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479432,32 +487729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9267), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5630), 1, - aux_sym_type_definition_repeat1, - STATE(7013), 1, - sym_attributes, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9489), 1, + anon_sym_default, + STATE(3412), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6845), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5182), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5649), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5812), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148066] = 10, + [156839] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479468,27 +487763,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9296), 1, + sym_identifier, + STATE(4679), 1, + sym_long_identifier, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8210), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6879), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(6881), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5650), 4, + STATE(5813), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148107] = 16, + [156887] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479499,63 +487799,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3619), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5814), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3617), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9312), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5651), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148160] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, anon_sym_SEMI, + anon_sym_RBRACE, + [156927] = 10, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(9046), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(9048), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5652), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148199] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479566,27 +487829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3627), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(6800), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(6802), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5653), 4, + STATE(5815), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148240] = 12, + ACTIONS(3625), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + [156967] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479597,29 +487859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - STATE(5633), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4484), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5654), 4, + STATE(5816), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6394), 5, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - [148285] = 10, + [157017] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479630,29 +487892,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9491), 1, + anon_sym_default, + STATE(4746), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6939), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6961), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(6963), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5655), 4, + STATE(5817), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148326] = 10, - ACTIONS(3), 1, - sym_line_comment, + [157065] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479663,25 +487926,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5190), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6468), 1, - anon_sym_COLON, - STATE(5656), 4, + ACTIONS(9493), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5835), 1, + aux_sym_type_definition_repeat1, + STATE(7201), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5818), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6470), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [148367] = 10, + [157115] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -479694,25 +487963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6472), 1, + ACTIONS(6517), 1, anon_sym_COLON, - STATE(5657), 4, + STATE(5819), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6474), 8, - sym__newline, - sym__dedent, + ACTIONS(6519), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [148408] = 16, + anon_sym_RBRACE, + [157155] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479723,33 +487993,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4606), 1, - anon_sym_in, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5198), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5658), 4, + STATE(5820), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148461] = 16, + [157205] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479760,70 +488028,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(8378), 1, - anon_sym_do, - ACTIONS(9314), 1, - anon_sym_module, - ACTIONS(9316), 1, - anon_sym_type, - ACTIONS(9318), 1, - anon_sym_exception, - STATE(4928), 1, - sym_do, - STATE(4952), 1, - sym_function_or_value_defn, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5659), 4, + ACTIONS(6537), 1, + anon_sym_COLON, + STATE(5821), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148514] = 16, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(6539), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9320), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_RBRACE, + [157245] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5660), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148567] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479834,33 +488058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5068), 1, - anon_sym_RPAREN, - ACTIONS(5467), 1, + ACTIONS(3631), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5822), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3629), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5661), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148620] = 16, + anon_sym_RBRACE, + [157285] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479871,33 +488086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8097), 1, - anon_sym_do, - ACTIONS(8099), 1, - anon_sym_let, - ACTIONS(8101), 1, - anon_sym_let_BANG, - ACTIONS(9322), 1, - anon_sym_module, - ACTIONS(9324), 1, - anon_sym_type, - ACTIONS(9326), 1, - anon_sym_exception, - STATE(5086), 1, - sym_do, - STATE(5087), 1, - sym_function_or_value_defn, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9491), 1, + anon_sym_default, + STATE(5271), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6939), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5662), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5823), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148673] = 16, + [157333] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479908,33 +488122,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3635), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5824), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3633), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9328), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_RBRACE, + [157373] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5663), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148726] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -479945,70 +488152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(35), 1, - anon_sym_let, - ACTIONS(37), 1, - anon_sym_let_BANG, - ACTIONS(5467), 1, + ACTIONS(3647), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - ACTIONS(9330), 1, - anon_sym_module, - ACTIONS(9332), 1, - anon_sym_type, - ACTIONS(9334), 1, - anon_sym_exception, - STATE(2762), 1, - sym_do, - STATE(2763), 1, - sym_function_or_value_defn, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(5664), 4, + STATE(5825), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148779] = 16, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(3645), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9336), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5665), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148832] = 15, + anon_sym_RBRACE, + [157413] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480019,32 +488182,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9267), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5649), 1, - aux_sym_type_definition_repeat1, - STATE(7013), 1, - sym_attributes, + ACTIONS(1446), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2039), 1, + sym_op_identifier, + ACTIONS(9495), 1, + sym_identifier, + STATE(2388), 1, + sym_active_pattern, + STATE(2389), 1, + sym_long_identifier, + STATE(2418), 1, + sym_long_identifier_or_op, + STATE(2547), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5186), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5666), 4, + STATE(5826), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148883] = 16, + [157463] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480057,31 +488217,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, + ACTIONS(3457), 1, anon_sym_COLON, - ACTIONS(9285), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + STATE(5827), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3455), 7, anon_sym_as, - ACTIONS(9289), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(9291), 1, anon_sym_PIPE, - ACTIONS(9293), 1, anon_sym_AMP, - STATE(5620), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(9338), 2, anon_sym_SEMI, anon_sym_RBRACE, - STATE(5667), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [148936] = 10, + [157503] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480094,25 +488247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, + ACTIONS(3655), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5668), 4, + STATE(5828), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 8, - sym__newline, - sym__dedent, + ACTIONS(3653), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [148977] = 10, + anon_sym_RBRACE, + [157543] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480125,25 +488277,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3539), 1, + ACTIONS(3659), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5669), 4, + STATE(5829), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3537), 8, - sym__newline, - sym__dedent, + ACTIONS(3657), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149018] = 16, + anon_sym_RBRACE, + [157583] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480154,33 +488307,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9340), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4968), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5670), 4, + STATE(5830), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149071] = 10, + [157633] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480193,27 +488342,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3718), 1, + ACTIONS(3667), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5671), 4, + STATE(5831), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3720), 8, - sym__newline, - sym__dedent, + ACTIONS(3665), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149112] = 10, - ACTIONS(3), 1, + anon_sym_RBRACE, + [157673] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4518), 1, + aux_sym_access_modifier_token1, + ACTIONS(9497), 1, + sym_identifier, + ACTIONS(9499), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(9501), 1, + sym_op_identifier, + STATE(3204), 1, + sym__identifier_or_op, + STATE(4384), 1, + sym_active_pattern, + STATE(5980), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, sym_line_comment, + STATE(5832), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [157723] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480224,25 +488405,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3708), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5672), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9503), 1, + anon_sym_default, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6215), 1, + sym_constraint, + STATE(6678), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5833), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3706), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149153] = 16, + [157771] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480253,35 +488439,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9342), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9505), 1, + anon_sym_default, + STATE(4746), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6983), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5673), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5834), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149206] = 10, - ACTIONS(3), 1, - sym_line_comment, + [157819] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480292,25 +488473,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3609), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5170), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5674), 4, + ACTIONS(9493), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5857), 1, + aux_sym_type_definition_repeat1, + STATE(7201), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5835), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3607), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149247] = 16, + [157869] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480321,33 +488510,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9344), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4486), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5675), 4, + STATE(5836), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149300] = 10, + [157919] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480360,25 +488545,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3605), 1, + ACTIONS(3675), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5676), 4, + STATE(5837), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3603), 8, - sym__newline, - sym__dedent, + ACTIONS(3673), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149341] = 16, + anon_sym_RBRACE, + [157959] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480389,35 +488575,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9346), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5202), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5677), 4, + STATE(5838), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149394] = 10, - ACTIONS(3), 1, - sym_line_comment, + [158009] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480428,27 +488608,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3554), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5678), 4, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(9507), 1, + sym_identifier, + STATE(4779), 1, + sym_union_type_case, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(6209), 1, + sym_enum_type_case, + STATE(7746), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5839), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3552), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149435] = 10, - ACTIONS(3), 1, - sym_line_comment, + [158059] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480459,62 +488645,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3663), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5679), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5173), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5840), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3661), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149476] = 16, - ACTIONS(7), 1, + [158109] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9348), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5680), 4, + ACTIONS(9236), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9238), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5841), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149529] = 10, + [158147] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480527,25 +488709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3399), 1, + ACTIONS(3682), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5681), 4, + STATE(5842), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 8, - sym__newline, - sym__dedent, + ACTIONS(3680), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149570] = 10, + anon_sym_RBRACE, + [158187] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480558,27 +488739,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3403), 1, + ACTIONS(3717), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5682), 4, + STATE(5843), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3401), 8, - sym__newline, - sym__dedent, + ACTIONS(3715), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149611] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_RBRACE, + [158227] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480589,25 +488769,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3415), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5683), 4, + ACTIONS(822), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2101), 1, + sym_op_identifier, + ACTIONS(9509), 1, + sym_identifier, + STATE(1854), 1, + sym_active_pattern, + STATE(1855), 1, + sym_long_identifier, + STATE(1941), 1, + sym__identifier_or_op, + STATE(1961), 1, + sym_long_identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5844), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149652] = 16, + [158277] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480618,35 +488802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9350), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9505), 1, + anon_sym_default, + STATE(5619), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6983), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5684), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5845), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149705] = 10, - ACTIONS(3), 1, - sym_line_comment, + [158325] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480657,25 +488838,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5685), 4, + ACTIONS(303), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2071), 1, + sym_op_identifier, + ACTIONS(9511), 1, + sym_identifier, + STATE(1143), 1, + sym_long_identifier_or_op, + STATE(1179), 1, + sym__identifier_or_op, + STATE(1222), 1, + sym_long_identifier, + STATE(1227), 1, + sym_active_pattern, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5846), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [149746] = 10, + [158375] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480688,25 +488873,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5686), 4, + ACTIONS(6489), 1, + anon_sym_COLON, + ACTIONS(9513), 1, + anon_sym_as, + STATE(5847), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 8, - sym__newline, - sym__dedent, - anon_sym_as, + ACTIONS(6491), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149787] = 10, + anon_sym_RBRACE, + [158417] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480719,25 +488904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3427), 1, + ACTIONS(3725), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5687), 4, + STATE(5848), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3425), 8, - sym__newline, - sym__dedent, + ACTIONS(3723), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [149828] = 16, + anon_sym_RBRACE, + [158457] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480748,33 +488934,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + ACTIONS(6438), 1, + anon_sym_COLON, + STATE(5849), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6440), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9352), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5688), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [149881] = 16, + anon_sym_RBRACE, + [158497] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480785,33 +488964,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9354), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5127), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5689), 4, + STATE(5850), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149934] = 15, + [158547] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480822,32 +488999,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, sym_identifier, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4452), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5690), 4, + STATE(5851), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149985] = 10, + [158597] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -480860,25 +489034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3431), 1, + ACTIONS(3702), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5691), 4, + STATE(5852), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3429), 8, - sym__newline, - sym__dedent, + ACTIONS(3700), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [150026] = 15, + anon_sym_RBRACE, + [158637] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480889,34 +489064,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, sym_identifier, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + STATE(2558), 1, + sym_property_or_ident, + STATE(2758), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9356), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5692), 4, + STATE(5853), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150077] = 10, - ACTIONS(3), 1, - sym_line_comment, + [158687] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480927,27 +489099,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5693), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5233), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5854), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3452), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150118] = 10, - ACTIONS(3), 1, - sym_line_comment, + [158737] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -480958,62 +489134,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5694), 4, + ACTIONS(1002), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2157), 1, + sym_op_identifier, + ACTIONS(9515), 1, + sym_identifier, + STATE(2269), 1, + sym_long_identifier_or_op, + STATE(2407), 1, + sym_active_pattern, + STATE(2499), 1, + sym_long_identifier, + STATE(2500), 1, + sym__identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5855), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3456), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150159] = 16, - ACTIONS(7), 1, + [158787] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9358), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5695), 4, + ACTIONS(9519), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9517), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5856), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150212] = 16, + [158825] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481024,33 +489196,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5176), 1, + anon_sym_POUNDendif, + ACTIONS(5180), 1, + anon_sym_LBRACK_LT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9360), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9521), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(7201), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5696), 4, + STATE(5857), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150265] = 10, + aux_sym_type_definition_repeat1, + [158873] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481063,25 +489232,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3462), 1, + ACTIONS(3696), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5697), 4, + STATE(5858), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3460), 8, - sym__newline, - sym__dedent, + ACTIONS(3694), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [150306] = 16, + anon_sym_RBRACE, + [158913] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481092,33 +489262,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2528), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5859), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2526), 7, anon_sym_as, - ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, anon_sym_COLON_COLON, - ACTIONS(8941), 1, anon_sym_PIPE, - ACTIONS(8943), 1, anon_sym_AMP, - ACTIONS(9362), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, + anon_sym_RBRACE, + [158953] = 10, + ACTIONS(3), 1, sym_line_comment, - STATE(5698), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [150359] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481129,33 +489292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3686), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5860), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3684), 7, anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, anon_sym_COMMA, - ACTIONS(9273), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, anon_sym_PIPE, - ACTIONS(9277), 1, anon_sym_AMP, - ACTIONS(9364), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5699), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [150412] = 16, + anon_sym_RBRACE, + [158993] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481166,33 +489320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9366), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9524), 1, + anon_sym_default, + STATE(5237), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7023), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5700), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5861), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150465] = 16, + [159041] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481203,35 +489356,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, + ACTIONS(6525), 1, anon_sym_COLON, - ACTIONS(9271), 1, + STATE(5862), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6527), 7, + anon_sym_as, anon_sym_COMMA, - ACTIONS(9273), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, anon_sym_PIPE, - ACTIONS(9277), 1, anon_sym_AMP, - ACTIONS(9368), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [159081] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(5701), 4, + ACTIONS(9528), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9526), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5863), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150518] = 10, - ACTIONS(3), 1, - sym_line_comment, + [159119] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481242,25 +489413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3470), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5702), 4, + ACTIONS(9530), 1, + anon_sym_interface, + STATE(6033), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5200), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5864), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3468), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150559] = 16, + aux_sym__object_expression_inner_repeat1, + [159161] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481271,35 +489446,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9370), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5145), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5703), 4, + STATE(5865), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150612] = 10, - ACTIONS(3), 1, - sym_line_comment, + [159211] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481310,25 +489481,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5704), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2569), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5164), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5866), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3653), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150653] = 16, + [159261] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481339,33 +489516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3651), 1, + anon_sym_COLON, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, + STATE(5867), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3649), 7, anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, anon_sym_COMMA, - ACTIONS(9273), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, anon_sym_PIPE, - ACTIONS(9277), 1, anon_sym_AMP, - ACTIONS(9372), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5705), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [150706] = 10, + anon_sym_RBRACE, + [159301] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481378,25 +489546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3642), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5706), 4, + ACTIONS(6529), 1, + anon_sym_COLON, + STATE(5868), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3644), 8, - sym__newline, - sym__dedent, + ACTIONS(6531), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [150747] = 10, + anon_sym_RBRACE, + [159341] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481409,25 +489576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3630), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5707), 4, + ACTIONS(6513), 1, + anon_sym_COLON, + STATE(5869), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3632), 8, - sym__newline, - sym__dedent, + ACTIONS(6515), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [150788] = 16, + anon_sym_RBRACE, + [159381] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481438,35 +489606,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9374), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(485), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(1760), 1, + sym_op_identifier, + ACTIONS(9533), 1, + sym_identifier, + STATE(1884), 1, + sym_active_pattern, + STATE(1930), 1, + sym_long_identifier_or_op, + STATE(1993), 1, + sym__identifier_or_op, + STATE(1999), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5708), 4, + STATE(5870), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150841] = 10, - ACTIONS(3), 1, - sym_line_comment, + [159431] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481477,27 +489639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3626), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5709), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9535), 1, + anon_sym_default, + STATE(5729), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6820), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5871), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3628), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150882] = 10, - ACTIONS(3), 1, - sym_line_comment, + [159479] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481508,25 +489675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3611), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5710), 4, + ACTIONS(103), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(105), 1, + sym_op_identifier, + ACTIONS(9537), 1, + sym_identifier, + STATE(1079), 1, + sym_active_pattern, + STATE(1162), 1, + sym_long_identifier, + STATE(1163), 1, + sym__identifier_or_op, + STATE(1164), 1, + sym_long_identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5872), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3613), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [150923] = 16, + [159529] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481537,33 +489708,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9376), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9539), 1, + anon_sym_default, + STATE(4746), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6905), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5711), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5873), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150976] = 16, + [159577] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481574,33 +489744,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9378), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2562), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4421), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5712), 4, + STATE(5874), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151029] = 10, + [159627] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481613,27 +489779,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3712), 1, + ACTIONS(3475), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5713), 4, + STATE(5875), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3710), 8, - sym__newline, - sym__dedent, + ACTIONS(3477), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [151070] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_RBRACE, + [159667] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481644,25 +489809,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3704), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5714), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4527), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5876), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3702), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [151111] = 15, + [159717] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481673,32 +489842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(8024), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8491), 1, - sym_identifier, - STATE(5162), 1, - aux_sym_compound_type_repeat1, - STATE(5231), 1, - sym_long_identifier, - STATE(5324), 1, - sym_type_arguments, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9487), 1, + anon_sym_default, + STATE(5299), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6870), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9380), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5715), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5877), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151162] = 16, + [159765] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481709,33 +489878,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9382), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5057), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5716), 4, + STATE(5878), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151215] = 10, + [159815] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481748,25 +489913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3716), 1, + ACTIONS(2979), 1, anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5717), 4, + STATE(5879), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3714), 8, - sym__newline, - sym__dedent, + ACTIONS(2981), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [151256] = 16, + anon_sym_RBRACE, + [159855] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481777,33 +489941,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5186), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9384), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9493), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5857), 1, + aux_sym_type_definition_repeat1, + STATE(7201), 1, + sym_attributes, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5718), 4, + STATE(5880), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151309] = 16, + [159905] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481814,33 +489976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5254), 1, + anon_sym__, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9386), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9541), 1, + sym_identifier, + STATE(4696), 1, + sym_long_identifier, + STATE(6041), 1, + sym__static_type_identifier, + STATE(8111), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5719), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5881), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151362] = 16, + [159953] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481851,33 +490012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, + ACTIONS(6485), 1, anon_sym_COLON, - ACTIONS(9271), 1, + STATE(5882), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6487), 7, + anon_sym_as, anon_sym_COMMA, - ACTIONS(9273), 1, anon_sym_COLON_COLON, - ACTIONS(9275), 1, anon_sym_PIPE, - ACTIONS(9277), 1, anon_sym_AMP, - ACTIONS(9388), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3), 2, anon_sym_SEMI, - sym_line_comment, - STATE(5720), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [151415] = 16, + anon_sym_RBRACE, + [159993] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481888,33 +490042,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(9258), 1, - anon_sym_COLON, - ACTIONS(9271), 1, - anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_COLON_COLON, - ACTIONS(9275), 1, - anon_sym_PIPE, - ACTIONS(9277), 1, - anon_sym_AMP, - ACTIONS(9390), 1, - anon_sym_in, - STATE(5654), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(1336), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2191), 1, + sym_op_identifier, + ACTIONS(9543), 1, + sym_identifier, + STATE(2188), 1, + sym_active_pattern, + STATE(2238), 1, + sym_long_identifier_or_op, + STATE(2382), 1, + sym__identifier_or_op, + STATE(2383), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5721), 4, + STATE(5883), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151468] = 10, + [160043] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -481927,56 +490077,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3638), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5722), 4, + ACTIONS(6503), 1, + anon_sym_COLON, + STATE(5884), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3640), 8, - sym__newline, - sym__dedent, + ACTIONS(6505), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [151509] = 10, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + anon_sym_RBRACE, + [160083] = 15, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(9392), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(9394), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5723), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [151550] = 16, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -481987,33 +490107,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9396), 1, - anon_sym_EQ, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5106), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5724), 4, + STATE(5885), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151603] = 16, + [160133] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482024,33 +490142,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8247), 1, - anon_sym_do, - ACTIONS(8249), 1, - anon_sym_let, - ACTIONS(8251), 1, - anon_sym_let_BANG, - ACTIONS(9398), 1, - anon_sym_module, - ACTIONS(9400), 1, - anon_sym_type, - ACTIONS(9402), 1, - anon_sym_exception, - STATE(5145), 1, - sym_do, - STATE(5152), 1, - sym_function_or_value_defn, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4497), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5725), 4, + STATE(5886), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151656] = 10, + [160183] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482063,27 +490177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3675), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5726), 4, + ACTIONS(6499), 1, + anon_sym_COLON, + STATE(5887), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3673), 8, - sym__newline, - sym__dedent, + ACTIONS(6501), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [151697] = 10, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_RBRACE, + [160223] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482094,25 +490207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5727), 4, + ACTIONS(598), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2013), 1, + sym_op_identifier, + ACTIONS(9545), 1, + sym_identifier, + STATE(1640), 1, + sym_long_identifier_or_op, + STATE(1725), 1, + sym__identifier_or_op, + STATE(1738), 1, + sym_active_pattern, + STATE(1779), 1, + sym_long_identifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5888), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2975), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_or, - [151738] = 16, + [160273] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482123,33 +490240,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_as, - ACTIONS(8926), 1, - anon_sym_COMMA, - ACTIONS(8928), 1, - anon_sym_COLON, - ACTIONS(8939), 1, - anon_sym_COLON_COLON, - ACTIONS(8941), 1, - anon_sym_PIPE, - ACTIONS(8943), 1, - anon_sym_AMP, - ACTIONS(9404), 1, - anon_sym_RPAREN, - STATE(5391), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym_interface, + STATE(5965), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5728), 4, + ACTIONS(5200), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(5889), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151791] = 10, + aux_sym__object_expression_inner_repeat1, + [160315] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482162,16 +490273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3066), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5729), 4, + ACTIONS(6495), 1, + anon_sym_COLON, + STATE(5890), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3068), 8, + ACTIONS(6497), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -482179,8 +490290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_or, - [151832] = 16, + [160355] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482191,35 +490301,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(35), 1, - anon_sym_let, - ACTIONS(37), 1, - anon_sym_let_BANG, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - ACTIONS(9332), 1, - anon_sym_type, - ACTIONS(9334), 1, - anon_sym_exception, - ACTIONS(9406), 1, - anon_sym_module, - STATE(2762), 1, - sym_do, - STATE(2763), 1, - sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5730), 4, + ACTIONS(6924), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(6926), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5891), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151885] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160395] = 15, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482230,24 +490331,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(27), 1, + anon_sym_LBRACK_LT, + ACTIONS(5170), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6464), 1, - anon_sym_COLON, - STATE(5731), 4, + ACTIONS(9493), 1, + anon_sym_and, + STATE(3858), 1, + aux_sym_attributes_repeat1, + STATE(4224), 1, + sym__attribute_set, + STATE(5880), 1, + aux_sym_type_definition_repeat1, + STATE(7201), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5892), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6466), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [151925] = 15, + [160445] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -482260,31 +490368,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(9408), 1, + ACTIONS(9483), 1, sym_identifier, - STATE(2595), 1, + STATE(2574), 1, sym_property_or_ident, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, - STATE(4996), 1, + STATE(5171), 1, sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5732), 4, + STATE(5893), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151975] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160495] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482295,24 +490401,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5733), 4, + ACTIONS(6186), 1, + anon_sym_interface, + STATE(5889), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5965), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5194), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(5894), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3028), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152015] = 15, + [160539] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -482325,31 +490435,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(8601), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(8603), 1, sym_op_identifier, - ACTIONS(9408), 1, + ACTIONS(9483), 1, sym_identifier, - STATE(2542), 1, + STATE(2584), 1, sym_property_or_ident, - STATE(2746), 1, - sym_method_or_prop_defn, - STATE(3661), 1, + STATE(3679), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3688), 1, sym_active_pattern, + STATE(4500), 1, + sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5734), 4, + STATE(5895), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152065] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160589] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482360,56 +490470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3642), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5735), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3644), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2586), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5132), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - [152105] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(3675), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5736), 4, + STATE(5896), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3673), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152145] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160639] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482420,26 +490505,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3716), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5737), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5223), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5897), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3714), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152185] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160689] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482450,26 +490540,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3638), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5738), 4, + ACTIONS(1124), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2177), 1, + sym_op_identifier, + ACTIONS(9550), 1, + sym_identifier, + STATE(2197), 1, + sym_long_identifier, + STATE(2206), 1, + sym_active_pattern, + STATE(2333), 1, + sym_long_identifier_or_op, + STATE(2453), 1, + sym__identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5898), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3640), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152225] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160739] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482480,26 +490575,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3704), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5739), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2788), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5899), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3702), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152265] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160789] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482510,26 +490610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3611), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5740), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2574), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(5234), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5900), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3613), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152305] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160839] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482540,26 +490643,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3626), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5741), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9524), 1, + anon_sym_default, + STATE(4746), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7023), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5901), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3628), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152345] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160887] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482570,26 +490677,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3630), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5742), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(6943), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(6945), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5902), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3632), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152385] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160927] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482600,26 +490707,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3609), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5743), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9535), 1, + anon_sym_default, + STATE(5456), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6820), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5903), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3607), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152425] = 10, - ACTIONS(3), 1, - sym_line_comment, + [160975] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482630,24 +490743,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5744), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2752), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5904), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3653), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152465] = 10, + [161025] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482660,16 +490778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3470), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5745), 4, + ACTIONS(6481), 1, + anon_sym_COLON, + STATE(5905), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3468), 7, + ACTIONS(6483), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -482677,7 +490795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [152505] = 10, + [161065] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482690,16 +490808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3462), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5746), 4, + ACTIONS(6509), 1, + anon_sym_COLON, + STATE(5906), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3460), 7, + ACTIONS(6511), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -482707,9 +490825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [152545] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161105] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482720,24 +490838,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5747), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2558), 1, + sym_property_or_ident, + STATE(2787), 1, + sym_method_or_prop_defn, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5907), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3456), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152585] = 15, + [161155] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -482750,29 +490873,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(395), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(2091), 1, sym_op_identifier, - ACTIONS(9408), 1, + ACTIONS(9552), 1, sym_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, + STATE(1584), 1, sym_active_pattern, - STATE(5083), 1, - sym_method_or_prop_defn, + STATE(1586), 1, + sym__identifier_or_op, + STATE(1661), 1, + sym_long_identifier_or_op, + STATE(1691), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5748), 4, + STATE(5908), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152635] = 14, + [161205] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482783,32 +490906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9412), 1, - anon_sym_default, - STATE(4723), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6673), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(9556), 3, + anon_sym_LBRACE_PIPE, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5749), 4, + ACTIONS(9554), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5909), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152683] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161245] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482819,26 +490938,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5750), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2594), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4955), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5910), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3452), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152723] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161295] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482849,26 +490971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3431), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5751), 4, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9560), 3, + anon_sym_LBRACE_PIPE, + anon_sym_CARET, + anon_sym_SQUOTE, + ACTIONS(9558), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5911), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3429), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152763] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161335] = 15, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482879,24 +491003,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3427), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5752), 4, + ACTIONS(8601), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(8603), 1, + sym_op_identifier, + ACTIONS(9483), 1, + sym_identifier, + STATE(2584), 1, + sym_property_or_ident, + STATE(3679), 1, + sym__identifier_or_op, + STATE(3688), 1, + sym_active_pattern, + STATE(4508), 1, + sym_method_or_prop_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5912), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3425), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152803] = 10, + [161385] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482909,16 +491038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5753), 4, + ACTIONS(6533), 1, + anon_sym_COLON, + STATE(5913), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 7, + ACTIONS(6535), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -482926,7 +491055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [152843] = 10, + [161425] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -482939,16 +491068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5754), 4, + ACTIONS(6521), 1, + anon_sym_COLON, + STATE(5914), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 7, + ACTIONS(6523), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -482956,9 +491085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [152883] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161465] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482969,26 +491096,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3415), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5755), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9503), 1, + anon_sym_default, + STATE(4746), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6678), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5915), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152923] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161513] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -482999,26 +491130,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3403), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5756), 4, + ACTIONS(9485), 1, + anon_sym__, + ACTIONS(9489), 1, + anon_sym_default, + STATE(3547), 1, + sym_constraint, + STATE(6041), 1, + sym__static_type_identifier, + STATE(6845), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5916), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3401), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [152963] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161561] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483029,24 +491164,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3399), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5757), 4, + ACTIONS(6656), 1, + anon_sym_interface, + STATE(5864), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6033), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5194), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5917), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153003] = 15, + [161605] = 15, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483059,29 +491198,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(692), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, + ACTIONS(2167), 1, sym_op_identifier, - ACTIONS(9408), 1, + ACTIONS(9562), 1, sym_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, + STATE(1844), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(1923), 1, sym_active_pattern, - STATE(5174), 1, - sym_method_or_prop_defn, + STATE(1947), 1, + sym_long_identifier, + STATE(2122), 1, + sym_long_identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5758), 4, + STATE(5918), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153053] = 10, + [161655] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -483094,16 +491233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3663), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5759), 4, + ACTIONS(6477), 1, + anon_sym_COLON, + STATE(5919), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3661), 7, + ACTIONS(6479), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -483111,9 +491250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_RBRACE, - [153093] = 10, - ACTIONS(3), 1, + [161695] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, sym_line_comment, + ACTIONS(9236), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9238), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5920), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [161732] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483124,26 +491289,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3554), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5760), 4, + ACTIONS(9564), 1, + anon_sym_interface, + STATE(6062), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5200), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(5921), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3552), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153133] = 10, - ACTIONS(3), 1, - sym_line_comment, + aux_sym__object_expression_inner_repeat1, + [161773] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483154,56 +491319,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3605), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5761), 4, + ACTIONS(6701), 1, + anon_sym_interface, + STATE(5921), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6062), 1, + sym_interface_implementation, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5194), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(5922), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3603), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + [161816] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, anon_sym_SEMI, - anon_sym_RBRACE, - [153173] = 10, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(9519), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9517), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5923), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [161853] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3712), 1, - anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - STATE(5762), 4, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9528), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9526), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5924), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3710), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153213] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161890] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483214,26 +491406,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3708), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5763), 4, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(9567), 1, + sym_identifier, + STATE(4916), 1, + sym_union_type_case, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(7746), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5925), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3706), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153253] = 10, - ACTIONS(3), 1, - sym_line_comment, + [161937] = 14, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483244,26 +491439,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3718), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5764), 4, + ACTIONS(6797), 1, + anon_sym_LBRACK_LT, + ACTIONS(9567), 1, + sym_identifier, + STATE(4779), 1, + sym_union_type_case, + STATE(5641), 1, + aux_sym_attributes_repeat1, + STATE(5902), 1, + sym__attribute_set, + STATE(7746), 1, + sym_attributes, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5926), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3720), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153293] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [161984] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483274,31 +491472,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(501), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2081), 1, - sym_op_identifier, - ACTIONS(9414), 1, - sym_identifier, - STATE(1549), 1, - sym_long_identifier_or_op, - STATE(1557), 1, - sym_active_pattern, - STATE(1591), 1, - sym__identifier_or_op, - STATE(1592), 1, - sym_long_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8429), 1, + anon_sym_do, + ACTIONS(8431), 1, + anon_sym_let, + ACTIONS(8433), 1, + anon_sym_let_BANG, + STATE(5187), 1, + sym_do, + STATE(5193), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5765), 4, + STATE(5927), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153343] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [162028] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483309,29 +491503,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9569), 1, sym_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5169), 1, - sym_method_or_prop_defn, + ACTIONS(9571), 1, + anon_sym_member, + STATE(2787), 1, + sym_member_signature, + STATE(6651), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5766), 4, + STATE(5928), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153393] = 14, + [162072] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483342,32 +491534,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9416), 1, - anon_sym_default, - STATE(4723), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6904), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9575), 1, + anon_sym_GT, + ACTIONS(9577), 1, + anon_sym_when, + STATE(5939), 1, + aux_sym_type_arguments_repeat1, + STATE(7584), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5767), 4, + STATE(5929), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153441] = 10, - ACTIONS(3), 1, - sym_line_comment, + [162116] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483378,26 +491565,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3543), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5768), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9579), 1, + anon_sym_GT, + STATE(6048), 1, + aux_sym_type_arguments_repeat1, + STATE(7358), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5930), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3541), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153481] = 10, - ACTIONS(3), 1, - sym_line_comment, + [162160] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483408,26 +491596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3539), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5769), 4, + ACTIONS(9581), 1, + sym_identifier, + ACTIONS(9583), 1, + anon_sym_member, + STATE(4516), 1, + sym_member_signature, + STATE(6791), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5931), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3537), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153521] = 10, - ACTIONS(3), 1, - sym_line_comment, + [162204] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483438,24 +491627,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5770), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9585), 1, + anon_sym_GT, + STATE(6059), 1, + aux_sym_type_arguments_repeat1, + STATE(7391), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5932), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2526), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [153561] = 15, + [162248] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483468,29 +491660,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(4695), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2542), 1, - sym_property_or_ident, - STATE(2773), 1, - sym_method_or_prop_defn, - STATE(3661), 1, + STATE(3618), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3640), 1, sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5771), 4, + ACTIONS(4697), 2, + sym_op_identifier, + sym_identifier, + STATE(5933), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153611] = 14, + [162290] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483501,30 +491688,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8968), 1, - sym_identifier, - STATE(4661), 1, - sym_long_identifier, - STATE(5931), 1, - sym__static_type_identifier, - STATE(8042), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9587), 1, + anon_sym_GT, + STATE(5963), 1, + aux_sym_type_arguments_repeat1, + STATE(7415), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5772), 4, + STATE(5934), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153659] = 15, + [162334] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483537,29 +491721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4582), 1, - aux_sym_access_modifier_token1, - ACTIONS(9418), 1, - sym_identifier, - ACTIONS(9420), 1, + ACTIONS(1446), 1, anon_sym_LPAREN_PIPE, - ACTIONS(9422), 1, - sym_op_identifier, - STATE(3190), 1, - sym__identifier_or_op, - STATE(4348), 1, + STATE(2388), 1, sym_active_pattern, - STATE(5956), 1, - sym_access_modifier, + STATE(2496), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5773), 4, + ACTIONS(2039), 2, + sym_op_identifier, + sym_identifier, + STATE(5935), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153709] = 14, + [162376] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483570,30 +491749,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9424), 1, - anon_sym_default, - STATE(5527), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6747), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9589), 1, + anon_sym_GT, + STATE(6050), 1, + aux_sym_type_arguments_repeat1, + STATE(8385), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5774), 4, + STATE(5936), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153757] = 15, + [162420] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483606,89 +491782,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(303), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, + STATE(1120), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(1227), 1, sym_active_pattern, - STATE(5079), 1, - sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5775), 4, + ACTIONS(2071), 2, + sym_op_identifier, + sym_identifier, + STATE(5937), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153807] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [162462] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9591), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7630), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9428), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(9426), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5776), 4, + STATE(5938), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153845] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [162506] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9593), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7583), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9432), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(9430), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5777), 4, + STATE(5939), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153883] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [162550] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483699,31 +491872,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5122), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6139), 1, + anon_sym_let, + ACTIONS(6141), 1, + anon_sym_let_BANG, + ACTIONS(8163), 1, + anon_sym_do, + STATE(4561), 1, + sym_function_or_value_defn, + STATE(4562), 1, + sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5778), 4, + STATE(5940), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153933] = 15, - ACTIONS(5), 1, + [162594] = 13, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9595), 1, + anon_sym_GT, + STATE(5938), 1, + aux_sym_type_arguments_repeat1, + STATE(7633), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5941), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [162638] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483734,29 +491934,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(103), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(105), 1, - sym_op_identifier, - ACTIONS(9434), 1, - sym_identifier, - STATE(1069), 1, - sym_active_pattern, - STATE(1091), 1, - sym_long_identifier, - STATE(1117), 1, - sym__identifier_or_op, - STATE(1180), 1, - sym_long_identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9597), 1, + anon_sym_GT, + STATE(6038), 1, + aux_sym_type_arguments_repeat1, + STATE(7943), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5779), 4, + STATE(5942), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153983] = 15, + [162682] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483769,29 +491967,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(9499), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2595), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, + STATE(4384), 1, sym_active_pattern, - STATE(5047), 1, - sym_method_or_prop_defn, + STATE(7471), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5780), 4, + ACTIONS(9501), 2, + sym_op_identifier, + sym_identifier, + STATE(5943), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154033] = 12, + [162724] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483802,28 +491995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6179), 1, - anon_sym_interface, - STATE(5849), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5866), 1, - sym_interface_implementation, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9599), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7052), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(5781), 4, + STATE(5944), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154077] = 14, + [162768] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483834,30 +492026,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5439), 1, - anon_sym__, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9436), 1, + ACTIONS(9581), 1, sym_identifier, - STATE(4679), 1, - sym_long_identifier, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7901), 1, - sym_type_argument, + ACTIONS(9601), 1, + anon_sym_member, + STATE(4508), 1, + sym_member_signature, + STATE(6858), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5782), 4, + STATE(5945), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154125] = 15, + [162812] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483870,29 +492059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1328), 1, + ACTIONS(9499), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2177), 1, - sym_op_identifier, - ACTIONS(9438), 1, - sym_identifier, - STATE(2315), 1, + STATE(4384), 1, sym_active_pattern, - STATE(2321), 1, + STATE(7456), 1, sym__identifier_or_op, - STATE(2364), 1, - sym_long_identifier, - STATE(2401), 1, - sym_long_identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5783), 4, + ACTIONS(9501), 2, + sym_op_identifier, + sym_identifier, + STATE(5946), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154175] = 15, + [162854] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -483905,31 +492089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1188), 1, + ACTIONS(598), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2039), 1, - sym_op_identifier, - ACTIONS(9440), 1, - sym_identifier, - STATE(2261), 1, - sym_long_identifier_or_op, - STATE(2290), 1, - sym_long_identifier, - STATE(2340), 1, + STATE(1715), 1, sym__identifier_or_op, - STATE(2371), 1, + STATE(1738), 1, sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5784), 4, + ACTIONS(2013), 2, + sym_op_identifier, + sym_identifier, + STATE(5947), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154225] = 10, - ACTIONS(3), 1, - sym_line_comment, + [162896] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483940,24 +492119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6488), 1, - anon_sym_COLON, - STATE(5785), 4, + ACTIONS(4399), 1, + anon_sym_LPAREN_PIPE, + STATE(3493), 1, + sym_active_pattern, + STATE(3558), 1, + sym__identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(4401), 2, + sym_op_identifier, + sym_identifier, + STATE(5948), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6490), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154265] = 14, + [162938] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -483968,32 +492147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, + ACTIONS(8617), 1, anon_sym__, - ACTIONS(9442), 1, - anon_sym_default, - STATE(5235), 1, - sym_constraint, - STATE(5931), 1, + STATE(4666), 1, sym__static_type_identifier, - STATE(6951), 1, + STATE(6265), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(8619), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5786), 4, + STATE(5949), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154313] = 10, - ACTIONS(3), 1, - sym_line_comment, + [162980] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484004,26 +492177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6476), 1, - anon_sym_COLON, - STATE(5787), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9603), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7624), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5950), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6478), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154353] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163024] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484034,26 +492208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6480), 1, - anon_sym_COLON, - STATE(5788), 4, + ACTIONS(9605), 1, + sym_identifier, + ACTIONS(9607), 1, + anon_sym_member, + STATE(5085), 1, + sym_member_signature, + STATE(6662), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5951), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6482), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154393] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163068] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484064,26 +492239,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6484), 1, - anon_sym_COLON, - STATE(5789), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9609), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7684), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5952), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6486), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154433] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163112] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484094,24 +492270,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6496), 1, - anon_sym_COLON, - STATE(5790), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9611), 1, + anon_sym_GT, + STATE(5952), 1, + aux_sym_type_arguments_repeat1, + STATE(7688), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5953), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6498), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154473] = 14, + [163156] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484122,30 +492301,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(35), 1, + anon_sym_let, + ACTIONS(37), 1, + anon_sym_let_BANG, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9444), 1, - anon_sym_default, - STATE(4723), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6827), 1, - sym_type_argument, + ACTIONS(8290), 1, + anon_sym_do, + STATE(2816), 1, + sym_do, + STATE(2818), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5791), 4, + STATE(5954), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154521] = 14, + [163200] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484156,32 +492332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9412), 1, - anon_sym_default, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6158), 1, - sym_constraint, - STATE(6673), 1, - sym_type_argument, + ACTIONS(9613), 1, + aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5792), 4, + ACTIONS(3134), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(5955), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154569] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163238] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484192,24 +492360,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6492), 1, - anon_sym_COLON, - STATE(5793), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9615), 1, + anon_sym_GT, + STATE(5962), 1, + aux_sym_type_arguments_repeat1, + STATE(7549), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5956), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6494), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [154609] = 12, + [163282] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484220,28 +492391,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6630), 1, - anon_sym_interface, - STATE(5813), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5941), 1, - sym_interface_implementation, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9617), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7745), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5794), 4, + STATE(5957), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154653] = 10, + [163326] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484252,28 +492424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4502), 1, + anon_sym_LPAREN_PIPE, + STATE(3390), 1, + sym_active_pattern, + STATE(3438), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6800), 3, - anon_sym_mutable, - anon_sym__, + ACTIONS(4504), 2, + sym_op_identifier, sym_identifier, - ACTIONS(6802), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5795), 4, + STATE(5958), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154693] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163368] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484284,31 +492452,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5197), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9619), 1, + anon_sym_GT, + STATE(5957), 1, + aux_sym_type_arguments_repeat1, + STATE(7750), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5796), 4, + STATE(5959), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154743] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163412] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484319,31 +492483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4423), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9621), 1, + anon_sym_GT, + STATE(6003), 1, + aux_sym_type_arguments_repeat1, + STATE(7989), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5797), 4, + STATE(5960), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154793] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163456] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484354,31 +492514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5016), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5798), 4, + STATE(5961), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154843] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5226), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [163492] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484389,29 +492541,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(303), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2101), 1, - sym_op_identifier, - ACTIONS(9446), 1, - sym_identifier, - STATE(1120), 1, - sym_active_pattern, - STATE(1122), 1, - sym_long_identifier, - STATE(1126), 1, - sym__identifier_or_op, - STATE(1141), 1, - sym_long_identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9623), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7544), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5799), 4, + STATE(5962), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154893] = 14, + [163536] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484422,32 +492572,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9424), 1, - anon_sym_default, - STATE(5640), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6747), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9625), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7372), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5800), 4, + STATE(5963), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154941] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163580] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484458,31 +492603,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(595), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2013), 1, - sym_op_identifier, - ACTIONS(9448), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9627), 1, sym_identifier, - STATE(1580), 1, - sym_long_identifier_or_op, - STATE(1717), 1, - sym__identifier_or_op, - STATE(1795), 1, - sym_long_identifier, - STATE(1806), 1, - sym_active_pattern, + ACTIONS(9629), 1, + anon_sym_member, + STATE(4443), 1, + sym_member_signature, + STATE(6461), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5801), 4, + STATE(5964), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154991] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163624] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484493,31 +492634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5125), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5802), 4, + STATE(5965), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155041] = 10, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(5213), 5, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + [163660] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484528,26 +492663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6510), 1, - anon_sym_COLON, - STATE(5803), 4, + ACTIONS(1002), 1, + anon_sym_LPAREN_PIPE, + STATE(2407), 1, + sym_active_pattern, + STATE(2528), 1, + sym__identifier_or_op, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(2157), 2, + sym_op_identifier, + sym_identifier, + STATE(5966), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6512), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155081] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [163702] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484558,31 +492691,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(838), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2139), 1, - sym_op_identifier, - ACTIONS(9450), 1, - sym_identifier, - STATE(1842), 1, - sym_long_identifier, - STATE(1967), 1, - sym__identifier_or_op, - STATE(1989), 1, - sym_long_identifier_or_op, - STATE(2033), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7436), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5804), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5967), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155131] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163744] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484593,26 +492721,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6460), 1, - anon_sym_COLON, - STATE(5805), 4, + ACTIONS(8169), 1, + anon_sym_do, + ACTIONS(8171), 1, + anon_sym_let, + ACTIONS(8173), 1, + anon_sym_let_BANG, + STATE(5192), 1, + sym_do, + STATE(5194), 1, + sym_function_or_value_defn, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5968), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6462), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155171] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163788] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484623,24 +492752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6506), 1, - anon_sym_COLON, - STATE(5806), 4, + ACTIONS(5548), 1, + anon_sym_let, + ACTIONS(5550), 1, + anon_sym_let_BANG, + ACTIONS(8244), 1, + anon_sym_do, + STATE(4993), 1, + sym_function_or_value_defn, + STATE(5093), 1, + sym_do, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5969), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6508), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155211] = 15, + [163832] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484651,31 +492783,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5176), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9452), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5814), 1, - aux_sym_type_definition_repeat1, - STATE(7130), 1, - sym_attributes, + ACTIONS(9605), 1, + sym_identifier, + ACTIONS(9631), 1, + anon_sym_member, + STATE(5132), 1, + sym_member_signature, + STATE(6578), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5807), 4, + STATE(5970), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155261] = 14, + [163876] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484686,32 +492814,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9454), 1, - anon_sym_default, - STATE(5369), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6802), 1, - sym_type_argument, + ACTIONS(9633), 1, + sym_identifier, + ACTIONS(9635), 1, + anon_sym_member, + STATE(5106), 1, + sym_member_signature, + STATE(6706), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5808), 4, + STATE(5971), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155309] = 10, - ACTIONS(3), 1, - sym_line_comment, + [163920] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484722,24 +492845,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6435), 1, - anon_sym_COLON, - STATE(5809), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9637), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7810), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5972), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6437), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155349] = 14, + [163964] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484750,32 +492876,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9456), 1, - anon_sym_default, - STATE(4723), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6863), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9639), 1, + anon_sym_GT, + STATE(5978), 1, + aux_sym_type_arguments_repeat1, + STATE(7523), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5810), 4, + STATE(5973), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155397] = 10, - ACTIONS(3), 1, - sym_line_comment, + [164008] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484786,26 +492907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6431), 1, - anon_sym_COLON, - STATE(5811), 4, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7646), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5974), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6433), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155437] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164050] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484816,29 +492937,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2581), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5173), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9641), 1, + anon_sym_GT, + STATE(5972), 1, + aux_sym_type_arguments_repeat1, + STATE(7816), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5812), 4, + STATE(5975), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155487] = 11, + [164094] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484849,27 +492968,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9458), 1, - anon_sym_interface, - STATE(5941), 1, - sym_interface_implementation, + ACTIONS(9643), 1, + sym_identifier, + ACTIONS(9645), 1, + anon_sym_member, + STATE(5166), 1, + sym_member_signature, + STATE(6583), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5196), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5813), 5, + STATE(5976), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [155529] = 14, + [164138] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484880,30 +492999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5166), 1, - anon_sym_POUNDendif, - ACTIONS(5170), 1, - anon_sym_LBRACK_LT, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9461), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(7130), 1, - sym_attributes, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9647), 1, + anon_sym_GT, + STATE(5944), 1, + aux_sym_type_arguments_repeat1, + STATE(7064), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5814), 5, + STATE(5977), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_definition_repeat1, - [155577] = 15, + [164182] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484914,33 +493030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5182), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9452), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5807), 1, - aux_sym_type_definition_repeat1, - STATE(7130), 1, - sym_attributes, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9649), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7522), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5815), 4, + STATE(5978), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155627] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164226] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484951,31 +493061,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1096), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2193), 1, - sym_op_identifier, - ACTIONS(9464), 1, - sym_identifier, - STATE(2174), 1, - sym_long_identifier_or_op, - STATE(2372), 1, - sym_long_identifier, - STATE(2375), 1, - sym__identifier_or_op, - STATE(2421), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8324), 1, + anon_sym_do, + ACTIONS(8326), 1, + anon_sym_let, + ACTIONS(8328), 1, + anon_sym_let_BANG, + STATE(4975), 1, + sym_do, + STATE(4976), 1, + sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5816), 4, + STATE(5979), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155677] = 10, - ACTIONS(3), 1, - sym_line_comment, + [164270] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -484986,24 +493094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6362), 1, - anon_sym_COLON, - STATE(5817), 4, + ACTIONS(9499), 1, + anon_sym_LPAREN_PIPE, + STATE(3207), 1, + sym__identifier_or_op, + STATE(4384), 1, + sym_active_pattern, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(9501), 2, + sym_op_identifier, + sym_identifier, + STATE(5980), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6364), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155717] = 15, + [164312] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -485016,31 +493124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(485), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, + STATE(1884), 1, sym_active_pattern, - STATE(4972), 1, - sym_method_or_prop_defn, + STATE(1948), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5818), 4, + ACTIONS(1760), 2, + sym_op_identifier, + sym_identifier, + STATE(5981), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155767] = 11, - ACTIONS(3), 1, - sym_line_comment, + [164354] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485051,27 +493152,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6500), 1, - anon_sym_COLON, - ACTIONS(9466), 1, - anon_sym_as, - STATE(5819), 4, + ACTIONS(9651), 1, + sym_int, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(3153), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(5982), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6502), 6, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155809] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164392] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485082,29 +493180,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(740), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2071), 1, - sym_op_identifier, - ACTIONS(9468), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9653), 1, sym_identifier, - STATE(1843), 1, - sym__identifier_or_op, - STATE(1871), 1, - sym_long_identifier, - STATE(1875), 1, - sym_active_pattern, - STATE(1991), 1, - sym_long_identifier_or_op, + ACTIONS(9655), 1, + anon_sym_member, + STATE(5181), 1, + sym_member_signature, + STATE(6803), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5820), 4, + STATE(5983), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155859] = 15, + [164436] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485115,31 +493211,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5182), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9452), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5814), 1, - aux_sym_type_definition_repeat1, - STATE(7130), 1, - sym_attributes, + ACTIONS(9569), 1, + sym_identifier, + ACTIONS(9657), 1, + anon_sym_member, + STATE(2756), 1, + sym_member_signature, + STATE(6564), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5821), 4, + STATE(5984), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155909] = 10, + [164480] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485150,28 +493242,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9653), 1, + sym_identifier, + ACTIONS(9659), 1, + anon_sym_member, + STATE(5223), 1, + sym_member_signature, + STATE(6984), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6961), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(6963), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5822), 4, + STATE(5985), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155949] = 10, - ACTIONS(3), 1, - sym_line_comment, + [164524] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485182,26 +493273,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6468), 1, - anon_sym_COLON, - STATE(5823), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9661), 1, + anon_sym_GT, + STATE(5988), 1, + aux_sym_type_arguments_repeat1, + STATE(7503), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5986), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6470), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [155989] = 10, - ACTIONS(3), 1, - sym_line_comment, + [164568] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485212,24 +493304,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6472), 1, - anon_sym_COLON, - STATE(5824), 4, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9663), 1, + anon_sym_GT, + STATE(5950), 1, + aux_sym_type_arguments_repeat1, + STATE(7574), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(5987), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6474), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - [156029] = 15, + [164612] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485240,31 +493335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(27), 1, - anon_sym_LBRACK_LT, - ACTIONS(5186), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9452), 1, - anon_sym_and, - STATE(3804), 1, - aux_sym_attributes_repeat1, - STATE(3962), 1, - sym__attribute_set, - STATE(5821), 1, - aux_sym_type_definition_repeat1, - STATE(7130), 1, - sym_attributes, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9665), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7498), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5825), 4, + STATE(5988), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156079] = 15, + [164656] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -485277,29 +493368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(4775), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, + STATE(3572), 1, sym__identifier_or_op, - STATE(3670), 1, + STATE(3654), 1, sym_active_pattern, - STATE(5143), 1, - sym_method_or_prop_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5826), 4, + ACTIONS(4777), 2, + sym_op_identifier, + sym_identifier, + STATE(5989), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156129] = 10, + [164698] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485310,28 +493396,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6879), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(6881), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5827), 4, + STATE(5990), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156169] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5230), 5, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + [164734] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485342,31 +493423,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(395), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(1760), 1, - sym_op_identifier, - ACTIONS(9470), 1, - sym_identifier, - STATE(1853), 1, - sym_long_identifier, - STATE(1858), 1, - sym__identifier_or_op, - STATE(1892), 1, - sym_long_identifier_or_op, - STATE(1912), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5828), 4, + STATE(5991), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156219] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5230), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [164770] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485377,31 +493450,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5115), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9669), 1, + sym__indent, + ACTIONS(9671), 1, + sym__struct_begin, + ACTIONS(9673), 1, + sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5829), 4, + ACTIONS(9667), 2, + anon_sym_begin, + anon_sym_class, + STATE(5992), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156269] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164812] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485412,29 +493480,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2542), 1, - sym_property_or_ident, - STATE(2745), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9675), 1, + anon_sym_GT, + STATE(5994), 1, + aux_sym_type_arguments_repeat1, + STATE(7597), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5830), 4, + STATE(5993), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156319] = 14, + [164856] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485445,32 +493511,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9454), 1, - anon_sym_default, - STATE(5575), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6802), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9677), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7817), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5831), 4, + STATE(5994), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156367] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164900] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485481,29 +493542,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4432), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9679), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7892), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5832), 4, + STATE(5995), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156417] = 14, + [164944] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485514,32 +493573,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9456), 1, - anon_sym_default, - STATE(5357), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6863), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9681), 1, + anon_sym_GT, + STATE(5995), 1, + aux_sym_type_arguments_repeat1, + STATE(7905), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5833), 4, + STATE(5996), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156465] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [164988] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485550,31 +493604,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2557), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4935), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9683), 1, + anon_sym_GT, + STATE(6000), 1, + aux_sym_type_arguments_repeat1, + STATE(7473), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5834), 4, + STATE(5997), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156515] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165032] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485585,58 +493635,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1506), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2149), 1, - sym_op_identifier, - ACTIONS(9472), 1, - sym_identifier, - STATE(2200), 1, - sym__identifier_or_op, - STATE(2201), 1, - sym_long_identifier, - STATE(2242), 1, - sym_active_pattern, - STATE(2410), 1, - sym_long_identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9685), 1, + anon_sym_GT, + STATE(6025), 1, + aux_sym_type_arguments_repeat1, + STATE(8127), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5835), 4, + STATE(5998), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156565] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [165076] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5936), 1, + anon_sym_let, + ACTIONS(5938), 1, + anon_sym_let_BANG, + ACTIONS(8224), 1, + anon_sym_do, + STATE(4400), 1, + sym_do, + STATE(4455), 1, + sym_function_or_value_defn, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9032), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(9034), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5836), 4, + STATE(5999), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156603] = 14, + [165120] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485647,32 +493697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9474), 1, - anon_sym_default, - STATE(3485), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6774), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9687), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7467), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5837), 4, + STATE(6000), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156651] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165164] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485683,31 +493728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4511), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9689), 1, + anon_sym_GT, + STATE(6002), 1, + aux_sym_type_arguments_repeat1, + STATE(7441), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5838), 4, + STATE(6001), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156701] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165208] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485718,31 +493759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4435), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9691), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7440), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5839), 4, + STATE(6002), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156751] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165252] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485753,29 +493790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2542), 1, - sym_property_or_ident, - STATE(2784), 1, - sym_method_or_prop_defn, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9693), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(8146), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5840), 4, + STATE(6003), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156801] = 15, + [165296] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -485788,29 +493823,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, + ACTIONS(103), 1, anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, + STATE(1079), 1, sym_active_pattern, - STATE(4479), 1, - sym_method_or_prop_defn, + STATE(1146), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5841), 4, + ACTIONS(105), 2, + sym_op_identifier, + sym_identifier, + STATE(6004), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156851] = 14, + [165338] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485821,30 +493851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, + ACTIONS(9485), 1, anon_sym__, - ACTIONS(9442), 1, - anon_sym_default, - STATE(4723), 1, - sym_constraint, - STATE(5931), 1, + STATE(6041), 1, sym__static_type_identifier, - STATE(6951), 1, + STATE(7381), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5842), 4, + STATE(6005), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156899] = 14, + [165380] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485855,32 +493881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9416), 1, - anon_sym_default, - STATE(5571), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6904), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9695), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(8003), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5843), 4, + STATE(6006), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156947] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165424] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485891,31 +493912,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4534), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9697), 1, + anon_sym_GT, + STATE(6006), 1, + aux_sym_type_arguments_repeat1, + STATE(8006), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5844), 4, + STATE(6007), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156997] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165468] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485926,29 +493943,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2580), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(5128), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9699), 1, + anon_sym_GT, + STATE(6047), 1, + aux_sym_type_arguments_repeat1, + STATE(7996), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5845), 4, + STATE(6008), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157047] = 14, + [165512] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485959,32 +493974,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - ACTIONS(9474), 1, - anon_sym_default, - STATE(3399), 1, - sym_constraint, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6774), 1, - sym_type_argument, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9701), 1, + anon_sym_GT, + STATE(6026), 1, + aux_sym_type_arguments_repeat1, + STATE(7292), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5846), 4, + STATE(6009), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157095] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165556] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -485995,29 +494005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1012), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2165), 1, - sym_op_identifier, - ACTIONS(9476), 1, - sym_identifier, - STATE(2173), 1, - sym_long_identifier_or_op, - STATE(2276), 1, - sym__identifier_or_op, - STATE(2310), 1, - sym_active_pattern, - STATE(2320), 1, - sym_long_identifier, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9703), 1, + anon_sym_GT, + STATE(6054), 1, + aux_sym_type_arguments_repeat1, + STATE(8415), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5847), 4, + STATE(6010), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157145] = 15, + [165600] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486028,31 +494036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(9478), 1, - sym_identifier, - STATE(4701), 1, - sym_union_type_case, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(6203), 1, - sym_enum_type_case, - STATE(7530), 1, - sym_attributes, + ACTIONS(9707), 1, + sym__indent, + ACTIONS(9709), 1, + sym__struct_begin, + ACTIONS(9711), 1, + sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5848), 4, + ACTIONS(9705), 2, + anon_sym_begin, + anon_sym_class, + STATE(6011), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157195] = 11, + [165642] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486063,29 +494066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9480), 1, - anon_sym_interface, - STATE(5866), 1, - sym_interface_implementation, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7480), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5196), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(5849), 5, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6012), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [157237] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165684] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486096,31 +494096,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2585), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4445), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9713), 1, + anon_sym_GT, + STATE(6014), 1, + aux_sym_type_arguments_repeat1, + STATE(7418), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5850), 4, + STATE(6013), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157287] = 15, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [165728] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486131,85 +494127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(8503), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(8505), 1, - sym_op_identifier, - ACTIONS(9408), 1, - sym_identifier, - STATE(2571), 1, - sym_property_or_ident, - STATE(3661), 1, - sym__identifier_or_op, - STATE(3670), 1, - sym_active_pattern, - STATE(4485), 1, - sym_method_or_prop_defn, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9715), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7413), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5851), 4, + STATE(6014), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157337] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [165772] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(9432), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9430), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5852), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [157374] = 9, - ACTIONS(5), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(9643), 1, + sym_identifier, + ACTIONS(9717), 1, + anon_sym_member, + STATE(5164), 1, + sym_member_signature, + STATE(6606), 1, + sym_access_modifier, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9428), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9426), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5853), 4, + STATE(6015), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157411] = 14, + [165816] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486220,57 +494189,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(9483), 1, - sym_identifier, - STATE(4789), 1, - sym_union_type_case, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(7530), 1, - sym_attributes, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7065), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5854), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6016), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157458] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [165858] = 13, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9719), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7265), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9032), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9034), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5855), 4, + STATE(6017), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157495] = 10, + [165902] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486281,25 +494250,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9721), 1, + anon_sym_GT, + STATE(6017), 1, + aux_sym_type_arguments_repeat1, + STATE(7269), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9487), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - ACTIONS(9485), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5856), 4, + STATE(6018), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157534] = 14, + [165946] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486310,29 +494281,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6734), 1, - anon_sym_LBRACK_LT, - ACTIONS(9483), 1, - sym_identifier, - STATE(4701), 1, - sym_union_type_case, - STATE(5472), 1, - aux_sym_attributes_repeat1, - STATE(5827), 1, - sym__attribute_set, - STATE(7530), 1, - sym_attributes, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9723), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(8075), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5857), 4, + STATE(6019), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157581] = 11, + [165990] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486343,26 +494314,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9489), 1, - anon_sym_interface, - STATE(6017), 1, - sym_interface_implementation, + ACTIONS(822), 1, + anon_sym_LPAREN_PIPE, + STATE(1854), 1, + sym_active_pattern, + STATE(1868), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5196), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5858), 5, + ACTIONS(2101), 2, + sym_op_identifier, + sym_identifier, + STATE(6020), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [157622] = 12, + [166032] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486373,27 +494342,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6650), 1, - anon_sym_interface, - STATE(5858), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6017), 1, - sym_interface_implementation, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9725), 1, + anon_sym_GT, + STATE(6019), 1, + aux_sym_type_arguments_repeat1, + STATE(8084), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5859), 4, + STATE(6021), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157665] = 10, + [166076] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486404,27 +494373,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9727), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7285), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9494), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - ACTIONS(9492), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5860), 4, + STATE(6022), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157704] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [166120] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486435,24 +494404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1328), 1, - anon_sym_LPAREN_PIPE, - STATE(2313), 1, - sym__identifier_or_op, - STATE(2315), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9731), 1, + sym__indent, + ACTIONS(9733), 1, + sym__struct_begin, + ACTIONS(9735), 1, + sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2177), 2, - sym_op_identifier, - sym_identifier, - STATE(5861), 4, + ACTIONS(9729), 2, + anon_sym_begin, + anon_sym_class, + STATE(6023), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157746] = 9, + [166162] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486463,23 +494434,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9737), 1, + anon_sym_GT, + STATE(6022), 1, + aux_sym_type_arguments_repeat1, + STATE(7291), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5862), 4, + STATE(6024), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5209), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [157782] = 13, + [166206] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486490,27 +494465,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9498), 1, - anon_sym_GT, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - STATE(5870), 1, + ACTIONS(9739), 1, + anon_sym_GT, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8219), 1, + STATE(8242), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5863), 4, + STATE(6025), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157826] = 13, + [166250] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486521,27 +494496,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9502), 1, + ACTIONS(9741), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8253), 1, + STATE(7329), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5864), 4, + STATE(6026), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157870] = 13, + [166294] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486552,27 +494529,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9504), 1, - sym_identifier, - ACTIONS(9506), 1, - anon_sym_member, - STATE(5146), 1, - sym_member_signature, - STATE(6789), 1, - sym_access_modifier, + ACTIONS(692), 1, + anon_sym_LPAREN_PIPE, + STATE(1851), 1, + sym__identifier_or_op, + STATE(1923), 1, + sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5865), 4, + ACTIONS(2167), 2, + sym_op_identifier, + sym_identifier, + STATE(6027), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157914] = 9, + [166336] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486583,23 +494559,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, + ACTIONS(1336), 1, + anon_sym_LPAREN_PIPE, + STATE(2188), 1, + sym_active_pattern, + STATE(2331), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5866), 4, + ACTIONS(2191), 2, + sym_op_identifier, + sym_identifier, + STATE(6028), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5215), 5, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - [157950] = 9, + [166378] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486610,23 +494587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9743), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(8162), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5867), 4, + STATE(6029), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5229), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [157986] = 13, + [166422] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486637,27 +494618,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9508), 1, + ACTIONS(9745), 1, anon_sym_GT, - STATE(5989), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(7465), 1, + STATE(7295), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5868), 4, + STATE(6030), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158030] = 13, + [166466] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486668,27 +494649,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9510), 1, + ACTIONS(9747), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6030), 1, aux_sym_type_arguments_repeat1, - STATE(7513), 1, + STATE(7296), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5869), 4, + STATE(6031), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158074] = 13, + [166510] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486699,27 +494680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9512), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(8197), 1, - sym_type_argument_constraints, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7162), 1, + sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5870), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6032), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158118] = 13, + [166552] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486730,27 +494710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9514), 1, - anon_sym_GT, - STATE(5873), 1, - aux_sym_type_arguments_repeat1, - STATE(7432), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5871), 4, + STATE(6033), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158162] = 13, + ACTIONS(5213), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [166588] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486761,27 +494737,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9516), 1, - anon_sym_DQUOTE, - ACTIONS(9518), 1, - anon_sym_AT_DQUOTE, - ACTIONS(9520), 1, - sym__newline_not_aligned, - STATE(8055), 1, - sym_verbatim_string, - STATE(8057), 1, - sym__string_literal, + ACTIONS(9627), 1, + sym_identifier, + ACTIONS(9749), 1, + anon_sym_member, + STATE(4486), 1, + sym_member_signature, + STATE(6463), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5872), 4, + STATE(6034), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158206] = 13, + [166632] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486792,27 +494768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9522), 1, + ACTIONS(9751), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6029), 1, aux_sym_type_arguments_repeat1, - STATE(7430), 1, + STATE(8166), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5873), 4, + STATE(6035), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158250] = 10, + [166676] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486823,24 +494799,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9524), 1, - sym_int, + ACTIONS(9633), 1, + sym_identifier, + ACTIONS(9753), 1, + anon_sym_member, + STATE(5024), 1, + sym_member_signature, + STATE(6862), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3148), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5874), 4, + STATE(6036), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158288] = 13, + [166720] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486851,27 +494830,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9526), 1, + ACTIONS(9755), 1, anon_sym_GT, - STATE(5864), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8133), 1, + STATE(7325), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5875), 4, + STATE(6037), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158332] = 13, + [166764] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486882,27 +494861,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9528), 1, + ACTIONS(9757), 1, anon_sym_GT, - STATE(5942), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8174), 1, + STATE(7754), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5876), 4, + STATE(6038), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158376] = 13, + [166808] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486913,27 +494892,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9530), 1, - sym_identifier, - ACTIONS(9532), 1, - anon_sym_member, - STATE(4548), 1, - sym_member_signature, - STATE(6958), 1, - sym_access_modifier, + ACTIONS(9761), 1, + sym__indent, + ACTIONS(9763), 1, + sym__struct_begin, + ACTIONS(9765), 1, + sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5877), 4, + ACTIONS(9759), 2, + anon_sym_begin, + anon_sym_class, + STATE(6039), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158420] = 12, + [166850] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -486946,24 +494924,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4502), 1, + ACTIONS(1218), 1, anon_sym_LPAREN_PIPE, - STATE(3454), 1, + STATE(2442), 1, sym__identifier_or_op, - STATE(3526), 1, + STATE(2520), 1, sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4504), 2, + ACTIONS(2139), 2, sym_op_identifier, sym_identifier, - STATE(5878), 4, + STATE(6040), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158462] = 12, + [166892] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -486974,26 +494952,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(2981), 1, + anon_sym_COLON_GT, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9536), 1, - sym__indent, - ACTIONS(9538), 1, - sym__struct_begin, - ACTIONS(9540), 1, - sym__interface_begin, + ACTIONS(7847), 1, + anon_sym_or, + STATE(4713), 1, + aux_sym_type_argument_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9534), 2, - anon_sym_begin, - anon_sym_class, - STATE(5879), 4, + ACTIONS(2979), 2, + anon_sym_COLON, + sym_identifier, + STATE(6041), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [166934] = 13, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9767), 1, + anon_sym_GT, + STATE(6037), 1, + aux_sym_type_arguments_repeat1, + STATE(7331), 1, + sym_type_argument_constraints, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(6042), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158504] = 12, + [166978] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -487008,22 +495017,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(395), 1, anon_sym_LPAREN_PIPE, - STATE(1912), 1, + STATE(1584), 1, sym_active_pattern, - STATE(1945), 1, + STATE(1634), 1, sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(1760), 2, + ACTIONS(2091), 2, sym_op_identifier, sym_identifier, - STATE(5880), 4, + STATE(6043), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158546] = 13, + [167020] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487034,27 +495043,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9542), 1, + ACTIONS(9769), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(7386), 1, + STATE(7351), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5881), 4, + STATE(6044), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [167064] = 12, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9485), 1, + anon_sym__, + STATE(6041), 1, + sym__static_type_identifier, + STATE(7253), 1, + sym_type_argument, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6045), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158590] = 13, + [167106] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487065,27 +495104,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9544), 1, + ACTIONS(9771), 1, anon_sym_GT, - STATE(5869), 1, + STATE(6044), 1, aux_sym_type_arguments_repeat1, - STATE(7468), 1, + STATE(7354), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5882), 4, + STATE(6046), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158634] = 13, + [167150] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487096,27 +495135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9546), 1, + ACTIONS(9773), 1, anon_sym_GT, - STATE(5881), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(7495), 1, + STATE(7939), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5883), 4, + STATE(6047), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158678] = 13, + [167194] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487127,27 +495166,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9548), 1, + ACTIONS(9775), 1, anon_sym_GT, - STATE(5885), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8094), 1, + STATE(7130), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5884), 4, + STATE(6048), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158722] = 13, + [167238] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487158,27 +495197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9550), 1, + ACTIONS(9777), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(8088), 1, + STATE(7168), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5885), 4, + STATE(6049), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158766] = 13, + [167282] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487189,27 +495228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9552), 1, - sym_identifier, - ACTIONS(9554), 1, - anon_sym_member, - STATE(5196), 1, - sym_member_signature, - STATE(6773), 1, - sym_access_modifier, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9779), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(8364), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5886), 4, + STATE(6050), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158810] = 13, + [167326] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487220,29 +495259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9556), 1, - sym_identifier, - ACTIONS(9558), 1, - anon_sym_member, - STATE(4924), 1, - sym_member_signature, - STATE(6413), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5887), 4, + STATE(6051), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158854] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5226), 5, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + [167362] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487253,24 +495286,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(9420), 1, - anon_sym_LPAREN_PIPE, - STATE(4348), 1, - sym_active_pattern, - STATE(7176), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9781), 1, + anon_sym_DQUOTE, + ACTIONS(9783), 1, + anon_sym_AT_DQUOTE, + ACTIONS(9785), 1, + sym__newline_not_aligned, + STATE(8228), 1, + sym_verbatim_string, + STATE(8230), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9422), 2, - sym_op_identifier, - sym_identifier, - STATE(5888), 4, + STATE(6052), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158896] = 12, + [167406] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487281,26 +495317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, + ACTIONS(9485), 1, anon_sym__, - STATE(4654), 1, + STATE(6041), 1, sym__static_type_identifier, - STATE(6372), 1, + STATE(7323), 1, sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, + ACTIONS(5262), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5889), 4, + STATE(6053), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158938] = 13, + [167448] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487311,27 +495347,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9560), 1, + ACTIONS(9787), 1, anon_sym_GT, - STATE(5891), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(7407), 1, + STATE(8325), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5890), 4, + STATE(6054), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158982] = 13, + [167492] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487342,27 +495378,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9562), 1, + ACTIONS(9789), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6179), 1, aux_sym_type_arguments_repeat1, - STATE(7405), 1, + STATE(8222), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5891), 4, + STATE(6055), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159026] = 13, + [167536] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487373,27 +495409,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9564), 1, + ACTIONS(9791), 1, anon_sym_GT, - STATE(5920), 1, + STATE(6055), 1, aux_sym_type_arguments_repeat1, - STATE(7028), 1, + STATE(8244), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5892), 4, + STATE(6056), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159070] = 13, + [167580] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487404,27 +495442,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9566), 1, - anon_sym_GT, - STATE(5939), 1, - aux_sym_type_arguments_repeat1, - STATE(7312), 1, - sym_type_argument_constraints, + ACTIONS(1124), 1, + anon_sym_LPAREN_PIPE, + STATE(2206), 1, + sym_active_pattern, + STATE(2311), 1, + sym__identifier_or_op, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5893), 4, + ACTIONS(2177), 2, + sym_op_identifier, + sym_identifier, + STATE(6057), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159114] = 13, + [167622] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487435,29 +495472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9504), 1, - sym_identifier, - ACTIONS(9568), 1, - anon_sym_member, - STATE(5169), 1, - sym_member_signature, - STATE(6667), 1, - sym_access_modifier, + ACTIONS(4444), 1, + anon_sym_LPAREN_PIPE, + STATE(3500), 1, + sym__identifier_or_op, + STATE(3557), 1, + sym_active_pattern, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5894), 4, + ACTIONS(4446), 2, + sym_op_identifier, + sym_identifier, + STATE(6058), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159158] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [167664] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487468,24 +495500,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(9420), 1, - anon_sym_LPAREN_PIPE, - STATE(4348), 1, - sym_active_pattern, - STATE(7159), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9577), 1, + anon_sym_when, + ACTIONS(9793), 1, + anon_sym_GT, + STATE(6179), 1, + aux_sym_type_arguments_repeat1, + STATE(7384), 1, + sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9422), 2, - sym_op_identifier, - sym_identifier, - STATE(5895), 4, + STATE(6059), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159200] = 13, + [167708] = 13, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487496,27 +495531,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(9500), 1, + ACTIONS(9577), 1, anon_sym_when, - ACTIONS(9570), 1, + ACTIONS(9795), 1, anon_sym_GT, - STATE(6056), 1, + STATE(6049), 1, aux_sym_type_arguments_repeat1, - STATE(7252), 1, + STATE(7188), 1, sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5896), 4, + STATE(6060), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159244] = 12, + [167752] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487527,26 +495562,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7307), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5897), 4, + ACTIONS(5176), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6061), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159286] = 13, + [167787] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487557,29 +495588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6083), 1, - anon_sym_let, - ACTIONS(6085), 1, - anon_sym_let_BANG, - ACTIONS(8315), 1, - anon_sym_do, - STATE(4525), 1, - sym_do, - STATE(4539), 1, - sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5898), 4, + ACTIONS(5213), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + STATE(6062), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159330] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [167822] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487590,26 +495614,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4397), 1, - anon_sym_LPAREN_PIPE, - STATE(3348), 1, - sym__identifier_or_op, - STATE(3398), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4399), 2, - sym_op_identifier, - sym_identifier, - STATE(5899), 4, + ACTIONS(5398), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6063), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159372] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [167857] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487620,24 +495640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1188), 1, - anon_sym_LPAREN_PIPE, - STATE(2134), 1, - sym__identifier_or_op, - STATE(2371), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2039), 2, - sym_op_identifier, + ACTIONS(5382), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6064), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [167892] = 12, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9797), 1, sym_identifier, - STATE(5900), 4, + STATE(378), 1, + sym_long_identifier, + STATE(6460), 1, + sym_access_modifier, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(6065), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159414] = 13, + [167933] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487648,27 +495695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8247), 1, - anon_sym_do, - ACTIONS(8249), 1, - anon_sym_let, - ACTIONS(8251), 1, - anon_sym_let_BANG, - STATE(5145), 1, - sym_do, - STATE(5152), 1, - sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5901), 4, + ACTIONS(5336), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6066), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159458] = 12, + [167968] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487679,26 +495721,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7413), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5902), 4, + ACTIONS(5330), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6067), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159500] = 13, + [168003] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487709,27 +495747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9530), 1, + ACTIONS(9627), 1, sym_identifier, - ACTIONS(9572), 1, - anon_sym_member, - STATE(4485), 1, + STATE(4486), 1, sym_member_signature, - STATE(6925), 1, + STATE(6463), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5903), 4, + STATE(6068), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159544] = 10, + [168044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487740,24 +495776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9574), 1, - aux_sym_float_token1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3132), 4, + ACTIONS(5420), 4, + sym__newline, sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5904), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6069), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159582] = 12, + [168079] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487768,26 +495802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7250), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5905), 4, + ACTIONS(5441), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6070), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159624] = 12, + [168114] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487798,26 +495828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(6992), 1, - sym_type_argument, + ACTIONS(6620), 1, + anon_sym_DOT, + STATE(3697), 1, + aux_sym_long_identifier_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5906), 4, + ACTIONS(2986), 2, + anon_sym_EQ, + anon_sym_of, + STATE(6071), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159666] = 13, + [168153] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487828,27 +495856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8097), 1, - anon_sym_do, - ACTIONS(8099), 1, - anon_sym_let, - ACTIONS(8101), 1, - anon_sym_let_BANG, - STATE(5086), 1, - sym_do, - STATE(5087), 1, - sym_function_or_value_defn, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5907), 4, + ACTIONS(5344), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6072), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159710] = 13, + [168188] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487859,27 +495882,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(1989), 1, + ts_builtin_sym_end, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9576), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7695), 1, - sym_type_argument_constraints, + ACTIONS(9799), 1, + anon_sym_namespace, + STATE(6088), 1, + aux_sym_file_repeat1, + STATE(6455), 1, + sym_namespace, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5908), 4, + STATE(6073), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159754] = 13, + [168229] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487890,27 +495911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9578), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7542), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5909), 4, + ACTIONS(5317), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6074), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159798] = 13, + [168264] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487921,27 +495937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9580), 1, - anon_sym_GT, - STATE(5911), 1, - aux_sym_type_arguments_repeat1, - STATE(7389), 1, - sym_type_argument_constraints, + ACTIONS(9627), 1, + sym_identifier, + STATE(4484), 1, + sym_member_signature, + STATE(6473), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5910), 4, + STATE(6075), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159842] = 13, + [168305] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487952,27 +495966,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9582), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7365), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5911), 4, + ACTIONS(5437), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6076), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159886] = 13, + [168340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -487983,27 +495992,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9584), 1, - anon_sym_GT, - STATE(5909), 1, - aux_sym_type_arguments_repeat1, - STATE(7546), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5912), 4, + ACTIONS(5449), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6077), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159930] = 13, + [168375] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488014,27 +496018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9552), 1, - sym_identifier, - ACTIONS(9586), 1, - anon_sym_member, - STATE(5174), 1, - sym_member_signature, - STATE(6804), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5913), 4, + ACTIONS(5246), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6078), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159974] = 12, + [168410] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488045,26 +496044,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5194), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9590), 1, - sym__indent, - ACTIONS(9592), 1, - sym__struct_begin, - ACTIONS(9594), 1, - sym__interface_begin, + ACTIONS(6811), 1, + anon_sym_interface, + STATE(4853), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5208), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9588), 2, - anon_sym_begin, - anon_sym_class, - STATE(5914), 4, + STATE(6079), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160016] = 13, + [168451] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488075,27 +496073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9596), 1, - sym_identifier, - ACTIONS(9598), 1, - anon_sym_member, - STATE(5016), 1, - sym_member_signature, - STATE(6781), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5915), 4, + ACTIONS(5475), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6080), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160060] = 13, + [168486] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488106,27 +496099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8161), 1, - anon_sym_do, - ACTIONS(8163), 1, - anon_sym_let, - ACTIONS(8165), 1, - anon_sym_let_BANG, - STATE(5181), 1, - sym_do, - STATE(5191), 1, - sym_function_or_value_defn, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(8178), 1, + sym_long_identifier, + STATE(8180), 1, + sym_field_initializers, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5916), 4, + STATE(6081), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160104] = 13, + [168527] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488137,27 +496128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9600), 1, - anon_sym_GT, - STATE(5924), 1, - aux_sym_type_arguments_repeat1, - STATE(7681), 1, - sym_type_argument_constraints, + ACTIONS(9803), 1, + sym_identifier, + STATE(379), 1, + sym_long_identifier, + STATE(6577), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5917), 4, + STATE(6082), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160148] = 13, + [168568] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488168,27 +496157,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9602), 1, - anon_sym_GT, - STATE(5919), 1, - aux_sym_type_arguments_repeat1, - STATE(8037), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5918), 4, + ACTIONS(5463), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6083), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160192] = 13, + [168603] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488199,27 +496183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9604), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(8033), 1, - sym_type_argument_constraints, + ACTIONS(9605), 1, + sym_identifier, + STATE(5145), 1, + sym_member_signature, + STATE(6538), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5919), 4, + STATE(6084), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160236] = 13, + [168644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488230,29 +496212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9606), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(6995), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5920), 4, + ACTIONS(5457), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6085), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160280] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [168679] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488263,24 +496238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1096), 1, - anon_sym_LPAREN_PIPE, - STATE(2382), 1, - sym__identifier_or_op, - STATE(2421), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2193), 2, - sym_op_identifier, - sym_identifier, - STATE(5921), 4, + ACTIONS(5414), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6086), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160322] = 13, + [168714] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488291,27 +496264,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9608), 1, - anon_sym_GT, - STATE(5959), 1, - aux_sym_type_arguments_repeat1, - STATE(7514), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5922), 4, + ACTIONS(5469), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6087), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160366] = 13, + [168749] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488322,27 +496290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9556), 1, - sym_identifier, - ACTIONS(9610), 1, - anon_sym_member, - STATE(5083), 1, - sym_member_signature, - STATE(6432), 1, - sym_access_modifier, + ACTIONS(9805), 1, + ts_builtin_sym_end, + ACTIONS(9807), 1, + anon_sym_namespace, + STATE(6455), 1, + sym_namespace, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5923), 4, + STATE(6088), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160410] = 13, + aux_sym_file_repeat1, + [168788] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488353,27 +496318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9612), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7547), 1, - sym_type_argument_constraints, + ACTIONS(9810), 1, + sym_identifier, + ACTIONS(9812), 1, + anon_sym_mutable, + STATE(8077), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5924), 4, + STATE(6089), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160454] = 13, + [168829] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488384,27 +496347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5567), 1, - anon_sym_let, - ACTIONS(5569), 1, - anon_sym_let_BANG, - ACTIONS(8378), 1, - anon_sym_do, - STATE(4928), 1, - sym_do, - STATE(4952), 1, - sym_function_or_value_defn, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7620), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5925), 4, + STATE(6090), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160498] = 9, + [168870] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488415,23 +496376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5926), 4, + ACTIONS(5297), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6091), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5229), 5, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - [160534] = 13, + [168905] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488442,29 +496402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9614), 1, - sym_identifier, - ACTIONS(9616), 1, + ACTIONS(9814), 1, + anon_sym_new, + ACTIONS(9816), 1, + anon_sym_static, + ACTIONS(9818), 1, anon_sym_member, - STATE(4435), 1, - sym_member_signature, - STATE(6601), 1, - sym_access_modifier, + STATE(7124), 1, + sym_trait_member_constraint, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5927), 4, + STATE(6092), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160578] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [168946] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488475,24 +496431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(595), 1, - anon_sym_LPAREN_PIPE, - STATE(1730), 1, - sym__identifier_or_op, - STATE(1806), 1, - sym_active_pattern, + ACTIONS(3226), 1, + sym__dedent, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9820), 1, + anon_sym_PIPE, + ACTIONS(9822), 1, + sym__newline, + STATE(6141), 1, + aux_sym_rules_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2013), 2, - sym_op_identifier, - sym_identifier, - STATE(5928), 4, + STATE(6093), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160620] = 13, + [168987] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488503,27 +496460,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9618), 1, - anon_sym_GT, - STATE(5930), 1, - aux_sym_type_arguments_repeat1, - STATE(7356), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5929), 4, + ACTIONS(5303), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6094), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160664] = 13, + [169022] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488534,27 +496486,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9620), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7354), 1, - sym_type_argument_constraints, + ACTIONS(9816), 1, + anon_sym_static, + ACTIONS(9818), 1, + anon_sym_member, + ACTIONS(9824), 1, + anon_sym_new, + STATE(8024), 1, + sym_trait_member_constraint, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5930), 4, + STATE(6095), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160708] = 12, + [169063] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488565,26 +496515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3028), 1, - anon_sym_COLON_GT, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7808), 1, - anon_sym_or, - STATE(4727), 1, - aux_sym_type_argument_repeat1, + ACTIONS(9605), 1, + sym_identifier, + STATE(5132), 1, + sym_member_signature, + STATE(6578), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_COLON, - sym_identifier, - STATE(5931), 4, + STATE(6096), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160750] = 12, + [169104] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488595,26 +496544,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7361), 1, - sym_type_argument, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7581), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5932), 4, + STATE(6097), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160792] = 13, + [169145] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488625,27 +496573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9622), 1, - anon_sym_GT, - STATE(5896), 1, - aux_sym_type_arguments_repeat1, - STATE(7403), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7541), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5933), 4, + STATE(6098), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160836] = 13, + [169186] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488656,27 +496602,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9624), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7606), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5934), 4, + ACTIONS(5297), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6099), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160880] = 13, + [169221] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488687,27 +496628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9626), 1, - anon_sym_GT, - STATE(5934), 1, - aux_sym_type_arguments_repeat1, - STATE(7607), 1, - sym_type_argument_constraints, + ACTIONS(9826), 1, + sym_identifier, + ACTIONS(9828), 1, + anon_sym_mutable, + STATE(7960), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5935), 4, + STATE(6100), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160924] = 12, + [169262] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488718,26 +496657,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7404), 1, - sym_type_argument, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7501), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5936), 4, + STATE(6101), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160966] = 13, + [169303] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488748,27 +496686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(5925), 1, - anon_sym_let, - ACTIONS(5927), 1, - anon_sym_let_BANG, - ACTIONS(8372), 1, - anon_sym_do, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5937), 4, + ACTIONS(5453), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6102), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161010] = 13, + [169338] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488779,27 +496712,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9628), 1, - anon_sym_GT, - STATE(5966), 1, - aux_sym_type_arguments_repeat1, - STATE(7702), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5938), 4, + ACTIONS(5194), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6103), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161054] = 13, + [169373] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488810,27 +496738,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9630), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7245), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5939), 4, + ACTIONS(5317), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6104), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161098] = 13, + [169408] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488841,27 +496764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9632), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(8026), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7459), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5940), 4, + STATE(6105), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161142] = 9, + [169449] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488872,23 +496793,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9830), 1, + sym_identifier, + ACTIONS(9832), 1, + anon_sym_mutable, + STATE(7850), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5941), 4, + STATE(6106), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5215), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [161178] = 13, + [169490] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488899,27 +496822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9634), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(8091), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5942), 4, + ACTIONS(5469), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6107), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161222] = 13, + [169525] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488930,29 +496848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9636), 1, - anon_sym_GT, - STATE(5948), 1, - aux_sym_type_arguments_repeat1, - STATE(7327), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5943), 4, + ACTIONS(3176), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(6108), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161266] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [169560] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488963,26 +496874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4698), 1, - anon_sym_LPAREN_PIPE, - STATE(3586), 1, - sym_active_pattern, - STATE(3628), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4700), 2, - sym_op_identifier, - sym_identifier, - STATE(5944), 4, + ACTIONS(3134), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(6109), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161308] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [169595] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -488993,24 +496900,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(838), 1, - anon_sym_LPAREN_PIPE, - STATE(1992), 1, - sym__identifier_or_op, - STATE(2033), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2139), 2, - sym_op_identifier, - sym_identifier, - STATE(5945), 4, + ACTIONS(5390), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6110), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161350] = 13, + [169630] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489021,27 +496926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9638), 1, - anon_sym_GT, - STATE(5908), 1, - aux_sym_type_arguments_repeat1, - STATE(7754), 1, - sym_type_argument_constraints, + ACTIONS(9569), 1, + sym_identifier, + STATE(2787), 1, + sym_member_signature, + STATE(6651), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5946), 4, + STATE(6111), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161394] = 13, + [169671] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489052,27 +496955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9640), 1, - anon_sym_GT, - STATE(5950), 1, - aux_sym_type_arguments_repeat1, - STATE(7977), 1, - sym_type_argument_constraints, + ACTIONS(9834), 1, + sym_identifier, + ACTIONS(9836), 1, + anon_sym_mutable, + STATE(8093), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5947), 4, + STATE(6112), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161438] = 13, + [169712] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489083,29 +496984,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9642), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7326), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5948), 4, + ACTIONS(5457), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6113), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161482] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [169747] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489116,24 +497010,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4748), 1, - anon_sym_LPAREN_PIPE, - STATE(3557), 1, - sym_active_pattern, - STATE(3593), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4750), 2, - sym_op_identifier, - sym_identifier, - STATE(5949), 4, + ACTIONS(5390), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6114), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161524] = 13, + [169782] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489144,27 +497036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9644), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7974), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5950), 4, + ACTIONS(5463), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6115), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161568] = 13, + [169817] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489175,27 +497062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9646), 1, - anon_sym_GT, - STATE(5952), 1, - aux_sym_type_arguments_repeat1, - STATE(7301), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5951), 4, + ACTIONS(5475), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6116), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161612] = 13, + [169852] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489206,27 +497088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9648), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7298), 1, - sym_type_argument_constraints, + ACTIONS(9653), 1, + sym_identifier, + STATE(5223), 1, + sym_member_signature, + STATE(6984), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5952), 4, + STATE(6117), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161656] = 12, + [169893] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489237,26 +497117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7091), 1, - sym_type_argument, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5953), 4, + ACTIONS(5246), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6118), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161698] = 13, + [169928] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489267,27 +497143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9650), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7662), 1, - sym_type_argument_constraints, + ACTIONS(9838), 1, + sym_identifier, + ACTIONS(9840), 1, + anon_sym_mutable, + STATE(8088), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5954), 4, + STATE(6119), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161742] = 13, + [169969] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489298,29 +497172,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9652), 1, - anon_sym_GT, - STATE(5954), 1, - aux_sym_type_arguments_repeat1, - STATE(7665), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5955), 4, + ACTIONS(5449), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6120), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161786] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [170004] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489331,26 +497198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(9420), 1, - anon_sym_LPAREN_PIPE, - STATE(3188), 1, - sym__identifier_or_op, - STATE(4348), 1, - sym_active_pattern, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9844), 1, + anon_sym_mutable, + STATE(8080), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9422), 2, - sym_op_identifier, - sym_identifier, - STATE(5956), 4, + STATE(6121), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161828] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [170045] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489361,24 +497227,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1506), 1, - anon_sym_LPAREN_PIPE, - STATE(2138), 1, - sym__identifier_or_op, - STATE(2242), 1, - sym_active_pattern, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2149), 2, - sym_op_identifier, - sym_identifier, - STATE(5957), 4, + ACTIONS(5437), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6122), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161870] = 13, + [170080] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489389,27 +497253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9654), 1, - anon_sym_GT, - STATE(5960), 1, - aux_sym_type_arguments_repeat1, - STATE(7271), 1, - sym_type_argument_constraints, + ACTIONS(9848), 1, + sym__indent, + ACTIONS(9850), 1, + sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5958), 4, + ACTIONS(9846), 2, + anon_sym_begin, + anon_sym_class, + STATE(6123), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161914] = 13, + [170119] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489420,27 +497281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9656), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7727), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5959), 4, + ACTIONS(5344), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6124), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161958] = 13, + [170154] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489451,27 +497307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9658), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7269), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5960), 4, + ACTIONS(5441), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6125), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162002] = 13, + [170189] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489482,27 +497333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9660), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7296), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5961), 4, + ACTIONS(5336), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6126), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162046] = 9, + [170224] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489513,23 +497359,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9852), 1, + sym_identifier, + ACTIONS(9854), 1, + anon_sym_global, + ACTIONS(9856), 1, + anon_sym_rec, + STATE(370), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5962), 4, + STATE(6127), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5209), 5, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - [162082] = 12, + [170265] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489540,26 +497388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9664), 1, - sym__indent, - ACTIONS(9666), 1, - sym__struct_begin, - ACTIONS(9668), 1, - sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9662), 2, - anon_sym_begin, - anon_sym_class, - STATE(5963), 4, + ACTIONS(5382), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6128), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162124] = 13, + [170300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489570,27 +497414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9670), 1, - anon_sym_GT, - STATE(5965), 1, - aux_sym_type_arguments_repeat1, - STATE(7235), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5964), 4, + ACTIONS(5398), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6129), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162168] = 13, + [170335] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489601,27 +497440,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9672), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7233), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7404), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5965), 4, + STATE(6130), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162212] = 13, + [170376] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489632,27 +497469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9674), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7737), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5966), 4, + ACTIONS(5410), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6131), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162256] = 13, + [170411] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489663,27 +497495,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9676), 1, - anon_sym_GT, - STATE(5940), 1, - aux_sym_type_arguments_repeat1, - STATE(7885), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5967), 4, + ACTIONS(5420), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6132), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162300] = 13, + [170446] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489694,27 +497521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9678), 1, - sym_identifier, - ACTIONS(9680), 1, - anon_sym_member, - STATE(2745), 1, - sym_member_signature, - STATE(6631), 1, - sym_access_modifier, + ACTIONS(7760), 1, + aux_sym_decimal_token1, + ACTIONS(7889), 1, + anon_sym_f, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5968), 4, + ACTIONS(2526), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6133), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162344] = 13, + [170485] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489725,27 +497549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9678), 1, + ACTIONS(9643), 1, sym_identifier, - ACTIONS(9682), 1, - anon_sym_member, - STATE(2747), 1, + STATE(5164), 1, sym_member_signature, - STATE(6546), 1, + STATE(6606), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5969), 4, + STATE(6134), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162388] = 13, + [170526] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489756,29 +497578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9684), 1, - anon_sym_GT, - STATE(5972), 1, - aux_sym_type_arguments_repeat1, - STATE(7220), 1, - sym_type_argument_constraints, + ACTIONS(9858), 1, + sym_identifier, + ACTIONS(9860), 1, + anon_sym_mutable, + STATE(8053), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5970), 4, + STATE(6135), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162432] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [170567] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489789,24 +497607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1012), 1, - anon_sym_LPAREN_PIPE, - STATE(2310), 1, - sym_active_pattern, - STATE(2406), 1, - sym__identifier_or_op, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9862), 1, + sym_identifier, + ACTIONS(9864), 1, + anon_sym_mutable, + STATE(8045), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2165), 2, - sym_op_identifier, - sym_identifier, - STATE(5971), 4, + STATE(6136), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162474] = 13, + [170608] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489817,27 +497636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9686), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7219), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7349), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5972), 4, + STATE(6137), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162518] = 13, + [170649] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489848,27 +497665,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9688), 1, - anon_sym_GT, - STATE(5974), 1, - aux_sym_type_arguments_repeat1, - STATE(7869), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5973), 4, + ACTIONS(5414), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6138), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162562] = 13, + [170684] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489879,27 +497691,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3167), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9690), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7862), 1, - sym_type_argument_constraints, + ACTIONS(9820), 1, + anon_sym_PIPE, + ACTIONS(9822), 1, + sym__newline, + STATE(6176), 1, + aux_sym_rules_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5974), 4, + STATE(6139), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162606] = 13, + [170725] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489910,27 +497720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9692), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7709), 1, - sym_type_argument_constraints, + ACTIONS(9866), 1, + sym_identifier, + ACTIONS(9868), 1, + anon_sym_mutable, + STATE(8023), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5975), 4, + STATE(6140), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162650] = 13, + [170766] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489941,29 +497749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3167), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9694), 1, - anon_sym_GT, - STATE(5961), 1, - aux_sym_type_arguments_repeat1, - STATE(7265), 1, - sym_type_argument_constraints, + ACTIONS(9820), 1, + anon_sym_PIPE, + ACTIONS(9822), 1, + sym__newline, + STATE(6178), 1, + aux_sym_rules_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5976), 4, + STATE(6141), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162694] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [170807] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -489974,24 +497778,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(740), 1, - anon_sym_LPAREN_PIPE, - STATE(1875), 1, - sym_active_pattern, - STATE(1928), 1, - sym__identifier_or_op, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9870), 1, + sym_identifier, + ACTIONS(9872), 1, + anon_sym_mutable, + STATE(8017), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2071), 2, - sym_op_identifier, - sym_identifier, - STATE(5977), 4, + STATE(6142), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162736] = 13, + [170848] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490002,27 +497807,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9614), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9696), 1, - anon_sym_member, - STATE(4369), 1, - sym_member_signature, - STATE(6570), 1, + ACTIONS(9876), 1, + anon_sym_mutable, + STATE(8009), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5978), 4, + STATE(6143), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162780] = 13, + [170889] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490033,27 +497836,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9698), 1, - anon_sym_GT, - STATE(5980), 1, - aux_sym_type_arguments_repeat1, - STATE(7206), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7290), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5979), 4, + STATE(6144), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162824] = 13, + [170930] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490064,29 +497865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9700), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7199), 1, - sym_type_argument_constraints, + ACTIONS(9878), 1, + sym_identifier, + ACTIONS(9880), 1, + anon_sym_mutable, + STATE(7981), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5980), 4, + STATE(6145), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162868] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [170971] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490097,24 +497894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(103), 1, - anon_sym_LPAREN_PIPE, - STATE(1069), 1, - sym_active_pattern, - STATE(1190), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9884), 1, + sym__indent, + ACTIONS(9886), 1, + sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(105), 2, - sym_op_identifier, - sym_identifier, - STATE(5981), 4, + ACTIONS(9882), 2, + anon_sym_begin, + anon_sym_class, + STATE(6146), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162910] = 13, + [171010] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490125,27 +497922,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9702), 1, - anon_sym_GT, - STATE(5975), 1, - aux_sym_type_arguments_repeat1, - STATE(7723), 1, - sym_type_argument_constraints, + ACTIONS(9643), 1, + sym_identifier, + STATE(5198), 1, + sym_member_signature, + STATE(6620), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5982), 4, + STATE(6147), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162954] = 12, + [171051] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490156,28 +497951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9706), 1, - sym__indent, - ACTIONS(9708), 1, - sym__struct_begin, - ACTIONS(9710), 1, - sym__interface_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9704), 2, - anon_sym_begin, - anon_sym_class, - STATE(5983), 4, + ACTIONS(5330), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6148), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162996] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [171086] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490188,24 +497977,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(303), 1, - anon_sym_LPAREN_PIPE, - STATE(1120), 1, - sym_active_pattern, - STATE(1183), 1, - sym__identifier_or_op, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2101), 2, - sym_op_identifier, - sym_identifier, - STATE(5984), 4, + ACTIONS(5194), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6149), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163038] = 13, + [171121] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490216,27 +498003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9712), 1, - anon_sym_GT, - STATE(5986), 1, - aux_sym_type_arguments_repeat1, - STATE(7194), 1, - sym_type_argument_constraints, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5985), 4, + ACTIONS(5176), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6150), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163082] = 13, + [171156] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490247,29 +498029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9714), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7182), 1, - sym_type_argument_constraints, + ACTIONS(9633), 1, + sym_identifier, + STATE(5106), 1, + sym_member_signature, + STATE(6706), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5986), 4, + STATE(6151), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163126] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [171197] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490280,26 +498058,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(501), 1, - anon_sym_LPAREN_PIPE, - STATE(1557), 1, - sym_active_pattern, - STATE(1583), 1, - sym__identifier_or_op, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9888), 1, + sym_identifier, + ACTIONS(9890), 1, + anon_sym_mutable, + STATE(7971), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2081), 2, - sym_op_identifier, - sym_identifier, - STATE(5987), 4, + STATE(6152), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163168] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [171238] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490310,24 +498087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4437), 1, - anon_sym_LPAREN_PIPE, - STATE(3521), 1, - sym_active_pattern, - STATE(3524), 1, - sym__identifier_or_op, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9892), 1, + sym_identifier, + ACTIONS(9894), 1, + anon_sym_mutable, + STATE(7957), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(4439), 2, - sym_op_identifier, - sym_identifier, - STATE(5988), 4, + STATE(6153), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163210] = 13, + [171279] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490338,27 +498116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9716), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7460), 1, - sym_type_argument_constraints, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7204), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5989), 4, + STATE(6154), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163254] = 13, + [171320] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490369,27 +498145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9596), 1, + ACTIONS(9896), 1, sym_identifier, - ACTIONS(9718), 1, - anon_sym_member, - STATE(5093), 1, - sym_member_signature, - STATE(6668), 1, + ACTIONS(9898), 1, + anon_sym_mutable, + STATE(7920), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5990), 4, + STATE(6155), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163298] = 13, + [171361] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490400,27 +498174,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9720), 1, - anon_sym_GT, - STATE(5992), 1, - aux_sym_type_arguments_repeat1, - STATE(7792), 1, - sym_type_argument_constraints, + ACTIONS(9581), 1, + sym_identifier, + STATE(4500), 1, + sym_member_signature, + STATE(6873), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5991), 4, + STATE(6156), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163342] = 13, + [171402] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490431,27 +498203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9496), 1, - anon_sym_COMMA, - ACTIONS(9500), 1, - anon_sym_when, - ACTIONS(9722), 1, - anon_sym_GT, - STATE(6056), 1, - aux_sym_type_arguments_repeat1, - STATE(7782), 1, - sym_type_argument_constraints, + ACTIONS(9902), 1, + sym__indent, + ACTIONS(9904), 1, + sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5992), 4, + ACTIONS(9900), 2, + anon_sym_begin, + anon_sym_class, + STATE(6157), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163386] = 12, + [171441] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490462,26 +498231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9410), 1, - anon_sym__, - STATE(5931), 1, - sym__static_type_identifier, - STATE(7181), 1, - sym_type_argument, + ACTIONS(9906), 1, + sym_identifier, + ACTIONS(9908), 1, + anon_sym_mutable, + STATE(7910), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5993), 4, + STATE(6158), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163428] = 13, + [171482] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490492,27 +498260,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(35), 1, - anon_sym_let, - ACTIONS(37), 1, - anon_sym_let_BANG, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - STATE(2762), 1, - sym_do, - STATE(2763), 1, - sym_function_or_value_defn, + ACTIONS(9910), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_mutable, + STATE(7893), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5994), 4, + STATE(6159), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163472] = 12, + [171523] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490523,25 +498289,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9678), 1, + ACTIONS(9801), 1, sym_identifier, - STATE(2745), 1, - sym_member_signature, - STATE(6631), 1, - sym_access_modifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7111), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5995), 4, + STATE(6160), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163513] = 12, + [171564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490552,25 +498318,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9724), 1, - sym_identifier, - ACTIONS(9726), 1, - anon_sym_global, - ACTIONS(9728), 1, - anon_sym_rec, - STATE(371), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5996), 4, + ACTIONS(5410), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + STATE(6161), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163554] = 12, + [171599] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490581,25 +498344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9730), 1, + ACTIONS(9914), 1, sym_identifier, - ACTIONS(9732), 1, + ACTIONS(9916), 1, anon_sym_mutable, - STATE(7877), 1, + STATE(7855), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5997), 4, + STATE(6162), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163595] = 9, + [171640] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490610,22 +498373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9816), 1, + anon_sym_static, + ACTIONS(9818), 1, + anon_sym_member, + ACTIONS(9918), 1, + anon_sym_new, + STATE(8171), 1, + sym_trait_member_constraint, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5367), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(5998), 4, + STATE(6163), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163630] = 12, + [171681] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490636,25 +498402,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7503), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(5999), 4, + ACTIONS(5303), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6164), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163671] = 9, + [171716] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490665,22 +498428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9653), 1, + sym_identifier, + STATE(5173), 1, + sym_member_signature, + STATE(7017), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5326), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6000), 4, + STATE(6165), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163706] = 9, + [171757] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490691,22 +498457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9920), 1, + sym_identifier, + ACTIONS(9922), 1, + anon_sym_mutable, + STATE(7720), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5308), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6001), 4, + STATE(6166), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163741] = 9, + [171798] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490717,22 +498486,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5304), 4, - sym__newline, - sym__dedent, + ACTIONS(5453), 4, anon_sym_LBRACK_LT, anon_sym_and, - STATE(6002), 4, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6167), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163776] = 9, + [171833] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490743,22 +498512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9926), 1, + sym__indent, + ACTIONS(9928), 1, + sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5300), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6003), 4, + ACTIONS(9924), 2, + anon_sym_begin, + anon_sym_class, + STATE(6168), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163811] = 9, + [171872] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490769,22 +498540,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9569), 1, + sym_identifier, + STATE(2758), 1, + sym_member_signature, + STATE(6693), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5371), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6004), 4, + STATE(6169), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163846] = 9, + [171913] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490795,22 +498569,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9930), 1, + sym_identifier, + ACTIONS(9932), 1, + anon_sym_mutable, + STATE(7844), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6005), 4, + STATE(6170), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163881] = 12, + [171954] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490821,25 +498598,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9552), 1, + ACTIONS(9934), 1, sym_identifier, - STATE(5122), 1, - sym_member_signature, - STATE(6830), 1, + ACTIONS(9936), 1, + anon_sym_mutable, + STATE(7827), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6006), 4, + STATE(6171), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163922] = 9, + [171995] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490850,22 +498627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7729), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5250), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6007), 4, + STATE(6172), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163957] = 9, + [172036] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490876,22 +498656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9581), 1, + sym_identifier, + STATE(4508), 1, + sym_member_signature, + STATE(6858), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5347), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6008), 4, + STATE(6173), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163992] = 9, + [172077] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490902,22 +498685,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(9938), 1, + sym__dedent, + STATE(5208), 1, + sym_interface_implementation, + STATE(6181), 1, + aux_sym__object_expression_inner_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5355), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6009), 4, + STATE(6174), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164027] = 9, + [172118] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490928,22 +498714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9801), 1, + sym_identifier, + STATE(6378), 1, + sym_field_initializer, + STATE(7670), 1, + sym_field_initializers, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5166), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6010), 4, + STATE(6175), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164062] = 9, + [172159] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490954,22 +498743,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3142), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9820), 1, + anon_sym_PIPE, + ACTIONS(9822), 1, + sym__newline, + STATE(6178), 1, + aux_sym_rules_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5319), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6011), 4, + STATE(6176), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164097] = 9, + [172200] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -490980,22 +498772,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9816), 1, + anon_sym_static, + ACTIONS(9818), 1, + anon_sym_member, + ACTIONS(9940), 1, + anon_sym_new, + STATE(7505), 1, + sym_trait_member_constraint, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5209), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - STATE(6012), 4, + STATE(6177), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164132] = 12, + [172241] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491006,25 +498801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3180), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7541), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(9942), 1, + anon_sym_PIPE, + ACTIONS(9945), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6013), 4, + STATE(6178), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164173] = 9, + aux_sym_rules_repeat1, + [172280] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491035,22 +498829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9948), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5229), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - STATE(6014), 4, + ACTIONS(9951), 2, + anon_sym_GT, + anon_sym_when, + STATE(6179), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164208] = 11, + aux_sym_type_arguments_repeat1, + [172317] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491061,24 +498856,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9736), 1, - ts_builtin_sym_end, - ACTIONS(9738), 1, - anon_sym_namespace, - STATE(6410), 1, - sym_namespace, + ACTIONS(9633), 1, + sym_identifier, + STATE(4955), 1, + sym_member_signature, + STATE(6667), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6015), 5, + STATE(6180), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_file_repeat1, - [164247] = 12, + [172358] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491089,25 +498885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9678), 1, - sym_identifier, - STATE(2784), 1, - sym_member_signature, - STATE(6709), 1, - sym_access_modifier, + ACTIONS(6811), 1, + anon_sym_interface, + ACTIONS(9953), 1, + sym__dedent, + STATE(4853), 1, + aux_sym__object_expression_inner_repeat1, + STATE(5208), 1, + sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6016), 4, + STATE(6181), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164288] = 9, + [172399] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491118,22 +498914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5215), 4, + ACTIONS(5226), 4, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_interface, anon_sym_POUNDendif, - STATE(6017), 4, + STATE(6182), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164323] = 12, + [172434] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491144,25 +498940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5190), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6746), 1, - anon_sym_interface, - STATE(4849), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5172), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6018), 4, + ACTIONS(5230), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + STATE(6183), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164364] = 9, + [172469] = 12, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491173,22 +498966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9955), 1, + sym_identifier, + ACTIONS(9957), 1, + anon_sym_mutable, + STATE(8058), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5296), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6019), 4, + STATE(6184), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164399] = 12, + [172510] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491199,25 +498995,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9741), 1, - sym_identifier, - ACTIONS(9743), 1, - anon_sym_mutable, - STATE(7939), 1, - sym_access_modifier, + STATE(3695), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6020), 4, + ACTIONS(6300), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6185), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164440] = 12, + [172546] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491228,25 +499021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9745), 1, - anon_sym_new, - ACTIONS(9747), 1, - anon_sym_static, - ACTIONS(9749), 1, - anon_sym_member, - STATE(7211), 1, - sym_trait_member_constraint, + STATE(3260), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6021), 4, + ACTIONS(6973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6186), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164481] = 9, + [172582] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491257,22 +499047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6381), 1, + anon_sym_GT, + ACTIONS(9959), 1, + anon_sym_and, + STATE(6226), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5351), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6022), 4, + STATE(6187), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164516] = 9, + [172620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491283,22 +499074,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5363), 4, - sym__newline, - sym__dedent, + ACTIONS(5297), 3, anon_sym_LBRACK_LT, anon_sym_and, - STATE(6023), 4, + anon_sym_POUNDendif, + STATE(6188), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164551] = 11, + [172654] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491309,24 +499099,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9753), 1, - sym__indent, - ACTIONS(9755), 1, - sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9751), 2, - anon_sym_begin, - anon_sym_class, - STATE(6024), 4, + ACTIONS(5194), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6189), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164590] = 12, + [172688] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491337,25 +499124,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9757), 1, - sym_identifier, - STATE(379), 1, - sym_long_identifier, - STATE(6539), 1, - sym_access_modifier, + ACTIONS(9961), 1, + sym__newline, + ACTIONS(9964), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6025), 4, + STATE(6190), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164631] = 9, + aux_sym__class_type_body_repeat1, + [172724] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491366,22 +499150,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9966), 1, + anon_sym_PIPE, + ACTIONS(9968), 1, + sym__dedent, + STATE(6228), 1, + aux_sym_enum_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5363), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6026), 4, + STATE(6191), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164666] = 9, + [172762] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491392,22 +499177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9970), 1, + anon_sym_RBRACK, + ACTIONS(9972), 1, + sym__indent, + STATE(7035), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5242), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6027), 4, + STATE(6192), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164701] = 9, + [172800] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491418,22 +499204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(9974), 1, + anon_sym_PIPE_RBRACK, + STATE(7034), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5246), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6028), 4, + STATE(6193), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164736] = 12, + [172838] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491444,25 +499231,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9759), 1, - sym_identifier, - ACTIONS(9761), 1, - anon_sym_mutable, - STATE(7867), 1, - sym_access_modifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(9976), 1, + anon_sym_COLON, + STATE(7280), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6029), 4, + STATE(6194), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164777] = 12, + [172876] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491473,25 +499258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9763), 1, - sym_identifier, - ACTIONS(9765), 1, - anon_sym_mutable, - STATE(7484), 1, - sym_access_modifier, + ACTIONS(9978), 1, + anon_sym_DASH_GT, + ACTIONS(9980), 1, + anon_sym_STAR, + STATE(6244), 1, + aux_sym_arguments_spec_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6030), 4, + STATE(6195), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164818] = 9, + [172914] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491502,22 +499285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9982), 1, + sym__newline, + ACTIONS(9985), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5359), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6031), 4, + STATE(6196), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164853] = 12, + aux_sym__module_body_repeat1, + [172950] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491528,25 +499311,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9767), 1, - sym_identifier, - ACTIONS(9769), 1, - anon_sym_mutable, - STATE(7853), 1, - sym_access_modifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(9987), 1, + anon_sym_COLON, + STATE(8063), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6032), 4, + STATE(6197), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164894] = 11, + [172988] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491557,24 +499338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9773), 1, - sym__indent, - ACTIONS(9775), 1, - sym__struct_begin, + STATE(4625), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9771), 2, - anon_sym_begin, - anon_sym_class, - STATE(6033), 4, + ACTIONS(7071), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6198), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164933] = 9, + [173024] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491585,22 +499364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5341), 4, + ACTIONS(3293), 3, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6034), 4, + anon_sym_PIPE, + STATE(6199), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164968] = 12, + [173058] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491611,25 +499389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9777), 1, - sym_identifier, - ACTIONS(9779), 1, - anon_sym_mutable, - STATE(7846), 1, - sym_access_modifier, + ACTIONS(9989), 1, + anon_sym_EQ, + ACTIONS(9991), 1, + anon_sym_as, + STATE(7517), 1, + sym_class_as_reference, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6035), 4, + STATE(6200), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165009] = 12, + [173096] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491640,25 +499418,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7218), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, - ACTIONS(3), 2, + ACTIONS(9083), 1, + sym__dedent, + ACTIONS(9993), 2, + sym__newline, anon_sym_SEMI, - sym_line_comment, - STATE(6036), 4, + STATE(6201), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165050] = 9, + aux_sym__list_pattern_content_repeat1, + [173132] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491669,22 +499444,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(5288), 4, - sym__newline, + ACTIONS(9996), 1, sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6037), 4, + STATE(6201), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(8745), 2, + sym__newline, + anon_sym_SEMI, + STATE(6202), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165085] = 9, + [173170] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491695,22 +499469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9998), 1, + sym_identifier, + STATE(7585), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5312), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6038), 4, + STATE(6203), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165120] = 9, + [173208] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491721,22 +499496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10000), 1, + anon_sym_PIPE, + ACTIONS(10002), 1, + anon_sym_PIPE_RPAREN, + STATE(6213), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5292), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6039), 4, + STATE(6204), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165155] = 12, + [173246] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491747,25 +499523,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7133), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(9991), 1, + anon_sym_as, + ACTIONS(10004), 1, + anon_sym_EQ, + STATE(7589), 1, + sym_class_as_reference, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6040), 4, + STATE(6205), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165196] = 9, + [173284] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491776,22 +499550,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9980), 1, + anon_sym_STAR, + ACTIONS(10006), 1, + anon_sym_DASH_GT, + STATE(6195), 1, + aux_sym_arguments_spec_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5330), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6041), 4, + STATE(6206), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165231] = 9, + [173322] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491802,22 +499577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10008), 1, + anon_sym_with, + ACTIONS(10010), 1, + anon_sym_finally, + ACTIONS(10012), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5292), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6042), 4, + STATE(6207), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165266] = 9, + [173360] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491828,22 +499604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10014), 1, + sym__newline, + ACTIONS(10016), 1, + sym__dedent, + STATE(6190), 1, + aux_sym__class_type_body_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5330), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6043), 4, + STATE(6208), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165301] = 9, + [173398] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491854,22 +499631,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9966), 1, + anon_sym_PIPE, + ACTIONS(10018), 1, + sym__dedent, + STATE(6191), 1, + aux_sym_enum_type_cases_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5359), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6044), 4, + STATE(6209), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165336] = 12, + [173436] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491880,25 +499658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7464), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(10020), 1, + anon_sym_COMMA, + ACTIONS(10023), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6045), 4, + STATE(6210), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165377] = 12, + aux_sym_type_attributes_repeat1, + [173472] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491909,25 +499684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9556), 1, - sym_identifier, - STATE(5079), 1, - sym_member_signature, - STATE(6462), 1, - sym_access_modifier, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_PIPE_RPAREN, + STATE(6229), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6046), 4, + STATE(6211), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165418] = 9, + [173510] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491938,22 +499711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10029), 1, + anon_sym_with, + ACTIONS(10031), 1, + anon_sym_finally, + ACTIONS(10033), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5312), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6047), 4, + STATE(6212), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165453] = 12, + [173548] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491964,25 +499738,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(9781), 1, - sym__dedent, - STATE(5172), 1, - sym_interface_implementation, - STATE(6111), 1, - aux_sym__object_expression_inner_repeat1, + ACTIONS(10035), 1, + anon_sym_PIPE, + ACTIONS(10037), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6048), 4, + STATE(6213), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165494] = 12, + [173586] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -491993,25 +499765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, + ACTIONS(10039), 1, sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7989), 1, + STATE(6699), 1, + sym_field_pattern, + STATE(8197), 1, sym_long_identifier, - STATE(7990), 1, - sym_field_initializers, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6049), 4, + STATE(6214), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165535] = 9, + [173624] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492022,22 +499792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6375), 1, + anon_sym_GT, + ACTIONS(9959), 1, + anon_sym_and, + STATE(6187), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5288), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6050), 4, + STATE(6215), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165570] = 9, + [173662] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492048,22 +499819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5341), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6051), 4, + ACTIONS(9951), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6216), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165605] = 12, + [173696] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492074,25 +499844,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9783), 1, - sym_identifier, - ACTIONS(9785), 1, - anon_sym_mutable, - STATE(7904), 1, - sym_access_modifier, + ACTIONS(10041), 1, + sym__newline, + ACTIONS(10044), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6052), 4, + STATE(6217), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165646] = 12, + aux_sym_record_fields_repeat1, + [173732] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492103,25 +499870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7436), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + STATE(1375), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6053), 4, + ACTIONS(7195), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6218), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165687] = 9, + [173768] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492132,22 +499896,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10046), 1, + sym__newline, + ACTIONS(10048), 1, + sym__dedent, + STATE(6196), 1, + aux_sym__module_body_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5246), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6054), 4, + STATE(6219), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165722] = 12, + [173806] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492158,25 +499923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9787), 1, - sym_identifier, - ACTIONS(9789), 1, - anon_sym_mutable, - STATE(7912), 1, - sym_access_modifier, + ACTIONS(8795), 1, + anon_sym_GT, + ACTIONS(10050), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6055), 4, + STATE(6220), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165763] = 10, + aux_sym_types_repeat1, + [173842] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492187,23 +499949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9791), 1, - anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9794), 2, - anon_sym_GT, - anon_sym_when, - STATE(6056), 5, + ACTIONS(3304), 3, + sym__newline, + sym__dedent, + anon_sym_PIPE, + STATE(6221), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_arguments_repeat1, - [165800] = 12, + [173876] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492214,25 +499974,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7425), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10053), 1, + anon_sym_PIPE_RBRACK, + STATE(7749), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6057), 4, + STATE(6222), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165841] = 12, + [173914] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492243,25 +500001,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3181), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9796), 1, - anon_sym_PIPE, - ACTIONS(9798), 1, - sym__newline, - STATE(6073), 1, - aux_sym_rules_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10055), 1, + anon_sym_RBRACK, + STATE(7753), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6058), 4, + STATE(6223), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165882] = 9, + [173952] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492272,22 +500028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5296), 4, + ACTIONS(3180), 3, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6059), 4, + anon_sym_PIPE, + STATE(6224), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165917] = 9, + [173986] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492298,22 +500053,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5242), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6060), 4, + ACTIONS(3260), 3, + sym__newline, + sym__dedent, + anon_sym_PIPE, + STATE(6225), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165952] = 12, + [174020] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492324,25 +500078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9800), 1, - sym_identifier, - ACTIONS(9802), 1, - anon_sym_mutable, - STATE(7817), 1, - sym_access_modifier, + ACTIONS(6389), 1, + anon_sym_GT, + ACTIONS(10057), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6061), 4, + STATE(6226), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165993] = 9, + aux_sym_type_argument_constraints_repeat1, + [174056] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492353,22 +500104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10060), 1, + sym__newline, + ACTIONS(10063), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5319), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6062), 4, + STATE(6227), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166028] = 9, + aux_sym_field_initializers_repeat1, + [174092] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492379,22 +500130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10065), 1, + anon_sym_PIPE, + ACTIONS(10068), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5355), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6063), 4, + STATE(6228), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166063] = 9, + aux_sym_enum_type_cases_repeat1, + [174128] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492405,22 +500156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10070), 1, + anon_sym_PIPE, + ACTIONS(10072), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5347), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6064), 4, + STATE(6229), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166098] = 12, + [174166] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492431,25 +500183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9747), 1, - anon_sym_static, - ACTIONS(9749), 1, - anon_sym_member, - ACTIONS(9804), 1, - anon_sym_new, - STATE(7003), 1, - sym_trait_member_constraint, + ACTIONS(10074), 1, + anon_sym_with, + ACTIONS(10076), 1, + anon_sym_finally, + ACTIONS(10078), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6065), 4, + STATE(6230), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166139] = 9, + [174204] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492460,22 +500210,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10080), 1, + anon_sym_COMMA, + ACTIONS(10083), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6066), 4, + STATE(6231), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166174] = 12, + aux_sym_slice_ranges_repeat1, + [174240] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492486,25 +500236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7384), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(10085), 1, + sym__newline, + ACTIONS(10088), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6067), 4, + STATE(6232), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166215] = 12, + aux_sym__list_elements_repeat1, + [174276] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492515,25 +500262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9596), 1, - sym_identifier, - STATE(4972), 1, - sym_member_signature, - STATE(6865), 1, - sym_access_modifier, + ACTIONS(10090), 1, + sym__newline, + ACTIONS(10092), 1, + sym__dedent, + STATE(6232), 1, + aux_sym__list_elements_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6068), 4, + STATE(6233), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166256] = 9, + [174314] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492544,22 +500291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(8747), 1, + sym__dedent, + STATE(6201), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(8745), 2, + sym__newline, anon_sym_SEMI, - sym_line_comment, - ACTIONS(5371), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6069), 4, + STATE(6234), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166291] = 9, + [174352] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492570,22 +500316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10094), 1, + anon_sym_POUNDendif, + ACTIONS(10096), 1, + anon_sym_POUNDelse, + STATE(7772), 1, + sym_preproc_else, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5300), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6070), 4, + STATE(6235), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166326] = 9, + [174390] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492596,22 +500343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10098), 1, + anon_sym_with, + ACTIONS(10100), 1, + anon_sym_finally, + ACTIONS(10102), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5304), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6071), 4, + STATE(6236), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166361] = 9, + [174428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492622,22 +500370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5308), 4, + ACTIONS(5469), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6072), 4, + STATE(6237), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166396] = 11, + [174462] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492648,24 +500395,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3221), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9806), 1, - anon_sym_PIPE, - ACTIONS(9809), 1, - sym__newline, + ACTIONS(9930), 1, + sym_identifier, + STATE(7844), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6073), 5, + STATE(6238), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_rules_repeat1, - [166435] = 9, + [174500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492676,22 +500422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5326), 4, + ACTIONS(5390), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6074), 4, + STATE(6239), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166470] = 12, + [174534] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492702,25 +500447,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9530), 1, - sym_identifier, - STATE(4534), 1, - sym_member_signature, - STATE(6955), 1, - sym_access_modifier, + ACTIONS(10104), 1, + anon_sym_with, + ACTIONS(10106), 1, + anon_sym_finally, + ACTIONS(10108), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6075), 4, + STATE(6240), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166511] = 12, + [174572] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492731,25 +500474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9614), 1, - sym_identifier, - STATE(4435), 1, - sym_member_signature, - STATE(6601), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6076), 4, + ACTIONS(5457), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6241), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166552] = 11, + [174606] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492760,24 +500499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9814), 1, - sym__indent, - ACTIONS(9816), 1, - sym__struct_begin, + STATE(3702), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9812), 2, - anon_sym_begin, - anon_sym_class, - STATE(6077), 4, + ACTIONS(6312), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6242), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166591] = 12, + [174642] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492788,25 +500525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9818), 1, + ACTIONS(9914), 1, sym_identifier, - ACTIONS(9820), 1, - anon_sym_mutable, - STATE(7986), 1, + STATE(7855), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6078), 4, + STATE(6243), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166632] = 12, + [174680] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492817,25 +500552,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9596), 1, - sym_identifier, - STATE(5016), 1, - sym_member_signature, - STATE(6781), 1, - sym_access_modifier, + ACTIONS(10110), 1, + anon_sym_DASH_GT, + ACTIONS(10112), 1, + anon_sym_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6079), 4, + STATE(6244), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166673] = 9, + aux_sym_arguments_spec_repeat1, + [174716] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492846,22 +500578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(4225), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5367), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6080), 4, + ACTIONS(6226), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6245), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166708] = 12, + [174752] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492872,25 +500604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9822), 1, - sym_identifier, - ACTIONS(9824), 1, - anon_sym_mutable, - STATE(7918), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6081), 4, + ACTIONS(5463), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6246), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166749] = 12, + [174786] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492901,25 +500629,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9826), 1, + ACTIONS(10115), 1, sym_identifier, - ACTIONS(9828), 1, - anon_sym_mutable, - STATE(7807), 1, + STATE(7858), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6082), 4, + STATE(6247), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166790] = 12, + [174824] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492930,25 +500656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9830), 1, + ACTIONS(9920), 1, sym_identifier, - ACTIONS(9832), 1, - anon_sym_mutable, - STATE(7652), 1, + STATE(7720), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6083), 4, + STATE(6248), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166831] = 12, + [174862] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492959,25 +500683,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9834), 1, - sym_identifier, - ACTIONS(9836), 1, - anon_sym_mutable, - STATE(7790), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6084), 4, + ACTIONS(5475), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6249), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166872] = 12, + [174896] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -492988,25 +500708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7041), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(10117), 1, + anon_sym_COLON, + STATE(7270), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6085), 4, + STATE(6250), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166913] = 9, + [174934] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493017,22 +500735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9991), 1, + anon_sym_as, + ACTIONS(10119), 1, + anon_sym_EQ, + STATE(7727), 1, + sym_class_as_reference, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3190), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(6086), 4, + STATE(6251), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166948] = 12, + [174972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493043,25 +500762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9556), 1, - sym_identifier, - STATE(5083), 1, - sym_member_signature, - STATE(6432), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6087), 4, + ACTIONS(5246), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6252), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166989] = 12, + [175006] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493072,25 +500787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3152), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9796), 1, - anon_sym_PIPE, - ACTIONS(9798), 1, - sym__newline, - STATE(6109), 1, - aux_sym_rules_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6088), 4, + ACTIONS(5449), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6253), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167030] = 12, + [175040] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493101,25 +500812,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9504), 1, - sym_identifier, - STATE(5169), 1, - sym_member_signature, - STATE(6667), 1, - sym_access_modifier, + STATE(1211), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6089), 4, + ACTIONS(7027), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6254), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167071] = 12, + [175076] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493130,25 +500838,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9838), 1, + ACTIONS(9906), 1, sym_identifier, - ACTIONS(9840), 1, - anon_sym_mutable, - STATE(7973), 1, + STATE(7910), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6090), 4, + STATE(6255), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167112] = 12, + [175114] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493159,25 +500865,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7330), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6091), 4, + ACTIONS(5437), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6256), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167153] = 9, + [175148] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493188,22 +500890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10014), 1, + sym__newline, + ACTIONS(10121), 1, + sym__dedent, + STATE(6208), 1, + aux_sym__class_type_body_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3132), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(6092), 4, + STATE(6257), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167188] = 12, + [175186] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493214,25 +500917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9504), 1, + ACTIONS(9896), 1, sym_identifier, - STATE(5125), 1, - sym_member_signature, - STATE(6572), 1, + STATE(7920), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6093), 4, + STATE(6258), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167229] = 12, + [175224] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493243,25 +500944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9552), 1, - sym_identifier, - STATE(5174), 1, - sym_member_signature, - STATE(6804), 1, - sym_access_modifier, + ACTIONS(10123), 1, + anon_sym_with, + ACTIONS(10125), 1, + anon_sym_finally, + ACTIONS(10127), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6094), 4, + STATE(6259), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167270] = 12, + [175262] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493272,25 +500971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9530), 1, - sym_identifier, - STATE(4485), 1, - sym_member_signature, - STATE(6925), 1, - sym_access_modifier, + STATE(1453), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6095), 4, + ACTIONS(7103), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6260), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167311] = 12, + [175298] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493301,25 +500997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9842), 1, + ACTIONS(10129), 1, sym_identifier, - ACTIONS(9844), 1, - anon_sym_mutable, - STATE(7753), 1, + STATE(7923), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6096), 4, + STATE(6261), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167352] = 9, + [175336] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493330,22 +501024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5166), 4, + ACTIONS(5317), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6097), 4, + STATE(6262), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167387] = 12, + [175370] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493356,25 +501049,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7008), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(10131), 1, + anon_sym_COMMA, + ACTIONS(10133), 1, + anon_sym_GT, + STATE(6210), 1, + aux_sym_type_attributes_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6098), 4, + STATE(6263), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167428] = 12, + [175408] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493385,25 +501076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9846), 1, - sym_identifier, - ACTIONS(9848), 1, - anon_sym_mutable, - STATE(7264), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6099), 4, + ACTIONS(5344), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6264), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167469] = 11, + [175442] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493414,24 +501101,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9852), 1, - sym__indent, - ACTIONS(9854), 1, - sym__struct_begin, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9850), 2, - anon_sym_begin, - anon_sym_class, - STATE(6100), 4, + ACTIONS(10135), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6265), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167508] = 12, + [175476] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493442,25 +501126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3204), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9796), 1, - anon_sym_PIPE, - ACTIONS(9798), 1, - sym__newline, - STATE(6058), 1, - aux_sym_rules_repeat1, + STATE(4219), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6101), 4, + ACTIONS(6263), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6266), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167549] = 12, + [175512] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493471,25 +501152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9747), 1, - anon_sym_static, - ACTIONS(9749), 1, - anon_sym_member, - ACTIONS(9856), 1, - anon_sym_new, - STATE(7998), 1, - sym_trait_member_constraint, + ACTIONS(8681), 1, + sym__dedent, + ACTIONS(10137), 1, + sym__newline, + STATE(6217), 1, + aux_sym_record_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6102), 4, + STATE(6267), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167590] = 9, + [175550] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493500,22 +501179,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10139), 1, + anon_sym_COMMA, + ACTIONS(10141), 1, + anon_sym_RBRACK, + STATE(6293), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5250), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - STATE(6103), 4, + STATE(6268), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167625] = 12, + [175588] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493526,25 +501206,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9858), 1, + ACTIONS(9888), 1, sym_identifier, - ACTIONS(9860), 1, - anon_sym_mutable, - STATE(7952), 1, + STATE(7971), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6104), 4, + STATE(6269), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167666] = 12, + [175626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493555,25 +501233,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9614), 1, - sym_identifier, - STATE(4445), 1, - sym_member_signature, - STATE(6615), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6105), 4, + ACTIONS(5441), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6270), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167707] = 12, + [175660] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493584,53 +501258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9862), 1, + ACTIONS(10143), 1, sym_identifier, - ACTIONS(9864), 1, - anon_sym_mutable, - STATE(7742), 1, + STATE(7764), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6106), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [167748] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6686), 1, - anon_sym_DOT, - STATE(3698), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - ACTIONS(2957), 2, - anon_sym_EQ, - anon_sym_of, - STATE(6107), 4, + STATE(6271), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167787] = 12, + [175698] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493641,25 +501285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6180), 1, - sym_field_initializer, - STATE(7276), 1, - sym_field_initializers, - STATE(7989), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6108), 4, + ACTIONS(5336), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6272), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167828] = 12, + [175732] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493670,25 +501310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3204), 1, + ACTIONS(918), 1, sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9796), 1, - anon_sym_PIPE, - ACTIONS(9798), 1, + ACTIONS(10046), 1, sym__newline, - STATE(6073), 1, - aux_sym_rules_repeat1, + STATE(6219), 1, + aux_sym__module_body_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6109), 4, + STATE(6273), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167869] = 12, + [175770] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493699,25 +501337,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9866), 1, + ACTIONS(9878), 1, sym_identifier, - ACTIONS(9868), 1, - anon_sym_mutable, - STATE(7725), 1, + STATE(7981), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6110), 4, + STATE(6274), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167910] = 12, + [175808] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493728,25 +501364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6746), 1, - anon_sym_interface, - ACTIONS(9870), 1, - sym__dedent, - STATE(4849), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5172), 1, - sym_interface_implementation, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6111), 4, + ACTIONS(5382), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6275), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167951] = 12, + [175842] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493757,25 +501389,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9872), 1, - sym_identifier, - ACTIONS(9874), 1, - anon_sym_mutable, - STATE(7981), 1, - sym_access_modifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10145), 1, + anon_sym_RBRACK, + STATE(7368), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6112), 4, + STATE(6276), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167992] = 12, + [175880] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493786,25 +501416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9876), 1, - sym_identifier, - ACTIONS(9878), 1, - anon_sym_mutable, - STATE(7947), 1, - sym_access_modifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10147), 1, + anon_sym_PIPE_RBRACK, + STATE(7371), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6113), 4, + STATE(6277), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168033] = 11, + [175918] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493815,24 +501443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7648), 1, - aux_sym_decimal_token1, - ACTIONS(7778), 1, - anon_sym_f, + ACTIONS(10149), 1, + sym_identifier, + STATE(7984), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2526), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6114), 4, + STATE(6278), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168072] = 12, + [175956] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493843,25 +501470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1960), 1, - ts_builtin_sym_end, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9880), 1, - anon_sym_namespace, - STATE(6015), 1, - aux_sym_file_repeat1, - STATE(6410), 1, - sym_namespace, + ACTIONS(8528), 1, + anon_sym_COMMA, + ACTIONS(10151), 1, + anon_sym_GT, + STATE(6220), 1, + aux_sym_types_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6115), 4, + STATE(6279), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168113] = 12, + [175994] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493872,25 +501497,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9882), 1, - sym_identifier, - STATE(383), 1, - sym_long_identifier, - STATE(6412), 1, - sym_access_modifier, + ACTIONS(10153), 1, + anon_sym_PIPE, + ACTIONS(10155), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6116), 4, + STATE(6280), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168154] = 9, + [176032] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493901,22 +501524,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(1285), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5351), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6117), 4, + ACTIONS(7081), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6281), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168189] = 12, + [176068] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493927,25 +501550,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9747), 1, - anon_sym_static, - ACTIONS(9749), 1, - anon_sym_member, - ACTIONS(9884), 1, - anon_sym_new, - STATE(7927), 1, - sym_trait_member_constraint, + ACTIONS(10096), 1, + anon_sym_POUNDelse, + ACTIONS(10157), 1, + anon_sym_POUNDendif, + STATE(7777), 1, + sym_preproc_else, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6118), 4, + STATE(6282), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168230] = 10, + [176106] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493956,22 +501577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9886), 1, - sym__newline, - ACTIONS(9889), 1, - sym__dedent, + ACTIONS(10039), 1, + sym_identifier, + STATE(6668), 1, + sym_field_pattern, + STATE(8197), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6119), 5, + STATE(6283), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_fields_repeat1, - [168266] = 11, + [176144] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -493982,23 +501604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9891), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9893), 1, - sym__indent, - STATE(7475), 1, - sym__list_element, + ACTIONS(10159), 1, + anon_sym_PIPE, + ACTIONS(10162), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6120), 4, + STATE(6284), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168304] = 9, + aux_sym_active_pattern_repeat1, + [176180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494009,21 +501630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5367), 3, + ACTIONS(5398), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - STATE(6121), 4, + STATE(6285), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168338] = 10, + [176214] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494034,22 +501655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(902), 1, - sym__static_type_identifier, + ACTIONS(9870), 1, + sym_identifier, + STATE(8017), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7247), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6122), 4, + STATE(6286), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168374] = 10, + [176252] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494060,22 +501682,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9895), 1, - anon_sym_DASH_GT, - ACTIONS(9897), 1, - anon_sym_STAR, + ACTIONS(10164), 1, + anon_sym_with, + ACTIONS(10166), 1, + anon_sym_finally, + ACTIONS(10168), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6123), 5, + STATE(6287), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_arguments_spec_repeat1, - [168410] = 11, + [176290] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494086,23 +501709,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9900), 1, + ACTIONS(9866), 1, sym_identifier, - STATE(7686), 1, + STATE(8023), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6124), 4, + STATE(6288), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168448] = 10, + [176328] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494113,22 +501736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1377), 1, - sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7199), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6125), 4, + ACTIONS(5410), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6289), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168484] = 10, + [176362] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494139,22 +501761,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1338), 1, - sym__static_type_identifier, + ACTIONS(10170), 1, + sym_identifier, + STATE(8025), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7215), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6126), 4, + STATE(6290), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168520] = 11, + [176400] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494165,23 +501788,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9902), 1, - anon_sym_POUNDendif, - ACTIONS(9904), 1, + ACTIONS(10096), 1, anon_sym_POUNDelse, - STATE(7310), 1, + ACTIONS(10172), 1, + anon_sym_POUNDendif, + STATE(7176), 1, sym_preproc_else, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6127), 4, + STATE(6291), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168558] = 11, + [176438] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494192,23 +501815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9876), 1, - sym_identifier, - STATE(7947), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6128), 4, + ACTIONS(5420), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6292), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168596] = 9, + [176472] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494219,21 +501840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10139), 1, + anon_sym_COMMA, + ACTIONS(10174), 1, + anon_sym_RBRACK, + STATE(6299), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5166), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6129), 4, + STATE(6293), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168630] = 10, + [176510] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494244,22 +501867,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9906), 1, - anon_sym_GT_RBRACK, - ACTIONS(9908), 1, - sym__newline, + STATE(4700), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6130), 5, + ACTIONS(7059), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6294), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__attribute_set_repeat1, - [168666] = 11, + [176546] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494270,23 +501893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9858), 1, - sym_identifier, - STATE(7952), 1, - sym_access_modifier, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_PIPE_RPAREN, + STATE(6313), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6131), 4, + STATE(6295), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168704] = 9, + [176584] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494297,21 +501920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10180), 1, + sym__newline, + ACTIONS(10182), 1, + sym__dedent, + STATE(6227), 1, + aux_sym_field_initializers_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5326), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6132), 4, + STATE(6296), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168738] = 10, + [176622] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494322,22 +501947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1397), 1, - sym__static_type_identifier, + ACTIONS(9801), 1, + sym_identifier, + STATE(6671), 1, + sym_field_initializer, + STATE(8178), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6133), 4, + STATE(6297), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168774] = 11, + [176660] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494348,23 +501974,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(7903), 1, - sym__list_element, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(10184), 1, + anon_sym_COLON, + STATE(7969), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6134), 4, + STATE(6298), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168812] = 9, + [176698] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494375,21 +502001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10083), 1, + anon_sym_RBRACK, + ACTIONS(10186), 1, + anon_sym_COMMA, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5308), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6135), 4, + STATE(6299), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168846] = 9, + aux_sym_slice_ranges_repeat1, + [176734] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494400,21 +502027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5304), 3, + ACTIONS(5414), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - STATE(6136), 4, + STATE(6300), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168880] = 9, + [176768] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494425,21 +502052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9858), 1, + sym_identifier, + STATE(8053), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5300), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6137), 4, + STATE(6301), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168914] = 9, + [176806] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494450,21 +502079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(1396), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5371), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6138), 4, + ACTIONS(7208), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6302), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168948] = 10, + [176842] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494475,22 +502105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(2987), 1, - sym__static_type_identifier, + ACTIONS(10174), 1, + sym__dedent, + ACTIONS(10189), 1, + anon_sym_COMMA, + STATE(6231), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7103), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6139), 4, + STATE(6303), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168984] = 11, + [176880] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494501,23 +502132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(880), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9913), 1, - anon_sym_with, - ACTIONS(9915), 1, - anon_sym_finally, - ACTIONS(9917), 1, + ACTIONS(10090), 1, sym__newline, + STATE(6232), 1, + aux_sym__list_elements_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6140), 4, + STATE(6304), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169022] = 11, + [176918] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494528,23 +502159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9919), 1, - anon_sym_PIPE_RBRACK, - STATE(7902), 1, - sym__list_element, + ACTIONS(9955), 1, + sym_identifier, + STATE(8058), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6141), 4, + STATE(6305), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169060] = 11, + [176956] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494555,23 +502186,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9921), 1, - anon_sym_PIPE, - ACTIONS(9923), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + STATE(4706), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6142), 4, + ACTIONS(6941), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6306), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169098] = 11, + [176992] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494582,23 +502212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9925), 1, - sym_identifier, - STATE(7954), 1, - sym_access_modifier, + ACTIONS(10191), 1, + anon_sym_PIPE, + ACTIONS(10193), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6143), 4, + STATE(6307), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169136] = 9, + [177030] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494609,21 +502239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10195), 1, + sym_identifier, + STATE(8060), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9794), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(6144), 4, + STATE(6308), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169170] = 11, + [177068] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494634,23 +502266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9927), 1, - anon_sym_PIPE, - ACTIONS(9929), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10039), 1, + sym_identifier, + STATE(7799), 1, + sym_field_pattern, + STATE(8197), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6145), 4, + STATE(6309), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169208] = 9, + [177106] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494661,21 +502293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(2991), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3167), 3, - sym__newline, - anon_sym_with, - anon_sym_finally, - STATE(6146), 4, + ACTIONS(6759), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6310), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169242] = 11, + [177142] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494686,23 +502319,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9931), 1, - anon_sym_RBRACK, - STATE(7555), 1, - sym__list_element, + ACTIONS(10197), 1, + anon_sym_with, + ACTIONS(10199), 1, + anon_sym_finally, + ACTIONS(10201), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6147), 4, + STATE(6311), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169280] = 11, + [177180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494713,23 +502346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9933), 1, - anon_sym_PIPE_RBRACK, - STATE(7556), 1, - sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6148), 4, + ACTIONS(5330), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6312), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169318] = 11, + [177214] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494740,23 +502371,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9935), 1, - sym_identifier, - STATE(7920), 1, - sym_access_modifier, + ACTIONS(10203), 1, + anon_sym_PIPE, + ACTIONS(10205), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6149), 4, + STATE(6313), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169356] = 9, + [177252] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494767,21 +502398,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10207), 1, + anon_sym_PIPE, + ACTIONS(10209), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5347), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6150), 4, + STATE(6314), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169390] = 9, + [177290] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494792,21 +502425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10211), 1, + anon_sym_PIPE, + ACTIONS(10213), 1, + anon_sym_PIPE_RPAREN, + STATE(6280), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9937), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(6151), 4, + STATE(6315), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169424] = 10, + [177328] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494817,22 +502452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(2974), 1, + STATE(3259), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6812), 2, + ACTIONS(6983), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6152), 4, + STATE(6316), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169460] = 10, + [177364] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494843,22 +502478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3234), 1, - sym__static_type_identifier, + ACTIONS(10215), 1, + anon_sym_PIPE, + ACTIONS(10217), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7142), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6153), 4, + STATE(6317), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169496] = 11, + [177402] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494869,23 +502505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9939), 1, - sym__newline, - ACTIONS(9941), 1, - sym__dedent, - STATE(6343), 1, - aux_sym__module_body_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6154), 4, + ACTIONS(3219), 3, + sym__newline, + anon_sym_with, + anon_sym_finally, + STATE(6318), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169534] = 11, + [177436] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494896,23 +502530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(9943), 1, - anon_sym_COLON, - STATE(7741), 1, - sym_type_arguments, + ACTIONS(9838), 1, + sym_identifier, + STATE(8088), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6155), 4, + STATE(6319), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169572] = 9, + [177474] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494923,21 +502557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9830), 1, + sym_identifier, + STATE(7850), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5319), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6156), 4, + STATE(6320), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169606] = 10, + [177512] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494948,22 +502584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5727), 1, + STATE(3047), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8822), 2, + ACTIONS(6890), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6157), 4, + STATE(6321), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169642] = 11, + [177548] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -494974,23 +502610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6270), 1, - anon_sym_GT, - ACTIONS(9945), 1, - anon_sym_and, - STATE(6337), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(10219), 1, + anon_sym_COLON, + STATE(7840), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6158), 4, + STATE(6322), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169680] = 11, + [177586] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495001,23 +502637,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9872), 1, + ACTIONS(9834), 1, sym_identifier, - STATE(7981), 1, + STATE(8093), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6159), 4, + STATE(6323), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169718] = 10, + [177624] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495028,22 +502664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8854), 1, - anon_sym_GT, - ACTIONS(9947), 1, - anon_sym_COMMA, + ACTIONS(7774), 1, + anon_sym_LT2, + ACTIONS(10221), 1, + anon_sym_COLON, + STATE(8366), 1, + sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6160), 5, + STATE(6324), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_types_repeat1, - [169754] = 11, + [177662] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495054,23 +502691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9950), 1, - anon_sym_PIPE, - ACTIONS(9952), 1, - anon_sym_PIPE_RPAREN, - STATE(6142), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10223), 1, + anon_sym_RBRACK, + STATE(8114), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6161), 4, + STATE(6325), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169792] = 11, + [177700] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495081,23 +502718,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9822), 1, - sym_identifier, - STATE(7918), 1, - sym_access_modifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10225), 1, + anon_sym_PIPE_RBRACK, + STATE(8115), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6162), 4, + STATE(6326), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169830] = 11, + [177738] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495108,23 +502745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9818), 1, - sym_identifier, - STATE(7986), 1, - sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6163), 4, + ACTIONS(5176), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6327), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169868] = 10, + [177772] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495135,22 +502770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3235), 1, - sym__static_type_identifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10227), 1, + anon_sym_RBRACK, + STATE(7257), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7150), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6164), 4, + STATE(6328), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169904] = 9, + [177810] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495161,21 +502797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(1455), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5363), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6165), 4, + ACTIONS(7166), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6329), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169938] = 11, + [177846] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495186,23 +502823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9954), 1, - anon_sym_PIPE, - ACTIONS(9956), 1, - anon_sym_PIPE_RPAREN, - STATE(6184), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10229), 1, + anon_sym_GT_RBRACK, + ACTIONS(10231), 1, + sym__newline, + STATE(6386), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6166), 4, + STATE(6330), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169976] = 9, + [177884] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495213,21 +502850,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(2459), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5242), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6167), 4, + ACTIONS(6210), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6331), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170010] = 9, + [177920] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495238,21 +502876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10233), 1, + anon_sym_RBRACK, + ACTIONS(10235), 1, + sym__indent, + STATE(8165), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5246), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6168), 4, + STATE(6332), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170044] = 11, + [177958] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495263,23 +502903,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9958), 1, - anon_sym_GT_RBRACK, - ACTIONS(9960), 1, - sym__newline, - STATE(6240), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10237), 1, + anon_sym_PIPE_RBRACK, + STATE(7266), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6169), 4, + STATE(6333), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170082] = 10, + [177996] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495290,22 +502930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9962), 1, - sym__newline, - ACTIONS(9965), 1, - sym__dedent, + STATE(1308), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6170), 5, + ACTIONS(7154), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6334), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__class_type_body_repeat1, - [170118] = 11, + [178032] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495316,23 +502956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9967), 1, - anon_sym_COMMA, - ACTIONS(9969), 1, - anon_sym_GT, - STATE(6326), 1, - aux_sym_type_attributes_repeat1, + ACTIONS(10239), 1, + sym_identifier, + STATE(8095), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6171), 4, + STATE(6335), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170156] = 11, + [178070] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495343,23 +502983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9971), 1, - anon_sym_RBRACK, - ACTIONS(9973), 1, + ACTIONS(9972), 1, sym__indent, - STATE(7852), 1, - sym__list_pattern_content, + ACTIONS(10241), 1, + anon_sym_PIPE_RBRACK, + STATE(7063), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6172), 4, + STATE(6336), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170194] = 10, + [178108] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495370,22 +503010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1415), 1, - sym__static_type_identifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10243), 1, + anon_sym_PIPE_RBRACK, + STATE(8057), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7257), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6173), 4, + STATE(6337), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170230] = 9, + [178146] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495396,21 +503037,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10245), 1, + anon_sym_RBRACK, + STATE(7143), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5341), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6174), 4, + STATE(6338), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170264] = 9, + [178184] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495421,21 +503064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10247), 1, + anon_sym_with, + ACTIONS(10249), 1, + anon_sym_finally, + ACTIONS(10251), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3221), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(6175), 4, + STATE(6339), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170298] = 11, + [178222] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495446,23 +503091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9975), 1, - sym_identifier, - STATE(7988), 1, - sym_access_modifier, + STATE(1441), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6176), 4, + ACTIONS(7047), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6340), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170336] = 9, + [178258] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495473,21 +503117,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10253), 1, + anon_sym_PIPE, + ACTIONS(10255), 1, + anon_sym_PIPE_RPAREN, + STATE(6307), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3310), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(6177), 4, + STATE(6341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170370] = 11, + [178296] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495498,23 +503144,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, + ACTIONS(9972), 1, sym__indent, - ACTIONS(9977), 1, - anon_sym_PIPE_RBRACK, - STATE(7851), 1, - sym__list_pattern_content, + ACTIONS(10257), 1, + anon_sym_RBRACK, + STATE(7628), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6178), 4, + STATE(6342), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170408] = 9, + [178334] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495525,21 +503171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10259), 1, + anon_sym_PIPE_RBRACK, + STATE(7647), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5288), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6179), 4, + STATE(6343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170442] = 11, + [178372] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495550,23 +503198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9979), 1, + ACTIONS(10231), 1, sym__newline, - ACTIONS(9981), 1, - sym__dedent, - STATE(6325), 1, - aux_sym_field_initializers_repeat1, + ACTIONS(10261), 1, + anon_sym_GT_RBRACK, + STATE(6352), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6180), 4, + STATE(6344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170480] = 10, + [178410] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495577,22 +503225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4611), 1, - sym__static_type_identifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10263), 1, + anon_sym_RBRACK, + STATE(7693), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7069), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6181), 4, + STATE(6345), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170516] = 11, + [178448] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495603,23 +503252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9787), 1, - sym_identifier, - STATE(7912), 1, - sym_access_modifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10265), 1, + anon_sym_PIPE_RBRACK, + STATE(7698), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6182), 4, + STATE(6346), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170554] = 9, + [178486] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495630,21 +503279,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9991), 1, + anon_sym_as, + ACTIONS(10267), 1, + anon_sym_EQ, + STATE(7882), 1, + sym_class_as_reference, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5312), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6183), 4, + STATE(6347), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170588] = 11, + [178524] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495655,23 +503306,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9983), 1, - anon_sym_PIPE, - ACTIONS(9985), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10131), 1, + anon_sym_COMMA, + ACTIONS(10269), 1, + anon_sym_GT, + STATE(6263), 1, + aux_sym_type_attributes_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6184), 4, + STATE(6348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170626] = 11, + [178562] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495682,23 +503333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9987), 1, - anon_sym_COMMA, - ACTIONS(9989), 1, - sym__dedent, - STATE(6318), 1, - aux_sym_slice_ranges_repeat1, + STATE(5761), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6185), 4, + ACTIONS(8890), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170664] = 9, + [178598] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495709,21 +503359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10271), 1, + anon_sym_PIPE, + ACTIONS(10273), 1, + anon_sym_PIPE_RPAREN, + STATE(6365), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5292), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6186), 4, + STATE(6350), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170698] = 9, + [178636] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495734,21 +503386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10039), 1, + sym_identifier, + STATE(6523), 1, + sym_field_pattern, + STATE(8197), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5330), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6187), 4, + STATE(6351), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170732] = 10, + [178674] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495759,22 +503413,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4638), 1, - sym__static_type_identifier, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10275), 1, + anon_sym_GT_RBRACK, + STATE(6359), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7178), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6188), 4, + STATE(6352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170768] = 11, + [178712] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495785,23 +503440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9991), 1, - anon_sym_PIPE_RBRACK, - STATE(7355), 1, - sym__list_element, + ACTIONS(10277), 1, + anon_sym_PIPE, + ACTIONS(10279), 1, + anon_sym_PIPE_RPAREN, + STATE(6384), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6189), 4, + STATE(6353), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170806] = 11, + [178750] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495812,23 +503467,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9993), 1, - anon_sym_RBRACK, - STATE(8006), 1, - sym__list_element, + STATE(4862), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6190), 4, + ACTIONS(5262), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6354), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170844] = 11, + [178786] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495839,23 +503493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9995), 1, + ACTIONS(10281), 1, anon_sym_PIPE, - ACTIONS(9997), 1, + ACTIONS(10283), 1, anon_sym_PIPE_RPAREN, - STATE(6352), 1, + STATE(6284), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6191), 4, + STATE(6355), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170882] = 11, + [178824] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495866,23 +503520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(9999), 1, - anon_sym_RBRACK, - STATE(7351), 1, - sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6192), 4, + ACTIONS(10285), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170920] = 9, + [178858] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495893,21 +503545,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10287), 1, + anon_sym_RBRACK, + STATE(7744), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5351), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6193), 4, + STATE(6357), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170954] = 10, + [178896] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495918,22 +503572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10001), 1, - anon_sym_COMMA, - ACTIONS(10004), 1, - anon_sym_GT, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10289), 1, + anon_sym_PIPE_RBRACK, + STATE(7748), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6194), 5, + STATE(6358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_attributes_repeat1, - [170990] = 10, + [178934] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495944,22 +503599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10006), 1, + ACTIONS(10291), 1, + anon_sym_GT_RBRACK, + ACTIONS(10293), 1, sym__newline, - ACTIONS(10009), 1, - sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6195), 5, + STATE(6359), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_field_initializers_repeat1, - [171026] = 10, + aux_sym__attribute_set_repeat1, + [178970] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495970,22 +503625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4677), 1, - sym__static_type_identifier, + ACTIONS(10296), 1, + sym__newline, + ACTIONS(10298), 1, + sym__dedent, + STATE(6267), 1, + aux_sym_record_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7188), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6196), 4, + STATE(6360), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171062] = 11, + [179008] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -495996,23 +503652,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(10011), 1, - anon_sym_COLON, - STATE(8136), 1, - sym_type_arguments, + STATE(4737), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6197), 4, + ACTIONS(8619), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171100] = 9, + [179044] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496023,21 +503678,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + STATE(4630), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5359), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6198), 4, + ACTIONS(7115), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6362), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171134] = 10, + [179080] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496048,22 +503704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4592), 1, - sym__static_type_identifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10300), 1, + anon_sym_RBRACK, + STATE(7221), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7079), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6199), 4, + STATE(6363), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171170] = 11, + [179118] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496074,23 +503731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10013), 1, - anon_sym_PIPE_RBRACK, - STATE(8208), 1, - sym__list_element, + ACTIONS(9826), 1, + sym_identifier, + STATE(7960), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6200), 4, + STATE(6364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171208] = 9, + [179156] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496101,21 +503758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10302), 1, + anon_sym_PIPE, + ACTIONS(10304), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5355), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6201), 4, + STATE(6365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171242] = 11, + [179194] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496126,23 +503785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10015), 1, - anon_sym_with, - ACTIONS(10017), 1, - anon_sym_finally, - ACTIONS(10019), 1, - sym__newline, + ACTIONS(10306), 1, + sym_identifier, + STATE(7976), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6202), 4, + STATE(6366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171280] = 11, + [179232] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496153,23 +503812,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10021), 1, - anon_sym_PIPE, - ACTIONS(10023), 1, - sym__dedent, - STATE(6336), 1, - aux_sym_enum_type_cases_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10308), 1, + anon_sym_PIPE_RBRACK, + STATE(7234), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6203), 4, + STATE(6367), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171318] = 10, + [179270] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496180,22 +503839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10025), 1, - anon_sym_COMMA, - ACTIONS(10028), 1, - sym__dedent, + STATE(4591), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6204), 5, + ACTIONS(7093), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6368), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [171354] = 11, + [179306] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496206,23 +503865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10030), 1, - anon_sym_EQ, - ACTIONS(10032), 1, - anon_sym_as, - STATE(7663), 1, - sym_class_as_reference, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10310), 1, + anon_sym_PIPE_RBRACK, + STATE(8124), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6205), 4, + STATE(6369), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171392] = 10, + [179344] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496233,22 +503892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1301), 1, - sym__static_type_identifier, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10312), 1, + anon_sym_RBRACK, + STATE(8126), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7239), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6206), 4, + STATE(6370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171428] = 10, + [179382] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496259,22 +503919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3874), 1, + STATE(882), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6316), 2, + ACTIONS(7017), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6207), 4, + STATE(6371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171464] = 11, + [179418] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496285,23 +503945,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8638), 1, - sym__dedent, - ACTIONS(10034), 1, - sym__newline, - STATE(6119), 1, - aux_sym_record_fields_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6208), 4, + ACTIONS(5303), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171502] = 11, + [179452] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496312,23 +503970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, - sym_identifier, - STATE(7205), 1, - sym_access_modifier, + ACTIONS(10314), 1, + anon_sym_PIPE, + ACTIONS(10316), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6209), 4, + STATE(6373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171540] = 11, + [179490] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496339,23 +503997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10038), 1, - anon_sym_with, - ACTIONS(10040), 1, - anon_sym_finally, - ACTIONS(10042), 1, + ACTIONS(10231), 1, sym__newline, + ACTIONS(10318), 1, + anon_sym_GT_RBRACK, + STATE(6359), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6210), 4, + STATE(6374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171578] = 10, + [179528] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496366,22 +504024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10044), 1, - sym__newline, - ACTIONS(10047), 1, - sym__dedent, + ACTIONS(10320), 1, + anon_sym_PIPE, + ACTIONS(10322), 1, + anon_sym_PIPE_RPAREN, + STATE(6392), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6211), 5, + STATE(6375), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__list_elements_repeat1, - [171614] = 9, + [179566] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496392,21 +504051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10324), 1, + anon_sym_PIPE, + ACTIONS(10326), 1, + anon_sym_PIPE_RPAREN, + STATE(6314), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5296), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6212), 4, + STATE(6376), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171648] = 10, + [179604] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496417,22 +504078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1437), 1, - sym__static_type_identifier, + ACTIONS(10328), 1, + anon_sym_PIPE, + ACTIONS(10330), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7277), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6213), 4, + STATE(6377), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171684] = 10, + [179642] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496443,22 +504105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1221), 1, - sym__static_type_identifier, + ACTIONS(10180), 1, + sym__newline, + ACTIONS(10332), 1, + sym__dedent, + STATE(6296), 1, + aux_sym_field_initializers_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7285), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6214), 4, + STATE(6378), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171720] = 11, + [179680] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496469,23 +504132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10049), 1, - anon_sym_PIPE, - ACTIONS(10051), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10141), 1, + sym__dedent, + ACTIONS(10189), 1, + anon_sym_COMMA, + STATE(6303), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6215), 4, + STATE(6379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171758] = 9, + [179718] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496496,21 +504159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10334), 1, + anon_sym_with, + ACTIONS(10336), 1, + anon_sym_finally, + ACTIONS(10338), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5250), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6216), 4, + STATE(6380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171792] = 10, + [179756] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496521,22 +504186,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10053), 1, - anon_sym_PIPE, - ACTIONS(10056), 1, - sym__dedent, + STATE(3096), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6217), 5, + ACTIONS(6880), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6381), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_enum_type_cases_repeat1, - [171828] = 10, + [179792] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496547,22 +504212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3518), 1, + STATE(4689), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8888), 2, + ACTIONS(7178), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6218), 4, + STATE(6382), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171864] = 10, + [179828] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496573,22 +504238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3667), 1, - sym__static_type_identifier, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10340), 1, + anon_sym_GT_RBRACK, + STATE(6359), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6219), 4, + STATE(6383), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171900] = 11, + [179866] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496599,23 +504265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10342), 1, anon_sym_PIPE, - ACTIONS(10060), 1, + ACTIONS(10344), 1, anon_sym_PIPE_RPAREN, - STATE(6215), 1, + STATE(6284), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6220), 4, + STATE(6384), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171938] = 11, + [179904] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496626,23 +504292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__newline, - ACTIONS(10064), 1, - sym__dedent, - STATE(6211), 1, - aux_sym__list_elements_repeat1, + STATE(3537), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6221), 4, + ACTIONS(8587), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171976] = 9, + [179940] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496653,21 +504318,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10346), 1, + anon_sym_GT_RBRACK, + STATE(6359), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5190), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6222), 4, + STATE(6386), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172010] = 11, + [179978] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496678,23 +504345,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10066), 1, - anon_sym_RBRACK, - STATE(7480), 1, - sym__list_element, + ACTIONS(10348), 1, + anon_sym_PIPE, + ACTIONS(10350), 1, + anon_sym_PIPE_RPAREN, + STATE(6377), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6223), 4, + STATE(6387), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172048] = 11, + [180016] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496705,25 +504372,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10068), 1, + ACTIONS(10352), 1, anon_sym_PIPE, - ACTIONS(10070), 1, + ACTIONS(10354), 1, anon_sym_PIPE_RPAREN, - STATE(6352), 1, + STATE(6373), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6224), 4, + STATE(6388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172086] = 11, - ACTIONS(3), 1, - sym_line_comment, + [180054] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496734,21 +504399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8832), 1, - sym__dedent, - STATE(6354), 1, - aux_sym__list_pattern_content_repeat1, - ACTIONS(8541), 2, - sym__newline, + STATE(2996), 1, + sym__static_type_identifier, + ACTIONS(3), 2, anon_sym_SEMI, - STATE(6225), 4, + sym_line_comment, + ACTIONS(6011), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172124] = 11, + [180090] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496759,23 +504425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_PIPE_RPAREN, - STATE(6283), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10356), 1, + anon_sym_GT_RBRACK, + STATE(6359), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6226), 4, + STATE(6390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172162] = 10, + [180128] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496786,22 +504452,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4204), 1, - sym__static_type_identifier, + ACTIONS(10358), 1, + sym_identifier, + STATE(8224), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6227), 4, + STATE(6391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172198] = 10, + [180166] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496812,22 +504479,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3697), 1, - sym__static_type_identifier, + ACTIONS(10360), 1, + anon_sym_PIPE, + ACTIONS(10362), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6228), 4, + STATE(6392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172234] = 11, + [180204] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496838,23 +504506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10076), 1, - anon_sym_PIPE, - ACTIONS(10078), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10364), 1, + sym_identifier, + STATE(8231), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6229), 4, + STATE(6393), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172272] = 11, + [180242] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496865,23 +504533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10080), 1, - anon_sym_RBRACK, - STATE(7791), 1, - sym__list_element, + ACTIONS(10366), 1, + anon_sym_PIPE, + ACTIONS(10368), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6230), 4, + STATE(6394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172310] = 11, + [180280] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496892,23 +504560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10082), 1, - anon_sym_PIPE_RBRACK, - STATE(7805), 1, - sym__list_element, + ACTIONS(10096), 1, + anon_sym_POUNDelse, + ACTIONS(10370), 1, + anon_sym_POUNDendif, + STATE(8102), 1, + sym_preproc_else, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6231), 4, + STATE(6395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172348] = 10, + [180318] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496919,22 +504587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4509), 1, + STATE(4193), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7160), 2, + ACTIONS(6284), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6232), 4, + STATE(6396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172384] = 11, + [180354] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496945,23 +504613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10084), 1, + ACTIONS(10372), 1, sym_identifier, - STATE(7880), 1, + STATE(8246), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6233), 4, + STATE(6397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172422] = 11, + [180392] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496972,23 +504640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10086), 1, + ACTIONS(10374), 1, anon_sym_PIPE, - ACTIONS(10088), 1, + ACTIONS(10376), 1, anon_sym_PIPE_RPAREN, - STATE(6224), 1, + STATE(6394), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6234), 4, + STATE(6398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172460] = 10, + [180430] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -496999,22 +504667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4909), 1, - sym__static_type_identifier, + ACTIONS(10378), 1, + sym_identifier, + STATE(8251), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5445), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6235), 4, + STATE(6399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172496] = 11, + [180468] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497025,23 +504694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10090), 1, - anon_sym_GT_RBRACK, - STATE(6130), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10380), 1, + sym_identifier, + STATE(8147), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6236), 4, + STATE(6400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172534] = 11, + [180506] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497052,23 +504721,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(10092), 1, - anon_sym_COLON, - STATE(7290), 1, - sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6237), 4, + ACTIONS(5453), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172572] = 11, + [180540] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497079,23 +504746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(6550), 1, - sym_field_pattern, - STATE(8019), 1, - sym_long_identifier, + ACTIONS(10382), 1, + anon_sym_PIPE, + ACTIONS(10384), 1, + anon_sym_PIPE_RPAREN, + STATE(6355), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6238), 4, + STATE(6402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172610] = 11, + [180578] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497106,23 +504773,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, + ACTIONS(4715), 1, aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9730), 1, + ACTIONS(10386), 1, sym_identifier, - STATE(7877), 1, + STATE(8266), 1, sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6239), 4, + STATE(6403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172648] = 11, + [180616] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497133,23 +504800,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10096), 1, - anon_sym_GT_RBRACK, - STATE(6130), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10388), 1, + anon_sym_PIPE, + ACTIONS(10390), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6240), 4, + STATE(6404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172686] = 11, + [180654] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497160,23 +504827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10098), 1, - anon_sym_PIPE, - ACTIONS(10100), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + STATE(5455), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6241), 4, + ACTIONS(8657), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172724] = 10, + [180690] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497187,22 +504853,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(2955), 1, - sym__static_type_identifier, + ACTIONS(10392), 1, + anon_sym_PIPE, + ACTIONS(10394), 1, + anon_sym_PIPE_RPAREN, + STATE(6404), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6211), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6242), 4, + STATE(6406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172760] = 11, + [180728] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497213,23 +504880,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4715), 1, + aux_sym_access_modifier_token1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, + ACTIONS(10396), 1, sym_identifier, - STATE(6583), 1, - sym_field_pattern, - STATE(8019), 1, - sym_long_identifier, + STATE(8271), 1, + sym_access_modifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6243), 4, + STATE(6407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172798] = 10, + [180766] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497240,22 +504907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3858), 1, + STATE(4565), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6360), 2, + ACTIONS(6902), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6244), 4, + STATE(6408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172834] = 11, + [180802] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497266,23 +504933,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10102), 1, - anon_sym_GT_RBRACK, - STATE(6130), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10398), 1, + anon_sym_PIPE, + ACTIONS(10400), 1, + anon_sym_PIPE_RPAREN, + STATE(6317), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6245), 4, + STATE(6409), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172872] = 11, + [180840] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497293,23 +504960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10104), 1, - anon_sym_PIPE, - ACTIONS(10106), 1, - anon_sym_PIPE_RPAREN, - STATE(6241), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10402), 1, + anon_sym_with, + ACTIONS(10404), 1, + anon_sym_finally, + ACTIONS(10406), 1, + sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6246), 4, + STATE(6410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172910] = 11, + [180878] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497320,23 +504987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(10408), 1, anon_sym_PIPE, - ACTIONS(10110), 1, + ACTIONS(10410), 1, anon_sym_PIPE_RPAREN, - STATE(6338), 1, + STATE(6284), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6247), 4, + STATE(6411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172948] = 11, + [180916] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497347,23 +505014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, - sym_identifier, - STATE(7940), 1, - sym_access_modifier, + STATE(1195), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6248), 4, + ACTIONS(6995), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172986] = 11, + [180952] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497374,23 +505040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, + ACTIONS(10412), 1, anon_sym_PIPE, - ACTIONS(10116), 1, + ACTIONS(10414), 1, anon_sym_PIPE_RPAREN, - STATE(6267), 1, + STATE(6411), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6249), 4, + STATE(6413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173024] = 11, + [180990] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497401,23 +505067,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(10118), 1, - anon_sym_COLON, - STATE(7649), 1, - sym_type_arguments, + ACTIONS(10039), 1, + sym_identifier, + STATE(6923), 1, + sym_field_pattern, + STATE(8197), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6250), 4, + STATE(6414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173062] = 11, + [181028] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497428,23 +505094,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10120), 1, - anon_sym_with, - ACTIONS(10122), 1, - anon_sym_finally, - ACTIONS(10124), 1, - sym__newline, + ACTIONS(10039), 1, + sym_identifier, + STATE(6510), 1, + sym_field_pattern, + STATE(8197), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6251), 4, + STATE(6415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173100] = 11, + [181066] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497455,23 +505121,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10126), 1, - anon_sym_PIPE, - ACTIONS(10128), 1, - anon_sym_PIPE_RPAREN, - STATE(6191), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10416), 1, + anon_sym_PIPE_RBRACK, + STATE(8199), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6252), 4, + STATE(6416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173138] = 11, + [181104] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497482,50 +505148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, + ACTIONS(10418), 1, anon_sym_with, - ACTIONS(10132), 1, + ACTIONS(10420), 1, anon_sym_finally, - ACTIONS(10134), 1, + ACTIONS(10422), 1, sym__newline, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6253), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [173176] = 11, - ACTIONS(7), 1, - anon_sym_POUNDnowarn, - ACTIONS(9), 1, - anon_sym_POUNDlight, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(13), 1, - anon_sym_POUNDload, - ACTIONS(15), 1, - aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10136), 1, - anon_sym_PIPE_RBRACK, - STATE(7048), 1, - sym__list_element, - ACTIONS(3), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(6254), 4, + STATE(6417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173214] = 11, + [181142] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497536,23 +505175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10138), 1, - anon_sym_GT_RBRACK, - STATE(6304), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10424), 1, + anon_sym_PIPE, + ACTIONS(10426), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6255), 4, + STATE(6418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173252] = 10, + [181180] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497563,22 +505202,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1373), 1, + STATE(4256), 1, sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7207), 2, + ACTIONS(5566), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(6256), 4, + STATE(6419), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173288] = 11, + [181216] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497589,23 +505228,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10140), 1, - sym_identifier, - STATE(8090), 1, - sym_access_modifier, + ACTIONS(10428), 1, + anon_sym_PIPE, + ACTIONS(10430), 1, + anon_sym_PIPE_RPAREN, + STATE(6418), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6257), 4, + STATE(6420), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173326] = 11, + [181254] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497616,23 +505255,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10142), 1, - sym_identifier, - STATE(8097), 1, - sym_access_modifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10432), 1, + anon_sym_RBRACK, + STATE(8200), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6258), 4, + STATE(6421), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173364] = 11, + [181292] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497643,23 +505282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10144), 1, - anon_sym_RBRACK, - STATE(7046), 1, - sym__list_element, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10434), 1, + anon_sym_GT_RBRACK, + STATE(6390), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6259), 4, + STATE(6422), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173402] = 10, + [181330] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497670,22 +505309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(3020), 1, - sym__static_type_identifier, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10436), 1, + anon_sym_GT_RBRACK, + STATE(6374), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7111), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6260), 4, + STATE(6423), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173438] = 11, + [181368] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497696,23 +505336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10146), 1, - anon_sym_GT_RBRACK, - STATE(6130), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10438), 1, + anon_sym_PIPE_RBRACK, + STATE(8359), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6261), 4, + STATE(6424), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173476] = 11, + [181406] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497723,23 +505363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10148), 1, + ACTIONS(10440), 1, anon_sym_PIPE, - ACTIONS(10150), 1, + ACTIONS(10442), 1, anon_sym_PIPE_RPAREN, - STATE(6352), 1, + STATE(6284), 1, aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6262), 4, + STATE(6425), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173514] = 11, + [181444] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497750,23 +505390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10152), 1, - anon_sym_PIPE, - ACTIONS(10154), 1, - anon_sym_PIPE_RPAREN, - STATE(6145), 1, - aux_sym_active_pattern_repeat1, + STATE(876), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6263), 4, + ACTIONS(7037), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6426), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173552] = 11, + [181480] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497777,23 +505416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, - sym__indent, - ACTIONS(10156), 1, - anon_sym_RBRACK, - STATE(8241), 1, - sym__list_pattern_content, + ACTIONS(10444), 1, + anon_sym_PIPE, + ACTIONS(10446), 1, + anon_sym_PIPE_RPAREN, + STATE(6425), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6264), 4, + STATE(6427), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173590] = 10, + [181518] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497804,22 +505443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(5387), 1, - sym__static_type_identifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10448), 1, + anon_sym_PIPE_RBRACK, + STATE(7796), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8650), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6265), 4, + STATE(6428), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173626] = 11, + [181556] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497830,23 +505470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10158), 1, - sym_identifier, - STATE(8111), 1, - sym_access_modifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10450), 1, + anon_sym_RBRACK, + STATE(7800), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6266), 4, + STATE(6429), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173664] = 11, + [181594] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497857,23 +505497,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10160), 1, - anon_sym_PIPE, - ACTIONS(10162), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10231), 1, + sym__newline, + ACTIONS(10452), 1, + anon_sym_GT_RBRACK, + STATE(6383), 1, + aux_sym__attribute_set_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6267), 4, + STATE(6430), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173702] = 11, + [181632] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497884,23 +505524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, + ACTIONS(9972), 1, sym__indent, - ACTIONS(10164), 1, + ACTIONS(10454), 1, anon_sym_PIPE_RBRACK, - STATE(7767), 1, - sym__list_pattern_content, + STATE(8096), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6268), 4, + STATE(6431), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173740] = 11, + [181670] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497911,23 +505551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - anon_sym_PIPE, - ACTIONS(10168), 1, - anon_sym_PIPE_RPAREN, - STATE(6262), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(9972), 1, + sym__indent, + ACTIONS(10456), 1, + anon_sym_RBRACK, + STATE(8175), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6269), 4, + STATE(6432), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173778] = 11, + [181708] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497938,23 +505578,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, + ACTIONS(9972), 1, sym__indent, - ACTIONS(10170), 1, - anon_sym_PIPE_RBRACK, - STATE(8066), 1, - sym__list_pattern_content, + ACTIONS(10458), 1, + anon_sym_RBRACK, + STATE(8360), 1, + sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6270), 4, + STATE(6433), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173816] = 11, + [181746] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497965,23 +505605,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10172), 1, - sym_identifier, - STATE(8116), 1, - sym_access_modifier, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10460), 1, + anon_sym_RBRACK, + STATE(7276), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6271), 4, + STATE(6434), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173854] = 11, + [181784] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -497992,23 +505632,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9759), 1, - sym_identifier, - STATE(7867), 1, - sym_access_modifier, + ACTIONS(10462), 1, + anon_sym_PIPE, + ACTIONS(10464), 1, + anon_sym_PIPE_RPAREN, + STATE(6438), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6272), 4, + STATE(6435), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173892] = 10, + [181822] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498019,22 +505659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6280), 1, - anon_sym_GT, - ACTIONS(10174), 1, - anon_sym_and, + ACTIONS(10235), 1, + sym__indent, + ACTIONS(10466), 1, + anon_sym_PIPE_RBRACK, + STATE(7278), 1, + sym__list_pattern_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6273), 5, + STATE(6436), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - [173928] = 11, + [181860] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498045,23 +505686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, - sym__indent, - ACTIONS(10177), 1, - anon_sym_RBRACK, - STATE(7772), 1, - sym__list_pattern_content, + STATE(4690), 1, + sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6274), 4, + ACTIONS(7007), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6437), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173966] = 11, + [181896] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498072,23 +505712,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10179), 1, - anon_sym_GT_RBRACK, - STATE(6236), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10468), 1, + anon_sym_PIPE, + ACTIONS(10470), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6275), 4, + STATE(6438), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174004] = 11, + [181934] = 11, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498099,23 +505739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, + ACTIONS(7774), 1, anon_sym_LT2, - ACTIONS(10181), 1, + ACTIONS(10472), 1, anon_sym_COLON, - STATE(7335), 1, + STATE(7734), 1, sym_type_arguments, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6276), 4, + STATE(6439), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174042] = 11, + [181972] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498126,23 +505766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9763), 1, - sym_identifier, - STATE(7484), 1, - sym_access_modifier, + ACTIONS(10474), 1, + sym__indent, + STATE(1666), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6277), 4, + STATE(6440), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174080] = 11, + [182007] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498153,23 +505791,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10183), 1, - sym_identifier, - STATE(8130), 1, - sym_access_modifier, + ACTIONS(10476), 1, + sym__indent, + STATE(4545), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6278), 4, + STATE(6441), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174118] = 11, + [182042] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498180,23 +505816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10185), 1, - sym_identifier, - STATE(8135), 1, - sym_access_modifier, + ACTIONS(9781), 1, + anon_sym_DQUOTE, + STATE(8394), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6279), 4, + STATE(6442), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174156] = 11, + [182077] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498207,23 +505841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10187), 1, - sym__newline, - ACTIONS(10189), 1, - sym__dedent, - STATE(6170), 1, - aux_sym__class_type_body_repeat1, + ACTIONS(10478), 1, + anon_sym_DQUOTE, + STATE(8392), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6280), 4, + STATE(6443), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174194] = 11, + [182112] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498234,23 +505866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10191), 1, - anon_sym_with, - ACTIONS(10193), 1, - anon_sym_finally, - ACTIONS(10195), 1, - sym__newline, + ACTIONS(10480), 1, + sym__indent, + STATE(1485), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6281), 4, + STATE(6444), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174232] = 11, + [182147] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498261,23 +505891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10197), 1, - sym_identifier, - STATE(7820), 1, - sym_access_modifier, + ACTIONS(10482), 1, + sym__indent, + STATE(1681), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6282), 4, + STATE(6445), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174270] = 11, + [182182] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498288,23 +505916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10199), 1, - anon_sym_PIPE, - ACTIONS(10201), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10484), 1, + sym_identifier, + STATE(3033), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6283), 4, + STATE(6446), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174308] = 11, + [182217] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498315,23 +505941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(7633), 1, - sym_field_pattern, - STATE(8019), 1, - sym_long_identifier, + ACTIONS(10486), 1, + sym__indent, + STATE(1074), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6284), 4, + STATE(6447), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174346] = 11, + [182252] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498342,23 +505966,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10203), 1, - anon_sym_PIPE, - ACTIONS(10205), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10488), 1, + sym__indent, + STATE(8298), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6285), 4, + STATE(6448), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174384] = 11, + [182287] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498369,23 +505991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9800), 1, - sym_identifier, - STATE(7817), 1, - sym_access_modifier, + ACTIONS(10482), 1, + sym__indent, + STATE(2184), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6286), 4, + STATE(6449), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174422] = 11, + [182322] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498396,23 +506016,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10490), 1, sym__indent, - ACTIONS(10207), 1, - anon_sym_PIPE_RBRACK, - STATE(7858), 1, - sym__list_element, + STATE(8329), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6287), 4, + STATE(6450), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174460] = 9, + [182357] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498423,21 +506041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10492), 1, + sym__indent, + STATE(6410), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3277), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(6288), 4, + STATE(6451), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174494] = 10, + [182392] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498448,22 +506066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(1036), 1, - sym__static_type_identifier, + ACTIONS(10486), 1, + sym__indent, + STATE(1213), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7087), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6289), 4, + STATE(6452), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174530] = 11, + [182427] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498474,23 +506091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10032), 1, - anon_sym_as, - ACTIONS(10209), 1, - anon_sym_EQ, - STATE(7496), 1, - sym_class_as_reference, + ACTIONS(10494), 1, + sym__indent, + STATE(665), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6290), 4, + STATE(6453), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174568] = 11, + [182462] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498501,23 +506116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, + ACTIONS(10039), 1, sym_identifier, - STATE(6493), 1, - sym_field_pattern, - STATE(8019), 1, + STATE(8315), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6291), 4, + STATE(6454), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174606] = 11, + [182497] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498528,23 +506141,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10211), 1, - anon_sym_PIPE, - ACTIONS(10213), 1, - anon_sym_PIPE_RPAREN, - STATE(6285), 1, - aux_sym_active_pattern_repeat1, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6292), 4, + ACTIONS(10496), 2, + ts_builtin_sym_end, + anon_sym_namespace, + STATE(6455), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174644] = 11, + [182530] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498555,23 +506165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, + ACTIONS(10498), 1, sym__indent, - ACTIONS(10215), 1, - anon_sym_PIPE_RBRACK, - STATE(8021), 1, - sym__list_pattern_content, + STATE(4480), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6293), 4, + STATE(6456), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174682] = 11, + [182565] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498582,23 +506190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10500), 1, sym__indent, - ACTIONS(10217), 1, - anon_sym_RBRACK, - STATE(7887), 1, - sym__list_element, + STATE(1494), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6294), 4, + STATE(6457), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174720] = 11, + [182600] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498609,23 +506215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10219), 1, - anon_sym_PIPE, - ACTIONS(10221), 1, - anon_sym_PIPE_RPAREN, - STATE(6358), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10498), 1, + sym__indent, + STATE(4349), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6295), 4, + STATE(6458), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174758] = 11, + [182635] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498636,23 +506240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, - sym__indent, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(8023), 1, - sym__list_pattern_content, + ACTIONS(10484), 1, + sym_identifier, + STATE(374), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6296), 4, + STATE(6459), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174796] = 11, + [182670] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498663,23 +506265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10187), 1, - sym__newline, - ACTIONS(10225), 1, - sym__dedent, - STATE(6280), 1, - aux_sym__class_type_body_repeat1, + ACTIONS(10502), 1, + sym_identifier, + STATE(379), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6297), 4, + STATE(6460), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174834] = 11, + [182705] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498690,23 +506290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9904), 1, - anon_sym_POUNDelse, - ACTIONS(10227), 1, - anon_sym_POUNDendif, - STATE(8107), 1, - sym_preproc_else, + ACTIONS(10504), 1, + sym_identifier, + STATE(4486), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6298), 4, + STATE(6461), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174872] = 11, + [182740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498717,23 +506315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10229), 1, - anon_sym_RBRACK, - STATE(7060), 1, - sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6299), 4, + ACTIONS(10506), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6462), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174910] = 10, + [182773] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498744,22 +506339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10028), 1, - anon_sym_RBRACK, - ACTIONS(10231), 1, - anon_sym_COMMA, + ACTIONS(10504), 1, + sym_identifier, + STATE(4484), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6300), 5, + STATE(6463), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [174946] = 11, + [182808] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498770,23 +506364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10032), 1, - anon_sym_as, - ACTIONS(10234), 1, - anon_sym_EQ, - STATE(7225), 1, - sym_class_as_reference, + ACTIONS(10508), 1, + sym__indent, + STATE(1488), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6301), 4, + STATE(6464), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174984] = 11, + [182843] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498797,23 +506389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10236), 1, - anon_sym_with, - ACTIONS(10238), 1, - anon_sym_finally, - ACTIONS(10240), 1, - sym__newline, + ACTIONS(10510), 1, + sym__indent, + STATE(4988), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6302), 4, + STATE(6465), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175022] = 11, + [182878] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498824,23 +506414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10242), 1, - anon_sym_DASH_GT, - ACTIONS(10244), 1, - anon_sym_STAR, - STATE(6123), 1, - aux_sym_arguments_spec_repeat1, + ACTIONS(10512), 1, + sym__indent, + STATE(1530), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6303), 4, + STATE(6466), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175060] = 11, + [182913] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498851,23 +506439,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10246), 1, - anon_sym_GT_RBRACK, - STATE(6130), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10482), 1, + sym__indent, + STATE(1532), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6304), 4, + STATE(6467), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175098] = 11, + [182948] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498878,23 +506464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10500), 1, sym__indent, - ACTIONS(10248), 1, - anon_sym_PIPE_RBRACK, - STATE(7104), 1, - sym__list_element, + STATE(1541), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6305), 4, + STATE(6468), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175136] = 11, + [182983] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498905,23 +506489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9826), 1, - sym_identifier, - STATE(7807), 1, - sym_access_modifier, + ACTIONS(10514), 1, + anon_sym_EQ, + ACTIONS(10516), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6306), 4, + STATE(6469), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175174] = 11, + [183018] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498932,23 +506516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(10250), 1, - anon_sym_COLON, - STATE(7021), 1, - sym_type_arguments, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6307), 4, + ACTIONS(10520), 1, + anon_sym_RBRACE, + STATE(6664), 1, + aux_sym_record_pattern_repeat1, + STATE(6470), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175212] = 11, + [183055] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498959,23 +506540,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(6694), 1, - sym_field_pattern, - STATE(8019), 1, - sym_long_identifier, + ACTIONS(10522), 1, + anon_sym_get, + ACTIONS(10524), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6308), 4, + STATE(6471), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175250] = 11, + [183090] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -498986,23 +506565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10252), 1, - anon_sym_with, - ACTIONS(10254), 1, - anon_sym_finally, - ACTIONS(10256), 1, - sym__newline, + ACTIONS(10498), 1, + sym__indent, + STATE(4399), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6309), 4, + STATE(6472), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175288] = 11, + [183125] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499013,23 +506590,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10258), 1, - anon_sym_RBRACK, - STATE(8056), 1, - sym__list_element, + ACTIONS(10504), 1, + sym_identifier, + STATE(4452), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6310), 4, + STATE(6473), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175326] = 11, + [183160] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499040,23 +506615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10498), 1, sym__indent, - ACTIONS(10260), 1, - anon_sym_PIPE_RBRACK, - STATE(8237), 1, - sym__list_element, + STATE(4451), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6311), 4, + STATE(6474), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175364] = 11, + [183195] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499067,23 +506640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10262), 1, - anon_sym_PIPE, - ACTIONS(10264), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10526), 1, + sym__indent, + STATE(1443), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6312), 4, + STATE(6475), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175402] = 11, + [183230] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499094,23 +506665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10266), 1, - anon_sym_COMMA, - ACTIONS(10268), 1, - anon_sym_RBRACK, - STATE(6300), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10528), 1, + anon_sym_get, + ACTIONS(10530), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6313), 4, + STATE(6476), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175440] = 11, + [183265] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499121,23 +506690,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10270), 1, - anon_sym_PIPE, - ACTIONS(10272), 1, - anon_sym_PIPE_RPAREN, - STATE(6229), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10498), 1, + sym__indent, + STATE(4328), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6314), 4, + STATE(6477), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175478] = 11, + [183300] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499148,23 +506715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(852), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__newline, - STATE(6211), 1, - aux_sym__list_elements_repeat1, + ACTIONS(10532), 1, + anon_sym_get, + ACTIONS(10534), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6315), 4, + STATE(6478), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175516] = 10, + [183335] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499175,22 +506740,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4711), 1, - sym__static_type_identifier, + ACTIONS(10536), 1, + sym__indent, + STATE(2810), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8509), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6316), 4, + STATE(6479), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175552] = 10, + [183370] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499201,22 +506765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4088), 1, - sym__static_type_identifier, + ACTIONS(10039), 1, + sym_identifier, + STATE(8157), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5583), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6317), 4, + STATE(6480), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175588] = 11, + [183405] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499227,23 +506790,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9987), 1, - anon_sym_COMMA, - ACTIONS(10268), 1, - sym__dedent, - STATE(6204), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10488), 1, + sym__indent, + STATE(8150), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6318), 4, + STATE(6481), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175626] = 11, + [183440] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499254,23 +506815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10274), 1, - anon_sym_PIPE, - ACTIONS(10276), 1, - anon_sym_PIPE_RPAREN, - STATE(6312), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10538), 1, + anon_sym_LPAREN, + ACTIONS(10540), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6319), 4, + STATE(6482), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175664] = 11, + [183475] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499281,23 +506840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10278), 1, - anon_sym_with, - ACTIONS(10280), 1, - anon_sym_finally, - ACTIONS(10282), 1, - sym__newline, + ACTIONS(10498), 1, + sym__indent, + STATE(4435), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6320), 4, + STATE(6483), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175702] = 11, + [183510] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499308,23 +506865,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10284), 1, - sym_identifier, - STATE(7756), 1, - sym_access_modifier, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(10540), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6321), 4, + STATE(6484), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175740] = 11, + [183545] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499335,23 +506890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(6386), 1, - sym_field_pattern, - STATE(8019), 1, - sym_long_identifier, + ACTIONS(10482), 1, + sym__indent, + STATE(1698), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6322), 4, + STATE(6485), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175778] = 11, + [183580] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499362,23 +506915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - sym_identifier, - STATE(6650), 1, - sym_field_initializer, - STATE(7989), 1, - sym_long_identifier, + ACTIONS(10542), 1, + sym__indent, + STATE(861), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6323), 4, + STATE(6486), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175816] = 11, + [183615] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499389,23 +506940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_LT2, - ACTIONS(10286), 1, - anon_sym_COLON, - STATE(7562), 1, - sym_type_arguments, + ACTIONS(10544), 1, + sym__indent, + STATE(1456), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6324), 4, + STATE(6487), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175854] = 11, + [183650] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499416,23 +506965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9979), 1, - sym__newline, - ACTIONS(10288), 1, - sym__dedent, - STATE(6195), 1, - aux_sym_field_initializers_repeat1, + ACTIONS(10546), 1, + sym__indent, + STATE(2136), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6325), 4, + STATE(6488), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175892] = 11, + [183685] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499443,23 +506990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9967), 1, - anon_sym_COMMA, - ACTIONS(10290), 1, - anon_sym_GT, - STATE(6194), 1, - aux_sym_type_attributes_repeat1, + ACTIONS(10548), 1, + anon_sym_get, + ACTIONS(10550), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6326), 4, + STATE(6489), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175930] = 11, + [183720] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499470,23 +507015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9842), 1, - sym_identifier, - STATE(7753), 1, - sym_access_modifier, + ACTIONS(10494), 1, + sym__indent, + STATE(641), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6327), 4, + STATE(6490), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175968] = 11, + [183755] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499497,23 +507040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10292), 1, - anon_sym_PIPE, - ACTIONS(10294), 1, - anon_sym_PIPE_RPAREN, - STATE(6345), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10552), 1, + sym__indent, + STATE(1878), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6328), 4, + STATE(6491), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176006] = 11, + [183790] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499524,23 +507065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10296), 1, - anon_sym_with, - ACTIONS(10298), 1, - anon_sym_finally, - ACTIONS(10300), 1, - sym__newline, + ACTIONS(10482), 1, + sym__indent, + STATE(1535), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6329), 4, + STATE(6492), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176044] = 11, + [183825] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499551,23 +507090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10302), 1, - sym__newline, - ACTIONS(10304), 1, - sym__dedent, - STATE(6208), 1, - aux_sym_record_fields_repeat1, + ACTIONS(10554), 1, + sym__indent, + STATE(966), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6330), 4, + STATE(6493), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176082] = 11, + [183860] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499578,23 +507115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10306), 1, - anon_sym_PIPE, - ACTIONS(10308), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10556), 1, + anon_sym_get, + ACTIONS(10558), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6331), 4, + STATE(6494), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176120] = 11, + [183895] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499605,23 +507140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, - sym__indent, - ACTIONS(10310), 1, - anon_sym_PIPE_RBRACK, - STATE(7141), 1, - sym__list_pattern_content, + ACTIONS(10538), 1, + anon_sym_LPAREN, + ACTIONS(10560), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6332), 4, + STATE(6495), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176158] = 11, + [183930] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499632,23 +507165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9846), 1, - sym_identifier, - STATE(7264), 1, - sym_access_modifier, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(10560), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6333), 4, + STATE(6496), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176196] = 11, + [183965] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499659,23 +507190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9973), 1, - sym__indent, - ACTIONS(10312), 1, - anon_sym_RBRACK, - STATE(7137), 1, - sym__list_pattern_content, + ACTIONS(10562), 1, + anon_sym_get, + ACTIONS(10564), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6334), 4, + STATE(6497), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176234] = 10, + [184000] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499686,22 +507215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4630), 1, - sym__static_type_identifier, + ACTIONS(10538), 1, + anon_sym_LPAREN, + ACTIONS(10566), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6335), 4, + STATE(6498), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176270] = 11, + [184035] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499712,23 +507240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10021), 1, - anon_sym_PIPE, - ACTIONS(10314), 1, - sym__dedent, - STATE(6217), 1, - aux_sym_enum_type_cases_repeat1, + ACTIONS(10568), 1, + sym__indent, + STATE(1703), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6336), 4, + STATE(6499), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176308] = 11, + [184070] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499739,23 +507265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6276), 1, - anon_sym_GT, - ACTIONS(9945), 1, - anon_sym_and, - STATE(6273), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(10566), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6337), 4, + STATE(6500), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176346] = 11, + [184105] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499766,23 +507290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10316), 1, - anon_sym_PIPE, - ACTIONS(10318), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10494), 1, + sym__indent, + STATE(592), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6338), 4, + STATE(6501), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176384] = 11, + [184140] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499793,23 +507315,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9989), 1, - anon_sym_RBRACK, - ACTIONS(10266), 1, - anon_sym_COMMA, - STATE(6313), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10494), 1, + sym__indent, + STATE(800), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6339), 4, + STATE(6502), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176422] = 11, + [184175] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499820,23 +507340,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10320), 1, - anon_sym_GT_RBRACK, - STATE(6245), 1, - aux_sym__attribute_set_repeat1, + ACTIONS(10570), 1, + anon_sym_get, + ACTIONS(10572), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6340), 4, + STATE(6503), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176460] = 11, + [184210] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499847,23 +507365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9862), 1, - sym_identifier, - STATE(7742), 1, - sym_access_modifier, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(10574), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6341), 4, + STATE(6504), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176498] = 11, + [184245] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499874,23 +507390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10322), 1, - anon_sym_PIPE, - ACTIONS(10324), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10510), 1, + sym__indent, + STATE(5088), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6342), 4, + STATE(6505), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176536] = 10, + [184280] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499901,22 +507415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10326), 1, - sym__newline, - ACTIONS(10329), 1, - sym__dedent, + ACTIONS(10482), 1, + sym__indent, + STATE(1724), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6343), 5, + STATE(6506), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__module_body_repeat1, - [176572] = 11, + [184315] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499927,23 +507440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10331), 1, - anon_sym_with, - ACTIONS(10333), 1, - anon_sym_finally, - ACTIONS(10335), 1, - sym__newline, + ACTIONS(10510), 1, + sym__indent, + STATE(4882), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6344), 4, + STATE(6507), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176610] = 11, + [184350] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499954,23 +507465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10337), 1, - anon_sym_PIPE, - ACTIONS(10339), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10576), 1, + anon_sym_get, + ACTIONS(10578), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6345), 4, + STATE(6508), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176648] = 10, + [184385] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -499981,22 +507490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(880), 1, - sym__static_type_identifier, + ACTIONS(10482), 1, + sym__indent, + STATE(1716), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7095), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6346), 4, + STATE(6509), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176684] = 11, + [184420] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500007,23 +507517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9960), 1, - sym__newline, - ACTIONS(10341), 1, - anon_sym_GT_RBRACK, - STATE(6261), 1, - aux_sym__attribute_set_repeat1, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6347), 4, + ACTIONS(10580), 1, + anon_sym_RBRACE, + STATE(6576), 1, + aux_sym_record_pattern_repeat1, + STATE(6510), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176722] = 11, + [184457] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500034,23 +507541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10343), 1, - anon_sym_PIPE, - ACTIONS(10345), 1, - anon_sym_PIPE_RPAREN, - STATE(6342), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10536), 1, + sym__indent, + STATE(2799), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6348), 4, + STATE(6511), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176760] = 10, + [184492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500061,22 +507566,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(2450), 1, - sym__static_type_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(6328), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6349), 4, + ACTIONS(8953), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6512), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176796] = 11, + [184525] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500087,23 +507590,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9830), 1, - sym_identifier, - STATE(7652), 1, - sym_access_modifier, + ACTIONS(10498), 1, + sym__indent, + STATE(4489), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6350), 4, + STATE(6513), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176834] = 9, + [184560] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500114,21 +507615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3283), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(6351), 4, + ACTIONS(10582), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6514), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176868] = 10, + [184593] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500139,22 +507639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10347), 1, - anon_sym_PIPE, - ACTIONS(10350), 1, - anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6352), 5, + ACTIONS(888), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6515), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_active_pattern_repeat1, - [176904] = 11, + [184626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500165,25 +507663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10352), 1, - anon_sym_RBRACK, - STATE(7114), 1, - sym__list_element, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6353), 4, + ACTIONS(10584), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6516), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176942] = 10, - ACTIONS(3), 1, - sym_line_comment, + [184659] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500194,20 +507687,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8984), 1, - sym__dedent, - ACTIONS(10354), 2, - sym__newline, + ACTIONS(10490), 1, + sym__indent, + STATE(7637), 1, + sym__expression_block, + ACTIONS(3), 2, anon_sym_SEMI, - STATE(6354), 5, + sym_line_comment, + STATE(6517), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__list_pattern_content_repeat1, - [176978] = 11, + [184694] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500218,23 +507712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10357), 1, - anon_sym_PIPE, - ACTIONS(10359), 1, - anon_sym_PIPE_RPAREN, - STATE(6331), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10482), 1, + sym__indent, + STATE(1509), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6355), 4, + STATE(6518), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177016] = 11, + [184729] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500245,23 +507737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9904), 1, - anon_sym_POUNDelse, - ACTIONS(10361), 1, - anon_sym_POUNDendif, - STATE(7578), 1, - sym_preproc_else, + ACTIONS(10510), 1, + sym__indent, + STATE(4965), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6356), 4, + STATE(6519), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177054] = 11, + [184764] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500272,23 +507762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10586), 1, sym__indent, - ACTIONS(10363), 1, - anon_sym_PIPE_RBRACK, - STATE(7117), 1, - sym__list_element, + STATE(1653), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6357), 4, + STATE(6520), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177092] = 11, + [184799] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500299,25 +507787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10365), 1, - anon_sym_PIPE, - ACTIONS(10367), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10486), 1, + sym__indent, + STATE(1001), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6358), 4, + STATE(6521), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177130] = 11, - ACTIONS(3), 1, - sym_line_comment, + [184834] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500328,21 +507812,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10369), 1, - sym__dedent, - STATE(6354), 1, - aux_sym__list_pattern_content_repeat1, - ACTIONS(8541), 2, - sym__newline, + ACTIONS(10588), 1, + sym__indent, + STATE(975), 1, + sym__expression_block, + ACTIONS(3), 2, anon_sym_SEMI, - STATE(6359), 4, + sym_line_comment, + STATE(6522), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177168] = 11, + [184869] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500353,23 +507839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - sym__indent, - ACTIONS(10371), 1, - anon_sym_PIPE_RBRACK, - STATE(8162), 1, - sym__list_element, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6360), 4, + ACTIONS(10590), 1, + anon_sym_RBRACE, + STATE(6470), 1, + aux_sym_record_pattern_repeat1, + STATE(6523), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177206] = 11, + [184906] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500380,23 +507863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10373), 1, - anon_sym_with, - ACTIONS(10375), 1, - anon_sym_finally, - ACTIONS(10377), 1, - sym__newline, + ACTIONS(10494), 1, + sym__indent, + STATE(608), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6361), 4, + STATE(6524), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177244] = 11, + [184941] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500407,23 +507888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, + ACTIONS(10554), 1, sym__indent, - ACTIONS(10379), 1, - anon_sym_RBRACK, - STATE(8165), 1, - sym__list_element, + STATE(984), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6362), 4, + STATE(6525), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177282] = 10, + [184976] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500434,22 +507913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4557), 1, - sym__static_type_identifier, + ACTIONS(10492), 1, + sym__indent, + STATE(6380), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6363), 4, + STATE(6526), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177318] = 11, + [185011] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500460,23 +507938,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4514), 1, - aux_sym_access_modifier_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10381), 1, - sym_identifier, - STATE(7317), 1, - sym_access_modifier, + ACTIONS(10592), 1, + anon_sym_with, + ACTIONS(10594), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6364), 4, + STATE(6527), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177356] = 11, + [185046] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500487,23 +507963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8493), 1, - anon_sym_COMMA, - ACTIONS(10383), 1, - anon_sym_GT, - STATE(6160), 1, - aux_sym_types_repeat1, + ACTIONS(10486), 1, + sym__indent, + STATE(1035), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6365), 4, + STATE(6528), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177394] = 10, + [185081] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500514,22 +507988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - STATE(4650), 1, - sym__static_type_identifier, + ACTIONS(10490), 1, + sym__indent, + STATE(7599), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7267), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6366), 4, + STATE(6529), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177430] = 11, + [185116] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500540,23 +508013,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(870), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9939), 1, + ACTIONS(10596), 1, sym__newline, - STATE(6154), 1, - aux_sym__module_body_repeat1, + ACTIONS(10598), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6367), 4, + STATE(6530), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177468] = 11, + [185151] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500567,23 +508038,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10385), 1, - anon_sym_PIPE, - ACTIONS(10387), 1, - anon_sym_PIPE_RPAREN, - STATE(6352), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10494), 1, + sym__indent, + STATE(561), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6368), 4, + STATE(6531), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177506] = 11, + [185186] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500594,23 +508063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10389), 1, - anon_sym_PIPE, - ACTIONS(10391), 1, - anon_sym_PIPE_RPAREN, - STATE(6368), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10480), 1, + sym__indent, + STATE(1545), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6369), 4, + STATE(6532), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177544] = 11, + [185221] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500621,23 +508088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9904), 1, - anon_sym_POUNDelse, - ACTIONS(10393), 1, - anon_sym_POUNDendif, - STATE(7671), 1, - sym_preproc_else, + ACTIONS(10600), 1, + sym__indent, + STATE(1601), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6370), 4, + STATE(6533), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177582] = 11, + [185256] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500648,23 +508113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10032), 1, - anon_sym_as, - ACTIONS(10395), 1, - anon_sym_EQ, - STATE(7320), 1, - sym_class_as_reference, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10604), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6371), 4, + STATE(6534), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177620] = 9, + [185291] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500675,21 +508138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10486), 1, + sym__indent, + STATE(1150), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10397), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(6372), 4, + STATE(6535), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177654] = 11, + [185326] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500700,23 +508163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10244), 1, - anon_sym_STAR, - ACTIONS(10399), 1, - anon_sym_DASH_GT, - STATE(6303), 1, - aux_sym_arguments_spec_repeat1, + ACTIONS(10606), 1, + sym__indent, + STATE(2474), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6373), 4, + STATE(6536), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177692] = 10, + [185361] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500727,21 +508188,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10401), 1, - sym__newline, - ACTIONS(10403), 1, + ACTIONS(10510), 1, sym__indent, + STATE(5123), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6374), 4, + STATE(6537), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177727] = 9, + [185396] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500752,20 +508213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10608), 1, + sym_identifier, + STATE(5127), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5379), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6375), 4, + STATE(6538), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177760] = 10, + [185431] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500776,21 +508238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9516), 1, - anon_sym_DQUOTE, - STATE(8225), 1, - sym__string_literal, + ACTIONS(10610), 1, + sym__indent, + STATE(1806), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6376), 4, + STATE(6539), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177795] = 10, + [185466] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500801,21 +508263,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, + ACTIONS(10510), 1, sym__indent, - STATE(1817), 1, + STATE(5130), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6377), 4, + STATE(6540), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177830] = 10, + [185501] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500826,21 +508288,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10492), 1, sym__indent, - STATE(1531), 1, + STATE(6207), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6378), 4, + STATE(6541), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177865] = 9, + [185536] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500851,20 +508313,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10490), 1, + sym__indent, + STATE(7559), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3421), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6379), 4, + STATE(6542), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177898] = 10, + [185571] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500875,21 +508338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10409), 1, - anon_sym_DQUOTE, - STATE(8223), 1, - sym__string_literal, + ACTIONS(10498), 1, + sym__indent, + STATE(4456), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6380), 4, + STATE(6543), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177933] = 9, + [185606] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500900,20 +508363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10498), 1, + sym__indent, + STATE(4453), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3417), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6381), 4, + STATE(6544), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177966] = 10, + [185641] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500924,21 +508388,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10526), 1, sym__indent, - STATE(1103), 1, + STATE(973), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6382), 4, + STATE(6545), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178001] = 10, + [185676] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500949,21 +508413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10413), 1, - sym_identifier, - STATE(3004), 1, - sym_long_identifier, + ACTIONS(10612), 1, + sym__indent, + STATE(5219), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6383), 4, + STATE(6546), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178036] = 10, + [185711] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500974,21 +508438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10492), 1, sym__indent, - STATE(1127), 1, + STATE(6230), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6384), 4, + STATE(6547), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178071] = 10, + [185746] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -500999,23 +508463,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10490), 1, sym__indent, - STATE(8134), 1, + STATE(7519), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6385), 4, + STATE(6548), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178106] = 11, - ACTIONS(3), 1, - sym_line_comment, + [185781] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501026,20 +508488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10421), 1, - anon_sym_RBRACE, - STATE(6416), 1, - aux_sym_record_pattern_repeat1, - STATE(6386), 4, + sym_line_comment, + ACTIONS(10291), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6549), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178143] = 10, + [185814] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501050,21 +508512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10423), 1, - sym__indent, - STATE(1931), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6387), 4, + ACTIONS(10614), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6550), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178178] = 10, + [185847] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501075,21 +508536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10425), 1, - sym__indent, - STATE(1453), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6388), 4, + ACTIONS(8856), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6551), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178213] = 10, + [185880] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501100,21 +508560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10492), 1, sym__indent, - STATE(1527), 1, + STATE(6236), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6389), 4, + STATE(6552), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178248] = 9, + [185915] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501125,20 +508585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3413), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6390), 4, + ACTIONS(10616), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6553), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178281] = 9, + [185948] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501149,20 +508609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10490), 1, + sym__indent, + STATE(7477), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3401), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6391), 4, + STATE(6554), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178314] = 9, + [185983] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501173,20 +508634,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10498), 1, + sym__indent, + STATE(4409), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3397), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6392), 4, + STATE(6555), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178347] = 9, + [186018] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501197,20 +508659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10492), 1, + sym__indent, + STATE(6240), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3661), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6393), 4, + STATE(6556), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178380] = 9, + [186053] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501221,20 +508684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10618), 1, + sym__indent, + STATE(1290), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3552), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6394), 4, + STATE(6557), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178413] = 9, + [186088] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501245,20 +508709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10494), 1, + sym__indent, + STATE(728), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3603), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6395), 4, + STATE(6558), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178446] = 9, + [186123] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501269,20 +508734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10480), 1, + sym__indent, + STATE(1596), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3607), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6396), 4, + STATE(6559), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178479] = 9, + [186158] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501293,20 +508759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10482), 1, + sym__indent, + STATE(1654), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3706), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6397), 4, + STATE(6560), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178512] = 9, + [186193] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501317,20 +508784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10620), 1, + sym__indent, + STATE(5139), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3720), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6398), 4, + STATE(6561), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178545] = 10, + [186228] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501341,21 +508809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10606), 1, sym__indent, - STATE(715), 1, + STATE(2129), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6399), 4, + STATE(6562), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178580] = 9, + [186263] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501366,20 +508834,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10606), 1, + sym__indent, + STATE(2153), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3541), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6400), 4, + STATE(6563), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178613] = 10, + [186298] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501390,21 +508859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10429), 1, - sym__indent, - STATE(3125), 1, - sym__expression_block, + ACTIONS(10622), 1, + sym_identifier, + STATE(2787), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6401), 4, + STATE(6564), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178648] = 10, + [186333] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501415,21 +508884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10490), 1, sym__indent, - STATE(8153), 1, + STATE(7428), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6402), 4, + STATE(6565), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178683] = 10, + [186368] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501440,21 +508909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10606), 1, sym__indent, - STATE(6281), 1, + STATE(2154), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6403), 4, + STATE(6566), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178718] = 10, + [186403] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501465,21 +508934,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10568), 1, sym__indent, - STATE(1068), 1, + STATE(1657), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6404), 4, + STATE(6567), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178753] = 9, + [186438] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501490,20 +508959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10538), 1, + anon_sym_LPAREN, + ACTIONS(10574), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3537), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6405), 4, + STATE(6568), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178786] = 9, + [186473] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501514,20 +508984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10494), 1, + sym__indent, + STATE(669), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(2526), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6406), 4, + STATE(6569), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178819] = 10, + [186508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501538,21 +509009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(593), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6407), 4, + ACTIONS(10624), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6570), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178854] = 10, + [186541] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501563,21 +509033,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(8138), 1, - sym_long_identifier, + ACTIONS(10546), 1, + sym__indent, + STATE(2097), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6408), 4, + STATE(6571), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178889] = 10, + [186576] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501588,21 +509058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10435), 1, + ACTIONS(10546), 1, sym__indent, - STATE(1523), 1, + STATE(1731), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6409), 4, + STATE(6572), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178924] = 9, + [186611] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501613,20 +509083,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10494), 1, + sym__indent, + STATE(3194), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10437), 2, - ts_builtin_sym_end, - anon_sym_namespace, - STATE(6410), 4, + STATE(6573), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178957] = 10, + [186646] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501637,21 +509108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10413), 1, - sym_identifier, - STATE(372), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6411), 4, + ACTIONS(8799), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6574), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178992] = 10, + [186679] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501662,21 +509132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10439), 1, - sym_identifier, - STATE(379), 1, - sym_long_identifier, + ACTIONS(10492), 1, + sym__indent, + STATE(6259), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6412), 4, + STATE(6575), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179027] = 10, + [186714] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501687,21 +509159,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10441), 1, - sym_identifier, - STATE(5083), 1, - sym_member_signature, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6413), 4, + ACTIONS(10626), 1, + anon_sym_RBRACE, + STATE(6664), 1, + aux_sym_record_pattern_repeat1, + STATE(6576), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179062] = 9, + [186751] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501712,20 +509183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10628), 1, + sym_identifier, + STATE(382), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3425), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6414), 4, + STATE(6577), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179095] = 10, + [186786] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501736,23 +509208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(1494), 1, - sym__expression_block, + ACTIONS(10608), 1, + sym_identifier, + STATE(5145), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6415), 4, + STATE(6578), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179130] = 11, - ACTIONS(3), 1, - sym_line_comment, + [186821] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501763,20 +509233,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10445), 1, - anon_sym_RBRACE, - STATE(6639), 1, - aux_sym_record_pattern_repeat1, - STATE(6416), 4, + sym_line_comment, + ACTIONS(10630), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6579), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179167] = 9, + [186854] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501787,20 +509257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10510), 1, + sym__indent, + STATE(4822), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10447), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6417), 4, + STATE(6580), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179200] = 10, + [186889] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501811,21 +509282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10490), 1, sym__indent, - STATE(1074), 1, + STATE(7373), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6418), 4, + STATE(6581), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179235] = 10, + [186924] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501836,21 +509307,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10435), 1, - sym__indent, - STATE(1515), 1, - sym__expression_block, + ACTIONS(10632), 1, + anon_sym_as, + ACTIONS(10634), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6419), 4, + STATE(6582), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179270] = 10, + [186959] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501861,21 +509332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10449), 1, - sym__indent, - STATE(848), 1, - sym__expression_block, + ACTIONS(10636), 1, + sym_identifier, + STATE(5164), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6420), 4, + STATE(6583), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179305] = 10, + [186994] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501886,21 +509357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10451), 1, - sym__indent, - STATE(2004), 1, - sym__expression_block, + ACTIONS(10638), 1, + anon_sym_get, + ACTIONS(10640), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6421), 4, + STATE(6584), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179340] = 10, + [187029] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501911,21 +509382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, + ACTIONS(10486), 1, sym__indent, - STATE(5147), 1, + STATE(1092), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6422), 4, + STATE(6585), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179375] = 9, + [187064] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501936,20 +509407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10510), 1, + sym__indent, + STATE(5147), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3429), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6423), 4, + STATE(6586), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179408] = 10, + [187099] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501960,21 +509432,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10423), 1, + ACTIONS(10492), 1, sym__indent, - STATE(1960), 1, + STATE(6311), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6424), 4, + STATE(6587), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179443] = 9, + [187134] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -501985,20 +509457,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10642), 1, + sym__newline, + ACTIONS(10644), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3452), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6425), 4, + STATE(6588), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179476] = 10, + [187169] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502009,21 +509482,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10606), 1, sym__indent, - STATE(1690), 1, + STATE(2218), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6426), 4, + STATE(6589), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179511] = 9, + [187204] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502034,20 +509507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10552), 1, + sym__indent, + STATE(1838), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3456), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6427), 4, + STATE(6590), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179544] = 10, + [187239] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502058,21 +509532,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10510), 1, sym__indent, - STATE(1057), 1, + STATE(6225), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6428), 4, + STATE(6591), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179579] = 10, + [187274] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502083,21 +509557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10455), 1, - anon_sym_EQ, - ACTIONS(10457), 1, - anon_sym_COLON, + ACTIONS(10646), 1, + sym__indent, + STATE(1529), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6429), 4, + STATE(6592), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179614] = 10, + [187309] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502108,21 +509582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10490), 1, sym__indent, - STATE(5089), 1, + STATE(7315), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6430), 4, + STATE(6593), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179649] = 10, + [187344] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502133,21 +509607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, - sym__indent, - STATE(4890), 1, - sym__expression_block, + ACTIONS(10648), 1, + anon_sym_PIPE, + ACTIONS(10650), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6431), 4, + STATE(6594), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179684] = 10, + [187379] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502158,21 +509632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10441), 1, + ACTIONS(10602), 1, sym_identifier, - STATE(5079), 1, - sym_member_signature, + ACTIONS(10652), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6432), 4, + STATE(6595), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179719] = 10, + [187414] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502183,21 +509657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, - sym__indent, - STATE(4941), 1, - sym__expression_block, + ACTIONS(10654), 1, + anon_sym_get, + ACTIONS(10656), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6433), 4, + STATE(6596), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179754] = 10, + [187449] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502208,21 +509682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10461), 1, - anon_sym_LPAREN, - ACTIONS(10463), 1, - anon_sym_new, + ACTIONS(10480), 1, + sym__indent, + STATE(1825), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6434), 4, + STATE(6597), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179789] = 10, + [187484] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502233,21 +509707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10480), 1, sym__indent, - STATE(1105), 1, + STATE(1444), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6435), 4, + STATE(6598), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179824] = 10, + [187519] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502258,21 +509732,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(10463), 1, - anon_sym_new, + ACTIONS(10606), 1, + sym__indent, + STATE(2234), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6436), 4, + STATE(6599), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179859] = 10, + [187554] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502283,21 +509757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10429), 1, + ACTIONS(10612), 1, sym__indent, - STATE(3130), 1, + STATE(5186), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6437), 4, + STATE(6600), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179894] = 10, + [187589] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502308,21 +509782,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, + ACTIONS(10492), 1, sym__indent, - STATE(1020), 1, + STATE(6339), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6438), 4, + STATE(6601), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179929] = 9, + [187624] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502333,20 +509807,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10486), 1, + sym__indent, + STATE(1234), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3460), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6439), 4, + STATE(6602), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179962] = 10, + [187659] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502357,21 +509832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10498), 1, sym__indent, - STATE(759), 1, + STATE(4446), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6440), 4, + STATE(6603), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179997] = 10, + [187694] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502382,21 +509857,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10490), 1, sym__indent, - STATE(678), 1, + STATE(7770), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6441), 4, + STATE(6604), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180032] = 10, + [187729] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502407,21 +509882,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10612), 1, sym__indent, - STATE(1018), 1, + STATE(5044), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6442), 4, + STATE(6605), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180067] = 9, + [187764] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502432,20 +509907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10636), 1, + sym_identifier, + STATE(5198), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3710), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6443), 4, + STATE(6606), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180100] = 10, + [187799] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502456,21 +509932,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10461), 1, - anon_sym_LPAREN, - ACTIONS(10467), 1, - anon_sym_new, + ACTIONS(10658), 1, + sym__indent, + STATE(1004), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6444), 4, + STATE(6607), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180135] = 10, + [187834] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502481,21 +509957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(10467), 1, - anon_sym_new, + ACTIONS(10490), 1, + sym__indent, + STATE(7239), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6445), 4, + STATE(6608), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180170] = 10, + [187869] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502506,21 +509982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, + ACTIONS(10620), 1, sym__indent, - STATE(2812), 1, + STATE(5033), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6446), 4, + STATE(6609), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180205] = 10, + [187904] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502531,21 +510007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10461), 1, - anon_sym_LPAREN, - ACTIONS(10471), 1, - anon_sym_new, + ACTIONS(10546), 1, + sym__indent, + STATE(2265), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6447), 4, + STATE(6610), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180240] = 10, + [187939] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502556,21 +510032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10660), 1, sym__indent, - STATE(1656), 1, + STATE(1407), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6448), 4, + STATE(6611), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180275] = 10, + [187974] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502581,21 +510057,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, + ACTIONS(10606), 1, sym__indent, - STATE(1646), 1, + STATE(2102), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6449), 4, + STATE(6612), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180310] = 10, + [188009] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502606,21 +510082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(10471), 1, - anon_sym_new, + ACTIONS(10662), 1, + anon_sym_get, + ACTIONS(10664), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6450), 4, + STATE(6613), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180345] = 10, + [188044] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502631,21 +510107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, + ACTIONS(10039), 1, sym_identifier, - STATE(7955), 1, + STATE(7210), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6451), 4, + STATE(6614), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180380] = 10, + [188079] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502656,21 +510132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10612), 1, sym__indent, - STATE(1653), 1, + STATE(5170), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6452), 4, + STATE(6615), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180415] = 10, + [188114] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502681,21 +510157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10510), 1, sym__indent, - STATE(1536), 1, + STATE(6681), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6453), 4, + STATE(6616), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180450] = 9, + [188149] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502706,20 +510182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10039), 1, + sym_identifier, + STATE(7195), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3653), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6454), 4, + STATE(6617), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180483] = 10, + [188184] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502730,21 +510207,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10425), 1, + ACTIONS(10492), 1, sym__indent, - STATE(979), 1, + STATE(6417), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6455), 4, + STATE(6618), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180518] = 9, + [188219] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502755,20 +510232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10620), 1, + sym__indent, + STATE(4961), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3644), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6456), 4, + STATE(6619), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180551] = 9, + [188254] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502779,20 +510257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10636), 1, + sym_identifier, + STATE(5202), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3632), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6457), 4, + STATE(6620), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180584] = 10, + [188289] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502803,21 +510282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10612), 1, sym__indent, - STATE(5048), 1, + STATE(5205), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6458), 4, + STATE(6621), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180619] = 10, + [188324] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502828,21 +510307,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7943), 1, - sym__expression_block, + ACTIONS(10666), 1, + anon_sym_with, + STATE(6174), 1, + sym__object_members, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6459), 4, + STATE(6622), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180654] = 10, + [188359] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502853,21 +510332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10475), 1, + ACTIONS(10646), 1, sym__indent, - STATE(867), 1, + STATE(1518), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6460), 4, + STATE(6623), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180689] = 10, + [188394] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502878,21 +510357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, - sym__indent, - STATE(7557), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6461), 4, + ACTIONS(7508), 2, + sym__newline, + sym__dedent, + STATE(6624), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180724] = 10, + [188427] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502903,21 +510381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10441), 1, - sym_identifier, - STATE(5047), 1, - sym_member_signature, + ACTIONS(10618), 1, + sym__indent, + STATE(1621), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6462), 4, + STATE(6625), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180759] = 9, + [188462] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502928,20 +510406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10490), 1, + sym__indent, + STATE(7146), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3628), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6463), 4, + STATE(6626), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180792] = 9, + [188497] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502952,20 +510431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10668), 1, + anon_sym_get, + ACTIONS(10670), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3613), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6464), 4, + STATE(6627), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180825] = 10, + [188532] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -502976,21 +510456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10612), 1, sym__indent, - STATE(5037), 1, + STATE(5003), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6465), 4, + STATE(6628), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180860] = 10, + [188567] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503001,21 +510481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, - sym__indent, - STATE(6202), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6466), 4, + ACTIONS(7512), 2, + sym__newline, + sym__dedent, + STATE(6629), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180895] = 10, + [188600] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503026,21 +510505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, + ACTIONS(10612), 1, sym__indent, - STATE(2262), 1, + STATE(5218), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6467), 4, + STATE(6630), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180930] = 10, + [188635] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503051,21 +510530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10451), 1, + ACTIONS(10620), 1, sym__indent, - STATE(2060), 1, + STATE(4804), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6468), 4, + STATE(6631), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180965] = 10, + [188670] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503076,21 +510555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10588), 1, sym__indent, - STATE(7520), 1, + STATE(961), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6469), 4, + STATE(6632), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181000] = 10, + [188705] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503101,21 +510580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10449), 1, + ACTIONS(10546), 1, sym__indent, - STATE(940), 1, + STATE(2279), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6470), 4, + STATE(6633), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181035] = 10, + [188740] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503126,21 +510605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, - sym__indent, - STATE(1208), 1, - sym__expression_block, + ACTIONS(10039), 1, + sym_identifier, + STATE(7117), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6471), 4, + STATE(6634), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181070] = 10, + [188775] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503151,21 +510630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10536), 1, sym__indent, - STATE(6251), 1, + STATE(2792), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6472), 4, + STATE(6635), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181105] = 9, + [188810] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503176,20 +510655,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10672), 1, + anon_sym_get, + ACTIONS(10674), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3702), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6473), 4, + STATE(6636), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181138] = 10, + [188845] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503200,21 +510680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10676), 1, sym__indent, - STATE(751), 1, + STATE(1476), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6474), 4, + STATE(6637), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181173] = 10, + [188880] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503225,21 +510705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, - sym__indent, - STATE(1578), 1, - sym__expression_block, + ACTIONS(10039), 1, + sym_identifier, + STATE(7100), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6475), 4, + STATE(6638), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181208] = 9, + [188915] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503250,20 +510730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10510), 1, + sym__indent, + STATE(4966), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3640), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6476), 4, + STATE(6639), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181241] = 10, + [188950] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503274,21 +510755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10479), 1, - anon_sym_get, - ACTIONS(10481), 1, - anon_sym_set, + ACTIONS(10492), 1, + sym__indent, + STATE(6287), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6477), 4, + STATE(6640), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181276] = 10, + [188985] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503299,21 +510780,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10536), 1, sym__indent, - STATE(7481), 1, + STATE(2737), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6478), 4, + STATE(6641), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181311] = 10, + [189020] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503324,21 +510805,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10480), 1, sym__indent, - STATE(4793), 1, + STATE(1730), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6479), 4, + STATE(6642), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181346] = 10, + [189055] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503349,21 +510830,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10606), 1, sym__indent, - STATE(5107), 1, + STATE(1971), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6480), 4, + STATE(6643), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181381] = 9, + [189090] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503374,20 +510855,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10678), 1, + anon_sym_get, + ACTIONS(10680), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3468), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6481), 4, + STATE(6644), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181414] = 10, + [189125] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503398,21 +510880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, + ACTIONS(10682), 1, sym__indent, - STATE(1615), 1, + STATE(1325), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6482), 4, + STATE(6645), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181449] = 10, + [189160] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503423,21 +510905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8441), 1, - anon_sym_LPAREN, - ACTIONS(10485), 1, - anon_sym_new, + ACTIONS(10480), 1, + sym__indent, + STATE(1727), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6483), 4, + STATE(6646), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181484] = 10, + [189195] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503448,21 +510930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10487), 1, - anon_sym_get, - ACTIONS(10489), 1, - anon_sym_set, + ACTIONS(10480), 1, + sym__indent, + STATE(1508), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6484), 4, + STATE(6647), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181519] = 9, + [189230] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503473,20 +510955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10544), 1, + sym__indent, + STATE(1020), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3673), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6485), 4, + STATE(6648), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181552] = 9, + [189265] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503497,20 +510980,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(8635), 1, + sym_identifier, + STATE(6924), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(3714), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6486), 4, + STATE(6649), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181585] = 10, + [189300] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503521,21 +511005,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2080), 1, - sym__expression_block, + ACTIONS(10684), 1, + anon_sym_get, + ACTIONS(10686), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6487), 4, + STATE(6650), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181620] = 10, + [189335] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503546,21 +511030,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10491), 1, - sym__indent, - STATE(1565), 1, - sym__expression_block, + ACTIONS(10622), 1, + sym_identifier, + STATE(2758), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6488), 4, + STATE(6651), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181655] = 10, + [189370] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503571,21 +511055,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10493), 1, - sym__indent, - STATE(1563), 1, - sym__expression_block, + ACTIONS(10688), 1, + anon_sym_get, + ACTIONS(10690), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6489), 4, + STATE(6652), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181690] = 10, + [189405] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503596,21 +511080,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10490), 1, sym__indent, - STATE(6361), 1, + STATE(7053), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6490), 4, + STATE(6653), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181725] = 10, + [189440] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503621,21 +511105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, - sym__indent, - STATE(1002), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6491), 4, + ACTIONS(10692), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6654), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181760] = 10, + [189473] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503646,23 +511129,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10694), 1, sym__indent, - STATE(7442), 1, + STATE(935), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6492), 4, + STATE(6655), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181795] = 11, - ACTIONS(3), 1, - sym_line_comment, + [189508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503673,20 +511154,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10495), 1, - anon_sym_RBRACE, - STATE(6566), 1, - aux_sym_record_pattern_repeat1, - STATE(6493), 4, + sym_line_comment, + ACTIONS(10696), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6656), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181832] = 10, + [189541] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503697,21 +511178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, - sym__indent, - STATE(2811), 1, - sym__expression_block, + ACTIONS(10039), 1, + sym_identifier, + STATE(7036), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6494), 4, + STATE(6657), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181867] = 9, + [189576] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503722,20 +511203,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8766), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6495), 4, + ACTIONS(10698), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6658), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181900] = 10, + [189609] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503746,21 +511229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1929), 1, - sym__expression_block, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6496), 4, + ACTIONS(10700), 1, + anon_sym_RBRACE, + STATE(6664), 1, + aux_sym_record_pattern_repeat1, + STATE(6659), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181935] = 10, + [189646] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503771,21 +511253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10702), 1, sym__indent, - STATE(6344), 1, + STATE(2068), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6497), 4, + STATE(6660), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181970] = 10, + [189681] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503796,21 +511278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2532), 1, - sym__expression_block, + ACTIONS(10039), 1, + sym_identifier, + STATE(7115), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6498), 4, + STATE(6661), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182005] = 10, + [189716] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503821,21 +511303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10499), 1, - anon_sym_get, - ACTIONS(10501), 1, - anon_sym_set, + ACTIONS(10608), 1, + sym_identifier, + STATE(5132), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6499), 4, + STATE(6662), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182040] = 10, + [189751] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503846,21 +511328,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, + ACTIONS(10492), 1, sym__indent, - STATE(2108), 1, + STATE(6212), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6500), 4, + STATE(6663), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182075] = 10, + [189786] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503871,21 +511355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, - sym__indent, - STATE(7401), 1, - sym__expression_block, - ACTIONS(3), 2, + ACTIONS(10704), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6501), 4, + ACTIONS(10707), 1, + anon_sym_RBRACE, + STATE(6664), 5, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182110] = 9, + aux_sym_record_pattern_repeat1, + [189821] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503896,20 +511378,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10536), 1, + sym__indent, + STATE(2811), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(914), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6502), 4, + STATE(6665), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182143] = 10, + [189856] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503920,21 +511403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10503), 1, + ACTIONS(10620), 1, sym__indent, - STATE(1435), 1, + STATE(5062), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6503), 4, + STATE(6666), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182178] = 10, + [189891] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503945,21 +511428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4401), 1, - sym__expression_block, + ACTIONS(10709), 1, + sym_identifier, + STATE(5057), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6504), 4, + STATE(6667), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182213] = 9, + [189926] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503970,20 +511455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - ACTIONS(10507), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6505), 4, + ACTIONS(10711), 1, + anon_sym_RBRACE, + STATE(6834), 1, + aux_sym_record_pattern_repeat1, + STATE(6668), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182246] = 10, + [189963] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -503994,21 +511479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2226), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6506), 4, + ACTIONS(10083), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6669), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182281] = 10, + [189996] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504019,21 +511503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10620), 1, sym__indent, - STATE(775), 1, + STATE(5103), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6507), 4, + STATE(6670), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182316] = 10, + [190031] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504044,21 +511528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9144), 1, - sym_identifier, - STATE(7397), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6508), 4, + ACTIONS(10063), 2, + sym__newline, + sym__dedent, + STATE(6671), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182351] = 10, + [190064] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504069,21 +511552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10486), 1, sym__indent, - STATE(6329), 1, + STATE(976), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6509), 4, + STATE(6672), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182386] = 10, + [190099] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504094,21 +511577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10509), 1, - anon_sym_get, - ACTIONS(10511), 1, - anon_sym_set, + ACTIONS(10713), 1, + sym__indent, + STATE(1984), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6510), 4, + STATE(6673), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182421] = 10, + [190134] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504119,21 +511602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10715), 1, sym__indent, - STATE(978), 1, + STATE(3145), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6511), 4, + STATE(6674), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182456] = 10, + [190169] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504144,21 +511627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10486), 1, sym__indent, - STATE(1172), 1, + STATE(950), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6512), 4, + STATE(6675), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182491] = 10, + [190204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504169,21 +511652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, - sym__indent, - STATE(7353), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6513), 4, + ACTIONS(10044), 2, + sym__newline, + sym__dedent, + STATE(6676), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182526] = 10, + [190237] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504194,21 +511676,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10513), 1, - anon_sym_with, - ACTIONS(10515), 1, - anon_sym_finally, + ACTIONS(10658), 1, + sym__indent, + STATE(1013), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6514), 4, + STATE(6677), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182561] = 10, + [190272] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504219,21 +511701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(1574), 1, - sym__expression_block, + ACTIONS(10717), 1, + anon_sym_COLON, + ACTIONS(10719), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6515), 4, + STATE(6678), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182596] = 10, + [190307] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504244,21 +511726,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, - sym__indent, - STATE(1162), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6516), 4, + ACTIONS(10721), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6679), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182631] = 10, + [190340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504269,21 +511750,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10517), 1, - sym__newline, - ACTIONS(10519), 1, - sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6517), 4, + ACTIONS(10023), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6680), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182666] = 10, + [190373] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504294,21 +511774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(553), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6518), 4, + ACTIONS(7521), 2, + sym__newline, + sym__dedent, + STATE(6681), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182701] = 10, + [190406] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504319,21 +511798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10523), 1, - anon_sym__, + ACTIONS(10606), 1, + sym__indent, + STATE(1014), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6519), 4, + STATE(6682), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182736] = 10, + [190441] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504344,21 +511823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10493), 1, + ACTIONS(10510), 1, sym__indent, - STATE(1552), 1, + STATE(5206), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6520), 4, + STATE(6683), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182771] = 10, + [190476] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504369,21 +511848,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10510), 1, sym__indent, - STATE(6302), 1, + STATE(6733), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6521), 4, + STATE(6684), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182806] = 10, + [190511] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504394,21 +511873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, + ACTIONS(10494), 1, sym__indent, - STATE(2235), 1, + STATE(614), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6522), 4, + STATE(6685), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182841] = 9, + [190546] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504419,20 +511898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10723), 1, + sym__indent, + STATE(3143), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10525), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6523), 4, + STATE(6686), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182874] = 10, + [190581] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504443,21 +511923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10546), 1, sym__indent, - STATE(7299), 1, + STATE(2297), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6524), 4, + STATE(6687), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182909] = 10, + [190616] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504468,21 +511948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10527), 1, - anon_sym_get, - ACTIONS(10529), 1, - anon_sym_set, + ACTIONS(10546), 1, + sym__indent, + STATE(2304), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6525), 4, + STATE(6688), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182944] = 9, + [190651] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504493,20 +511973,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10546), 1, + sym__indent, + STATE(2057), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9906), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6526), 4, + STATE(6689), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182977] = 10, + [190686] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504517,21 +511998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10536), 1, sym__indent, - STATE(6210), 1, + STATE(2751), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6527), 4, + STATE(6690), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183012] = 9, + [190721] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504542,20 +512023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10725), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10531), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6528), 4, + STATE(6691), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183045] = 10, + [190756] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504566,21 +512048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1566), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10727), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6529), 4, + STATE(6692), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183080] = 10, + [190791] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504591,21 +512073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10535), 1, - anon_sym_get, - ACTIONS(10537), 1, - anon_sym_set, + ACTIONS(10622), 1, + sym_identifier, + STATE(2788), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6530), 4, + STATE(6693), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183115] = 9, + [190826] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504616,20 +512098,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10494), 1, + sym__indent, + STATE(3193), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8675), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6531), 4, + STATE(6694), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183148] = 9, + [190861] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504640,20 +512123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10729), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10539), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6532), 4, + STATE(6695), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183181] = 10, + [190896] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504664,21 +512148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, - sym__indent, - STATE(7242), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10731), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6533), 4, + STATE(6696), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183216] = 10, + [190931] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504689,21 +512173,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, + ACTIONS(10476), 1, sym__indent, - STATE(1894), 1, + STATE(4540), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6534), 4, + STATE(6697), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183251] = 10, + [190966] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504714,21 +512198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10536), 1, sym__indent, - STATE(620), 1, + STATE(2778), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6535), 4, + STATE(6698), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183286] = 10, + [191001] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504739,21 +512225,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10543), 1, - anon_sym_get, - ACTIONS(10545), 1, - anon_sym_set, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6536), 4, + ACTIONS(10733), 1, + anon_sym_RBRACE, + STATE(6659), 1, + aux_sym_record_pattern_repeat1, + STATE(6699), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183321] = 10, + [191038] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504764,21 +512249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10735), 1, sym__indent, - STATE(6140), 1, + STATE(2010), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6537), 4, + STATE(6700), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183356] = 10, + [191073] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504789,21 +512274,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2254), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10737), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6538), 4, + STATE(6701), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183391] = 10, + [191108] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504814,21 +512299,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10547), 1, + ACTIONS(10602), 1, sym_identifier, - STATE(381), 1, - sym_long_identifier, + ACTIONS(10739), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6539), 4, + STATE(6702), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183426] = 10, + [191143] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504839,21 +512324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10735), 1, sym__indent, - STATE(5200), 1, + STATE(2352), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6540), 4, + STATE(6703), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183461] = 10, + [191178] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504864,21 +512349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, - sym__indent, - STATE(5135), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6541), 4, + ACTIONS(10741), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6704), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183496] = 10, + [191211] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504889,21 +512373,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10551), 1, - sym__indent, - STATE(1024), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6542), 4, + ACTIONS(10743), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6705), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183531] = 10, + [191244] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504914,21 +512397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10553), 1, - anon_sym_get, - ACTIONS(10555), 1, - anon_sym_set, + ACTIONS(10709), 1, + sym_identifier, + STATE(4955), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6543), 4, + STATE(6706), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183566] = 10, + [191279] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504939,21 +512422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2255), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10745), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6544), 4, + STATE(6707), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183601] = 10, + [191314] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504964,21 +512447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, + ACTIONS(10735), 1, sym__indent, - STATE(1353), 1, + STATE(2353), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6545), 4, + STATE(6708), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183636] = 10, + [191349] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -504989,21 +512472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10557), 1, + ACTIONS(10602), 1, sym_identifier, - STATE(2745), 1, - sym_member_signature, + ACTIONS(10747), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6546), 4, + STATE(6709), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183671] = 10, + [191384] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505014,21 +512497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10480), 1, sym__indent, - STATE(7167), 1, + STATE(1573), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6547), 4, + STATE(6710), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183706] = 10, + [191419] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505039,21 +512522,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, + ACTIONS(10749), 1, sym__indent, - STATE(1952), 1, + STATE(1121), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6548), 4, + STATE(6711), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183741] = 10, + [191454] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505064,23 +512547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, + ACTIONS(10494), 1, sym__indent, - STATE(4458), 1, + STATE(552), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6549), 4, + STATE(6712), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183776] = 11, - ACTIONS(3), 1, - sym_line_comment, + [191489] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505091,20 +512572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(10751), 1, + anon_sym_do, + ACTIONS(10753), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10559), 1, - anon_sym_RBRACE, - STATE(6573), 1, - aux_sym_record_pattern_repeat1, - STATE(6550), 4, + sym_line_comment, + STATE(6713), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183813] = 10, + [191524] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505115,21 +512597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10461), 1, - anon_sym_LPAREN, - ACTIONS(10485), 1, - anon_sym_new, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10755), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6551), 4, + STATE(6714), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183848] = 10, + [191559] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505140,21 +512622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10491), 1, + ACTIONS(10586), 1, sym__indent, - STATE(1294), 1, + STATE(1261), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6552), 4, + STATE(6715), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183883] = 10, + [191594] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505165,21 +512647,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10620), 1, sym__indent, - STATE(5072), 1, + STATE(5064), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6553), 4, + STATE(6716), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183918] = 10, + [191629] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505190,21 +512672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, + ACTIONS(10620), 1, sym__indent, - STATE(4473), 1, + STATE(4945), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6554), 4, + STATE(6717), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183953] = 10, + [191664] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505215,21 +512697,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1484), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10757), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6555), 4, + STATE(6718), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183988] = 10, + [191699] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505240,21 +512722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, + ACTIONS(8677), 1, sym_identifier, - STATE(7139), 1, + STATE(6835), 1, sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6556), 4, + STATE(6719), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184023] = 9, + [191734] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505265,20 +512747,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10600), 1, + sym__indent, + STATE(1889), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10563), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6557), 4, + STATE(6720), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184056] = 10, + [191769] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505289,21 +512772,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, + ACTIONS(10510), 1, sym__indent, - STATE(1593), 1, + STATE(6221), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6558), 4, + STATE(6721), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184091] = 9, + [191804] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505314,20 +512797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10759), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(8722), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6559), 4, + STATE(6722), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184124] = 10, + [191839] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505338,21 +512822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, + ACTIONS(10602), 1, sym_identifier, - STATE(7124), 1, - sym_long_identifier, + ACTIONS(10761), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6560), 4, + STATE(6723), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184159] = 10, + [191874] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505363,21 +512847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10542), 1, sym__indent, - STATE(6320), 1, + STATE(940), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6561), 4, + STATE(6724), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184194] = 10, + [191909] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505388,21 +512872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1595), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6562), 4, + ACTIONS(1642), 2, + sym__newline, + sym__dedent, + STATE(6725), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184229] = 10, + [191942] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505413,21 +512896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(672), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10763), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6563), 4, + STATE(6726), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184264] = 10, + [191977] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505438,21 +512921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10565), 1, - sym__indent, - STATE(1744), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10765), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6564), 4, + STATE(6727), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184299] = 10, + [192012] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505463,23 +512946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, + ACTIONS(10620), 1, sym__indent, - STATE(4967), 1, + STATE(4963), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6565), 4, + STATE(6728), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184334] = 11, - ACTIONS(3), 1, - sym_line_comment, + [192047] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505490,20 +512971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(10767), 1, + sym__indent, + STATE(1670), 1, + sym__expression_block, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10567), 1, - anon_sym_RBRACE, - STATE(6639), 1, - aux_sym_record_pattern_repeat1, - STATE(6566), 4, + sym_line_comment, + STATE(6729), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184371] = 10, + [192082] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505514,21 +512996,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10569), 1, - sym__indent, - STATE(1256), 1, - sym__expression_block, + ACTIONS(10769), 1, + sym_identifier, + STATE(6774), 1, + sym_enum_type_case, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6567), 4, + STATE(6730), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184406] = 10, + [192117] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505539,21 +513021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10571), 1, - sym__indent, - STATE(1917), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6568), 4, + ACTIONS(10771), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6731), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184441] = 10, + [192150] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505564,21 +513045,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, - sym__indent, - STATE(7075), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10773), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6569), 4, + STATE(6732), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184476] = 10, + [192185] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505589,21 +513070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10573), 1, - sym_identifier, - STATE(4435), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6570), 4, + ACTIONS(7535), 2, + sym__newline, + sym__dedent, + STATE(6733), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184511] = 10, + [192218] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505614,21 +513094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, + ACTIONS(10775), 1, + sym__newline, + ACTIONS(10777), 1, sym__indent, - STATE(5131), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6571), 4, + STATE(6734), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184546] = 10, + [192253] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505639,23 +513119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10575), 1, - sym_identifier, - STATE(5128), 1, - sym_member_signature, + ACTIONS(10510), 1, + sym__indent, + STATE(5214), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6572), 4, + STATE(6735), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184581] = 11, - ACTIONS(3), 1, - sym_line_comment, + [192288] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505666,20 +513144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10779), 1, + anon_sym__, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10577), 1, - anon_sym_RBRACE, - STATE(6639), 1, - aux_sym_record_pattern_repeat1, - STATE(6573), 4, + sym_line_comment, + STATE(6736), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184618] = 10, + [192323] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505690,21 +513169,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1628), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6574), 4, + ACTIONS(9964), 2, + sym__newline, + sym__dedent, + STATE(6737), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184653] = 10, + [192356] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505715,21 +513193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, + ACTIONS(10781), 1, sym__indent, - STATE(5127), 1, + STATE(5108), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6575), 4, + STATE(6738), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184688] = 10, + [192391] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505740,21 +513218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10579), 1, + ACTIONS(10783), 1, + sym__newline, + ACTIONS(10785), 1, sym__indent, - STATE(1014), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6576), 4, + STATE(6739), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184723] = 10, + [192426] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505765,21 +513243,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(7047), 1, - sym_long_identifier, + ACTIONS(10787), 1, + anon_sym_with, + ACTIONS(10789), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6577), 4, + STATE(6740), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184758] = 9, + [192461] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505790,20 +513268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10488), 1, + sym__indent, + STATE(7933), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10581), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6578), 4, + STATE(6741), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184791] = 10, + [192496] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505814,21 +513293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10483), 1, - sym__indent, - STATE(2286), 1, - sym__expression_block, + ACTIONS(10791), 1, + anon_sym_get, + ACTIONS(10793), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6579), 4, + STATE(6742), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184826] = 10, + [192531] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505839,21 +513318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(7030), 1, - sym_long_identifier, + ACTIONS(10713), 1, + sym__indent, + STATE(1612), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6580), 4, + STATE(6743), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184861] = 10, + [192566] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505864,21 +513343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, + ACTIONS(10546), 1, sym__indent, - STATE(6309), 1, + STATE(2430), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6581), 4, + STATE(6744), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184896] = 10, + [192601] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505889,23 +513368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10583), 1, - anon_sym_as, - ACTIONS(10585), 1, - anon_sym_with, + ACTIONS(10536), 1, + sym__indent, + STATE(2718), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6582), 4, + STATE(6745), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184931] = 11, - ACTIONS(3), 1, - sym_line_comment, + [192636] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505916,20 +513393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(10536), 1, + sym__indent, + STATE(2793), 1, + sym__expression_block, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10587), 1, - anon_sym_RBRACE, - STATE(6678), 1, - aux_sym_record_pattern_repeat1, - STATE(6583), 4, + sym_line_comment, + STATE(6746), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184968] = 10, + [192671] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505940,21 +513418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10488), 1, sym__indent, - STATE(3179), 1, + STATE(7740), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6584), 4, + STATE(6747), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185003] = 10, + [192706] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505965,21 +513443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10589), 1, - anon_sym_with, - STATE(6048), 1, - sym__object_members, + ACTIONS(10713), 1, + sym__indent, + STATE(1907), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6585), 4, + STATE(6748), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185038] = 10, + [192741] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -505990,21 +513468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1660), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10795), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6586), 4, + STATE(6749), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185073] = 10, + [192776] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506015,21 +513493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4449), 1, - sym__expression_block, + ACTIONS(10797), 1, + anon_sym_get, + ACTIONS(10799), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6587), 4, + STATE(6750), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185108] = 10, + [192811] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506040,21 +513518,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, + ACTIONS(10713), 1, sym__indent, - STATE(1823), 1, + STATE(1939), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6588), 4, + STATE(6751), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185143] = 10, + [192846] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506065,21 +513543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10801), 1, + sym__newline, + ACTIONS(10803), 1, sym__indent, - STATE(4339), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6589), 4, + STATE(6752), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185178] = 10, + [192881] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506090,21 +513568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4528), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6590), 4, + ACTIONS(3477), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6753), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185213] = 10, + [192914] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506115,21 +513592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10593), 1, - sym__indent, - STATE(1509), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6591), 4, + ACTIONS(3596), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6754), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185248] = 10, + [192947] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506140,21 +513616,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10595), 1, + ACTIONS(10600), 1, sym__indent, - STATE(1759), 1, + STATE(1901), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6592), 4, + STATE(6755), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185283] = 10, + [192982] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506165,21 +513641,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10713), 1, sym__indent, - STATE(1203), 1, + STATE(1906), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6593), 4, + STATE(6756), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185318] = 10, + [193017] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506190,21 +513666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4504), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10805), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6594), 4, + STATE(6757), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185353] = 10, + [193052] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506215,21 +513691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10494), 1, sym__indent, - STATE(6985), 1, + STATE(798), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6595), 4, + STATE(6758), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185388] = 10, + [193087] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506240,21 +513716,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10597), 1, + ACTIONS(10807), 1, sym__newline, - ACTIONS(10599), 1, + ACTIONS(10809), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6596), 4, + STATE(6759), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185423] = 10, + [193122] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506265,21 +513741,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10474), 1, sym__indent, - STATE(5067), 1, + STATE(1334), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6597), 4, + STATE(6760), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185458] = 10, + [193157] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506290,21 +513766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10601), 1, - sym__indent, - STATE(1491), 1, - sym__expression_block, + ACTIONS(10811), 1, + anon_sym_with, + ACTIONS(10813), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6598), 4, + STATE(6761), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185493] = 10, + [193192] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506315,21 +513791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1492), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6599), 4, + ACTIONS(3739), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6762), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185528] = 10, + [193225] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506340,21 +513815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(6177), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6600), 4, + ACTIONS(3455), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6763), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185563] = 10, + [193258] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506365,21 +513839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10573), 1, - sym_identifier, - STATE(4445), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6601), 4, + ACTIONS(3684), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6764), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185598] = 10, + [193291] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506390,21 +513863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(7613), 1, - sym_long_identifier, + ACTIONS(10476), 1, + sym__indent, + STATE(4401), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6602), 4, + STATE(6765), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185633] = 10, + [193326] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506415,21 +513888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10603), 1, - anon_sym_PIPE, - ACTIONS(10605), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(10488), 1, + sym__indent, + STATE(7490), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6603), 4, + STATE(6766), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185668] = 10, + [193361] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506440,21 +513913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8568), 1, - sym_identifier, - STATE(6876), 1, - sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6604), 4, + ACTIONS(10815), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6767), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185703] = 10, + [193394] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506465,21 +513937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - sym_identifier, - STATE(7023), 1, - sym_long_identifier, + ACTIONS(10817), 1, + anon_sym_EQ, + ACTIONS(10819), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6605), 4, + STATE(6768), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185738] = 10, + [193429] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506490,21 +513962,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, + ACTIONS(10486), 1, sym__indent, - STATE(1639), 1, + STATE(1025), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6606), 4, + STATE(6769), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185773] = 10, + [193464] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506515,21 +513987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, + ACTIONS(10600), 1, sym__indent, - STATE(1545), 1, + STATE(2478), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6607), 4, + STATE(6770), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185808] = 10, + [193499] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506540,21 +514012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10488), 1, sym__indent, - STATE(4329), 1, + STATE(7363), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6608), 4, + STATE(6771), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185843] = 10, + [193534] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506565,21 +514037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10433), 1, - sym__indent, - STATE(6253), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10821), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6609), 4, + STATE(6772), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185878] = 10, + [193569] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506590,21 +514062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10607), 1, - anon_sym__, + ACTIONS(10823), 1, + sym__newline, + ACTIONS(10825), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6610), 4, + STATE(6773), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185913] = 10, + [193604] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506615,21 +514087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(2107), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6611), 4, + ACTIONS(10068), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6774), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185948] = 10, + [193637] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506640,21 +514111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4424), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10827), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6612), 4, + STATE(6775), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185983] = 10, + [193672] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506665,21 +514136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, - sym__indent, - STATE(1236), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6613), 4, + ACTIONS(7589), 2, + sym__newline, + sym__dedent, + STATE(6776), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186018] = 10, + [193705] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506690,21 +514160,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10431), 1, + ACTIONS(10829), 1, + sym__newline, + ACTIONS(10831), 1, sym__indent, - STATE(7565), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6614), 4, + STATE(6777), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186053] = 10, + [193740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506715,21 +514185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10573), 1, - sym_identifier, - STATE(4423), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6615), 4, + ACTIONS(3566), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6778), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186088] = 10, + [193773] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506740,21 +514209,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4400), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6616), 4, + ACTIONS(3732), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6779), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186123] = 10, + [193806] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506765,21 +514233,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10579), 1, - sym__indent, - STATE(1009), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6617), 4, + ACTIONS(3745), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6780), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186158] = 10, + [193839] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506790,21 +514257,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(6682), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6618), 4, + ACTIONS(3590), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6781), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186193] = 10, + [193872] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506815,21 +514281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10551), 1, - sym__indent, - STATE(1418), 1, - sym__expression_block, + ACTIONS(10833), 1, + anon_sym_with, + ACTIONS(10835), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6619), 4, + STATE(6782), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186228] = 10, + [193907] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506840,21 +514306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, - sym__indent, - STATE(2150), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6620), 4, + ACTIONS(7593), 2, + sym__newline, + sym__dedent, + STATE(6783), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186263] = 9, + [193940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506865,20 +514330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7407), 2, - sym__newline, + ACTIONS(3547), 2, sym__dedent, - STATE(6621), 4, + anon_sym_PIPE, + STATE(6784), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186296] = 10, + [193973] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506889,21 +514354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10595), 1, + ACTIONS(10488), 1, sym__indent, - STATE(1602), 1, + STATE(7147), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6622), 4, + STATE(6785), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186331] = 10, + [194008] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506914,21 +514379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10609), 1, - anon_sym_get, - ACTIONS(10611), 1, - anon_sym_set, + ACTIONS(10837), 1, + anon_sym_EQ, + ACTIONS(10839), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6623), 4, + STATE(6786), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186366] = 9, + [194043] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506939,20 +514404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7453), 2, - sym__newline, + ACTIONS(3570), 2, sym__dedent, - STATE(6624), 4, + anon_sym_PIPE, + STATE(6787), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186399] = 10, + [194076] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506963,21 +514428,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10767), 1, sym__indent, - STATE(4361), 1, + STATE(1764), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6625), 4, + STATE(6788), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186434] = 10, + [194111] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -506988,21 +514453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, + ACTIONS(10658), 1, sym__indent, - STATE(2151), 1, + STATE(1073), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6626), 4, + STATE(6789), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186469] = 10, + [194146] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507013,21 +514478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, - sym__indent, - STATE(2776), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6627), 4, + ACTIONS(10110), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(6790), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186504] = 10, + [194179] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507038,21 +514502,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(1974), 1, - sym__expression_block, + ACTIONS(10841), 1, + sym_identifier, + STATE(4508), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6628), 4, + STATE(6791), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186539] = 10, + [194214] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507063,21 +514527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, + ACTIONS(10600), 1, sym__indent, - STATE(2713), 1, + STATE(2456), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6629), 4, + STATE(6792), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186574] = 10, + [194249] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507088,21 +514552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10488), 1, sym__indent, - STATE(4386), 1, + STATE(7350), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6630), 4, + STATE(6793), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186609] = 10, + [194284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507113,21 +514577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10557), 1, - sym_identifier, - STATE(2784), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6631), 4, + ACTIONS(3601), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6794), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186644] = 10, + [194317] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507138,21 +514601,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(711), 1, - sym__expression_block, + ACTIONS(10843), 1, + anon_sym_get, + ACTIONS(10845), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6632), 4, + STATE(6795), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186679] = 10, + [194352] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507163,21 +514626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10613), 1, - anon_sym_get, - ACTIONS(10615), 1, - anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6633), 4, + ACTIONS(3609), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6796), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186714] = 10, + [194385] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507188,21 +514650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(1496), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10847), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6634), 4, + STATE(6797), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186749] = 9, + [194420] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507213,20 +514675,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10849), 1, + sym__newline, + ACTIONS(10851), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10617), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6635), 4, + STATE(6798), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186782] = 9, + [194455] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507237,20 +514700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10619), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6636), 4, + ACTIONS(3613), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6799), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186815] = 9, + [194488] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507261,20 +514724,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10853), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10621), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6637), 4, + STATE(6800), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186848] = 10, + [194523] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507285,23 +514749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, - sym__indent, - STATE(1946), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6638), 4, + ACTIONS(3617), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6801), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186883] = 10, - ACTIONS(3), 1, - sym_line_comment, + [194556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507312,19 +514773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10623), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10626), 1, - anon_sym_RBRACE, - STATE(6639), 5, + sym_line_comment, + ACTIONS(3625), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6802), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [186918] = 10, + [194589] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507335,21 +514797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10628), 1, - anon_sym_get, - ACTIONS(10630), 1, - anon_sym_set, + ACTIONS(10855), 1, + sym_identifier, + STATE(5223), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6640), 4, + STATE(6803), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186953] = 10, + [194624] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507360,21 +514822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, - sym__indent, - STATE(2814), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6641), 4, + ACTIONS(7599), 2, + sym__newline, + sym__dedent, + STATE(6804), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186988] = 10, + [194657] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507385,21 +514846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10632), 1, - anon_sym__, + ACTIONS(10857), 1, + sym__newline, + ACTIONS(10859), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6642), 4, + STATE(6805), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187023] = 10, + [194692] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507410,21 +514871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(536), 1, - sym__expression_block, + ACTIONS(10861), 1, + anon_sym_with, + ACTIONS(10863), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6643), 4, + STATE(6806), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187058] = 10, + [194727] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507435,21 +514896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10634), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6644), 4, + ACTIONS(7585), 2, + sym__newline, + sym__dedent, + STATE(6807), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187093] = 10, + [194760] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507460,21 +514920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10636), 1, - anon_sym__, + ACTIONS(10488), 1, + sym__indent, + STATE(7090), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6645), 4, + STATE(6808), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187128] = 10, + [194795] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507485,21 +514945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(1846), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6646), 4, + ACTIONS(3629), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6809), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187163] = 10, + [194828] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507510,21 +514969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10638), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6647), 4, + ACTIONS(3633), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6810), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187198] = 10, + [194861] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507535,21 +514993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10640), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6648), 4, + ACTIONS(3645), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6811), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187233] = 10, + [194894] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507560,21 +515017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10642), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6649), 4, + ACTIONS(3649), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6812), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187268] = 9, + [194927] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507585,20 +515041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10009), 2, + ACTIONS(7581), 2, sym__newline, sym__dedent, - STATE(6650), 4, + STATE(6813), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187301] = 10, + [194960] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507609,21 +515065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(1845), 1, - sym__expression_block, + ACTIONS(10865), 1, + anon_sym_EQ, + ACTIONS(10867), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6651), 4, + STATE(6814), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187336] = 10, + [194995] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507634,21 +515090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, - sym__indent, - STATE(1716), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6652), 4, + ACTIONS(3653), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6815), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187371] = 10, + [195028] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507659,21 +515114,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(1821), 1, - sym__expression_block, + ACTIONS(10869), 1, + anon_sym_get, + ACTIONS(10871), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6653), 4, + STATE(6816), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187406] = 10, + [195063] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507684,21 +515139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, - sym__indent, - STATE(916), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6654), 4, + ACTIONS(3657), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6817), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187441] = 10, + [195096] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507709,21 +515163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4309), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6655), 4, + ACTIONS(3665), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6818), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187476] = 10, + [195129] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507734,21 +515187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10644), 1, - anon_sym__, + ACTIONS(10488), 1, + sym__indent, + STATE(7144), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6656), 4, + STATE(6819), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187511] = 10, + [195164] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507759,21 +515212,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10593), 1, - sym__indent, - STATE(1104), 1, - sym__expression_block, + ACTIONS(10873), 1, + anon_sym_COLON, + ACTIONS(10875), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6657), 4, + STATE(6820), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187546] = 10, + [195199] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507784,21 +515237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, + ACTIONS(10602), 1, sym_identifier, - ACTIONS(10646), 1, + ACTIONS(10877), 1, anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6658), 4, + STATE(6821), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187581] = 10, + [195234] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507809,21 +515262,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10879), 1, + sym__newline, + ACTIONS(10881), 1, sym__indent, - STATE(1006), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6659), 4, + STATE(6822), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187616] = 10, + [195269] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507834,21 +515287,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10648), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6660), 4, + ACTIONS(7571), 2, + sym__newline, + sym__dedent, + STATE(6823), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187651] = 10, + [195302] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507859,21 +515311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, + ACTIONS(10602), 1, sym_identifier, - ACTIONS(10650), 1, + ACTIONS(10883), 1, anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6661), 4, + STATE(6824), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187686] = 10, + [195337] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507884,21 +515336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10652), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6662), 4, + ACTIONS(3673), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6825), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187721] = 10, + [195370] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507909,21 +515360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10654), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6663), 4, + ACTIONS(3680), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6826), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187756] = 10, + [195403] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507934,21 +515384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10656), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6664), 4, + ACTIONS(3715), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6827), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187791] = 10, + [195436] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507959,21 +515408,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10658), 1, + ACTIONS(10885), 1, + sym__newline, + ACTIONS(10887), 1, sym__indent, - STATE(3128), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6665), 4, + STATE(6828), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187826] = 10, + [195471] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -507984,21 +515433,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10660), 1, - anon_sym__, + ACTIONS(10889), 1, + anon_sym_with, + ACTIONS(10891), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6666), 4, + STATE(6829), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187861] = 10, + [195506] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508009,21 +515458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10575), 1, - sym_identifier, - STATE(5125), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6667), 4, + ACTIONS(3723), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6830), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187896] = 10, + [195539] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508034,21 +515482,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10662), 1, - sym_identifier, - STATE(5016), 1, - sym_member_signature, + ACTIONS(10488), 1, + sym__indent, + STATE(7228), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6668), 4, + STATE(6831), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187931] = 10, + [195574] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508059,21 +515507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, + ACTIONS(10494), 1, sym__indent, - STATE(5098), 1, + STATE(756), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6669), 4, + STATE(6832), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187966] = 10, + [195609] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508084,21 +515532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10664), 1, - anon_sym__, + ACTIONS(10893), 1, + anon_sym_EQ, + ACTIONS(10895), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6670), 4, + STATE(6833), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188001] = 10, + [195644] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508109,21 +515559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, - sym__indent, - STATE(5123), 1, - sym__expression_block, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6671), 4, + ACTIONS(10897), 1, + anon_sym_RBRACE, + STATE(6664), 1, + aux_sym_record_pattern_repeat1, + STATE(6834), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188036] = 10, + [195681] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508134,21 +515583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10666), 1, - sym__newline, - ACTIONS(10668), 1, - sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6672), 4, + ACTIONS(5502), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6835), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188071] = 10, + [195714] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508159,21 +515607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - anon_sym_COLON, - ACTIONS(10672), 1, - anon_sym_COLON_GT, + ACTIONS(10702), 1, + sym__indent, + STATE(2011), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6673), 4, + STATE(6836), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188106] = 10, + [195749] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508184,21 +515632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10674), 1, - anon_sym__, + ACTIONS(10713), 1, + sym__indent, + STATE(1881), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6674), 4, + STATE(6837), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188141] = 10, + [195784] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508209,21 +515657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, + ACTIONS(10600), 1, sym__indent, - STATE(1012), 1, + STATE(2429), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6675), 4, + STATE(6838), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188176] = 10, + [195819] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508234,21 +515682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10676), 1, - anon_sym_with, - ACTIONS(10678), 1, - anon_sym_finally, + ACTIONS(10488), 1, + sym__indent, + STATE(7271), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6676), 4, + STATE(6839), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188211] = 9, + [195854] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508259,22 +515707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10680), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6677), 4, + ACTIONS(3700), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6840), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188244] = 11, - ACTIONS(3), 1, - sym_line_comment, + [195887] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508285,20 +515731,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10682), 1, - anon_sym_RBRACE, - STATE(6639), 1, - aux_sym_record_pattern_repeat1, - STATE(6678), 4, + sym_line_comment, + ACTIONS(3694), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6841), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188281] = 10, + [195920] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508309,21 +515755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10473), 1, - sym__indent, - STATE(2078), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6679), 4, + ACTIONS(2526), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6842), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188316] = 10, + [195953] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508334,21 +515779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10658), 1, sym__indent, - STATE(8137), 1, + STATE(1061), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6680), 4, + STATE(6843), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188351] = 9, + [195988] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508359,20 +515804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10899), 1, + sym__indent, + STATE(1853), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10004), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6681), 4, + STATE(6844), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188384] = 9, + [196023] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508383,20 +515829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10901), 1, + anon_sym_COLON, + ACTIONS(10903), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7496), 2, - sym__newline, - sym__dedent, - STATE(6682), 4, + STATE(6845), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188417] = 10, + [196058] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508407,21 +515854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, + ACTIONS(10600), 1, sym__indent, - STATE(4472), 1, + STATE(2428), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6683), 4, + STATE(6846), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188452] = 10, + [196093] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508432,21 +515879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, + ACTIONS(10600), 1, sym__indent, - STATE(2143), 1, + STATE(1944), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6684), 4, + STATE(6847), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188487] = 9, + [196128] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508457,20 +515904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10476), 1, + sym__indent, + STATE(4394), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10028), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6685), 4, + STATE(6848), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188520] = 10, + [196163] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508481,21 +515929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(1584), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10905), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6686), 4, + STATE(6849), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188555] = 10, + [196198] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508506,21 +515954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10684), 1, + ACTIONS(10713), 1, sym__indent, - STATE(1543), 1, + STATE(1870), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6687), 4, + STATE(6850), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188590] = 10, + [196233] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508531,21 +515979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10686), 1, + ACTIONS(10907), 1, + sym__newline, + ACTIONS(10909), 1, sym__indent, - STATE(2043), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6688), 4, + STATE(6851), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188625] = 10, + [196268] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508556,21 +516004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10476), 1, sym__indent, - STATE(8052), 1, + STATE(4501), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6689), 4, + STATE(6852), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188660] = 10, + [196303] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508581,21 +516029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10735), 1, sym__indent, - STATE(6767), 1, + STATE(2390), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6690), 4, + STATE(6853), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188695] = 10, + [196338] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508606,21 +516054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, + ACTIONS(10476), 1, sym__indent, - STATE(2164), 1, + STATE(4479), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6691), 4, + STATE(6854), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188730] = 10, + [196373] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508631,21 +516079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10688), 1, - anon_sym__, + ACTIONS(10911), 1, + sym__indent, + STATE(1835), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6692), 4, + STATE(6855), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188765] = 10, + [196408] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508656,21 +516104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10690), 1, - sym__newline, - ACTIONS(10692), 1, - sym__indent, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10913), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6693), 4, + STATE(6856), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188800] = 11, + [196443] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -508683,20 +516131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(10518), 1, anon_sym_SEMI, - ACTIONS(10694), 1, + ACTIONS(10915), 1, anon_sym_RBRACE, - STATE(6751), 1, + STATE(6664), 1, aux_sym_record_pattern_repeat1, - STATE(6694), 4, + STATE(6857), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188837] = 10, + [196480] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508707,21 +516155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, + ACTIONS(10841), 1, sym_identifier, - ACTIONS(10696), 1, - anon_sym__, + STATE(4500), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6695), 4, + STATE(6858), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188872] = 10, + [196515] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508732,21 +516180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10698), 1, + ACTIONS(10917), 1, sym__newline, - ACTIONS(10700), 1, + ACTIONS(10919), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6696), 4, + STATE(6859), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188907] = 10, + [196550] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508757,21 +516205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10702), 1, + ACTIONS(10921), 1, anon_sym_with, - ACTIONS(10704), 1, + ACTIONS(10923), 1, anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6697), 4, + STATE(6860), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188942] = 10, + [196585] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508782,21 +516230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10488), 1, sym__indent, - STATE(7923), 1, + STATE(7560), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6698), 4, + STATE(6861), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188977] = 10, + [196620] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508807,21 +516255,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, - sym__indent, - STATE(2482), 1, - sym__expression_block, + ACTIONS(10709), 1, + sym_identifier, + STATE(5106), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6699), 4, + STATE(6862), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189012] = 10, + [196655] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508832,21 +516280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10781), 1, sym__indent, - STATE(5187), 1, + STATE(5080), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6700), 4, + STATE(6863), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189047] = 10, + [196690] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508857,21 +516305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10706), 1, - sym__indent, - STATE(977), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6701), 4, + ACTIONS(888), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6864), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189082] = 10, + [196723] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508882,21 +516329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10708), 1, + ACTIONS(10925), 1, anon_sym_EQ, - ACTIONS(10710), 1, + ACTIONS(10927), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6702), 4, + STATE(6865), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189117] = 10, + [196758] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508907,21 +516354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, - sym__indent, - STATE(2751), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6703), 4, + ACTIONS(10584), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6866), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189152] = 10, + [196791] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508932,21 +516378,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10712), 1, - anon_sym_get, - ACTIONS(10714), 1, - anon_sym_set, + ACTIONS(10658), 1, + sym__indent, + STATE(1515), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6704), 4, + STATE(6867), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189187] = 10, + [196826] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508957,21 +516403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10713), 1, sym__indent, - STATE(7780), 1, + STATE(1671), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6705), 4, + STATE(6868), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189222] = 10, + [196861] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -508982,21 +516428,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10716), 1, - anon_sym__, + ACTIONS(10488), 1, + sym__indent, + STATE(7757), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6706), 4, + STATE(6869), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189257] = 10, + [196896] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509007,21 +516453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10718), 1, - sym__newline, - ACTIONS(10720), 1, - sym__indent, + ACTIONS(10929), 1, + anon_sym_COLON, + ACTIONS(10931), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6707), 4, + STATE(6870), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189292] = 10, + [196931] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509032,21 +516478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10722), 1, - anon_sym__, + ACTIONS(10735), 1, + sym__indent, + STATE(2401), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6708), 4, + STATE(6871), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189327] = 10, + [196966] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509057,21 +516503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10557), 1, - sym_identifier, - STATE(2746), 1, - sym_member_signature, + ACTIONS(10476), 1, + sym__indent, + STATE(4498), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6709), 4, + STATE(6872), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189362] = 10, + [197001] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509082,21 +516528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(1596), 1, - sym__expression_block, + ACTIONS(10841), 1, + sym_identifier, + STATE(4497), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6710), 4, + STATE(6873), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189397] = 10, + [197036] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509107,21 +516553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, - sym__indent, - STATE(1990), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10933), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6711), 4, + STATE(6874), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189432] = 10, + [197071] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509132,21 +516578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10476), 1, sym__indent, - STATE(5144), 1, + STATE(4530), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6712), 4, + STATE(6875), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189467] = 10, + [197106] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509157,21 +516603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10724), 1, + ACTIONS(10935), 1, sym__newline, - ACTIONS(10726), 1, + ACTIONS(10937), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6713), 4, + STATE(6876), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189502] = 10, + [197141] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509182,21 +516628,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10728), 1, - anon_sym_with, - ACTIONS(10730), 1, - anon_sym_finally, + ACTIONS(10899), 1, + sym__indent, + STATE(1845), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6714), 4, + STATE(6877), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189537] = 10, + [197176] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509207,21 +516653,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10749), 1, sym__indent, - STATE(7647), 1, + STATE(1516), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6715), 4, + STATE(6878), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189572] = 10, + [197211] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509232,21 +516678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(2031), 1, - sym__expression_block, + ACTIONS(10939), 1, + anon_sym_get, + ACTIONS(10941), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6716), 4, + STATE(6879), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189607] = 10, + [197246] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509257,21 +516703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, + ACTIONS(10600), 1, sym__indent, - STATE(2785), 1, + STATE(2375), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6717), 4, + STATE(6880), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189642] = 9, + [197281] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509282,20 +516728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10476), 1, + sym__indent, + STATE(4542), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10732), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6718), 4, + STATE(6881), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189675] = 10, + [197316] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509306,21 +516753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10734), 1, - anon_sym_EQ, - ACTIONS(10736), 1, - anon_sym_COLON, + ACTIONS(10476), 1, + sym__indent, + STATE(4472), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6719), 4, + STATE(6882), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189710] = 9, + [197351] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509331,20 +516778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10943), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10738), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6720), 4, + STATE(6883), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189743] = 10, + [197386] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509355,21 +516803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10476), 1, sym__indent, - STATE(4397), 1, + STATE(4525), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6721), 4, + STATE(6884), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189778] = 10, + [197421] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509380,21 +516828,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10945), 1, + sym__newline, + ACTIONS(10947), 1, sym__indent, - STATE(7553), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6722), 4, + STATE(6885), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189813] = 10, + [197456] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509405,21 +516853,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10740), 1, - anon_sym_do, - ACTIONS(10742), 1, - anon_sym_DASH_GT, + ACTIONS(10949), 1, + anon_sym_with, + ACTIONS(10951), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6723), 4, + STATE(6886), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189848] = 10, + [197491] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509430,21 +516878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10571), 1, - sym__indent, - STATE(1970), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6724), 4, + ACTIONS(10083), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6887), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189883] = 10, + [197524] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509455,21 +516902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10744), 1, - anon_sym__, + ACTIONS(10488), 1, + sym__indent, + STATE(8059), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6725), 4, + STATE(6888), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189918] = 10, + [197559] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509480,21 +516927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10686), 1, - sym__indent, - STATE(2025), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6726), 4, + ACTIONS(5491), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6889), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189953] = 10, + [197592] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509505,21 +516951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, + ACTIONS(10781), 1, sym__indent, - STATE(2022), 1, + STATE(5156), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6727), 4, + STATE(6890), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189988] = 10, + [197627] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509530,21 +516976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10746), 1, - sym__newline, - ACTIONS(10748), 1, - sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6728), 4, + ACTIONS(5495), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6891), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190023] = 10, + [197660] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509555,21 +517000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, - sym__indent, - STATE(2474), 1, - sym__expression_block, + ACTIONS(10953), 1, + anon_sym_EQ, + ACTIONS(10955), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6729), 4, + STATE(6892), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190058] = 10, + [197695] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509580,21 +517025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10781), 1, sym__indent, - STATE(6288), 1, + STATE(5141), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6730), 4, + STATE(6893), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190093] = 10, + [197730] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509605,21 +517050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10750), 1, - anon_sym__, + ACTIONS(10568), 1, + sym__indent, + STATE(1732), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6731), 4, + STATE(6894), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190128] = 10, + [197765] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509630,21 +517075,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10752), 1, + ACTIONS(10957), 1, sym__indent, - STATE(1286), 1, + STATE(1527), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6732), 4, + STATE(6895), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190163] = 10, + [197800] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509655,21 +517100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10754), 1, - sym__newline, - ACTIONS(10756), 1, + ACTIONS(10959), 1, sym__indent, + STATE(1615), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6733), 4, + STATE(6896), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190198] = 10, + [197835] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509680,21 +517125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, - sym__indent, - STATE(2154), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6734), 4, + ACTIONS(5512), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6897), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190233] = 10, + [197868] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509705,21 +517149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10758), 1, - anon_sym_with, - ACTIONS(10760), 1, - anon_sym_finally, + ACTIONS(10961), 1, + anon_sym_get, + ACTIONS(10963), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6735), 4, + STATE(6898), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190268] = 10, + [197903] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509730,21 +517174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10713), 1, sym__indent, - STATE(7418), 1, + STATE(1706), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6736), 4, + STATE(6899), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190303] = 10, + [197938] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509755,21 +517199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10475), 1, + ACTIONS(10488), 1, sym__indent, - STATE(938), 1, + STATE(8128), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6737), 4, + STATE(6900), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190338] = 9, + [197973] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509780,20 +517224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10965), 1, + anon_sym_get, + ACTIONS(10967), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(1534), 2, - sym__newline, - sym__dedent, - STATE(6738), 4, + STATE(6901), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190371] = 10, + [198008] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509804,21 +517249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, - sym__indent, - STATE(5111), 1, - sym__expression_block, + ACTIONS(10969), 1, + anon_sym_get, + ACTIONS(10971), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6739), 4, + STATE(6902), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190406] = 10, + [198043] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509829,21 +517274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10762), 1, - anon_sym_EQ, - ACTIONS(10764), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6740), 4, + ACTIONS(5516), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6903), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190441] = 10, + [198076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509854,21 +517298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, - sym__indent, - STATE(1887), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6741), 4, + ACTIONS(5508), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6904), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190476] = 10, + [198109] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509879,21 +517322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(653), 1, - sym__expression_block, + ACTIONS(10717), 1, + anon_sym_COLON, + ACTIONS(10973), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6742), 4, + STATE(6905), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190511] = 10, + [198144] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509904,21 +517347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, - sym__indent, - STATE(2176), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10975), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6743), 4, + STATE(6906), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190546] = 10, + [198179] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509929,21 +517372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, - sym__indent, - STATE(2178), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6744), 4, + ACTIONS(5531), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6907), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190581] = 10, + [198212] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509954,21 +517396,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10977), 1, + sym__newline, + ACTIONS(10979), 1, sym__indent, - STATE(7346), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6745), 4, + STATE(6908), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190616] = 10, + [198247] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -509979,21 +517421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10766), 1, - sym_identifier, - STATE(6816), 1, - sym_enum_type_case, + ACTIONS(10494), 1, + sym__indent, + STATE(550), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6746), 4, + STATE(6909), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190651] = 10, + [198282] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510004,21 +517446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10768), 1, - anon_sym_COLON, - ACTIONS(10770), 1, - anon_sym_COLON_GT, + ACTIONS(10658), 1, + sym__indent, + STATE(1033), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6747), 4, + STATE(6910), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190686] = 10, + [198317] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510029,21 +517471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, + ACTIONS(10658), 1, sym__indent, - STATE(2006), 1, + STATE(1031), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6748), 4, + STATE(6911), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190721] = 10, + [198352] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510054,21 +517496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(2003), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(10981), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6749), 4, + STATE(6912), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190756] = 10, + [198387] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510079,23 +517521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, + ACTIONS(10568), 1, sym__indent, - STATE(1638), 1, + STATE(1737), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6750), 4, + STATE(6913), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190791] = 11, - ACTIONS(3), 1, - sym_line_comment, + [198422] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510106,20 +517546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10419), 1, + ACTIONS(3), 2, anon_sym_SEMI, - ACTIONS(10772), 1, - anon_sym_RBRACE, - STATE(6639), 1, - aux_sym_record_pattern_repeat1, - STATE(6751), 4, + sym_line_comment, + ACTIONS(5487), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6914), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190828] = 10, + [198455] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510130,21 +517570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10774), 1, - anon_sym__, + ACTIONS(10658), 1, + sym__indent, + STATE(1021), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6752), 4, + STATE(6915), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190863] = 10, + [198490] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510155,21 +517595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10983), 1, + sym__newline, + ACTIONS(10985), 1, sym__indent, - STATE(5133), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6753), 4, + STATE(6916), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190898] = 10, + [198525] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510180,21 +517620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10713), 1, sym__indent, - STATE(4440), 1, + STATE(1519), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6754), 4, + STATE(6917), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190933] = 10, + [198560] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510205,21 +517645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10684), 1, + ACTIONS(10498), 1, sym__indent, - STATE(1173), 1, + STATE(4343), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6755), 4, + STATE(6918), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190968] = 10, + [198595] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510230,21 +517670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10776), 1, - sym__newline, - ACTIONS(10778), 1, - sym__indent, + ACTIONS(10987), 1, + anon_sym_with, + ACTIONS(10989), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6756), 4, + STATE(6919), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191003] = 10, + [198630] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510255,21 +517695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10488), 1, sym__indent, - STATE(690), 1, + STATE(8358), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6757), 4, + STATE(6920), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191038] = 10, + [198665] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510280,21 +517720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10780), 1, - anon_sym__, + ACTIONS(10610), 1, + sym__indent, + STATE(2365), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6758), 4, + STATE(6921), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191073] = 10, + [198700] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510305,21 +517745,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10782), 1, - sym__newline, - ACTIONS(10784), 1, + ACTIONS(10723), 1, sym__indent, + STATE(3140), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6759), 4, + STATE(6922), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191108] = 10, + [198735] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510330,21 +517772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, - sym__indent, - STATE(1955), 1, - sym__expression_block, - ACTIONS(3), 2, + ACTIONS(10518), 1, anon_sym_SEMI, - sym_line_comment, - STATE(6760), 4, + ACTIONS(10991), 1, + anon_sym_RBRACE, + STATE(6857), 1, + aux_sym_record_pattern_repeat1, + STATE(6923), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191143] = 10, + [198772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510355,21 +517796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10786), 1, - anon_sym_with, - ACTIONS(10788), 1, - anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6761), 4, + ACTIONS(5502), 2, + sym__newline, + sym__dedent, + STATE(6924), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191178] = 10, + [198805] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510380,21 +517820,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10568), 1, sym__indent, - STATE(7204), 1, + STATE(2048), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6762), 4, + STATE(6925), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191213] = 9, + [198840] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510405,20 +517845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10993), 1, + anon_sym_EQ, + ACTIONS(10995), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10790), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6763), 4, + STATE(6926), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191246] = 10, + [198875] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510429,21 +517870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10792), 1, - anon_sym_EQ, - ACTIONS(10794), 1, - anon_sym_COLON, + ACTIONS(10488), 1, + sym__indent, + STATE(8097), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6764), 4, + STATE(6927), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191281] = 10, + [198910] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510454,21 +517895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(5142), 1, - sym__expression_block, + ACTIONS(10478), 1, + anon_sym_DQUOTE, + STATE(8092), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6765), 4, + STATE(6928), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191316] = 9, + [198945] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510479,20 +517920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9965), 2, - sym__newline, - sym__dedent, - STATE(6766), 4, + ACTIONS(5535), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6929), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191349] = 9, + [198978] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510503,20 +517944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10694), 1, + sym__indent, + STATE(849), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7506), 2, - sym__newline, - sym__dedent, - STATE(6767), 4, + STATE(6930), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191382] = 10, + [199013] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510527,21 +517969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10781), 1, sym__indent, - STATE(7042), 1, + STATE(5204), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6768), 4, + STATE(6931), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191417] = 10, + [199048] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510552,21 +517994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10796), 1, - anon_sym_get, - ACTIONS(10798), 1, - anon_sym_set, + ACTIONS(10997), 1, + sym__indent, + STATE(1320), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6769), 4, + STATE(6932), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191452] = 10, + [199083] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510577,21 +518019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10999), 1, sym__indent, - STATE(5013), 1, + STATE(3168), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6770), 4, + STATE(6933), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191487] = 10, + [199118] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510602,21 +518044,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, + ACTIONS(10610), 1, sym__indent, - STATE(4824), 1, + STATE(1847), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6771), 4, + STATE(6934), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191522] = 10, + [199153] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510627,21 +518069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, + ACTIONS(10610), 1, sym__indent, - STATE(2730), 1, + STATE(2467), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6772), 4, + STATE(6935), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191557] = 10, + [199188] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510652,21 +518094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10800), 1, - sym_identifier, - STATE(5174), 1, - sym_member_signature, + ACTIONS(10735), 1, + sym__indent, + STATE(2177), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6773), 4, + STATE(6936), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191592] = 10, + [199223] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510677,21 +518119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10802), 1, - anon_sym_COLON, - ACTIONS(10804), 1, - anon_sym_COLON_GT, + ACTIONS(10959), 1, + sym__indent, + STATE(1717), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6774), 4, + STATE(6937), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191627] = 10, + [199258] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510702,21 +518144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10469), 1, + ACTIONS(10610), 1, sym__indent, - STATE(2766), 1, + STATE(2476), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6775), 4, + STATE(6938), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191662] = 10, + [199293] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510727,21 +518169,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10806), 1, - anon_sym__, + ACTIONS(10717), 1, + anon_sym_COLON, + ACTIONS(11001), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6776), 4, + STATE(6939), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191697] = 10, + [199328] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510752,21 +518194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10808), 1, - sym__newline, - ACTIONS(10810), 1, + ACTIONS(10568), 1, sym__indent, + STATE(2067), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6777), 4, + STATE(6940), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191732] = 10, + [199363] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510777,21 +518219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, + ACTIONS(10494), 1, sym__indent, - STATE(2195), 1, + STATE(774), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6778), 4, + STATE(6941), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191767] = 10, + [199398] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510802,21 +518244,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10812), 1, + ACTIONS(10715), 1, sym__indent, - STATE(1513), 1, + STATE(3137), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6779), 4, + STATE(6942), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191802] = 10, + [199433] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510827,21 +518269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10814), 1, - anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6780), 4, + ACTIONS(5491), 2, + sym__newline, + sym__dedent, + STATE(6943), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191837] = 10, + [199466] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510852,21 +518293,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10662), 1, - sym_identifier, - STATE(4972), 1, - sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6781), 4, + ACTIONS(5495), 2, + sym__newline, + sym__dedent, + STATE(6944), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191872] = 10, + [199499] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510877,21 +518317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10816), 1, - sym__newline, - ACTIONS(10818), 1, - sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6782), 4, + ACTIONS(5512), 2, + sym__newline, + sym__dedent, + STATE(6945), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191907] = 10, + [199532] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510902,21 +518341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10443), 1, - sym__indent, - STATE(1976), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(11003), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6783), 4, + STATE(6946), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191942] = 10, + [199567] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510927,21 +518366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10820), 1, - anon_sym_with, - ACTIONS(10822), 1, - anon_sym_finally, + ACTIONS(11005), 1, + sym__newline, + ACTIONS(11007), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6784), 4, + STATE(6947), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191977] = 10, + [199602] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510952,21 +518391,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, + ACTIONS(10735), 1, sym__indent, - STATE(3177), 1, + STATE(1723), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6785), 4, + STATE(6948), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192012] = 10, + [199637] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -510977,21 +518416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10824), 1, - anon_sym_get, - ACTIONS(10826), 1, - anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6786), 4, + ACTIONS(5516), 2, + sym__newline, + sym__dedent, + STATE(6949), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192047] = 10, + [199670] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511002,21 +518440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10735), 1, sym__indent, - STATE(7067), 1, + STATE(1935), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6787), 4, + STATE(6950), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192082] = 10, + [199705] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511027,21 +518465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, - sym__indent, - STATE(1568), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6788), 4, + ACTIONS(5508), 2, + sym__newline, + sym__dedent, + STATE(6951), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192117] = 10, + [199738] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511052,21 +518489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10575), 1, - sym_identifier, - STATE(5169), 1, - sym_member_signature, + ACTIONS(10610), 1, + sym__indent, + STATE(2549), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6789), 4, + STATE(6952), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192152] = 10, + [199773] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511077,21 +518514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, + ACTIONS(11009), 1, sym__indent, - STATE(2079), 1, + STATE(1591), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6790), 4, + STATE(6953), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192187] = 10, + [199808] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511102,21 +518539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10828), 1, - anon_sym_EQ, - ACTIONS(10830), 1, - anon_sym_COLON, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(11011), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6791), 4, + STATE(6954), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192222] = 10, + [199843] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511127,21 +518564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, - sym__indent, - STATE(2214), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6792), 4, + ACTIONS(5531), 2, + sym__newline, + sym__dedent, + STATE(6955), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192257] = 9, + [199876] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511152,20 +518588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11013), 1, + sym__newline, + ACTIONS(11015), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5421), 2, - sym__newline, - sym__dedent, - STATE(6793), 4, + STATE(6956), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192290] = 10, + [199911] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511176,21 +518613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10407), 1, - sym__indent, - STATE(1719), 1, - sym__expression_block, + ACTIONS(11017), 1, + anon_sym_with, + ACTIONS(11019), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6794), 4, + STATE(6957), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192325] = 10, + [199946] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511201,21 +518638,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10488), 1, sym__indent, - STATE(7108), 1, + STATE(7787), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6795), 4, + STATE(6958), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192360] = 9, + [199981] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511226,20 +518663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11021), 1, + anon_sym_get, + ACTIONS(11023), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10832), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6796), 4, + STATE(6959), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192393] = 10, + [200016] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511250,21 +518688,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, + ACTIONS(10610), 1, sym__indent, - STATE(1963), 1, + STATE(2539), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6797), 4, + STATE(6960), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [200051] = 9, + ACTIONS(7), 1, + anon_sym_POUNDnowarn, + ACTIONS(9), 1, + anon_sym_POUNDlight, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(13), 1, + anon_sym_POUNDload, + ACTIONS(15), 1, + aux_sym_preproc_line_token1, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3), 2, + anon_sym_SEMI, + sym_line_comment, + ACTIONS(5487), 2, + sym__newline, + sym__dedent, + STATE(6961), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192428] = 10, + [200084] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511275,21 +518737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10415), 1, + ACTIONS(10494), 1, sym__indent, - STATE(1016), 1, + STATE(557), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6798), 4, + STATE(6962), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192463] = 10, + [200119] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511300,21 +518762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10834), 1, - sym__indent, - STATE(1697), 1, - sym__expression_block, + ACTIONS(11025), 1, + anon_sym_EQ, + ACTIONS(11027), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6799), 4, + STATE(6963), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192498] = 10, + [200154] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511325,21 +518787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10836), 1, + ACTIONS(10999), 1, sym__indent, - STATE(1698), 1, + STATE(3172), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6800), 4, + STATE(6964), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192533] = 10, + [200189] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511350,21 +518812,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10482), 1, sym__indent, - STATE(5124), 1, + STATE(1496), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6801), 4, + STATE(6965), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192568] = 10, + [200224] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511375,21 +518837,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10838), 1, - anon_sym_COLON, - ACTIONS(10840), 1, - anon_sym_COLON_GT, + ACTIONS(10610), 1, + sym__indent, + STATE(1863), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6802), 4, + STATE(6966), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192603] = 10, + [200259] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511400,21 +518862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10488), 1, sym__indent, - STATE(5103), 1, + STATE(7220), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6803), 4, + STATE(6967), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192638] = 10, + [200294] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511425,21 +518887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10800), 1, - sym_identifier, - STATE(5122), 1, - sym_member_signature, + ACTIONS(10568), 1, + sym__indent, + STATE(2112), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6804), 4, + STATE(6968), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192673] = 10, + [200329] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511450,21 +518912,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10842), 1, - anon_sym__, + ACTIONS(10478), 1, + anon_sym_DQUOTE, + STATE(7180), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6805), 4, + STATE(6969), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192708] = 10, + [200364] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511475,21 +518937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10844), 1, - sym__newline, - ACTIONS(10846), 1, + ACTIONS(10658), 1, sym__indent, + STATE(1223), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6806), 4, + STATE(6970), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192743] = 10, + [200399] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511500,21 +518962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10459), 1, - sym__indent, - STATE(5116), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6807), 4, + ACTIONS(5535), 2, + sym__newline, + sym__dedent, + STATE(6971), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192778] = 10, + [200432] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511525,21 +518986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10848), 1, + ACTIONS(11009), 1, sym__indent, - STATE(1396), 1, + STATE(1652), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6808), 4, + STATE(6972), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192813] = 10, + [200467] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511550,21 +519011,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10850), 1, - anon_sym__, + ACTIONS(10997), 1, + sym__indent, + STATE(1649), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6809), 4, + STATE(6973), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192848] = 10, + [200502] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511575,21 +519036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, + ACTIONS(10610), 1, sym__indent, - STATE(1857), 1, + STATE(1877), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6810), 4, + STATE(6974), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192883] = 10, + [200537] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511600,21 +519061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10852), 1, - sym__newline, - ACTIONS(10854), 1, - sym__indent, + ACTIONS(10478), 1, + anon_sym_DQUOTE, + STATE(7616), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6811), 4, + STATE(6975), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192918] = 10, + [200572] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511625,21 +519086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10856), 1, - anon_sym_with, - ACTIONS(10858), 1, - anon_sym_finally, + ACTIONS(10568), 1, + sym__indent, + STATE(2113), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6812), 4, + STATE(6976), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192953] = 9, + [200607] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511650,20 +519111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10488), 1, + sym__indent, + STATE(7625), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5413), 2, - sym__newline, - sym__dedent, - STATE(6813), 4, + STATE(6977), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192986] = 10, + [200642] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511674,21 +519136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(10568), 1, sym__indent, - STATE(7379), 1, + STATE(1789), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6814), 4, + STATE(6978), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193021] = 10, + [200677] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511699,21 +519161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, + ACTIONS(10498), 1, sym__indent, - STATE(1954), 1, + STATE(4345), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6815), 4, + STATE(6979), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193056] = 9, + [200712] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511724,20 +519186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10600), 1, + sym__indent, + STATE(2273), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10056), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6816), 4, + STATE(6980), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193089] = 10, + [200747] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511748,21 +519211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(533), 1, - sym__expression_block, + ACTIONS(9071), 1, + sym_identifier, + STATE(7179), 1, + sym_long_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6817), 4, + STATE(6981), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193124] = 10, + [200782] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511773,21 +519236,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, + ACTIONS(10508), 1, sym__indent, - STATE(1542), 1, + STATE(1917), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6818), 4, + STATE(6982), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193159] = 10, + [200817] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511798,21 +519261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10860), 1, - anon_sym_EQ, - ACTIONS(10862), 1, + ACTIONS(10717), 1, anon_sym_COLON, + ACTIONS(11029), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6819), 4, + STATE(6983), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193194] = 10, + [200852] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511823,21 +519286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10864), 1, - sym__indent, - STATE(3165), 1, - sym__expression_block, + ACTIONS(10855), 1, + sym_identifier, + STATE(5173), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6820), 4, + STATE(6984), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193229] = 10, + [200887] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511848,21 +519311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7374), 1, - sym__expression_block, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(11031), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6821), 4, + STATE(6985), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193264] = 10, + [200922] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511873,21 +519336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, + ACTIONS(11033), 1, + sym__newline, + ACTIONS(11035), 1, sym__indent, - STATE(2515), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6822), 4, + STATE(6986), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193299] = 9, + [200957] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511898,20 +519361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10957), 1, + sym__indent, + STATE(1094), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5407), 2, - sym__newline, - sym__dedent, - STATE(6823), 4, + STATE(6987), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193332] = 9, + [200992] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511922,20 +519386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11037), 1, + sym__indent, + STATE(1229), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7449), 2, - sym__newline, - sym__dedent, - STATE(6824), 4, + STATE(6988), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193365] = 9, + [201027] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511946,20 +519411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11039), 1, + anon_sym_EQ, + ACTIONS(11041), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7445), 2, - sym__newline, - sym__dedent, - STATE(6825), 4, + STATE(6989), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193398] = 10, + [201062] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511970,21 +519436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10476), 1, sym__indent, - STATE(5159), 1, + STATE(4570), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6826), 4, + STATE(6990), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193433] = 10, + [201097] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -511995,21 +519461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - anon_sym_COLON, - ACTIONS(10866), 1, - anon_sym_COLON_GT, + ACTIONS(11043), 1, + anon_sym_get, + ACTIONS(11045), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6827), 4, + STATE(6991), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193468] = 10, + [201132] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512020,21 +519486,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, + ACTIONS(10612), 1, sym__indent, - STATE(2436), 1, + STATE(5229), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6828), 4, + STATE(6992), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193503] = 9, + [201167] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512045,20 +519511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(11047), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9895), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(6829), 4, + STATE(6993), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193536] = 10, + [201202] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512069,21 +519536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10800), 1, - sym_identifier, - STATE(5197), 1, - sym_member_signature, + ACTIONS(10508), 1, + sym__indent, + STATE(1566), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6830), 4, + STATE(6994), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193571] = 10, + [201237] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512094,21 +519561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10868), 1, - anon_sym__, + ACTIONS(10508), 1, + sym__indent, + STATE(1977), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6831), 4, + STATE(6995), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193606] = 10, + [201272] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512119,21 +519586,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10870), 1, - anon_sym_get, - ACTIONS(10872), 1, - anon_sym_set, + ACTIONS(11049), 1, + sym__newline, + ACTIONS(11051), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6832), 4, + STATE(6996), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193641] = 10, + [201307] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512144,21 +519611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4460), 1, - sym__expression_block, + ACTIONS(11053), 1, + anon_sym_with, + ACTIONS(11055), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6833), 4, + STATE(6997), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193676] = 10, + [201342] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512169,21 +519636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10874), 1, - sym__newline, - ACTIONS(10876), 1, + ACTIONS(10488), 1, sym__indent, + STATE(7785), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6834), 4, + STATE(6998), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193711] = 10, + [201377] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512194,21 +519661,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10812), 1, + ACTIONS(10488), 1, sym__indent, - STATE(1518), 1, + STATE(7610), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6835), 4, + STATE(6999), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193746] = 10, + [201412] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512219,21 +519686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10752), 1, + ACTIONS(10508), 1, sym__indent, - STATE(1746), 1, + STATE(1981), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6836), 4, + STATE(7000), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193781] = 10, + [201447] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512244,21 +519711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10836), 1, + ACTIONS(10494), 1, sym__indent, - STATE(1715), 1, + STATE(788), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6837), 4, + STATE(7001), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193816] = 10, + [201482] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512269,21 +519736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, + ACTIONS(10476), 1, sym__indent, - STATE(4455), 1, + STATE(4571), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6838), 4, + STATE(7002), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193851] = 10, + [201517] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512294,21 +519761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, - sym__indent, - STATE(2524), 1, - sym__expression_block, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(11059), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6839), 4, + STATE(7003), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193886] = 10, + [201552] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512319,21 +519786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10878), 1, - anon_sym__, + ACTIONS(10735), 1, + sym__indent, + STATE(1880), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6840), 4, + STATE(7004), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193921] = 10, + [201587] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512344,21 +519811,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, + ACTIONS(10781), 1, sym__indent, - STATE(2435), 1, + STATE(5203), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6841), 4, + STATE(7005), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193956] = 10, + [201622] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512369,21 +519836,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10880), 1, - sym__newline, - ACTIONS(10882), 1, + ACTIONS(10488), 1, sym__indent, + STATE(8181), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6842), 4, + STATE(7006), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193991] = 10, + [201657] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512394,21 +519861,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10884), 1, - anon_sym_with, - ACTIONS(10886), 1, - anon_sym_finally, + ACTIONS(10612), 1, + sym__indent, + STATE(5190), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6843), 4, + STATE(7007), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194026] = 10, + [201692] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512419,21 +519886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(5114), 1, - sym__expression_block, + ACTIONS(11061), 1, + anon_sym_with, + ACTIONS(11063), 1, + anon_sym_finally, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6844), 4, + STATE(7008), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194061] = 10, + [201727] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512444,21 +519911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(11065), 1, + sym__newline, + ACTIONS(11067), 1, sym__indent, - STATE(7809), 1, - sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6845), 4, + STATE(7009), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194096] = 10, + [201762] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512469,21 +519936,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10888), 1, - anon_sym_get, - ACTIONS(10890), 1, - anon_sym_set, + ACTIONS(11069), 1, + sym__indent, + STATE(2031), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6846), 4, + STATE(7010), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194131] = 10, + [201797] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512494,21 +519961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, - sym__indent, - STATE(5043), 1, - sym__expression_block, + ACTIONS(11071), 1, + anon_sym_get, + ACTIONS(11073), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6847), 4, + STATE(7011), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194166] = 10, + [201832] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512519,21 +519986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10892), 1, - anon_sym_EQ, - ACTIONS(10894), 1, - anon_sym_COLON, + ACTIONS(10602), 1, + sym_identifier, + ACTIONS(11075), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6848), 4, + STATE(7012), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194201] = 10, + [201867] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512544,21 +520011,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, + ACTIONS(10508), 1, sym__indent, - STATE(4436), 1, + STATE(2026), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6849), 4, + STATE(7013), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194236] = 10, + [201902] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512569,21 +520036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, + ACTIONS(10508), 1, sym__indent, - STATE(5192), 1, + STATE(1794), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6850), 4, + STATE(7014), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194271] = 9, + [201937] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512594,20 +520061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10508), 1, + sym__indent, + STATE(1798), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(9889), 2, - sym__newline, - sym__dedent, - STATE(6851), 4, + STATE(7015), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194304] = 10, + [201972] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512618,21 +520086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, + ACTIONS(11037), 1, sym__indent, - STATE(1998), 1, + STATE(1495), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6852), 4, + STATE(7016), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194339] = 9, + [202007] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512643,20 +520111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10855), 1, + sym_identifier, + STATE(5234), 1, + sym_member_signature, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7528), 2, - sym__newline, - sym__dedent, - STATE(6853), 4, + STATE(7017), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194372] = 10, + [202042] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512667,21 +520136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, + ACTIONS(11069), 1, sym__indent, - STATE(7906), 1, + STATE(2076), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6854), 4, + STATE(7018), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194407] = 9, + [202077] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512692,20 +520161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11077), 1, + anon_sym_get, + ACTIONS(11079), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7427), 2, - sym__newline, - sym__dedent, - STATE(6855), 4, + STATE(7019), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194440] = 10, + [202112] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512716,21 +520186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10409), 1, - anon_sym_DQUOTE, - STATE(7915), 1, - sym__string_literal, + ACTIONS(10781), 1, + sym__indent, + STATE(5201), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6856), 4, + STATE(7020), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194475] = 9, + [202147] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512741,20 +520211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10508), 1, + sym__indent, + STATE(2046), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7403), 2, - sym__newline, - sym__dedent, - STATE(6857), 4, + STATE(7021), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194508] = 10, + [202182] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512765,21 +520236,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(666), 1, - sym__expression_block, + ACTIONS(10478), 1, + anon_sym_DQUOTE, + STATE(8379), 1, + sym__string_literal, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6858), 4, + STATE(7022), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194543] = 10, + [202217] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512790,21 +520261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10896), 1, - anon_sym_get, - ACTIONS(10898), 1, - anon_sym_set, + ACTIONS(10717), 1, + anon_sym_COLON, + ACTIONS(11081), 1, + anon_sym_COLON_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6859), 4, + STATE(7023), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194578] = 10, + [202252] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512815,21 +520286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10900), 1, - anon_sym_get, - ACTIONS(10902), 1, - anon_sym_set, + ACTIONS(10568), 1, + sym__indent, + STATE(2135), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6860), 4, + STATE(7024), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194613] = 10, + [202287] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512840,21 +520311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10465), 1, + ACTIONS(10781), 1, sym__indent, - STATE(1831), 1, + STATE(5121), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6861), 4, + STATE(7025), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194648] = 10, + [202322] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512865,21 +520336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10904), 1, - anon_sym_get, - ACTIONS(10906), 1, - anon_sym_set, + ACTIONS(11083), 1, + sym__newline, + ACTIONS(11085), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6862), 4, + STATE(7026), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194683] = 10, + [202357] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512890,21 +520361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - anon_sym_COLON, - ACTIONS(10908), 1, - anon_sym_COLON_GT, + ACTIONS(10911), 1, + sym__indent, + STATE(1910), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6863), 4, + STATE(7027), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194718] = 10, + [202392] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512915,21 +520386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, + ACTIONS(10781), 1, sym__indent, - STATE(2525), 1, + STATE(5163), 1, sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6864), 4, + STATE(7028), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194753] = 10, + [202427] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512940,21 +520411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10662), 1, + ACTIONS(10602), 1, sym_identifier, - STATE(5115), 1, - sym_member_signature, + ACTIONS(11087), 1, + anon_sym__, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6865), 4, + STATE(7029), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194788] = 10, + [202462] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512965,21 +520436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10910), 1, - anon_sym_get, - ACTIONS(10912), 1, - anon_sym_set, + ACTIONS(10606), 1, + sym__indent, + STATE(2043), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6866), 4, + STATE(7030), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194823] = 9, + [202497] = 10, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -512990,20 +520461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10682), 1, + sym__indent, + STATE(1751), 1, + sym__expression_block, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(7435), 2, - sym__newline, - sym__dedent, - STATE(6867), 4, + STATE(7031), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194856] = 10, + [202532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513014,21 +520486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, - sym__indent, - STATE(2519), 1, - sym__expression_block, + ACTIONS(11089), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6868), 4, + STATE(7032), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194891] = 10, + [202564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513039,21 +520509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, - sym__indent, - STATE(1939), 1, - sym__expression_block, + ACTIONS(11091), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6869), 4, + STATE(7033), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194926] = 10, + [202596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513064,21 +520532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10914), 1, - anon_sym__, + ACTIONS(11093), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6870), 4, + STATE(7034), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194961] = 10, + [202628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513089,21 +520555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10864), 1, - sym__indent, - STATE(3167), 1, - sym__expression_block, + ACTIONS(11095), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6871), 4, + STATE(7035), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194996] = 10, + [202660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513114,21 +520578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10916), 1, - sym__newline, - ACTIONS(10918), 1, - sym__indent, + ACTIONS(11097), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6872), 4, + STATE(7036), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195031] = 9, + [202692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513139,20 +520601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3739), 1, + sym__newline_not_aligned, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5390), 2, - sym__newline, - sym__dedent, - STATE(6873), 4, + STATE(7037), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195064] = 10, + [202724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513163,21 +520624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10658), 1, - sym__indent, - STATE(3123), 1, - sym__expression_block, + ACTIONS(11099), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6874), 4, + STATE(7038), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195099] = 9, + [202756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513188,20 +520647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3684), 1, + sym__newline_not_aligned, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5379), 2, - sym__newline, - sym__dedent, - STATE(6875), 4, + STATE(7039), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195132] = 9, + [202788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513212,20 +520670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11101), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5428), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6876), 4, + STATE(7040), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195165] = 10, + [202820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513236,21 +520693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(5112), 1, - sym__expression_block, + ACTIONS(11103), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6877), 4, + STATE(7041), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195200] = 10, + [202852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513261,21 +520716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10920), 1, - anon_sym__, + ACTIONS(11105), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6878), 4, + STATE(7042), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195235] = 10, + [202884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513286,21 +520739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10565), 1, - sym__indent, - STATE(1340), 1, - sym__expression_block, + ACTIONS(11107), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6879), 4, + STATE(7043), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195270] = 10, + [202916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513311,21 +520762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10922), 1, - sym__newline, - ACTIONS(10924), 1, - sym__indent, + ACTIONS(11109), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6880), 4, + STATE(7044), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195305] = 10, + [202948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513336,21 +520785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10834), 1, - sym__indent, - STATE(1272), 1, - sym__expression_block, + ACTIONS(11111), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6881), 4, + STATE(7045), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195340] = 10, + [202980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513361,21 +520808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10926), 1, - anon_sym_with, - ACTIONS(10928), 1, - anon_sym_finally, + ACTIONS(11113), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6882), 4, + STATE(7046), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195375] = 10, + [203012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513386,21 +520831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(5061), 1, - sym__expression_block, + ACTIONS(11115), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6883), 4, + STATE(7047), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195410] = 10, + [203044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513411,21 +520854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(8222), 1, - sym__expression_block, + ACTIONS(11117), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6884), 4, + STATE(7048), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195445] = 10, + [203076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513436,21 +520877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10706), 1, - sym__indent, - STATE(966), 1, - sym__expression_block, + ACTIONS(11119), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6885), 4, + STATE(7049), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195480] = 10, + [203108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513461,21 +520900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1938), 1, - sym__expression_block, + ACTIONS(11121), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6886), 4, + STATE(7050), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195515] = 10, + [203140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513486,21 +520923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10930), 1, - anon_sym_EQ, - ACTIONS(10932), 1, - anon_sym_COLON, + ACTIONS(11123), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6887), 4, + STATE(7051), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195550] = 10, + [203172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513511,21 +520946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(8127), 1, - sym__expression_block, + ACTIONS(11125), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6888), 4, + STATE(7052), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195585] = 9, + [203204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513536,20 +520969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11127), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5394), 2, - sym__newline, - sym__dedent, - STATE(6889), 4, + STATE(7053), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195618] = 10, + [203236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513560,21 +520992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10549), 1, - sym__indent, - STATE(5158), 1, - sym__expression_block, + ACTIONS(11129), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6890), 4, + STATE(7054), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195653] = 9, + [203268] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513585,20 +521015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11131), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5386), 2, - sym__newline, - sym__dedent, - STATE(6891), 4, + STATE(7055), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195686] = 10, + [203300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513609,21 +521038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10409), 1, - anon_sym_DQUOTE, - STATE(8053), 1, - sym__string_literal, + ACTIONS(11133), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6892), 4, + STATE(7056), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195721] = 9, + [203332] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513634,20 +521061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5516), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5417), 2, - sym__newline, - sym__dedent, - STATE(6893), 4, + STATE(7057), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195754] = 10, + [203364] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513658,21 +521084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4490), 1, - sym__expression_block, + ACTIONS(7183), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6894), 4, + STATE(7058), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195789] = 9, + [203396] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513683,20 +521107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(5535), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5421), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6895), 4, + STATE(7059), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195822] = 10, + [203428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513707,21 +521130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10541), 1, - sym__indent, - STATE(2336), 1, - sym__expression_block, + ACTIONS(11135), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6896), 4, + STATE(7060), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195857] = 10, + [203460] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513732,21 +521153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10934), 1, - sym__indent, - STATE(1182), 1, - sym__expression_block, + ACTIONS(11137), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6897), 4, + STATE(7061), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195892] = 10, + [203492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513757,21 +521176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10533), 1, - sym__indent, - STATE(2332), 1, - sym__expression_block, + ACTIONS(11139), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6898), 4, + STATE(7062), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195927] = 10, + [203524] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513782,21 +521199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(8618), 1, - sym_identifier, - STATE(6957), 1, - sym_long_identifier, + ACTIONS(11141), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6899), 4, + STATE(7063), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195962] = 10, + [203556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513807,21 +521222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, - sym__indent, - STATE(4960), 1, - sym__expression_block, + ACTIONS(9599), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6900), 4, + STATE(7064), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195997] = 10, + [203588] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513832,21 +521245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1798), 1, - sym__expression_block, + ACTIONS(11143), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6901), 4, + STATE(7065), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196032] = 10, + [203620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513857,21 +521268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1881), 1, - sym__expression_block, + ACTIONS(11145), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6902), 4, + STATE(7066), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196067] = 10, + [203652] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513882,21 +521291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1880), 1, - sym__expression_block, + ACTIONS(11147), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6903), 4, + STATE(7067), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196102] = 10, + [203684] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513907,21 +521314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - anon_sym_COLON, - ACTIONS(10936), 1, - anon_sym_COLON_GT, + ACTIONS(11149), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6904), 4, + STATE(7068), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196137] = 10, + [203716] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513932,21 +521337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10427), 1, - sym__indent, - STATE(740), 1, - sym__expression_block, + ACTIONS(7210), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6905), 4, + STATE(7069), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196172] = 10, + [203748] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513957,21 +521360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10409), 1, - anon_sym_DQUOTE, - STATE(7963), 1, - sym__string_literal, + ACTIONS(5487), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6906), 4, + STATE(7070), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196207] = 10, + [203780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -513982,21 +521383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10569), 1, - sym__indent, - STATE(1713), 1, - sym__expression_block, + ACTIONS(11151), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6907), 4, + STATE(7071), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196242] = 10, + [203812] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514007,21 +521406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7892), 1, - sym__expression_block, + ACTIONS(11153), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6908), 4, + STATE(7072), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196277] = 10, + [203844] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514032,21 +521429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10591), 1, - sym__indent, - STATE(4383), 1, - sym__expression_block, + ACTIONS(11155), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6909), 4, + STATE(7073), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196312] = 9, + [203876] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514057,20 +521452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11157), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(914), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6910), 4, + STATE(7074), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196345] = 9, + [203908] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514081,20 +521475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11159), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10507), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6911), 4, + STATE(7075), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196378] = 10, + [203940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514105,21 +521498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10938), 1, - anon_sym__, + ACTIONS(11161), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6912), 4, + STATE(7076), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196413] = 10, + [203972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514130,21 +521521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10940), 1, - sym__newline, - ACTIONS(10942), 1, - sym__indent, + ACTIONS(11163), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6913), 4, + STATE(7077), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196448] = 10, + [204004] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514155,21 +521544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1848), 1, - sym__expression_block, + ACTIONS(11165), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6914), 4, + STATE(7078), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196483] = 10, + [204036] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514180,21 +521567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10944), 1, - sym__indent, - STATE(1947), 1, - sym__expression_block, + ACTIONS(5531), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6915), 4, + STATE(7079), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196518] = 10, + [204068] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514205,21 +521590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10946), 1, - anon_sym__, + ACTIONS(11167), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6916), 4, + STATE(7080), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196553] = 10, + [204100] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514230,21 +521613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10948), 1, - sym__newline, - ACTIONS(10950), 1, - sym__indent, + ACTIONS(11169), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6917), 4, + STATE(7081), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196588] = 10, + [204132] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514255,21 +521636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10952), 1, - anon_sym_with, - ACTIONS(10954), 1, - anon_sym_finally, + ACTIONS(11171), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6918), 4, + STATE(7082), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196623] = 10, + [204164] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514280,21 +521659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7322), 1, - sym__expression_block, + ACTIONS(5508), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6919), 4, + STATE(7083), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196658] = 10, + [204196] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514305,21 +521682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10956), 1, - anon_sym_EQ, - ACTIONS(10958), 1, - anon_sym_COLON, + ACTIONS(11173), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6920), 4, + STATE(7084), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196693] = 10, + [204228] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514330,21 +521705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1837), 1, - sym__expression_block, + ACTIONS(11175), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6921), 4, + STATE(7085), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196728] = 10, + [204260] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514355,21 +521728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4526), 1, - sym__expression_block, + ACTIONS(11177), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6922), 4, + STATE(7086), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196763] = 10, + [204292] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514380,21 +521751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4380), 1, - sym__expression_block, + ACTIONS(11179), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6923), 4, + STATE(7087), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196798] = 10, + [204324] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514405,21 +521774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10960), 1, - anon_sym_EQ, - ACTIONS(10962), 1, - anon_sym_COLON, + ACTIONS(11181), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6924), 4, + STATE(7088), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196833] = 10, + [204356] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514430,21 +521797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10964), 1, - sym_identifier, - STATE(4534), 1, - sym_member_signature, + ACTIONS(11183), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6925), 4, + STATE(7089), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196868] = 10, + [204388] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514455,21 +521820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10966), 1, - anon_sym_get, - ACTIONS(10968), 1, - anon_sym_set, + ACTIONS(11185), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6926), 4, + STATE(7090), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196903] = 10, + [204420] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514480,21 +521843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10453), 1, - sym__indent, - STATE(5097), 1, - sym__expression_block, + ACTIONS(11187), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6927), 4, + STATE(7091), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196938] = 10, + [204452] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514505,21 +521866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10970), 1, - anon_sym_get, - ACTIONS(10972), 1, - anon_sym_set, + ACTIONS(11189), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6928), 4, + STATE(7092), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196973] = 10, + [204484] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514530,21 +521889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7616), 1, - sym__expression_block, + ACTIONS(11191), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6929), 4, + STATE(7093), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197008] = 10, + [204516] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514555,21 +521912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(4816), 1, - sym__expression_block, + ACTIONS(11193), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6930), 4, + STATE(7094), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197043] = 9, + [204548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514580,20 +521935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(6849), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(10028), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6931), 4, + STATE(7095), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197076] = 10, + [204580] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514604,21 +521958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10417), 1, - sym__indent, - STATE(7103), 1, - sym__expression_block, + ACTIONS(11195), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6932), 4, + STATE(7096), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197111] = 10, + [204612] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514629,21 +521981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10405), 1, - sym__indent, - STATE(2184), 1, - sym__expression_block, + ACTIONS(11197), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6933), 4, + STATE(7097), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197146] = 10, + [204644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514654,21 +522004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10411), 1, - sym__indent, - STATE(1534), 1, - sym__expression_block, + ACTIONS(11199), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6934), 4, + STATE(7098), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197181] = 10, + [204676] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514679,21 +522027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10409), 1, - anon_sym_DQUOTE, - STATE(7089), 1, - sym__string_literal, + ACTIONS(11201), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6935), 4, + STATE(7099), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197216] = 9, + [204708] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514704,20 +522050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11203), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5417), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6936), 4, + STATE(7100), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197249] = 9, + [204740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514728,20 +522073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11205), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5386), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6937), 4, + STATE(7101), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197282] = 9, + [204772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514752,20 +522096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11207), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5394), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6938), 4, + STATE(7102), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197315] = 10, + [204804] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514776,21 +522119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10974), 1, - anon_sym_with, - ACTIONS(10976), 1, - anon_sym_finally, + ACTIONS(11209), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6939), 4, + STATE(7103), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197350] = 10, + [204836] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514801,21 +522142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10978), 1, - sym__newline, - ACTIONS(10980), 1, - sym__indent, + ACTIONS(5512), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6940), 4, + STATE(7104), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197385] = 10, + [204868] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514826,21 +522165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10982), 1, - anon_sym_get, - ACTIONS(10984), 1, - anon_sym_set, + ACTIONS(11211), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6941), 4, + STATE(7105), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197420] = 10, + [204900] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514851,21 +522188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1822), 1, - sym__expression_block, + ACTIONS(11213), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6942), 4, + STATE(7106), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197455] = 10, + [204932] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514876,21 +522211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(10986), 1, - anon_sym__, + ACTIONS(5495), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6943), 4, + STATE(7107), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197490] = 10, + [204964] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514901,21 +522234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10497), 1, - sym__indent, - STATE(1811), 1, - sym__expression_block, + ACTIONS(5491), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6944), 4, + STATE(7108), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197525] = 10, + [204996] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514926,21 +522257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10988), 1, - anon_sym_get, - ACTIONS(10990), 1, - anon_sym_set, + ACTIONS(11215), 1, + anon_sym_struct, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6945), 4, + STATE(7109), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197560] = 10, + [205028] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514951,21 +522280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10944), 1, - sym__indent, - STATE(1962), 1, - sym__expression_block, + ACTIONS(11217), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6946), 4, + STATE(7110), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197595] = 10, + [205060] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -514976,21 +522303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4480), 1, - sym__expression_block, + ACTIONS(11219), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6947), 4, + STATE(7111), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197630] = 10, + [205092] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515001,21 +522326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4501), 1, - sym__expression_block, + ACTIONS(11221), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6948), 4, + STATE(7112), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197665] = 9, + [205124] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515026,20 +522349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11223), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5413), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6949), 4, + STATE(7113), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197698] = 10, + [205156] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515050,21 +522372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10477), 1, - sym__indent, - STATE(1863), 1, - sym__expression_block, + ACTIONS(11225), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6950), 4, + STATE(7114), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197733] = 10, + [205188] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515075,21 +522395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - anon_sym_COLON, - ACTIONS(10992), 1, - anon_sym_COLON_GT, + ACTIONS(11227), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6951), 4, + STATE(7115), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197768] = 9, + [205220] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515100,20 +522418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11229), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5407), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6952), 4, + STATE(7116), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197801] = 10, + [205252] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515124,21 +522441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10505), 1, - sym__indent, - STATE(4507), 1, - sym__expression_block, + ACTIONS(11231), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6953), 4, + STATE(7117), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197836] = 10, + [205284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515149,21 +522464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10994), 1, - anon_sym_get, - ACTIONS(10996), 1, - anon_sym_set, + ACTIONS(11233), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6954), 4, + STATE(7118), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197871] = 10, + [205316] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515174,21 +522487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10964), 1, - sym_identifier, - STATE(4479), 1, - sym_member_signature, + ACTIONS(11235), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6955), 4, + STATE(7119), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197906] = 10, + [205348] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515199,21 +522510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10998), 1, - sym__newline, - ACTIONS(11000), 1, - sym__indent, + ACTIONS(11237), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6956), 4, + STATE(7120), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197941] = 9, + [205380] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515224,20 +522533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11239), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5428), 2, - sym__newline, - sym__dedent, - STATE(6957), 4, + STATE(7121), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197974] = 10, + [205412] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515248,21 +522556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10964), 1, - sym_identifier, - STATE(4485), 1, - sym_member_signature, + ACTIONS(11241), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6958), 4, + STATE(7122), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198009] = 10, + [205444] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515273,21 +522579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10521), 1, - sym_identifier, - ACTIONS(11002), 1, - anon_sym__, + ACTIONS(11243), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6959), 4, + STATE(7123), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198044] = 9, + [205476] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515298,20 +522602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11245), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - ACTIONS(5390), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6960), 4, + STATE(7124), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198077] = 10, + [205508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515322,21 +522625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11004), 1, - anon_sym_get, - ACTIONS(11006), 1, - anon_sym_set, + ACTIONS(11247), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6961), 4, + STATE(7125), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198112] = 10, + [205540] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515347,21 +522648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11008), 1, - anon_sym_get, - ACTIONS(11010), 1, - anon_sym_set, + ACTIONS(11249), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6962), 4, + STATE(7126), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198147] = 10, + [205572] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515372,21 +522671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11012), 1, - anon_sym_get, - ACTIONS(11014), 1, - anon_sym_set, + ACTIONS(11251), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6963), 4, + STATE(7127), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198182] = 10, + [205604] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515397,21 +522694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10934), 1, - sym__indent, - STATE(1520), 1, - sym__expression_block, + ACTIONS(11253), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6964), 4, + STATE(7128), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198217] = 10, + [205636] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515422,21 +522717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10561), 1, - sym__indent, - STATE(4986), 1, - sym__expression_block, + ACTIONS(11255), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6965), 4, + STATE(7129), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198252] = 9, + [205668] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515447,19 +522740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11016), 1, - anon_sym_then, + ACTIONS(11257), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6966), 4, + STATE(7130), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198284] = 9, + [205700] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515470,19 +522763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11018), 1, - anon_sym_set, + ACTIONS(11259), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6967), 4, + STATE(7131), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198316] = 9, + [205732] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515493,41 +522786,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11020), 1, - anon_sym_get, + ACTIONS(11261), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6968), 4, + STATE(7132), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198348] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3714), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(7879), 1, + [205764] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11263), 1, + sym__dedent, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6969), 4, + STATE(7133), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198378] = 9, + [205796] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515538,19 +522832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11020), 1, - anon_sym_set, + ACTIONS(11265), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6970), 4, + STATE(7134), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198410] = 9, + [205828] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515561,19 +522855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11022), 1, - anon_sym_get, + ACTIONS(11267), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6971), 4, + STATE(7135), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198442] = 9, + [205860] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515584,19 +522878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11022), 1, + ACTIONS(11269), 1, anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6972), 4, + STATE(7136), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198474] = 9, + [205892] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515607,19 +522901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11024), 1, - anon_sym_COLON, + ACTIONS(11269), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6973), 4, + STATE(7137), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198506] = 9, + [205924] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515630,19 +522924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11026), 1, - anon_sym_get, + ACTIONS(11271), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6974), 4, + STATE(7138), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198538] = 9, + [205956] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515653,19 +522947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11026), 1, + ACTIONS(11273), 1, anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6975), 4, + STATE(7139), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198570] = 9, + [205988] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515676,19 +522970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11028), 1, - anon_sym_do, + ACTIONS(11275), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6976), 4, + STATE(7140), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198602] = 9, + [206020] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515699,19 +522993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11030), 1, - anon_sym_PIPE, + ACTIONS(11273), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6977), 4, + STATE(7141), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198634] = 9, + [206052] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515722,19 +523016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11032), 1, - sym__dedent, + ACTIONS(11277), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6978), 4, + STATE(7142), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198666] = 9, + [206084] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515745,19 +523039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11034), 1, - anon_sym_get, + ACTIONS(11279), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6979), 4, + STATE(7143), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198698] = 9, + [206116] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515768,19 +523062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11034), 1, - anon_sym_set, + ACTIONS(11281), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6980), 4, + STATE(7144), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198730] = 9, + [206148] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515791,19 +523085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11036), 1, + ACTIONS(6829), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6981), 4, + STATE(7145), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198762] = 9, + [206180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515814,19 +523108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11038), 1, - anon_sym_COLON, + ACTIONS(11283), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6982), 4, + STATE(7146), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198794] = 9, + [206212] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515837,19 +523131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11040), 1, - sym__dedent, + ACTIONS(11285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6983), 4, + STATE(7147), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198826] = 9, + [206244] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515860,19 +523154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11042), 1, - anon_sym_POUNDendif, + ACTIONS(11287), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6984), 4, + STATE(7148), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198858] = 9, + [206276] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515883,19 +523177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11044), 1, - anon_sym_then, + ACTIONS(11289), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6985), 4, + STATE(7149), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198890] = 9, + [206308] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515906,19 +523200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11046), 1, - sym__newline_not_aligned, + ACTIONS(11291), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6986), 4, + STATE(7150), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198922] = 9, + [206340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515929,19 +523223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11048), 1, - sym__dedent, + ACTIONS(11291), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6987), 4, + STATE(7151), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198954] = 9, + [206372] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515952,19 +523246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6837), 1, + ACTIONS(7248), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6988), 4, + STATE(7152), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198986] = 9, + [206404] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515975,19 +523269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11050), 1, - anon_sym_COLON, + ACTIONS(11293), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6989), 4, + STATE(7153), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199018] = 9, + [206436] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -515998,19 +523292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11052), 1, - sym__dedent, + ACTIONS(11295), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6990), 4, + STATE(7154), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199050] = 9, + [206468] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516021,19 +523315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11054), 1, - anon_sym_end, + ACTIONS(11297), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6991), 4, + STATE(7155), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199082] = 9, + [206500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516044,19 +523338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11056), 1, + ACTIONS(11299), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6992), 4, + STATE(7156), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199114] = 9, + [206532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516067,19 +523361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11058), 1, - anon_sym_COLON, + ACTIONS(11297), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6993), 4, + STATE(7157), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199146] = 9, + [206564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516090,19 +523384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6967), 1, - sym__dedent, + ACTIONS(11301), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6994), 4, + STATE(7158), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199178] = 9, + [206596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516113,19 +523407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11060), 1, - anon_sym_GT, + ACTIONS(11303), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6995), 4, + STATE(7159), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199210] = 9, + [206628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516136,19 +523430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11062), 1, - anon_sym_RBRACE, + ACTIONS(11305), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6996), 4, + STATE(7160), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199242] = 9, + [206660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516159,19 +523453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11064), 1, - anon_sym_RBRACE, + ACTIONS(11307), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6997), 4, + STATE(7161), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199274] = 9, + [206692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516182,19 +523476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11066), 1, + ACTIONS(11309), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6998), 4, + STATE(7162), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199306] = 9, + [206724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516205,19 +523499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11068), 1, - anon_sym_POUNDendif, + ACTIONS(11311), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(6999), 4, + STATE(7163), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199338] = 9, + [206756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516228,19 +523522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11070), 1, - anon_sym_RBRACE, + ACTIONS(11313), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7000), 4, + STATE(7164), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199370] = 9, + [206788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516251,19 +523545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5250), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11315), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7001), 4, + STATE(7165), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199402] = 9, + [206820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516274,19 +523568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11072), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11317), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7002), 4, + STATE(7166), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199434] = 9, + [206852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516297,19 +523591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11074), 1, - anon_sym_RPAREN, + ACTIONS(7244), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7003), 4, + STATE(7167), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199466] = 9, + [206884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516320,19 +523614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11076), 1, - sym__dedent, + ACTIONS(11319), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7004), 4, + STATE(7168), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199498] = 9, + [206916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516343,19 +523637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11078), 1, - anon_sym_POUNDendif, + ACTIONS(11321), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7005), 4, + STATE(7169), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199530] = 9, + [206948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516366,19 +523660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11080), 1, - sym_identifier, + ACTIONS(11323), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7006), 4, + STATE(7170), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199562] = 9, + [206980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516389,19 +523683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11082), 1, - anon_sym_end, + ACTIONS(11325), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7007), 4, + STATE(7171), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199594] = 9, + [207012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516412,19 +523706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11084), 1, - sym__dedent, + ACTIONS(11327), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7008), 4, + STATE(7172), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199626] = 9, + [207044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516435,19 +523729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11086), 1, - sym__dedent, + ACTIONS(11329), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7009), 4, + STATE(7173), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199658] = 9, + [207076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516458,19 +523752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11088), 1, - sym__dedent, + ACTIONS(11331), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7010), 4, + STATE(7174), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199690] = 9, + [207108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516481,19 +523775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11090), 1, - sym__dedent, + ACTIONS(11333), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7011), 4, + STATE(7175), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199722] = 9, + [207140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516504,19 +523798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11092), 1, - sym__dedent, + ACTIONS(11335), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7012), 4, + STATE(7176), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199754] = 9, + [207172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516527,19 +523821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11094), 1, - anon_sym_and, + ACTIONS(11337), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7013), 4, + STATE(7177), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199786] = 9, + [207204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516550,19 +523844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11096), 1, - sym__newline_not_aligned, + ACTIONS(11339), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7014), 4, + STATE(7178), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199818] = 9, + [207236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516573,19 +523867,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11098), 1, - sym__triple_quoted_content, + ACTIONS(5502), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7015), 4, + STATE(7179), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [207268] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(11341), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(7180), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199850] = 9, + [207298] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516596,19 +523912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11100), 1, + ACTIONS(11343), 1, sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7016), 4, + STATE(7181), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199882] = 9, + [207330] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516619,19 +523935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11102), 1, - sym_identifier, + ACTIONS(11345), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7017), 4, + STATE(7182), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199914] = 9, + [207362] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516642,19 +523958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11104), 1, - anon_sym_then, + ACTIONS(11347), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7018), 4, + STATE(7183), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199946] = 9, + [207394] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516665,19 +523981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11106), 1, - anon_sym_set, + ACTIONS(11349), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7019), 4, + STATE(7184), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199978] = 9, + [207426] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516688,19 +524004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11106), 1, - anon_sym_get, + ACTIONS(11351), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7020), 4, + STATE(7185), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200010] = 9, + [207458] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516711,19 +524027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11108), 1, - anon_sym_COLON, + ACTIONS(11353), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7021), 4, + STATE(7186), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200042] = 9, + [207490] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516734,19 +524050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11110), 1, - sym__newline_not_aligned, + ACTIONS(11355), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7022), 4, + STATE(7187), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200074] = 9, + [207522] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516757,19 +524073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11112), 1, - anon_sym_of, + ACTIONS(9777), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7023), 4, + STATE(7188), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200106] = 9, + [207554] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516780,19 +524096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11114), 1, - anon_sym_EQ, + ACTIONS(11357), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7024), 4, + STATE(7189), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200138] = 9, + [207586] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516803,19 +524119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11116), 1, - anon_sym_end, + ACTIONS(11359), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7025), 4, + STATE(7190), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200170] = 9, + [207618] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516826,19 +524142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11118), 1, + ACTIONS(11361), 1, anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7026), 4, + STATE(7191), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200202] = 9, + [207650] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516849,19 +524165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11120), 1, - sym_identifier, + ACTIONS(11363), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7027), 4, + STATE(7192), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200234] = 9, + [207682] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516872,19 +524188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9606), 1, - anon_sym_GT, + ACTIONS(11365), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7028), 4, + STATE(7193), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200266] = 9, + [207714] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516895,19 +524211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11122), 1, + ACTIONS(11367), 1, anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7029), 4, + STATE(7194), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200298] = 9, + [207746] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516918,19 +524234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11124), 1, + ACTIONS(11369), 1, anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7030), 4, + STATE(7195), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200330] = 9, + [207778] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516941,19 +524257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11126), 1, + ACTIONS(11371), 1, sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7031), 4, + STATE(7196), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200362] = 9, + [207810] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516964,19 +524280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11128), 1, - anon_sym_DASH_GT, + ACTIONS(11373), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7032), 4, + STATE(7197), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200394] = 9, + [207842] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -516987,19 +524303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11130), 1, - anon_sym_end, + ACTIONS(11375), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7033), 4, + STATE(7198), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200426] = 9, + [207874] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517010,19 +524326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11132), 1, - anon_sym_set, + ACTIONS(11377), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7034), 4, + STATE(7199), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200458] = 9, + [207906] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517033,19 +524349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11134), 1, + ACTIONS(11379), 1, sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7035), 4, + STATE(7200), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200490] = 9, + [207938] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517056,19 +524372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11136), 1, + ACTIONS(11381), 1, anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7036), 4, + STATE(7201), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200522] = 9, + [207970] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517079,19 +524395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11138), 1, - anon_sym_POUNDendif, + ACTIONS(11383), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7037), 4, + STATE(7202), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200554] = 9, + [208002] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517102,19 +524418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11140), 1, - sym_int, + ACTIONS(11385), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7038), 4, + STATE(7203), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200586] = 9, + [208034] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517125,19 +524441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11142), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11387), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7039), 4, + STATE(7204), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200618] = 9, + [208066] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517148,19 +524464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11144), 1, - sym__dedent, + ACTIONS(11389), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7040), 4, + STATE(7205), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200650] = 9, + [208098] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517171,19 +524487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11146), 1, - sym__dedent, + ACTIONS(11391), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7041), 4, + STATE(7206), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200682] = 9, + [208130] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517194,41 +524510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11148), 1, - anon_sym_RPAREN, + ACTIONS(11393), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7042), 4, - sym_block_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [200714] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3673), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(7879), 1, - anon_sym_POUNDnowarn, - ACTIONS(7881), 1, - anon_sym_POUNDlight, - ACTIONS(7883), 1, - anon_sym_POUNDr, - ACTIONS(15), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(135), 2, - anon_sym_SEMI, - sym_line_comment, - STATE(7043), 4, + STATE(7207), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200744] = 9, + [208162] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517239,19 +524533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11150), 1, - anon_sym_end, + ACTIONS(11395), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7044), 4, + STATE(7208), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200776] = 9, + [208194] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517262,19 +524556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11132), 1, - anon_sym_get, + ACTIONS(11397), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7045), 4, + STATE(7209), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200808] = 9, + [208226] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517285,19 +524579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11152), 1, - anon_sym_RBRACK, + ACTIONS(11399), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7046), 4, + STATE(7210), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200840] = 9, + [208258] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517308,19 +524602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11154), 1, - anon_sym_of, + ACTIONS(11401), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7047), 4, + STATE(7211), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200872] = 9, + [208290] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517331,19 +524625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11156), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11403), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7048), 4, + STATE(7212), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200904] = 9, + [208322] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517354,19 +524648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11158), 1, + ACTIONS(11405), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7049), 4, + STATE(7213), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200936] = 9, + [208354] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517377,19 +524671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6754), 1, - sym__dedent, + ACTIONS(11407), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7050), 4, + STATE(7214), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200968] = 9, + [208386] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517400,19 +524694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11160), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(11409), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7051), 4, + STATE(7215), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201000] = 9, + [208418] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517423,19 +524717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11162), 1, - anon_sym_RBRACE, + ACTIONS(11411), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7052), 4, + STATE(7216), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201032] = 9, + [208450] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517446,19 +524740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11164), 1, - anon_sym_set, + ACTIONS(11413), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7053), 4, + STATE(7217), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201064] = 9, + [208482] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517469,19 +524763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11166), 1, + ACTIONS(11415), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7054), 4, + STATE(7218), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201096] = 9, + [208514] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517492,19 +524786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, - anon_sym_RPAREN, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11417), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7055), 4, + STATE(7219), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201128] = 9, + [208546] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517515,19 +524809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11164), 1, - anon_sym_get, + ACTIONS(11419), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7056), 4, + STATE(7220), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201160] = 9, + [208578] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517538,19 +524832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11168), 1, - sym__dedent, + ACTIONS(11421), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7057), 4, + STATE(7221), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201192] = 9, + [208610] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517561,19 +524855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11170), 1, + ACTIONS(11423), 1, anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7058), 4, + STATE(7222), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201224] = 9, + [208642] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517584,19 +524878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11172), 1, - anon_sym_then, + ACTIONS(11425), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7059), 4, + STATE(7223), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201256] = 9, + [208674] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517607,19 +524901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11174), 1, - anon_sym_RBRACK, + ACTIONS(11427), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7060), 4, + STATE(7224), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201288] = 9, + [208706] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517630,19 +524924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11176), 1, + ACTIONS(11429), 1, anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7061), 4, + STATE(7225), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201320] = 9, + [208738] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517653,19 +524947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11178), 1, + ACTIONS(11431), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7062), 4, + STATE(7226), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201352] = 9, + [208770] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517676,19 +524970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11180), 1, + ACTIONS(11433), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7063), 4, + STATE(7227), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201384] = 9, + [208802] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517699,19 +524993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11182), 1, - anon_sym_set, + ACTIONS(11435), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7064), 4, + STATE(7228), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201416] = 9, + [208834] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517722,19 +525016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11182), 1, - anon_sym_get, + ACTIONS(11437), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7065), 4, + STATE(7229), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201448] = 9, + [208866] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517745,19 +525039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11184), 1, - anon_sym_GT, + ACTIONS(11439), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7066), 4, + STATE(7230), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201480] = 9, + [208898] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517768,19 +525062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11186), 1, - anon_sym_RPAREN, + ACTIONS(11441), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7067), 4, + STATE(7231), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201512] = 9, + [208930] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517791,19 +525085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3673), 1, - sym__newline_not_aligned, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11443), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7068), 4, + STATE(7232), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201544] = 9, + [208962] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517814,19 +525108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11188), 1, + ACTIONS(11445), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7069), 4, + STATE(7233), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201576] = 9, + [208994] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517837,19 +525131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11190), 1, - anon_sym_GT, + ACTIONS(11447), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7070), 4, + STATE(7234), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201608] = 9, + [209026] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517860,19 +525154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11192), 1, - anon_sym_RBRACK, + ACTIONS(11449), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7071), 4, + STATE(7235), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201640] = 9, + [209058] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517883,19 +525177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11194), 1, - sym__triple_quoted_content, + ACTIONS(11451), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7072), 4, + STATE(7236), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201672] = 9, + [209090] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517906,19 +525200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11196), 1, - sym__triple_quoted_content, + ACTIONS(11453), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7073), 4, + STATE(7237), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201704] = 9, + [209122] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517929,19 +525223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, - anon_sym_then, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11455), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7074), 4, + STATE(7238), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201736] = 9, + [209154] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517952,19 +525246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11198), 1, + ACTIONS(11457), 1, anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7075), 4, + STATE(7239), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201768] = 9, + [209186] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517975,19 +525269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11200), 1, + ACTIONS(11459), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7076), 4, + STATE(7240), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201800] = 9, + [209218] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -517998,19 +525292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11202), 1, - sym__dedent, + ACTIONS(11461), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7077), 4, + STATE(7241), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201832] = 9, + [209250] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518021,19 +525315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11204), 1, - sym__newline_not_aligned, + ACTIONS(11463), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7078), 4, + STATE(7242), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201864] = 9, + [209282] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518044,19 +525338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11206), 1, - sym_identifier, + ACTIONS(6963), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7079), 4, + STATE(7243), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201896] = 9, + [209314] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518067,19 +525361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11208), 1, - sym_identifier, + ACTIONS(11465), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7080), 4, + STATE(7244), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201928] = 9, + [209346] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518090,19 +525384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3219), 1, + anon_sym_then, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6873), 1, - sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7081), 4, + STATE(7245), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201960] = 9, + [209378] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518113,19 +525407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11210), 1, + ACTIONS(11467), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7082), 4, + STATE(7246), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201992] = 9, + [209410] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518136,19 +525430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11212), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11469), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7083), 4, + STATE(7247), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202024] = 9, + [209442] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518159,19 +525453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11214), 1, - sym_identifier, + ACTIONS(11471), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7084), 4, + STATE(7248), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202056] = 9, + [209474] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518182,42 +525476,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11216), 1, - anon_sym_COLON, + ACTIONS(11473), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7085), 4, + STATE(7249), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202088] = 9, - ACTIONS(7), 1, + [209506] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3596), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11218), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(7086), 4, + STATE(7250), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202120] = 9, + [209536] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518228,19 +525521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11220), 1, + ACTIONS(11475), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7087), 4, + STATE(7251), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202152] = 9, + [209568] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518251,41 +525544,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11222), 1, - sym_int, + ACTIONS(11477), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7088), 4, + STATE(7252), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202184] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [209600] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11224), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11479), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7089), 4, + STATE(7253), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202214] = 9, + [209632] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518296,19 +525590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5296), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11481), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7090), 4, + STATE(7254), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202246] = 9, + [209664] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518319,19 +525613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11226), 1, - anon_sym_COLON, + ACTIONS(11483), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7091), 4, + STATE(7255), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202278] = 9, + [209696] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518342,19 +525636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11228), 1, - sym_identifier, + ACTIONS(11485), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7092), 4, + STATE(7256), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202310] = 9, + [209728] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518365,19 +525659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11230), 1, - sym_identifier, + ACTIONS(11487), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7093), 4, + STATE(7257), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202342] = 9, + [209760] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518388,19 +525682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11232), 1, - anon_sym_COLON, + ACTIONS(6870), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7094), 4, + STATE(7258), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202374] = 9, + [209792] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518411,19 +525705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11234), 1, + ACTIONS(11489), 1, sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7095), 4, + STATE(7259), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202406] = 9, + [209824] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518434,19 +525728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6854), 1, - sym__dedent, + ACTIONS(11491), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7096), 4, + STATE(7260), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202438] = 9, + [209856] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518457,19 +525751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11236), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11493), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7097), 4, + STATE(7261), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202470] = 9, + [209888] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518480,19 +525774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11238), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11495), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7098), 4, + STATE(7262), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202502] = 9, + [209920] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518503,19 +525797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11240), 1, - anon_sym_RBRACE, + ACTIONS(11497), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7099), 4, + STATE(7263), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202534] = 9, + [209952] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518526,19 +525820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11242), 1, - anon_sym_COLON, + ACTIONS(11499), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7100), 4, + STATE(7264), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202566] = 9, + [209984] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518549,19 +525843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11244), 1, - sym_identifier, + ACTIONS(11501), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7101), 4, + STATE(7265), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202598] = 9, + [210016] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518572,19 +525866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11246), 1, - anon_sym_RBRACE, + ACTIONS(11503), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7102), 4, + STATE(7266), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202630] = 9, + [210048] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518595,42 +525889,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11248), 1, - anon_sym_RPAREN, + ACTIONS(11505), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7103), 4, + STATE(7267), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202662] = 9, - ACTIONS(7), 1, + [210080] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3477), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11250), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(7104), 4, + STATE(7268), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202694] = 9, + [210110] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518641,19 +525934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11252), 1, - sym_identifier, + ACTIONS(9719), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7105), 4, + STATE(7269), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202726] = 9, + [210142] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518664,19 +525957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11254), 1, - sym_identifier, + ACTIONS(11507), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7106), 4, + STATE(7270), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202758] = 9, + [210174] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518687,19 +525980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11256), 1, - sym_identifier, + ACTIONS(11509), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7107), 4, + STATE(7271), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202790] = 9, + [210206] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518710,19 +526003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11258), 1, - anon_sym_RPAREN, + ACTIONS(11511), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7108), 4, + STATE(7272), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202822] = 9, + [210238] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518733,19 +526026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11260), 1, - anon_sym_COLON, + ACTIONS(11513), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7109), 4, + STATE(7273), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202854] = 9, + [210270] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518756,19 +526049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11262), 1, - sym__triple_quoted_content, + ACTIONS(11515), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7110), 4, + STATE(7274), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202886] = 9, + [210302] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518779,19 +526072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11264), 1, - sym__triple_quoted_content, + ACTIONS(11517), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7111), 4, + STATE(7275), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202918] = 9, + [210334] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518802,19 +526095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11266), 1, - sym_identifier, + ACTIONS(11519), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7112), 4, + STATE(7276), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202950] = 9, + [210366] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518825,19 +526118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11268), 1, - anon_sym_then, + ACTIONS(11521), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7113), 4, + STATE(7277), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202982] = 9, + [210398] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518848,19 +526141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11270), 1, - anon_sym_RBRACK, + ACTIONS(11523), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7114), 4, + STATE(7278), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203014] = 9, + [210430] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518871,19 +526164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11272), 1, + ACTIONS(11525), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7115), 4, + STATE(7279), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203046] = 9, + [210462] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518894,19 +526187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3714), 1, - sym__newline_not_aligned, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(11527), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7116), 4, + STATE(7280), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203078] = 9, + [210494] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518917,19 +526210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11274), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11529), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7117), 4, + STATE(7281), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203110] = 9, + [210526] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518940,19 +526233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11276), 1, - anon_sym_GT, + ACTIONS(11531), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7118), 4, + STATE(7282), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203142] = 9, + [210558] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518963,19 +526256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11278), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11533), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7119), 4, + STATE(7283), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203174] = 9, + [210590] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -518986,19 +526279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11280), 1, - anon_sym_DASH_GT, + ACTIONS(11535), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7120), 4, + STATE(7284), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203206] = 9, + [210622] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519009,19 +526302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11282), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11537), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7121), 4, + STATE(7285), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203238] = 9, + [210654] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519032,19 +526325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11284), 1, - sym_identifier, + ACTIONS(11539), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7122), 4, + STATE(7286), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203270] = 9, + [210686] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519055,19 +526348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11286), 1, - anon_sym_EQ, + ACTIONS(11541), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7123), 4, + STATE(7287), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203302] = 9, + [210718] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519078,19 +526371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11288), 1, - anon_sym_of, + ACTIONS(11543), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7124), 4, + STATE(7288), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203334] = 9, + [210750] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519101,19 +526394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11290), 1, - sym__newline_not_aligned, + ACTIONS(11545), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7125), 4, + STATE(7289), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203366] = 9, + [210782] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519124,19 +526417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11292), 1, - anon_sym_struct, + ACTIONS(11547), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7126), 4, + STATE(7290), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203398] = 9, + [210814] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519147,19 +526440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11294), 1, - sym_identifier, + ACTIONS(9727), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7127), 4, + STATE(7291), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203430] = 9, + [210846] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519170,19 +526463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11296), 1, - sym_identifier, + ACTIONS(9741), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7128), 4, + STATE(7292), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203462] = 9, + [210878] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519193,19 +526486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11298), 1, - sym__newline_not_aligned, + ACTIONS(11549), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7129), 4, + STATE(7293), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203494] = 9, + [210910] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519216,19 +526509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11300), 1, - anon_sym_and, + ACTIONS(11551), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7130), 4, + STATE(7294), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203526] = 9, + [210942] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519239,19 +526532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11302), 1, - sym_identifier, + ACTIONS(11553), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7131), 4, + STATE(7295), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203558] = 9, + [210974] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519262,19 +526555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11304), 1, - sym__dedent, + ACTIONS(9745), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7132), 4, + STATE(7296), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203590] = 9, + [211006] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519285,19 +526578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11306), 1, + ACTIONS(11555), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7133), 4, + STATE(7297), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203622] = 9, + [211038] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519308,19 +526601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11308), 1, - sym__dedent, + ACTIONS(11557), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7134), 4, + STATE(7298), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203654] = 9, + [211070] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519331,19 +526624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11310), 1, - sym_identifier, + ACTIONS(11559), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7135), 4, + STATE(7299), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203686] = 9, + [211102] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519354,19 +526647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11312), 1, - sym_identifier, + ACTIONS(11561), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7136), 4, + STATE(7300), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203718] = 9, + [211134] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519377,19 +526670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11314), 1, - anon_sym_RBRACK, + ACTIONS(11563), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7137), 4, + STATE(7301), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203750] = 9, + [211166] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519400,19 +526693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11316), 1, - sym__dedent, + ACTIONS(11565), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7138), 4, + STATE(7302), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203782] = 9, + [211198] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519423,19 +526716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11318), 1, - anon_sym_of, + ACTIONS(11565), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7139), 4, + STATE(7303), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203814] = 9, + [211230] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519446,19 +526739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11320), 1, - sym_identifier, + ACTIONS(10751), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7140), 4, + STATE(7304), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203846] = 9, + [211262] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519469,19 +526762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11322), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11567), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7141), 4, + STATE(7305), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203878] = 9, + [211294] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519492,19 +526785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11324), 1, - sym_int, + ACTIONS(11569), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7142), 4, + STATE(7306), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203910] = 9, + [211326] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519515,19 +526808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11326), 1, - sym_identifier, + ACTIONS(11571), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7143), 4, + STATE(7307), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203942] = 9, + [211358] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519538,19 +526831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11328), 1, - anon_sym_get, + ACTIONS(11573), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7144), 4, + STATE(7308), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203974] = 9, + [211390] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519561,19 +526854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11328), 1, - anon_sym_set, + ACTIONS(11575), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7145), 4, + STATE(7309), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204006] = 9, + [211422] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519584,19 +526877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11330), 1, - anon_sym_COLON, + ACTIONS(11577), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7146), 4, + STATE(7310), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204038] = 9, + [211454] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519607,19 +526900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11332), 1, - anon_sym_get, + ACTIONS(11579), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7147), 4, + STATE(7311), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204070] = 9, + [211486] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519630,19 +526923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11332), 1, + ACTIONS(11577), 1, anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7148), 4, + STATE(7312), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204102] = 9, + [211518] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519653,19 +526946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11334), 1, - sym_identifier, + ACTIONS(11581), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7149), 4, + STATE(7313), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204134] = 9, + [211550] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519676,19 +526969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11336), 1, - anon_sym_do, + ACTIONS(11581), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7150), 4, + STATE(7314), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204166] = 9, + [211582] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519699,19 +526992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11338), 1, - sym_identifier, + ACTIONS(11583), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7151), 4, + STATE(7315), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204198] = 9, + [211614] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519722,19 +527015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11340), 1, - anon_sym_get, + ACTIONS(11585), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7152), 4, + STATE(7316), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204230] = 9, + [211646] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519745,19 +527038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11342), 1, - anon_sym_PIPE, + ACTIONS(11587), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7153), 4, + STATE(7317), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204262] = 9, + [211678] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519768,19 +527061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11344), 1, + ACTIONS(11589), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7154), 4, + STATE(7318), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204294] = 9, + [211710] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519791,19 +527084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11346), 1, - sym__dedent, + ACTIONS(11591), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7155), 4, + STATE(7319), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204326] = 9, + [211742] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519814,19 +527107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11348), 1, - anon_sym_get, + ACTIONS(11593), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7156), 4, + STATE(7320), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204358] = 9, + [211774] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519837,19 +527130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11348), 1, - anon_sym_set, + ACTIONS(11595), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7157), 4, + STATE(7321), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204390] = 9, + [211806] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519860,19 +527153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11350), 1, + ACTIONS(5330), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7158), 4, + STATE(7322), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204422] = 9, + [211838] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519883,19 +527176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11352), 1, + ACTIONS(11597), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7159), 4, + STATE(7323), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204454] = 9, + [211870] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519906,19 +527199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11354), 1, - anon_sym_DASH_GT, + ACTIONS(11595), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7160), 4, + STATE(7324), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204486] = 9, + [211902] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519929,19 +527222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11356), 1, - anon_sym_COLON, + ACTIONS(11599), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7161), 4, + STATE(7325), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204518] = 9, + [211934] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519952,19 +527245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11340), 1, - anon_sym_set, + ACTIONS(11601), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7162), 4, + STATE(7326), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204550] = 9, + [211966] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519975,19 +527268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11358), 1, - anon_sym_get, + ACTIONS(11603), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7163), 4, + STATE(7327), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204582] = 9, + [211998] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -519998,19 +527291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11358), 1, - anon_sym_set, + ACTIONS(11605), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7164), 4, + STATE(7328), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204614] = 9, + [212030] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520021,19 +527314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11360), 1, - sym_identifier, + ACTIONS(11607), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7165), 4, + STATE(7329), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204646] = 9, + [212062] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520044,19 +527337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11362), 1, - sym_identifier, + ACTIONS(11609), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7166), 4, + STATE(7330), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204678] = 9, + [212094] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520067,19 +527360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11364), 1, - anon_sym_then, + ACTIONS(9755), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7167), 4, + STATE(7331), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204710] = 9, + [212126] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520090,19 +527383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11366), 1, - sym_identifier, + ACTIONS(11611), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7168), 4, + STATE(7332), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204742] = 9, + [212158] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520113,19 +527406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6780), 1, - sym__dedent, + ACTIONS(11613), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7169), 4, + STATE(7333), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204774] = 9, + [212190] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520136,19 +527429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11368), 1, - anon_sym_COLON, + ACTIONS(11615), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7170), 4, + STATE(7334), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204806] = 9, + [212222] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520159,19 +527452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6832), 1, - sym__dedent, + ACTIONS(11617), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7171), 4, + STATE(7335), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204838] = 9, + [212254] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520182,19 +527475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11370), 1, - anon_sym_get, + ACTIONS(11619), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7172), 4, + STATE(7336), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204870] = 9, + [212286] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520205,19 +527498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11370), 1, - anon_sym_set, + ACTIONS(11621), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7173), 4, + STATE(7337), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204902] = 9, + [212318] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520228,19 +527521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11372), 1, - sym_identifier, + ACTIONS(11623), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7174), 4, + STATE(7338), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204934] = 9, + [212350] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520251,19 +527544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11374), 1, - anon_sym_COLON, + ACTIONS(11625), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7175), 4, + STATE(7339), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204966] = 9, + [212382] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520274,19 +527567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11376), 1, - anon_sym_COLON, + ACTIONS(11627), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7176), 4, + STATE(7340), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204998] = 9, + [212414] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520297,19 +527590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11378), 1, - sym_identifier, + ACTIONS(11629), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7177), 4, + STATE(7341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205030] = 9, + [212446] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520320,19 +527613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11380), 1, - anon_sym_unit, + ACTIONS(11631), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7178), 4, + STATE(7342), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205062] = 9, + [212478] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520343,19 +527636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11382), 1, - anon_sym_get, + ACTIONS(11633), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7179), 4, + STATE(7343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205094] = 9, + [212510] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520366,19 +527659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11382), 1, - anon_sym_set, + ACTIONS(11635), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7180), 4, + STATE(7344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205126] = 9, + [212542] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520389,19 +527682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11384), 1, - anon_sym_COLON, + ACTIONS(11637), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7181), 4, + STATE(7345), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205158] = 9, + [212574] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520412,19 +527705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11386), 1, - anon_sym_GT, + ACTIONS(11639), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7182), 4, + STATE(7346), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205190] = 9, + [212606] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520435,19 +527728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11388), 1, - sym__dedent, + ACTIONS(11641), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7183), 4, + STATE(7347), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205222] = 9, + [212638] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520458,19 +527751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11390), 1, - anon_sym_COLON, + ACTIONS(11643), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7184), 4, + STATE(7348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205254] = 9, + [212670] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520481,19 +527774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11392), 1, - anon_sym_get, + ACTIONS(11645), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7185), 4, + STATE(7349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205286] = 9, + [212702] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520504,19 +527797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6856), 1, - sym__dedent, + ACTIONS(11647), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7186), 4, + STATE(7350), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205318] = 9, + [212734] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520527,19 +527820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11392), 1, - anon_sym_set, + ACTIONS(11649), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7187), 4, + STATE(7351), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205350] = 9, + [212766] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520550,19 +527843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11394), 1, + ACTIONS(11651), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7188), 4, + STATE(7352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205382] = 9, + [212798] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520573,19 +527866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11396), 1, - anon_sym_RBRACE, + ACTIONS(11653), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7189), 4, + STATE(7353), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205414] = 9, + [212830] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520596,19 +527889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11398), 1, - anon_sym_COLON, + ACTIONS(9769), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7190), 4, + STATE(7354), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205446] = 9, + [212862] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520619,19 +527912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11400), 1, - anon_sym_RBRACE, + ACTIONS(11655), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7191), 4, + STATE(7355), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205478] = 9, + [212894] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520642,19 +527935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11402), 1, - anon_sym_RBRACE, + ACTIONS(11657), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7192), 4, + STATE(7356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205510] = 9, + [212926] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520665,19 +527958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11404), 1, - anon_sym_POUNDendif, + ACTIONS(11659), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7193), 4, + STATE(7357), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205542] = 9, + [212958] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520688,19 +527981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9714), 1, + ACTIONS(9775), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7194), 4, + STATE(7358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205574] = 9, + [212990] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520711,19 +528004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11406), 1, - anon_sym_RBRACK, + ACTIONS(11661), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7195), 4, + STATE(7359), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205606] = 9, + [213022] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520734,19 +528027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11408), 1, - anon_sym_GT, + ACTIONS(11663), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7196), 4, + STATE(7360), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205638] = 9, + [213054] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520757,19 +528050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11410), 1, - sym_identifier, + ACTIONS(11665), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7197), 4, + STATE(7361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205670] = 9, + [213086] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520780,19 +528073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11412), 1, - sym_identifier, + ACTIONS(11667), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7198), 4, + STATE(7362), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205702] = 9, + [213118] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520803,19 +528096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11414), 1, - anon_sym_GT, + ACTIONS(11669), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7199), 4, + STATE(7363), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205734] = 9, + [213150] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520826,19 +528119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11416), 1, - sym__triple_quoted_content, + ACTIONS(11671), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7200), 4, + STATE(7364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205766] = 9, + [213182] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520849,19 +528142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11418), 1, - sym__triple_quoted_content, + ACTIONS(11673), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7201), 4, + STATE(7365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205798] = 9, + [213214] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520872,19 +528165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11420), 1, + ACTIONS(11675), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7202), 4, + STATE(7366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205830] = 9, + [213246] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520895,19 +528188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11422), 1, - anon_sym_then, + ACTIONS(11677), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7203), 4, + STATE(7367), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205862] = 9, + [213278] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520918,19 +528211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11424), 1, - anon_sym_RPAREN, + ACTIONS(11679), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7204), 4, + STATE(7368), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205894] = 9, + [213310] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520941,19 +528234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11426), 1, - sym_identifier, + ACTIONS(11681), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7205), 4, + STATE(7369), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205926] = 9, + [213342] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520964,19 +528257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9700), 1, + ACTIONS(11683), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7206), 4, + STATE(7370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205958] = 9, + [213374] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -520987,19 +528280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11428), 1, - anon_sym_GT, + ACTIONS(11685), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7207), 4, + STATE(7371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205990] = 9, + [213406] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521010,19 +528303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11430), 1, - sym__dedent, + ACTIONS(11687), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7208), 4, + STATE(7372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206022] = 9, + [213438] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521033,19 +528326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11432), 1, - anon_sym_DASH_GT, + ACTIONS(11689), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7209), 4, + STATE(7373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206054] = 9, + [213470] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521056,19 +528349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11434), 1, - anon_sym_end, + ACTIONS(11691), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7210), 4, + STATE(7374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206086] = 9, + [213502] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521079,19 +528372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11436), 1, + ACTIONS(3219), 1, anon_sym_RPAREN, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7211), 4, + STATE(7375), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206118] = 9, + [213534] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521102,19 +528395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11438), 1, - anon_sym_EQ, + ACTIONS(11693), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7212), 4, + STATE(7376), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206150] = 9, + [213566] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521125,19 +528418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11440), 1, - sym_identifier, + ACTIONS(11695), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7213), 4, + STATE(7377), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206182] = 9, + [213598] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521148,19 +528441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11442), 1, - sym_identifier, + ACTIONS(11697), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7214), 4, + STATE(7378), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206214] = 9, + [213630] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521171,19 +528464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11444), 1, - anon_sym_member, + ACTIONS(11699), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7215), 4, + STATE(7379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206246] = 9, + [213662] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521194,19 +528487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11446), 1, - sym__newline_not_aligned, + ACTIONS(11701), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7216), 4, + STATE(7380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206278] = 9, + [213694] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521217,19 +528510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11448), 1, - sym__dedent, + ACTIONS(11703), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7217), 4, + STATE(7381), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206310] = 9, + [213726] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521240,19 +528533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11450), 1, - sym__dedent, + ACTIONS(11705), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7218), 4, + STATE(7382), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206342] = 9, + [213758] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521263,19 +528556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11452), 1, - anon_sym_GT, + ACTIONS(11707), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7219), 4, + STATE(7383), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206374] = 9, + [213790] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521286,19 +528579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9686), 1, + ACTIONS(11709), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7220), 4, + STATE(7384), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206406] = 9, + [213822] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521309,19 +528602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11454), 1, - anon_sym_GT, + ACTIONS(11711), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7221), 4, + STATE(7385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206438] = 9, + [213854] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521332,19 +528625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3596), 1, + sym__newline_not_aligned, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11456), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7222), 4, + STATE(7386), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206470] = 9, + [213886] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521355,19 +528648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11458), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(11713), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7223), 4, + STATE(7387), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206502] = 9, + [213918] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521378,19 +528671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11460), 1, - anon_sym_end, + ACTIONS(11715), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7224), 4, + STATE(7388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206534] = 9, + [213950] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521401,19 +528694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11462), 1, - anon_sym_EQ, + ACTIONS(11717), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7225), 4, + STATE(7389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206566] = 9, + [213982] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521424,19 +528717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6758), 1, - sym__dedent, + ACTIONS(11719), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7226), 4, + STATE(7390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206598] = 9, + [214014] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521447,19 +528740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11464), 1, - sym_identifier, + ACTIONS(9793), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7227), 4, + STATE(7391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206630] = 9, + [214046] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521470,19 +528763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11466), 1, - anon_sym_COLON, + ACTIONS(11721), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7228), 4, + STATE(7392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206662] = 9, + [214078] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521493,19 +528786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11468), 1, - sym__dedent, + ACTIONS(11723), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7229), 4, + STATE(7393), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206694] = 9, + [214110] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521516,19 +528809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11470), 1, - anon_sym_COLON, + ACTIONS(11725), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7230), 4, + STATE(7394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206726] = 9, + [214142] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521539,19 +528832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10740), 1, - anon_sym_do, + ACTIONS(11727), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7231), 4, + STATE(7395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206758] = 9, + [214174] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521562,19 +528855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11472), 1, - sym_identifier, + ACTIONS(11729), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7232), 4, + STATE(7396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206790] = 9, + [214206] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521585,19 +528878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11474), 1, - anon_sym_GT, + ACTIONS(11731), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7233), 4, + STATE(7397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206822] = 9, + [214238] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521608,19 +528901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11476), 1, - anon_sym_PIPE, + ACTIONS(11733), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7234), 4, + STATE(7398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206854] = 9, + [214270] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521631,19 +528924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9672), 1, - anon_sym_GT, + ACTIONS(11735), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7235), 4, + STATE(7399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206886] = 9, + [214302] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521654,19 +528947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11478), 1, - sym__dedent, + ACTIONS(11737), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7236), 4, + STATE(7400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206918] = 9, + [214334] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521677,19 +528970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11480), 1, - anon_sym_POUNDendif, + ACTIONS(11739), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7237), 4, + STATE(7401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206950] = 9, + [214366] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521700,19 +528993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11482), 1, - anon_sym_COLON, + ACTIONS(11741), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7238), 4, + STATE(7402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206982] = 9, + [214398] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521723,19 +529016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11484), 1, + ACTIONS(11743), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7239), 4, + STATE(7403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207014] = 9, + [214430] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521746,19 +529039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11486), 1, - anon_sym_end, + ACTIONS(11745), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7240), 4, + STATE(7404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207046] = 9, + [214462] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521769,19 +529062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11488), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11747), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7241), 4, + STATE(7405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207078] = 9, + [214494] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521792,19 +529085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11490), 1, - anon_sym_then, + ACTIONS(11749), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7242), 4, + STATE(7406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207110] = 9, + [214526] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521815,19 +529108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11492), 1, - sym_int, + ACTIONS(11751), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7243), 4, + STATE(7407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207142] = 9, + [214558] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521838,19 +529131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11494), 1, - anon_sym_POUNDendif, + ACTIONS(11753), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7244), 4, + STATE(7408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207174] = 9, + [214590] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521861,19 +529154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11496), 1, - anon_sym_GT, + ACTIONS(11755), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7245), 4, + STATE(7409), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207206] = 9, + [214622] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521884,19 +529177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11498), 1, - anon_sym_RBRACE, + ACTIONS(5297), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7246), 4, + STATE(7410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207238] = 9, + [214654] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521907,19 +529200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11500), 1, - anon_sym_COLON, + ACTIONS(11757), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7247), 4, + STATE(7411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207270] = 9, + [214686] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521930,19 +529223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11502), 1, + ACTIONS(11759), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7248), 4, + STATE(7412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207302] = 9, + [214718] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521953,19 +529246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11504), 1, - anon_sym_POUNDendif, + ACTIONS(11761), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7249), 4, + STATE(7413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207334] = 9, + [214750] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521976,19 +529269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11506), 1, + ACTIONS(11763), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7250), 4, + STATE(7414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207366] = 9, + [214782] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -521999,19 +529292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11508), 1, - anon_sym_POUNDendif, + ACTIONS(9625), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7251), 4, + STATE(7415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207398] = 9, + [214814] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522022,19 +529315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11510), 1, - anon_sym_GT, + ACTIONS(11765), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7252), 4, + STATE(7416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207430] = 9, + [214846] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522045,19 +529338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11512), 1, - anon_sym_COLON, + ACTIONS(11767), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7253), 4, + STATE(7417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207462] = 9, + [214878] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522068,19 +529361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11514), 1, - sym_identifier, + ACTIONS(9715), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7254), 4, + STATE(7418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207494] = 9, + [214910] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522091,19 +529384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11516), 1, - anon_sym_COLON, + ACTIONS(11769), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7255), 4, + STATE(7419), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207526] = 9, + [214942] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522114,19 +529407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11518), 1, - sym_identifier, + ACTIONS(11771), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7256), 4, + STATE(7420), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207558] = 9, + [214974] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522137,19 +529430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11520), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11773), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7257), 4, + STATE(7421), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207590] = 9, + [215006] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522160,19 +529453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11522), 1, - anon_sym_RBRACE, + ACTIONS(11775), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7258), 4, + STATE(7422), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207622] = 9, + [215038] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522183,19 +529476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11524), 1, - sym__triple_quoted_content, + ACTIONS(11777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7259), 4, + STATE(7423), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207654] = 9, + [215070] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522206,19 +529499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11526), 1, - sym__triple_quoted_content, + ACTIONS(11779), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7260), 4, + STATE(7424), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207686] = 9, + [215102] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522229,19 +529522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11528), 1, - sym_identifier, + ACTIONS(11781), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7261), 4, + STATE(7425), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207718] = 9, + [215134] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522252,19 +529545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11530), 1, - anon_sym_then, + ACTIONS(11783), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7262), 4, + STATE(7426), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207750] = 9, + [215166] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522275,19 +529568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11532), 1, - sym__dedent, + ACTIONS(11785), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7263), 4, + STATE(7427), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207782] = 9, + [215198] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522298,19 +529591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11534), 1, - sym_identifier, + ACTIONS(11787), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7264), 4, + STATE(7428), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207814] = 9, + [215230] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522321,19 +529614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9660), 1, - anon_sym_GT, + ACTIONS(11789), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7265), 4, + STATE(7429), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207846] = 9, + [215262] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522344,19 +529637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11536), 1, - anon_sym_COLON, + ACTIONS(11791), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7266), 4, + STATE(7430), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207878] = 9, + [215294] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522367,19 +529660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11538), 1, - anon_sym_DASH_GT, + ACTIONS(11793), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7267), 4, + STATE(7431), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207910] = 9, + [215326] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522390,19 +529683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(3477), 1, + sym__newline_not_aligned, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11540), 1, - sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7268), 4, + STATE(7432), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207942] = 9, + [215358] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522413,19 +529706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11542), 1, - anon_sym_GT, + ACTIONS(11795), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7269), 4, + STATE(7433), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207974] = 9, + [215390] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522436,19 +529729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11544), 1, - anon_sym_EQ, + ACTIONS(11797), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7270), 4, + STATE(7434), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208006] = 9, + [215422] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522459,19 +529752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9658), 1, - anon_sym_GT, + ACTIONS(11799), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7271), 4, + STATE(7435), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208038] = 9, + [215454] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522482,19 +529775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11546), 1, - anon_sym_GT, + ACTIONS(11801), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7272), 4, + STATE(7436), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208070] = 9, + [215486] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522505,19 +529798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6786), 1, - anon_sym_EQ, + ACTIONS(11803), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7273), 4, + STATE(7437), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208102] = 9, + [215518] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522528,19 +529821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11548), 1, - sym__newline_not_aligned, + ACTIONS(11805), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7274), 4, + STATE(7438), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208134] = 9, + [215550] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522551,19 +529844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11550), 1, - sym__dedent, + ACTIONS(11807), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7275), 4, + STATE(7439), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208166] = 9, + [215582] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522574,19 +529867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11552), 1, - sym__dedent, + ACTIONS(11809), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7276), 4, + STATE(7440), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208198] = 9, + [215614] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522597,19 +529890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11554), 1, - sym__dedent, + ACTIONS(9691), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7277), 4, + STATE(7441), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208230] = 9, + [215646] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522620,19 +529913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11556), 1, - sym__dedent, + ACTIONS(11811), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7278), 4, + STATE(7442), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208262] = 9, + [215678] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522643,19 +529936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11558), 1, - anon_sym_RBRACE, + ACTIONS(11813), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7279), 4, + STATE(7443), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208294] = 9, + [215710] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522666,19 +529959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11560), 1, - anon_sym_LT2, + ACTIONS(11815), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7280), 4, + STATE(7444), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208326] = 9, + [215742] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522689,19 +529982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11562), 1, - sym_identifier, + ACTIONS(11817), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7281), 4, + STATE(7445), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208358] = 9, + [215774] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522712,19 +530005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11564), 1, - anon_sym_LT2, + ACTIONS(11819), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7282), 4, + STATE(7446), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208390] = 9, + [215806] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522735,19 +530028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11566), 1, - sym_identifier, + ACTIONS(11821), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7283), 4, + STATE(7447), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208422] = 9, + [215838] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522758,19 +530051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11568), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11823), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7284), 4, + STATE(7448), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208454] = 9, + [215870] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522781,19 +530074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11570), 1, - anon_sym_COLON, + ACTIONS(11825), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7285), 4, + STATE(7449), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208486] = 9, + [215902] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522804,19 +530097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11572), 1, - anon_sym_RBRACK, + ACTIONS(11827), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7286), 4, + STATE(7450), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208518] = 9, + [215934] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522827,19 +530120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11574), 1, - anon_sym_struct, + ACTIONS(11829), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7287), 4, + STATE(7451), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208550] = 9, + [215966] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522850,19 +530143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11576), 1, - anon_sym_do, + ACTIONS(11825), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7288), 4, + STATE(7452), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208582] = 9, + [215998] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522873,19 +530166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11578), 1, - anon_sym_POUNDendif, + ACTIONS(11831), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7289), 4, + STATE(7453), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208614] = 9, + [216030] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522896,19 +530189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11580), 1, - anon_sym_COLON, + ACTIONS(11833), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7290), 4, + STATE(7454), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208646] = 9, + [216062] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522919,19 +530212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11582), 1, - anon_sym_PIPE, + ACTIONS(11835), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7291), 4, + STATE(7455), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208678] = 9, + [216094] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522942,19 +530235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11584), 1, - anon_sym_RBRACE, + ACTIONS(11837), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7292), 4, + STATE(7456), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208710] = 9, + [216126] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522965,19 +530258,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11586), 1, - sym__dedent, + ACTIONS(11839), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7293), 4, + STATE(7457), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208742] = 9, + [216158] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -522988,19 +530281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11588), 1, - anon_sym_GT, + ACTIONS(11841), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7294), 4, + STATE(7458), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208774] = 9, + [216190] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523011,19 +530304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11590), 1, - anon_sym_COLON, + ACTIONS(11843), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7295), 4, + STATE(7459), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208806] = 9, + [216222] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523034,19 +530327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11592), 1, - anon_sym_GT, + ACTIONS(11845), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7296), 4, + STATE(7460), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208838] = 9, + [216254] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523057,19 +530350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11594), 1, - sym__dedent, + ACTIONS(11847), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7297), 4, + STATE(7461), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208870] = 9, + [216286] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523080,19 +530373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11596), 1, - anon_sym_GT, + ACTIONS(11849), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7298), 4, + STATE(7462), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208902] = 9, + [216318] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523103,19 +530396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11598), 1, - anon_sym_then, + ACTIONS(11851), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7299), 4, + STATE(7463), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208934] = 9, + [216350] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523126,19 +530419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11600), 1, - sym__dedent, + ACTIONS(11853), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7300), 4, + STATE(7464), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208966] = 9, + [216382] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523149,19 +530442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9648), 1, - anon_sym_GT, + ACTIONS(11851), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7301), 4, + STATE(7465), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208998] = 9, + [216414] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523172,19 +530465,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11602), 1, - anon_sym_GT, + ACTIONS(11855), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7302), 4, + STATE(7466), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209030] = 9, + [216446] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523195,19 +530488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11604), 1, - sym__dedent, + ACTIONS(11857), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7303), 4, + STATE(7467), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209062] = 9, + [216478] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523218,19 +530511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11606), 1, - anon_sym_COLON, + ACTIONS(6833), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7304), 4, + STATE(7468), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209094] = 9, + [216510] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523241,19 +530534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11608), 1, - anon_sym_POUNDendif, + ACTIONS(11859), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7305), 4, + STATE(7469), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209126] = 9, + [216542] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523264,19 +530557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6969), 1, - sym__dedent, + ACTIONS(11861), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7306), 4, + STATE(7470), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209158] = 9, + [216574] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523287,19 +530580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11610), 1, + ACTIONS(11863), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7307), 4, + STATE(7471), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209190] = 9, + [216606] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523310,19 +530603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11612), 1, - anon_sym_COLON, + ACTIONS(11865), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7308), 4, + STATE(7472), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209222] = 9, + [216638] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523333,19 +530626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11614), 1, - anon_sym_COLON, + ACTIONS(9687), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7309), 4, + STATE(7473), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209254] = 9, + [216670] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523356,19 +530649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11616), 1, - anon_sym_POUNDendif, + ACTIONS(11867), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7310), 4, + STATE(7474), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209286] = 9, + [216702] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523379,19 +530672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11618), 1, + ACTIONS(11869), 1, anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7311), 4, + STATE(7475), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209318] = 9, + [216734] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523402,19 +530695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9630), 1, - anon_sym_GT, + ACTIONS(11871), 1, + anon_sym_unit, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7312), 4, + STATE(7476), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209350] = 9, + [216766] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523425,19 +530718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11620), 1, - sym__triple_quoted_content, + ACTIONS(11873), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7313), 4, + STATE(7477), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209382] = 9, + [216798] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523448,19 +530741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11622), 1, - sym__triple_quoted_content, + ACTIONS(11875), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7314), 4, + STATE(7478), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209414] = 9, + [216830] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523471,19 +530764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11624), 1, - sym_identifier, + ACTIONS(11877), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7315), 4, + STATE(7479), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209446] = 9, + [216862] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523494,19 +530787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11626), 1, - sym_identifier, + ACTIONS(11879), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7316), 4, + STATE(7480), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209478] = 9, + [216894] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523517,19 +530810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11628), 1, - sym_identifier, + ACTIONS(11881), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7317), 4, + STATE(7481), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209510] = 9, + [216926] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523540,19 +530833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11630), 1, - sym_identifier, + ACTIONS(11877), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7318), 4, + STATE(7482), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209542] = 9, + [216958] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523563,19 +530856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11632), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11883), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7319), 4, + STATE(7483), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209574] = 9, + [216990] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523586,19 +530879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10234), 1, - anon_sym_EQ, + ACTIONS(11885), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7320), 4, + STATE(7484), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209606] = 9, + [217022] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523609,19 +530902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11634), 1, - anon_sym_DASH_GT, + ACTIONS(11887), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7321), 4, + STATE(7485), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209638] = 9, + [217054] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523632,19 +530925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11636), 1, - anon_sym_RPAREN, + ACTIONS(11889), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7322), 4, + STATE(7486), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209670] = 9, + [217086] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523655,19 +530948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11638), 1, - sym__dedent, + ACTIONS(11891), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7323), 4, + STATE(7487), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209702] = 9, + [217118] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523678,19 +530971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11640), 1, - anon_sym_EQ, + ACTIONS(11893), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7324), 4, + STATE(7488), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209734] = 9, + [217150] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523701,19 +530994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11642), 1, - sym_int, + ACTIONS(11893), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7325), 4, + STATE(7489), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209766] = 9, + [217182] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523724,19 +531017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11644), 1, - anon_sym_GT, + ACTIONS(11895), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7326), 4, + STATE(7490), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209798] = 9, + [217214] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523747,19 +531040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9642), 1, - anon_sym_GT, + ACTIONS(11897), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7327), 4, + STATE(7491), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209830] = 9, + [217246] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523770,19 +531063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11646), 1, - sym__newline_not_aligned, + ACTIONS(11899), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7328), 4, + STATE(7492), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209862] = 9, + [217278] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523793,19 +531086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11648), 1, - sym__dedent, + ACTIONS(11901), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7329), 4, + STATE(7493), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209894] = 9, + [217310] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523816,19 +531109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11650), 1, - sym__dedent, + ACTIONS(11903), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7330), 4, + STATE(7494), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209926] = 9, + [217342] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523839,19 +531132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11652), 1, - anon_sym_GT, + ACTIONS(11905), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7331), 4, + STATE(7495), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209958] = 9, + [217374] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523862,19 +531155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11654), 1, - anon_sym_GT, + ACTIONS(11907), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7332), 4, + STATE(7496), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209990] = 9, + [217406] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523885,19 +531178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11656), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11909), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7333), 4, + STATE(7497), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210022] = 9, + [217438] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523908,19 +531201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11658), 1, - anon_sym_end, + ACTIONS(11911), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7334), 4, + STATE(7498), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210054] = 9, + [217470] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523931,19 +531224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11660), 1, - anon_sym_COLON, + ACTIONS(11913), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7335), 4, + STATE(7499), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210086] = 9, + [217502] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523954,19 +531247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11662), 1, - sym_identifier, + ACTIONS(11915), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7336), 4, + STATE(7500), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210118] = 9, + [217534] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -523977,19 +531270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11664), 1, - anon_sym_GT, + ACTIONS(11917), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7337), 4, + STATE(7501), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210150] = 9, + [217566] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524000,19 +531293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11666), 1, - sym_identifier, + ACTIONS(11919), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7338), 4, + STATE(7502), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210182] = 9, + [217598] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524023,19 +531316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11668), 1, - anon_sym_COLON, + ACTIONS(9665), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7339), 4, + STATE(7503), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210214] = 9, + [217630] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524046,19 +531339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11670), 1, + ACTIONS(11921), 1, anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7340), 4, + STATE(7504), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210246] = 9, + [217662] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524069,19 +531362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11672), 1, - anon_sym_COLON, + ACTIONS(11923), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7341), 4, + STATE(7505), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210278] = 9, + [217694] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524092,19 +531385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11674), 1, - anon_sym_do, + ACTIONS(11925), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7342), 4, + STATE(7506), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210310] = 9, + [217726] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524115,19 +531408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11676), 1, - sym_identifier, + ACTIONS(11927), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7343), 4, + STATE(7507), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210342] = 9, + [217758] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524138,19 +531431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11678), 1, + ACTIONS(11929), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7344), 4, + STATE(7508), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210374] = 9, + [217790] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524161,19 +531454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11680), 1, - anon_sym_PIPE, + ACTIONS(11931), 1, + anon_sym_member, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7345), 4, + STATE(7509), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210406] = 9, + [217822] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524184,19 +531477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11682), 1, - anon_sym_RPAREN, + ACTIONS(11933), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7346), 4, + STATE(7510), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210438] = 9, + [217854] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524207,19 +531500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11684), 1, - sym__dedent, + ACTIONS(11935), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7347), 4, + STATE(7511), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210470] = 9, + [217886] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524230,19 +531523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11686), 1, - anon_sym_COLON, + ACTIONS(11937), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7348), 4, + STATE(7512), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210502] = 9, + [217918] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524253,19 +531546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11688), 1, - anon_sym_COLON, + ACTIONS(11939), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7349), 4, + STATE(7513), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210534] = 9, + [217950] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524276,19 +531569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11690), 1, - anon_sym_RBRACE, + ACTIONS(11941), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7350), 4, + STATE(7514), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210566] = 9, + [217982] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524299,19 +531592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11692), 1, - anon_sym_RBRACK, + ACTIONS(11943), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7351), 4, + STATE(7515), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210598] = 9, + [218014] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524322,19 +531615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11694), 1, + ACTIONS(11945), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7352), 4, + STATE(7516), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210630] = 9, + [218046] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524345,19 +531638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11696), 1, - anon_sym_then, + ACTIONS(11947), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7353), 4, + STATE(7517), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210662] = 9, + [218078] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524368,19 +531661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11698), 1, - anon_sym_GT, + ACTIONS(11949), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7354), 4, + STATE(7518), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210694] = 9, + [218110] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524391,19 +531684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11700), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11951), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7355), 4, + STATE(7519), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210726] = 9, + [218142] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524414,19 +531707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9620), 1, - anon_sym_GT, + ACTIONS(11953), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7356), 4, + STATE(7520), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210758] = 9, + [218174] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524437,19 +531730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11702), 1, - anon_sym_GT, + ACTIONS(11955), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7357), 4, + STATE(7521), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210790] = 9, + [218206] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524460,19 +531753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11704), 1, - anon_sym_COLON, + ACTIONS(11957), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7358), 4, + STATE(7522), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210822] = 9, + [218238] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524483,19 +531776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11706), 1, - anon_sym_end, + ACTIONS(9649), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7359), 4, + STATE(7523), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210854] = 9, + [218270] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524506,19 +531799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11708), 1, - anon_sym_end, + ACTIONS(11959), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7360), 4, + STATE(7524), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210886] = 9, + [218302] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524529,19 +531822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11710), 1, - anon_sym_COLON, + ACTIONS(11961), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7361), 4, + STATE(7525), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210918] = 9, + [218334] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524552,19 +531845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11712), 1, - anon_sym_COLON, + ACTIONS(11963), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7362), 4, + STATE(7526), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210950] = 9, + [218366] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524575,19 +531868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11714), 1, - anon_sym_COLON, + ACTIONS(11965), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7363), 4, + STATE(7527), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210982] = 9, + [218398] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524598,19 +531891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11716), 1, + ACTIONS(11967), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7364), 4, + STATE(7528), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211014] = 9, + [218430] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524621,19 +531914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11718), 1, - anon_sym_GT, + ACTIONS(11969), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7365), 4, + STATE(7529), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211046] = 9, + [218462] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524644,19 +531937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11720), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11971), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7366), 4, + STATE(7530), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211078] = 9, + [218494] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524667,19 +531960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11722), 1, - sym__triple_quoted_content, + ACTIONS(11973), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7367), 4, + STATE(7531), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211110] = 9, + [218526] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524690,19 +531983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11724), 1, - sym__triple_quoted_content, + ACTIONS(11975), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7368), 4, + STATE(7532), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211142] = 9, + [218558] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524713,19 +532006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11726), 1, - sym_identifier, + ACTIONS(11977), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7369), 4, + STATE(7533), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211174] = 9, + [218590] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524736,19 +532029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11728), 1, - anon_sym_then, + ACTIONS(11979), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7370), 4, + STATE(7534), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211206] = 9, + [218622] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524759,19 +532052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11730), 1, - sym__dedent, + ACTIONS(11981), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7371), 4, + STATE(7535), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211238] = 9, + [218654] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524782,19 +532075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11732), 1, - sym_identifier, + ACTIONS(11983), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7372), 4, + STATE(7536), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211270] = 9, + [218686] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524805,19 +532098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11734), 1, - sym_identifier, + ACTIONS(11985), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7373), 4, + STATE(7537), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211302] = 9, + [218718] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524828,19 +532121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11736), 1, - anon_sym_RPAREN, + ACTIONS(11987), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7374), 4, + STATE(7538), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211334] = 9, + [218750] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524851,19 +532144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11738), 1, - anon_sym_DASH_GT, + ACTIONS(11989), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7375), 4, + STATE(7539), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211366] = 9, + [218782] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524874,19 +532167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11740), 1, - anon_sym_GT, + ACTIONS(11991), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7376), 4, + STATE(7540), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211398] = 9, + [218814] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524897,19 +532190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11742), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11993), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7377), 4, + STATE(7541), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211430] = 9, + [218846] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524920,19 +532213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11744), 1, - anon_sym_EQ, + ACTIONS(11995), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7378), 4, + STATE(7542), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211462] = 9, + [218878] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524943,19 +532236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11746), 1, - anon_sym_RPAREN, + ACTIONS(11997), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7379), 4, + STATE(7543), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211494] = 9, + [218910] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524966,19 +532259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11748), 1, - sym_int, + ACTIONS(11999), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7380), 4, + STATE(7544), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211526] = 9, + [218942] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -524989,19 +532282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11750), 1, - anon_sym_GT, + ACTIONS(12001), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7381), 4, + STATE(7545), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211558] = 9, + [218974] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525012,19 +532305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11752), 1, - sym__newline_not_aligned, + ACTIONS(12003), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7382), 4, + STATE(7546), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211590] = 9, + [219006] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525035,19 +532328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11754), 1, - sym__dedent, + ACTIONS(12005), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7383), 4, + STATE(7547), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211622] = 9, + [219038] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525058,19 +532351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11756), 1, + ACTIONS(12007), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7384), 4, + STATE(7548), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211654] = 9, + [219070] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525081,19 +532374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11758), 1, - sym_identifier, + ACTIONS(9623), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7385), 4, + STATE(7549), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211686] = 9, + [219102] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525104,19 +532397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11760), 1, - anon_sym_GT, + ACTIONS(6835), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7386), 4, + STATE(7550), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211718] = 9, + [219134] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525127,19 +532420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11762), 1, - anon_sym_RBRACK, + ACTIONS(12009), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7387), 4, + STATE(7551), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211750] = 9, + [219166] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525150,19 +532443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11764), 1, - sym__dedent, + ACTIONS(12011), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7388), 4, + STATE(7552), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211782] = 9, + [219198] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525173,19 +532466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9582), 1, - anon_sym_GT, + ACTIONS(12013), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7389), 4, + STATE(7553), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211814] = 9, + [219230] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525196,19 +532489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11766), 1, - sym_identifier, + ACTIONS(12015), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7390), 4, + STATE(7554), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211846] = 9, + [219262] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525219,19 +532512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11768), 1, - sym_identifier, + ACTIONS(12017), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7391), 4, + STATE(7555), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211878] = 9, + [219294] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525242,19 +532535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11770), 1, - anon_sym_GT, + ACTIONS(12019), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7392), 4, + STATE(7556), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211910] = 9, + [219326] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525265,19 +532558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11772), 1, - anon_sym_do, + ACTIONS(12021), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7393), 4, + STATE(7557), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211942] = 9, + [219358] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525288,19 +532581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11774), 1, - sym__dedent, + ACTIONS(12023), 1, + anon_sym_struct, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7394), 4, + STATE(7558), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211974] = 9, + [219390] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525311,19 +532604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11776), 1, - anon_sym_COLON, + ACTIONS(12025), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7395), 4, + STATE(7559), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212006] = 9, + [219422] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525334,19 +532627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11778), 1, - anon_sym_PIPE, + ACTIONS(12027), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7396), 4, + STATE(7560), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212038] = 9, + [219454] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525357,19 +532650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5428), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12029), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7397), 4, + STATE(7561), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212070] = 9, + [219486] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525380,19 +532673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11780), 1, - sym__dedent, + ACTIONS(12031), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7398), 4, + STATE(7562), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212102] = 9, + [219518] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525403,19 +532696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11782), 1, + ACTIONS(12033), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7399), 4, + STATE(7563), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212134] = 9, + [219550] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525426,19 +532719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11784), 1, - sym_identifier, + ACTIONS(12035), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7400), 4, + STATE(7564), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212166] = 9, + [219582] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525449,19 +532742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11786), 1, - anon_sym_then, + ACTIONS(12037), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7401), 4, + STATE(7565), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212198] = 9, + [219614] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525472,19 +532765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11788), 1, + ACTIONS(12039), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7402), 4, + STATE(7566), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212230] = 9, + [219646] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525495,19 +532788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9570), 1, - anon_sym_GT, + ACTIONS(12041), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7403), 4, + STATE(7567), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212262] = 9, + [219678] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525518,19 +532811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11790), 1, - anon_sym_COLON, + ACTIONS(12043), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7404), 4, + STATE(7568), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212294] = 9, + [219710] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525541,19 +532834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11792), 1, + ACTIONS(12045), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7405), 4, + STATE(7569), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212326] = 9, + [219742] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525564,19 +532857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11794), 1, - sym__dedent, + ACTIONS(12047), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7406), 4, + STATE(7570), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212358] = 9, + [219774] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525587,19 +532880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9562), 1, - anon_sym_GT, + ACTIONS(12049), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7407), 4, + STATE(7571), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212390] = 9, + [219806] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525610,19 +532903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11796), 1, - sym__triple_quoted_content, + ACTIONS(12051), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7408), 4, + STATE(7572), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212422] = 9, + [219838] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525633,19 +532926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11798), 1, - sym__triple_quoted_content, + ACTIONS(12053), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7409), 4, + STATE(7573), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212454] = 9, + [219870] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525656,19 +532949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11800), 1, - sym_identifier, + ACTIONS(9603), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7410), 4, + STATE(7574), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212486] = 9, + [219902] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525679,19 +532972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11802), 1, - anon_sym_then, + ACTIONS(12055), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7411), 4, + STATE(7575), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212518] = 9, + [219934] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525702,19 +532995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11804), 1, - anon_sym_GT, + ACTIONS(7156), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7412), 4, + STATE(7576), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212550] = 9, + [219966] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525725,19 +533018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11806), 1, - anon_sym_COLON, + ACTIONS(12057), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7413), 4, + STATE(7577), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212582] = 9, + [219998] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525748,19 +533041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11808), 1, - anon_sym_RBRACK, + ACTIONS(12059), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7414), 4, + STATE(7578), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212614] = 9, + [220030] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525771,19 +533064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11810), 1, - anon_sym_GT, + ACTIONS(12061), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7415), 4, + STATE(7579), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212646] = 9, + [220062] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525794,19 +533087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11812), 1, - anon_sym_DASH_GT, + ACTIONS(12063), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7416), 4, + STATE(7580), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212678] = 9, + [220094] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525817,19 +533110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11814), 1, - anon_sym_RBRACE, + ACTIONS(12065), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7417), 4, + STATE(7581), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212710] = 9, + [220126] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525840,19 +533133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11816), 1, - anon_sym_RPAREN, + ACTIONS(12067), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7418), 4, + STATE(7582), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212742] = 9, + [220158] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525863,19 +533156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11818), 1, - anon_sym_EQ, + ACTIONS(12069), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7419), 4, + STATE(7583), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212774] = 9, + [220190] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525886,19 +533179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11820), 1, + ACTIONS(9593), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7420), 4, + STATE(7584), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212806] = 9, + [220222] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525909,19 +533202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11822), 1, + ACTIONS(12071), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7421), 4, + STATE(7585), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212838] = 9, + [220254] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525932,19 +533225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1690), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12073), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7422), 4, + STATE(7586), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212870] = 9, + [220286] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525955,19 +533248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11824), 1, - sym__newline_not_aligned, + ACTIONS(12075), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7423), 4, + STATE(7587), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212902] = 9, + [220318] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -525978,19 +533271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11826), 1, + ACTIONS(12077), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7424), 4, + STATE(7588), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212934] = 9, + [220350] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526001,19 +533294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11828), 1, - sym__dedent, + ACTIONS(9989), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7425), 4, + STATE(7589), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212966] = 9, + [220382] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526024,19 +533317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11830), 1, - sym_identifier, + ACTIONS(12079), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7426), 4, + STATE(7590), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212998] = 9, + [220414] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526047,19 +533340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11832), 1, - sym__dedent, + ACTIONS(12081), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7427), 4, + STATE(7591), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213030] = 9, + [220446] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526070,19 +533363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11834), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12083), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7428), 4, + STATE(7592), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213062] = 9, + [220478] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526093,19 +533386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11836), 1, - anon_sym_RBRACE, + ACTIONS(12085), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7429), 4, + STATE(7593), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213094] = 9, + [220510] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526116,19 +533409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11838), 1, - anon_sym_GT, + ACTIONS(12087), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7430), 4, + STATE(7594), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213126] = 9, + [220542] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526139,19 +533432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11840), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12089), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7431), 4, + STATE(7595), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213158] = 9, + [220574] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526162,19 +533455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9522), 1, - anon_sym_GT, + ACTIONS(12091), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7432), 4, + STATE(7596), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213190] = 9, + [220606] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526185,19 +533478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11842), 1, - sym__dedent, + ACTIONS(9677), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7433), 4, + STATE(7597), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213222] = 9, + [220638] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526208,19 +533501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11844), 1, - anon_sym_do, + ACTIONS(12093), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7434), 4, + STATE(7598), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213254] = 9, + [220670] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526231,19 +533524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11846), 1, - anon_sym_GT, + ACTIONS(12095), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7435), 4, + STATE(7599), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213286] = 9, + [220702] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526254,19 +533547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11848), 1, - sym__dedent, + ACTIONS(12097), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7436), 4, + STATE(7600), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213318] = 9, + [220734] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526277,19 +533570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11850), 1, - anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7437), 4, + STATE(7601), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213350] = 9, + [220766] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526300,19 +533593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11852), 1, - anon_sym_POUNDendif, + ACTIONS(12101), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7438), 4, + STATE(7602), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213382] = 9, + [220798] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526323,19 +533616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11854), 1, - sym__dedent, + ACTIONS(12103), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7439), 4, + STATE(7603), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213414] = 9, + [220830] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526346,19 +533639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11856), 1, - sym_int, + ACTIONS(12105), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7440), 4, + STATE(7604), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213446] = 9, + [220862] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526369,19 +533662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11858), 1, - anon_sym_with, + ACTIONS(12107), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7441), 4, + STATE(7605), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213478] = 9, + [220894] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526392,19 +533685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11860), 1, - anon_sym_then, + ACTIONS(12109), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7442), 4, + STATE(7606), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213510] = 9, + [220926] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526415,19 +533708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11862), 1, - anon_sym_end, + ACTIONS(12111), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7443), 4, + STATE(7607), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213542] = 9, + [220958] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526438,19 +533731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11864), 1, - sym_identifier, + ACTIONS(12113), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7444), 4, + STATE(7608), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213574] = 9, + [220990] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526461,19 +533754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11866), 1, - sym_identifier, + ACTIONS(12115), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7445), 4, + STATE(7609), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213606] = 9, + [221022] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526484,19 +533777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11868), 1, - sym_identifier, + ACTIONS(12117), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7446), 4, + STATE(7610), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213638] = 9, + [221054] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526507,19 +533800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11870), 1, - sym__triple_quoted_content, + ACTIONS(12119), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7447), 4, + STATE(7611), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213670] = 9, + [221086] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526530,19 +533823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11872), 1, - sym__triple_quoted_content, + ACTIONS(12121), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7448), 4, + STATE(7612), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213702] = 9, + [221118] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526553,19 +533846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11874), 1, + ACTIONS(12123), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7449), 4, + STATE(7613), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213734] = 9, + [221150] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526576,19 +533869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11876), 1, - anon_sym_then, + ACTIONS(12125), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7450), 4, + STATE(7614), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213766] = 9, + [221182] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526599,42 +533892,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11878), 1, - sym_int, + ACTIONS(12127), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7451), 4, + STATE(7615), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213798] = 9, - ACTIONS(7), 1, + [221214] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(12129), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11880), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(7452), 4, + STATE(7616), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213830] = 9, + [221244] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526645,19 +533937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11882), 1, - sym_int, + ACTIONS(12131), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7453), 4, + STATE(7617), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213862] = 9, + [221276] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526668,19 +533960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11884), 1, - anon_sym_POUNDendif, + ACTIONS(12133), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7454), 4, + STATE(7618), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213894] = 9, + [221308] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526691,19 +533983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11886), 1, - anon_sym_DASH_GT, + ACTIONS(12135), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7455), 4, + STATE(7619), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213926] = 9, + [221340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526714,19 +534006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11888), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12137), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7456), 4, + STATE(7620), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213958] = 9, + [221372] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526737,19 +534029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11890), 1, - sym__dedent, + ACTIONS(12139), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7457), 4, + STATE(7621), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213990] = 9, + [221404] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526760,19 +534052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11892), 1, - anon_sym_EQ, + ACTIONS(12141), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7458), 4, + STATE(7622), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214022] = 9, + [221436] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526783,19 +534075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11894), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12143), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7459), 4, + STATE(7623), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214054] = 9, + [221468] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526806,19 +534098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11896), 1, + ACTIONS(12145), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7460), 4, + STATE(7624), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214086] = 9, + [221500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526829,19 +534121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11898), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7461), 4, + STATE(7625), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214118] = 9, + [221532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526852,19 +534144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11900), 1, - sym__newline_not_aligned, + ACTIONS(12149), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7462), 4, + STATE(7626), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214150] = 9, + [221564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526875,19 +534167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11902), 1, + ACTIONS(12151), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7463), 4, + STATE(7627), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214182] = 9, + [221596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526898,19 +534190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11904), 1, - sym__dedent, + ACTIONS(12153), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7464), 4, + STATE(7628), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214214] = 9, + [221628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526921,19 +534213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9716), 1, - anon_sym_GT, + ACTIONS(12155), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7465), 4, + STATE(7629), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214246] = 9, + [221660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526944,19 +534236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11906), 1, + ACTIONS(12157), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7466), 4, + STATE(7630), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214278] = 9, + [221692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526967,19 +534259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11908), 1, - anon_sym_end, + ACTIONS(12159), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7467), 4, + STATE(7631), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214310] = 9, + [221724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -526990,19 +534282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9510), 1, - anon_sym_GT, + ACTIONS(12161), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7468), 4, + STATE(7632), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214342] = 9, + [221756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527013,19 +534305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11910), 1, - anon_sym_end, + ACTIONS(9591), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7469), 4, + STATE(7633), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214374] = 9, + [221788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527036,19 +534328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11912), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12163), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7470), 4, + STATE(7634), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214406] = 9, + [221820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527059,19 +534351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11914), 1, - sym_int, + ACTIONS(12165), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7471), 4, + STATE(7635), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214438] = 9, + [221852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527082,19 +534374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11916), 1, - anon_sym_POUNDendif, + ACTIONS(12167), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7472), 4, + STATE(7636), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214470] = 9, + [221884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527105,19 +534397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11918), 1, - anon_sym_do, + ACTIONS(12169), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7473), 4, + STATE(7637), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214502] = 9, + [221916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527128,19 +534420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11920), 1, - sym_identifier, + ACTIONS(12171), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7474), 4, + STATE(7638), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214534] = 9, + [221948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527151,19 +534443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11922), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12173), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7475), 4, + STATE(7639), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214566] = 9, + [221980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527174,19 +534466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11924), 1, - anon_sym_PIPE, + ACTIONS(12175), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7476), 4, + STATE(7640), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214598] = 9, + [222012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527197,19 +534489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11926), 1, + ACTIONS(12177), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7477), 4, + STATE(7641), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214630] = 9, + [222044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527220,19 +534512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11928), 1, - sym__dedent, + ACTIONS(12179), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7478), 4, + STATE(7642), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214662] = 9, + [222076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527243,19 +534535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11930), 1, - anon_sym_DASH_GT, + ACTIONS(12181), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7479), 4, + STATE(7643), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214694] = 9, + [222108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527266,19 +534558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11932), 1, - anon_sym_RBRACK, + ACTIONS(12183), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7480), 4, + STATE(7644), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214726] = 9, + [222140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527289,19 +534581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11934), 1, - anon_sym_then, + ACTIONS(12185), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7481), 4, + STATE(7645), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214758] = 9, + [222172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527312,19 +534604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11936), 1, - sym_identifier, + ACTIONS(12187), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7482), 4, + STATE(7646), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214790] = 9, + [222204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527335,19 +534627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5417), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12189), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7483), 4, + STATE(7647), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214822] = 9, + [222236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527358,19 +534650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11938), 1, - sym_identifier, + ACTIONS(12191), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7484), 4, + STATE(7648), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214854] = 9, + [222268] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527381,19 +534673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(1658), 1, + anon_sym_POUNDendif, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11940), 1, - anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7485), 4, + STATE(7649), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214886] = 9, + [222300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527404,19 +534696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11942), 1, - sym__triple_quoted_content, + ACTIONS(12193), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7486), 4, + STATE(7650), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214918] = 9, + [222332] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527427,19 +534719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11944), 1, - sym__triple_quoted_content, + ACTIONS(12195), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7487), 4, + STATE(7651), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214950] = 9, + [222364] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527450,19 +534742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11946), 1, - sym_identifier, + ACTIONS(12197), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7488), 4, + STATE(7652), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214982] = 9, + [222396] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527473,19 +534765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11948), 1, - anon_sym_then, + ACTIONS(12199), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7489), 4, + STATE(7653), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215014] = 9, + [222428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527496,19 +534788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11950), 1, - sym__dedent, + ACTIONS(12201), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7490), 4, + STATE(7654), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215046] = 9, + [222460] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527519,19 +534811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5386), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12203), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7491), 4, + STATE(7655), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215078] = 9, + [222492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527542,19 +534834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5394), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12205), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7492), 4, + STATE(7656), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215110] = 9, + [222524] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527565,19 +534857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11952), 1, - anon_sym_GT, + ACTIONS(12207), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7493), 4, + STATE(7657), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215142] = 9, + [222556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527588,19 +534880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11954), 1, - anon_sym_DASH_GT, + ACTIONS(12209), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7494), 4, + STATE(7658), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215174] = 9, + [222588] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527611,19 +534903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9542), 1, - anon_sym_GT, + ACTIONS(12211), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7495), 4, + STATE(7659), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215206] = 9, + [222620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527634,19 +534926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10395), 1, - anon_sym_EQ, + ACTIONS(12213), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7496), 4, + STATE(7660), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215238] = 9, + [222652] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527657,19 +534949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11956), 1, - anon_sym_EQ, + ACTIONS(12215), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7497), 4, + STATE(7661), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215270] = 9, + [222684] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527680,19 +534972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11958), 1, - anon_sym_EQ, + ACTIONS(12217), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7498), 4, + STATE(7662), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215302] = 9, + [222716] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527703,19 +534995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11960), 1, + ACTIONS(12219), 1, sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7499), 4, + STATE(7663), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215334] = 9, + [222748] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527726,19 +535018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6971), 1, - sym__dedent, + ACTIONS(12221), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7500), 4, + STATE(7664), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215366] = 9, + [222780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527749,19 +535041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11962), 1, - sym__newline_not_aligned, + ACTIONS(12223), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7501), 4, + STATE(7665), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215398] = 9, + [222812] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527772,19 +535064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11964), 1, - sym__dedent, + ACTIONS(12225), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7502), 4, + STATE(7666), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215430] = 9, + [222844] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527795,19 +535087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11966), 1, - sym__dedent, + ACTIONS(12227), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7503), 4, + STATE(7667), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215462] = 9, + [222876] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527818,19 +535110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11968), 1, - anon_sym_GT, + ACTIONS(12229), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7504), 4, + STATE(7668), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215494] = 9, + [222908] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527841,19 +535133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11970), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12231), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7505), 4, + STATE(7669), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215526] = 9, + [222940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527864,19 +535156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11972), 1, - sym_identifier, + ACTIONS(12233), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7506), 4, + STATE(7670), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215558] = 9, + [222972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527887,19 +535179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11974), 1, - anon_sym_end, + ACTIONS(12235), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7507), 4, + STATE(7671), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215590] = 9, + [223004] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527910,19 +535202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11976), 1, - anon_sym_POUNDendif, + ACTIONS(12237), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7508), 4, + STATE(7672), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215622] = 9, + [223036] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527933,19 +535225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11978), 1, - sym__dedent, + ACTIONS(12239), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7509), 4, + STATE(7673), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215654] = 9, + [223068] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527956,19 +535248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11980), 1, - anon_sym_RBRACE, + ACTIONS(12241), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7510), 4, + STATE(7674), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215686] = 9, + [223100] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -527979,19 +535271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6770), 1, - sym__dedent, + ACTIONS(12243), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7511), 4, + STATE(7675), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215718] = 9, + [223132] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528002,19 +535294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11982), 1, - anon_sym_do, + ACTIONS(12245), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7512), 4, + STATE(7676), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215750] = 9, + [223164] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528025,19 +535317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11984), 1, - anon_sym_GT, + ACTIONS(12247), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7513), 4, + STATE(7677), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215782] = 9, + [223196] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528048,19 +535340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9656), 1, - anon_sym_GT, + ACTIONS(12249), 1, + anon_sym_with, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7514), 4, + STATE(7678), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215814] = 9, + [223228] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528071,19 +535363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11986), 1, - anon_sym_PIPE, + ACTIONS(12251), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7515), 4, + STATE(7679), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215846] = 9, + [223260] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528094,19 +535386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11988), 1, - sym__dedent, + ACTIONS(12253), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7516), 4, + STATE(7680), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215878] = 9, + [223292] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528117,19 +535409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11990), 1, - sym__dedent, + ACTIONS(12255), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7517), 4, + STATE(7681), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215910] = 9, + [223324] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528140,19 +535432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11992), 1, - sym__indent, + ACTIONS(12257), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7518), 4, + STATE(7682), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215942] = 9, + [223356] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528163,19 +535455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11994), 1, - sym_identifier, + ACTIONS(12259), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7519), 4, + STATE(7683), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215974] = 9, + [223388] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528186,19 +535478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11996), 1, - anon_sym_then, + ACTIONS(12261), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7520), 4, + STATE(7684), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216006] = 9, + [223420] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528209,19 +535501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11998), 1, - sym_int, + ACTIONS(12263), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7521), 4, + STATE(7685), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216038] = 9, + [223452] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528232,19 +535524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12000), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12265), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7522), 4, + STATE(7686), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216070] = 9, + [223484] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528255,19 +535547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12002), 1, - sym__newline_not_aligned, + ACTIONS(12267), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7523), 4, + STATE(7687), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216102] = 9, + [223516] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528278,19 +535570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12004), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9609), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7524), 4, + STATE(7688), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216134] = 9, + [223548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528301,19 +535593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12006), 1, - sym__triple_quoted_content, + ACTIONS(12269), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7525), 4, + STATE(7689), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216166] = 9, + [223580] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528324,19 +535616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12008), 1, - sym__triple_quoted_content, + ACTIONS(12271), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7526), 4, + STATE(7690), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216198] = 9, + [223612] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528347,19 +535639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12010), 1, - sym_identifier, + ACTIONS(12273), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7527), 4, + STATE(7691), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216230] = 9, + [223644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528370,19 +535662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12012), 1, - anon_sym_then, + ACTIONS(12275), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7528), 4, + STATE(7692), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216262] = 9, + [223676] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528393,19 +535685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12014), 1, - sym_identifier, + ACTIONS(12277), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7529), 4, + STATE(7693), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216294] = 9, + [223708] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528416,19 +535708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12016), 1, - sym_identifier, + ACTIONS(12279), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7530), 4, + STATE(7694), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216326] = 9, + [223740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528439,19 +535731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12018), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12281), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7531), 4, + STATE(7695), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216358] = 9, + [223772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528462,19 +535754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12020), 1, - anon_sym_DASH_GT, + ACTIONS(12283), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7532), 4, + STATE(7696), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216390] = 9, + [223804] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528485,19 +535777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12022), 1, + ACTIONS(12285), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7533), 4, + STATE(7697), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216422] = 9, + [223836] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528508,19 +535800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12024), 1, - sym__dedent, + ACTIONS(12287), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7534), 4, + STATE(7698), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216454] = 9, + [223868] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528531,19 +535823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12026), 1, - anon_sym_EQ, + ACTIONS(12289), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7535), 4, + STATE(7699), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216486] = 9, + [223900] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528554,19 +535846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12028), 1, - anon_sym_RBRACE, + ACTIONS(12291), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7536), 4, + STATE(7700), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216518] = 9, + [223932] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528577,19 +535869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5379), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12293), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7537), 4, + STATE(7701), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216550] = 9, + [223964] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528600,19 +535892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5390), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12295), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7538), 4, + STATE(7702), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216582] = 9, + [223996] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528623,19 +535915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12030), 1, - sym__newline_not_aligned, + ACTIONS(12297), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7539), 4, + STATE(7703), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216614] = 9, + [224028] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528646,19 +535938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12032), 1, - sym__dedent, + ACTIONS(12299), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7540), 4, + STATE(7704), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216646] = 9, + [224060] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528669,19 +535961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12034), 1, - sym__dedent, + ACTIONS(12301), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7541), 4, + STATE(7705), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216678] = 9, + [224092] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528692,19 +535984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12036), 1, - anon_sym_GT, + ACTIONS(12303), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7542), 4, + STATE(7706), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216710] = 9, + [224124] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528715,19 +536007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12038), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12305), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7543), 4, + STATE(7707), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216742] = 9, + [224156] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528738,19 +536030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12040), 1, - sym__dedent, + ACTIONS(12307), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7544), 4, + STATE(7708), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216774] = 9, + [224188] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528761,19 +536053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12042), 1, - sym__dedent, + ACTIONS(12309), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7545), 4, + STATE(7709), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216806] = 9, + [224220] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528784,19 +536076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9578), 1, - anon_sym_GT, + ACTIONS(12311), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7546), 4, + STATE(7710), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216838] = 9, + [224252] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528807,19 +536099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12044), 1, - anon_sym_GT, + ACTIONS(12313), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7547), 4, + STATE(7711), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216870] = 9, + [224284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528830,19 +536122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12046), 1, - sym_int, + ACTIONS(12315), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7548), 4, + STATE(7712), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216902] = 9, + [224316] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528853,19 +536145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12048), 1, - anon_sym_do, + ACTIONS(12317), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7549), 4, + STATE(7713), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216934] = 9, + [224348] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528876,19 +536168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12050), 1, - anon_sym_GT, + ACTIONS(12319), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7550), 4, + STATE(7714), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216966] = 9, + [224380] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528899,19 +536191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12052), 1, - sym_identifier, + ACTIONS(12321), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7551), 4, + STATE(7715), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216998] = 9, + [224412] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528922,19 +536214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12054), 1, - anon_sym_PIPE, + ACTIONS(12323), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7552), 4, + STATE(7716), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217030] = 9, + [224444] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528945,19 +536237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12056), 1, - anon_sym_RPAREN, + ACTIONS(12325), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7553), 4, + STATE(7717), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217062] = 9, + [224476] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528968,19 +536260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12058), 1, - sym__dedent, + ACTIONS(12327), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7554), 4, + STATE(7718), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217094] = 9, + [224508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -528991,19 +536283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12060), 1, - anon_sym_RBRACK, + ACTIONS(12329), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7555), 4, + STATE(7719), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217126] = 9, + [224540] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529014,19 +536306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12062), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12331), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7556), 4, + STATE(7720), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217158] = 9, + [224572] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529037,19 +536329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12064), 1, - anon_sym_then, + ACTIONS(12333), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7557), 4, + STATE(7721), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217190] = 9, + [224604] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529060,19 +536352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12066), 1, - sym__dedent, + ACTIONS(12335), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7558), 4, + STATE(7722), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217222] = 9, + [224636] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529083,19 +536375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12068), 1, - sym__triple_quoted_content, + ACTIONS(12337), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7559), 4, + STATE(7723), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217254] = 9, + [224668] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529106,19 +536398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12070), 1, + ACTIONS(12339), 1, sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7560), 4, + STATE(7724), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217286] = 9, + [224700] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529129,19 +536421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12072), 1, - sym_identifier, + ACTIONS(12341), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7561), 4, + STATE(7725), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217318] = 9, + [224732] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529152,19 +536444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12074), 1, - anon_sym_COLON, + ACTIONS(12343), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7562), 4, + STATE(7726), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217350] = 9, + [224764] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529175,19 +536467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5237), 1, - anon_sym_EQ, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(10004), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7563), 4, + STATE(7727), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217382] = 9, + [224796] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529198,19 +536490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12076), 1, + ACTIONS(12345), 1, anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7564), 4, + STATE(7728), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217414] = 9, + [224828] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529221,19 +536513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12078), 1, - anon_sym_then, + ACTIONS(12347), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7565), 4, + STATE(7729), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217446] = 9, + [224860] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529244,19 +536536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12080), 1, - anon_sym_GT, + ACTIONS(12349), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7566), 4, + STATE(7730), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217478] = 9, + [224892] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529267,19 +536559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12082), 1, - sym_identifier, + ACTIONS(12351), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7567), 4, + STATE(7731), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217510] = 9, + [224924] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529290,19 +536582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12084), 1, - sym_int, + ACTIONS(6908), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7568), 4, + STATE(7732), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217542] = 9, + [224956] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529313,19 +536605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12086), 1, - anon_sym_PIPE, + ACTIONS(12353), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7569), 4, + STATE(7733), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217574] = 9, + [224988] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529336,19 +536628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12088), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12355), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7570), 4, + STATE(7734), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217606] = 9, + [225020] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529359,19 +536651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12090), 1, - anon_sym_RBRACE, + ACTIONS(12357), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7571), 4, + STATE(7735), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217638] = 9, + [225052] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529382,19 +536674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12092), 1, - sym__triple_quoted_content, + ACTIONS(6861), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7572), 4, + STATE(7736), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217670] = 9, + [225084] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529405,19 +536697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12094), 1, - sym__triple_quoted_content, + ACTIONS(12359), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7573), 4, + STATE(7737), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217702] = 9, + [225116] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529428,19 +536720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12096), 1, - sym_identifier, + ACTIONS(12361), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7574), 4, + STATE(7738), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217734] = 9, + [225148] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529451,19 +536743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12098), 1, - sym__indent, + ACTIONS(12363), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7575), 4, + STATE(7739), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217766] = 9, + [225180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529474,19 +536766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12100), 1, - anon_sym_POUNDendif, + ACTIONS(12365), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7576), 4, + STATE(7740), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217798] = 9, + [225212] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529497,19 +536789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12102), 1, - anon_sym_EQ, + ACTIONS(12367), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7577), 4, + STATE(7741), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217830] = 9, + [225244] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529520,19 +536812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12104), 1, - anon_sym_POUNDendif, + ACTIONS(12369), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7578), 4, + STATE(7742), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217862] = 9, + [225276] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529543,19 +536835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12106), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12371), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7579), 4, + STATE(7743), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217894] = 9, + [225308] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529566,19 +536858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12108), 1, - sym_identifier, + ACTIONS(12373), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7580), 4, + STATE(7744), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217926] = 9, + [225340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529589,19 +536881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5413), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12375), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7581), 4, + STATE(7745), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217958] = 9, + [225372] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529612,19 +536904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12110), 1, - sym__triple_quoted_content, + ACTIONS(12377), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7582), 4, + STATE(7746), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217990] = 9, + [225404] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529635,19 +536927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12112), 1, - sym__triple_quoted_content, + ACTIONS(12379), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7583), 4, + STATE(7747), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218022] = 9, + [225436] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529658,19 +536950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12114), 1, - sym_identifier, + ACTIONS(12381), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7584), 4, + STATE(7748), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218054] = 9, + [225468] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529681,19 +536973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12116), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12383), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7585), 4, + STATE(7749), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218086] = 9, + [225500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529704,19 +536996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12118), 1, - anon_sym_get, + ACTIONS(9617), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7586), 4, + STATE(7750), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218118] = 9, + [225532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529727,19 +537019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12120), 1, - anon_sym_EQ, + ACTIONS(12385), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7587), 4, + STATE(7751), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218150] = 9, + [225564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529750,19 +537042,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12118), 1, - anon_sym_set, + ACTIONS(12387), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7588), 4, + STATE(7752), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218182] = 9, + [225596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529773,19 +537065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12122), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12389), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7589), 4, + STATE(7753), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218214] = 9, + [225628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529796,19 +537088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12124), 1, - anon_sym_get, + ACTIONS(12391), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7590), 4, + STATE(7754), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218246] = 9, + [225660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529819,19 +537111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12126), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12393), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7591), 4, + STATE(7755), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218278] = 9, + [225692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529842,19 +537134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12128), 1, - sym__triple_quoted_content, + ACTIONS(12395), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7592), 4, + STATE(7756), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218310] = 9, + [225724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529865,19 +537157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12130), 1, - sym__triple_quoted_content, + ACTIONS(12397), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7593), 4, + STATE(7757), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218342] = 9, + [225756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529888,19 +537180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12132), 1, - sym_identifier, + ACTIONS(12399), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7594), 4, + STATE(7758), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218374] = 9, + [225788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529911,19 +537203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12124), 1, - anon_sym_set, + ACTIONS(12401), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7595), 4, + STATE(7759), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218406] = 9, + [225820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529934,19 +537226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12134), 1, - sym__dedent, + ACTIONS(12403), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7596), 4, + STATE(7760), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218438] = 9, + [225852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529957,19 +537249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12136), 1, - anon_sym_EQ, + ACTIONS(12405), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7597), 4, + STATE(7761), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218470] = 9, + [225884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -529980,19 +537272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12138), 1, + ACTIONS(12407), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7598), 4, + STATE(7762), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218502] = 9, + [225916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530003,19 +537295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12140), 1, - sym_int, + ACTIONS(12409), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7599), 4, + STATE(7763), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218534] = 9, + [225948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530026,19 +537318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12142), 1, + ACTIONS(12411), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7600), 4, + STATE(7764), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218566] = 9, + [225980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530049,19 +537341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12144), 1, - sym__triple_quoted_content, + ACTIONS(12413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7601), 4, + STATE(7765), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218598] = 9, + [226012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530072,19 +537364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12146), 1, - sym__triple_quoted_content, + ACTIONS(12415), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7602), 4, + STATE(7766), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218630] = 9, + [226044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530095,19 +537387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12148), 1, - sym_identifier, + ACTIONS(12417), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7603), 4, + STATE(7767), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218662] = 9, + [226076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530118,19 +537410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12150), 1, - anon_sym_GT, + ACTIONS(12419), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7604), 4, + STATE(7768), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218694] = 9, + [226108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530141,19 +537433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5407), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5207), 1, + anon_sym_EQ, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7605), 4, + STATE(7769), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218726] = 9, + [226140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530164,19 +537456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12152), 1, - anon_sym_GT, + ACTIONS(12421), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7606), 4, + STATE(7770), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218758] = 9, + [226172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530187,19 +537479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9624), 1, - anon_sym_GT, + ACTIONS(12423), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7607), 4, + STATE(7771), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218790] = 9, + [226204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530210,19 +537502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12154), 1, - sym_int, + ACTIONS(12425), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7608), 4, + STATE(7772), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218822] = 9, + [226236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530233,19 +537525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12156), 1, - sym__triple_quoted_content, + ACTIONS(12427), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7609), 4, + STATE(7773), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218854] = 9, + [226268] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530256,19 +537548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12158), 1, - sym__triple_quoted_content, + ACTIONS(12429), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7610), 4, + STATE(7774), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218886] = 9, + [226300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530279,19 +537571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12160), 1, - sym_identifier, + ACTIONS(12431), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7611), 4, + STATE(7775), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218918] = 9, + [226332] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530302,19 +537594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(11018), 1, - anon_sym_get, + ACTIONS(12433), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7612), 4, + STATE(7776), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218950] = 9, + [226364] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530325,19 +537617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12162), 1, - anon_sym_of, + ACTIONS(12435), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7613), 4, + STATE(7777), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [218982] = 9, + [226396] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530348,19 +537640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12164), 1, + ACTIONS(12437), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7614), 4, + STATE(7778), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219014] = 9, + [226428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530371,19 +537663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12166), 1, - anon_sym_GT, + ACTIONS(12439), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7615), 4, + STATE(7779), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219046] = 9, + [226460] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530394,19 +537686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12168), 1, - anon_sym_RPAREN, + ACTIONS(12441), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7616), 4, + STATE(7780), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219078] = 9, + [226492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530417,19 +537709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12170), 1, - sym__triple_quoted_content, + ACTIONS(12443), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7617), 4, + STATE(7781), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219110] = 9, + [226524] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530440,19 +537732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12172), 1, - sym__triple_quoted_content, + ACTIONS(12445), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7618), 4, + STATE(7782), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219142] = 9, + [226556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530463,19 +537755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12174), 1, - sym_identifier, + ACTIONS(12447), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7619), 4, + STATE(7783), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219174] = 9, + [226588] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530486,19 +537778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12176), 1, - anon_sym_RBRACE, + ACTIONS(12449), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7620), 4, + STATE(7784), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219206] = 9, + [226620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530509,19 +537801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12178), 1, - sym__indent, + ACTIONS(12451), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7621), 4, + STATE(7785), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219238] = 9, + [226652] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530532,19 +537824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12180), 1, - anon_sym_get, + ACTIONS(12453), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7622), 4, + STATE(7786), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219270] = 9, + [226684] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530555,19 +537847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12182), 1, - anon_sym_GT, + ACTIONS(12455), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7623), 4, + STATE(7787), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219302] = 9, + [226716] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530578,19 +537870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12184), 1, - sym__dedent, + ACTIONS(12457), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7624), 4, + STATE(7788), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219334] = 9, + [226748] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530601,19 +537893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12186), 1, - sym__triple_quoted_content, + ACTIONS(6823), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7625), 4, + STATE(7789), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219366] = 9, + [226780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530624,19 +537916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12188), 1, - sym__triple_quoted_content, + ACTIONS(12459), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7626), 4, + STATE(7790), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219398] = 9, + [226812] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530647,19 +537939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12180), 1, - anon_sym_set, + ACTIONS(12461), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7627), 4, + STATE(7791), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219430] = 9, + [226844] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530670,19 +537962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12190), 1, - sym_identifier, + ACTIONS(12463), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7628), 4, + STATE(7792), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219462] = 9, + [226876] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530693,19 +537985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12192), 1, - sym_int, + ACTIONS(12465), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7629), 4, + STATE(7793), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219494] = 9, + [226908] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530716,19 +538008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12194), 1, - sym__triple_quoted_content, + ACTIONS(12467), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7630), 4, + STATE(7794), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219526] = 9, + [226940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530739,19 +538031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12196), 1, - sym__triple_quoted_content, + ACTIONS(12469), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7631), 4, + STATE(7795), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219558] = 9, + [226972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530762,21 +538054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12198), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12471), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7632), 4, + STATE(7796), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219590] = 9, - ACTIONS(3), 1, - sym_line_comment, + [227004] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530787,17 +538077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10626), 2, + ACTIONS(12473), 1, + sym__dedent, + ACTIONS(3), 2, anon_sym_SEMI, - anon_sym_RBRACE, - STATE(7633), 4, + sym_line_comment, + STATE(7797), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219622] = 9, + [227036] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530808,19 +538100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12200), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12475), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7634), 4, + STATE(7798), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219654] = 9, + [227068] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530831,19 +538125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12202), 1, - sym__triple_quoted_content, - ACTIONS(3), 2, + ACTIONS(10707), 2, anon_sym_SEMI, - sym_line_comment, - STATE(7635), 4, + anon_sym_RBRACE, + STATE(7799), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219686] = 9, + [227100] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530854,19 +538146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12204), 1, - sym__triple_quoted_content, + ACTIONS(12477), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7636), 4, + STATE(7800), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219718] = 9, + [227132] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530877,19 +538169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12206), 1, - anon_sym_RBRACK, + ACTIONS(12479), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7637), 4, + STATE(7801), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219750] = 9, + [227164] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530900,19 +538192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12208), 1, - anon_sym_GT, + ACTIONS(12481), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7638), 4, + STATE(7802), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219782] = 9, + [227196] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530923,19 +538215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12210), 1, - anon_sym_RBRACK, + ACTIONS(12483), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7639), 4, + STATE(7803), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219814] = 9, + [227228] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530946,19 +538238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12212), 1, - sym__triple_quoted_content, + ACTIONS(12485), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7640), 4, + STATE(7804), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219846] = 9, + [227260] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530969,19 +538261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12214), 1, - sym__triple_quoted_content, + ACTIONS(12487), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7641), 4, + STATE(7805), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219878] = 9, + [227292] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -530992,19 +538284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12216), 1, - anon_sym_GT, + ACTIONS(12489), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7642), 4, + STATE(7806), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219910] = 9, + [227324] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531015,19 +538307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12218), 1, - sym__indent, + ACTIONS(12491), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7643), 4, + STATE(7807), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219942] = 9, + [227356] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531038,19 +538330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12220), 1, - sym__indent, + ACTIONS(12493), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7644), 4, + STATE(7808), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [219974] = 9, + [227388] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531061,19 +538353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12222), 1, - sym__dedent, + ACTIONS(12495), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7645), 4, + STATE(7809), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220006] = 9, + [227420] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531084,19 +538376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12224), 1, - sym_identifier, + ACTIONS(12497), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7646), 4, + STATE(7810), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220038] = 9, + [227452] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531107,19 +538399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12226), 1, - anon_sym_RPAREN, + ACTIONS(12499), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7647), 4, + STATE(7811), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220070] = 9, + [227484] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531130,19 +538422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12228), 1, - sym__dedent, + ACTIONS(12501), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7648), 4, + STATE(7812), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220102] = 9, + [227516] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531153,19 +538445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12230), 1, - anon_sym_COLON, + ACTIONS(12503), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7649), 4, + STATE(7813), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220134] = 9, + [227548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531176,19 +538468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12232), 1, + ACTIONS(12505), 1, sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7650), 4, + STATE(7814), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220166] = 9, + [227580] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531199,19 +538491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12234), 1, + ACTIONS(12507), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7651), 4, + STATE(7815), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220198] = 9, + [227612] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531222,19 +538514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12236), 1, - sym_identifier, + ACTIONS(9637), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7652), 4, + STATE(7816), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220230] = 9, + [227644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531245,19 +538537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12238), 1, - anon_sym_COLON, + ACTIONS(12509), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7653), 4, + STATE(7817), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220262] = 9, + [227676] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531268,19 +538560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12240), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12511), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7654), 4, + STATE(7818), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220294] = 9, + [227708] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531291,19 +538583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12242), 1, - anon_sym_RBRACE, + ACTIONS(12513), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7655), 4, + STATE(7819), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220326] = 9, + [227740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531314,19 +538606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12244), 1, - sym__dedent, + ACTIONS(12515), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7656), 4, + STATE(7820), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220358] = 9, + [227772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531337,19 +538629,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12246), 1, - anon_sym_RBRACE, + ACTIONS(12517), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7657), 4, + STATE(7821), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220390] = 9, + [227804] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531360,19 +538652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12248), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12519), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7658), 4, + STATE(7822), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220422] = 9, + [227836] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531383,19 +538675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12250), 1, - sym_identifier, + ACTIONS(12521), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7659), 4, + STATE(7823), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220454] = 9, + [227868] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531406,19 +538698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12252), 1, - sym__dedent, + ACTIONS(12523), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7660), 4, + STATE(7824), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220486] = 9, + [227900] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531429,19 +538721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12254), 1, - sym__dedent, + ACTIONS(12515), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7661), 4, + STATE(7825), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220518] = 9, + [227932] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531452,19 +538744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12256), 1, - anon_sym_GT, + ACTIONS(12525), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7662), 4, + STATE(7826), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220550] = 9, + [227964] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531475,19 +538767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10209), 1, - anon_sym_EQ, + ACTIONS(12527), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7663), 4, + STATE(7827), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220582] = 9, + [227996] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531498,19 +538790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12258), 1, - sym_identifier, + ACTIONS(12525), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7664), 4, + STATE(7828), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220614] = 9, + [228028] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531521,19 +538813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9650), 1, - anon_sym_GT, + ACTIONS(12529), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7665), 4, + STATE(7829), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220646] = 9, + [228060] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531544,19 +538836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12260), 1, - sym__dedent, + ACTIONS(12531), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7666), 4, + STATE(7830), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220678] = 9, + [228092] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531567,19 +538859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12262), 1, - sym__dedent, + ACTIONS(12533), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7667), 4, + STATE(7831), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220710] = 9, + [228124] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531590,19 +538882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12264), 1, - sym__dedent, + ACTIONS(12535), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7668), 4, + STATE(7832), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220742] = 9, + [228156] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531613,19 +538905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12266), 1, - sym_int, + ACTIONS(12537), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7669), 4, + STATE(7833), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220774] = 9, + [228188] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531636,19 +538928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12268), 1, - sym__dedent, + ACTIONS(12539), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7670), 4, + STATE(7834), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220806] = 9, + [228220] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531659,19 +538951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12270), 1, - anon_sym_POUNDendif, + ACTIONS(12541), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7671), 4, + STATE(7835), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220838] = 9, + [228252] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531682,19 +538974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12272), 1, - anon_sym_GT, + ACTIONS(12533), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7672), 4, + STATE(7836), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220870] = 9, + [228284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531705,19 +538997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12274), 1, - sym_identifier, + ACTIONS(12543), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7673), 4, + STATE(7837), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220902] = 9, + [228316] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531728,19 +539020,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12276), 1, - sym__indent, + ACTIONS(12545), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7674), 4, + STATE(7838), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220934] = 9, + [228348] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531751,19 +539043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12278), 1, - anon_sym_of, + ACTIONS(12547), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7675), 4, + STATE(7839), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220966] = 9, + [228380] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531774,19 +539066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12280), 1, - sym__indent, + ACTIONS(12549), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7676), 4, + STATE(7840), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [220998] = 9, + [228412] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531797,19 +539089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5421), 1, - anon_sym_POUNDendif, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12551), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7677), 4, + STATE(7841), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221030] = 9, + [228444] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531820,19 +539112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12282), 1, - anon_sym_end, + ACTIONS(12553), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7678), 4, + STATE(7842), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221062] = 9, + [228476] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531843,19 +539135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12284), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12555), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7679), 4, + STATE(7843), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221094] = 9, + [228508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531866,19 +539158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12286), 1, - sym__dedent, + ACTIONS(12557), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7680), 4, + STATE(7844), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221126] = 9, + [228540] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531889,19 +539181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9612), 1, - anon_sym_GT, + ACTIONS(12559), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7681), 4, + STATE(7845), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221158] = 9, + [228572] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531912,19 +539204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12288), 1, - sym_identifier, + ACTIONS(12555), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7682), 4, + STATE(7846), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221190] = 9, + [228604] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531935,19 +539227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12290), 1, - sym_int, + ACTIONS(12561), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7683), 4, + STATE(7847), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221222] = 9, + [228636] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531958,19 +539250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12292), 1, - sym__dedent, + ACTIONS(12563), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7684), 4, + STATE(7848), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221254] = 9, + [228668] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -531981,19 +539273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12294), 1, - anon_sym_POUNDendif, + ACTIONS(12565), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7685), 4, + STATE(7849), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221286] = 9, + [228700] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532004,19 +539296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12296), 1, + ACTIONS(12567), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7686), 4, + STATE(7850), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221318] = 9, + [228732] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532027,19 +539319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5233), 1, - anon_sym_EQ, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12569), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7687), 4, + STATE(7851), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221350] = 9, + [228764] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532050,19 +539342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5203), 1, - anon_sym_EQ, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12571), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7688), 4, + STATE(7852), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221382] = 9, + [228796] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532073,19 +539365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12298), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12573), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7689), 4, + STATE(7853), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221414] = 9, + [228828] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532096,19 +539388,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12300), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12575), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7690), 4, + STATE(7854), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221446] = 9, + [228860] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532119,19 +539411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12302), 1, - sym_int, + ACTIONS(12577), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7691), 4, + STATE(7855), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221478] = 9, + [228892] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532142,19 +539434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12304), 1, - sym__dedent, + ACTIONS(12579), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7692), 4, + STATE(7856), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221510] = 9, + [228924] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532165,19 +539457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12306), 1, - sym__indent, + ACTIONS(12581), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7693), 4, + STATE(7857), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221542] = 9, + [228956] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532188,19 +539480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12308), 1, - anon_sym_POUNDendif, + ACTIONS(12583), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7694), 4, + STATE(7858), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221574] = 9, + [228988] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532211,19 +539503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12310), 1, - anon_sym_GT, + ACTIONS(12585), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7695), 4, + STATE(7859), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221606] = 9, + [229020] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532234,19 +539526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12312), 1, - sym_int, + ACTIONS(12587), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7696), 4, + STATE(7860), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221638] = 9, + [229052] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532257,19 +539549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12314), 1, - anon_sym_RBRACE, + ACTIONS(12589), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7697), 4, + STATE(7861), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221670] = 9, + [229084] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532280,19 +539572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12316), 1, - anon_sym_POUNDendif, + ACTIONS(12591), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7698), 4, + STATE(7862), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221702] = 9, + [229116] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532303,19 +539595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12318), 1, + ACTIONS(12593), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7699), 4, + STATE(7863), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221734] = 9, + [229148] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532326,19 +539618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12320), 1, + ACTIONS(12595), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7700), 4, + STATE(7864), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221766] = 9, + [229180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532349,19 +539641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12322), 1, - sym_identifier, + ACTIONS(12597), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7701), 4, + STATE(7865), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221798] = 9, + [229212] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532372,19 +539664,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9674), 1, - anon_sym_GT, + ACTIONS(12599), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7702), 4, + STATE(7866), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221830] = 9, + [229244] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532395,19 +539687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12324), 1, - sym_identifier, + ACTIONS(12601), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7703), 4, + STATE(7867), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221862] = 9, + [229276] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532418,19 +539710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12326), 1, + ACTIONS(12603), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7704), 4, + STATE(7868), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221894] = 9, + [229308] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532441,19 +539733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12328), 1, - sym__dedent, + ACTIONS(12605), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7705), 4, + STATE(7869), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221926] = 9, + [229340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532464,19 +539756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12330), 1, - anon_sym_POUNDendif, + ACTIONS(12607), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7706), 4, + STATE(7870), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221958] = 9, + [229372] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532487,19 +539779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12332), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12609), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7707), 4, + STATE(7871), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [221990] = 9, + [229404] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532510,19 +539802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12334), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12611), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7708), 4, + STATE(7872), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222022] = 9, + [229436] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532533,19 +539825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12336), 1, - anon_sym_GT, + ACTIONS(12613), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7709), 4, + STATE(7873), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222054] = 9, + [229468] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532556,19 +539848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12338), 1, - sym__indent, + ACTIONS(12615), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7710), 4, + STATE(7874), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222086] = 9, + [229500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532579,19 +539871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12340), 1, - sym__indent, + ACTIONS(12617), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7711), 4, + STATE(7875), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222118] = 9, + [229532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532602,19 +539894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12342), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12619), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7712), 4, + STATE(7876), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222150] = 9, + [229564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532625,19 +539917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12344), 1, + ACTIONS(12621), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7713), 4, + STATE(7877), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222182] = 9, + [229596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532648,19 +539940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12346), 1, - anon_sym_end, + ACTIONS(12623), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7714), 4, + STATE(7878), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222214] = 9, + [229628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532671,19 +539963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12348), 1, + ACTIONS(12625), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7715), 4, + STATE(7879), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222246] = 9, + [229660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532694,19 +539986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12350), 1, - sym__dedent, + ACTIONS(12627), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7716), 4, + STATE(7880), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222278] = 9, + [229692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532717,19 +540009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12352), 1, - anon_sym_PIPE, + ACTIONS(12629), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7717), 4, + STATE(7881), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222310] = 9, + [229724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532740,19 +540032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12354), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(10119), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7718), 4, + STATE(7882), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222342] = 9, + [229756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532763,19 +540055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12356), 1, - anon_sym_EQ, + ACTIONS(12631), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7719), 4, + STATE(7883), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222374] = 9, + [229788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532786,19 +540078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12358), 1, - sym__indent, + ACTIONS(12633), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7720), 4, + STATE(7884), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222406] = 9, + [229820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532809,19 +540101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12360), 1, - sym__indent, + ACTIONS(12635), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7721), 4, + STATE(7885), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222438] = 9, + [229852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532832,19 +540124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12362), 1, - sym__indent, + ACTIONS(12637), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7722), 4, + STATE(7886), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222470] = 9, + [229884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532855,19 +540147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9692), 1, - anon_sym_GT, + ACTIONS(12639), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7723), 4, + STATE(7887), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222502] = 9, + [229916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532878,19 +540170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12364), 1, - sym_int, + ACTIONS(12641), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7724), 4, + STATE(7888), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222534] = 9, + [229948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532901,19 +540193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12366), 1, - sym_identifier, + ACTIONS(12643), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7725), 4, + STATE(7889), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222566] = 9, + [229980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532924,19 +540216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12368), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12645), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7726), 4, + STATE(7890), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222598] = 9, + [230012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532947,19 +540239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12370), 1, - anon_sym_GT, + ACTIONS(12647), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7727), 4, + STATE(7891), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222630] = 9, + [230044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532970,19 +540262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12372), 1, - anon_sym_new, + ACTIONS(12649), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7728), 4, + STATE(7892), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222662] = 9, + [230076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -532993,19 +540285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12374), 1, - anon_sym_GT, + ACTIONS(12651), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7729), 4, + STATE(7893), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222694] = 9, + [230108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533016,19 +540308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12376), 1, - sym__indent, + ACTIONS(12653), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7730), 4, + STATE(7894), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222726] = 9, + [230140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533039,19 +540331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12378), 1, - anon_sym_POUNDendif, + ACTIONS(12655), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7731), 4, + STATE(7895), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222758] = 9, + [230172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533062,19 +540354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12380), 1, - anon_sym_EQ, + ACTIONS(10560), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7732), 4, + STATE(7896), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222790] = 9, + [230204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533085,19 +540377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12382), 1, - anon_sym_EQ, + ACTIONS(12657), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7733), 4, + STATE(7897), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222822] = 9, + [230236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533108,19 +540400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12384), 1, - anon_sym_RBRACE, + ACTIONS(12659), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7734), 4, + STATE(7898), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222854] = 9, + [230268] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533131,19 +540423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12386), 1, - sym__indent, + ACTIONS(12661), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7735), 4, + STATE(7899), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222886] = 9, + [230300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533154,19 +540446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12388), 1, - sym_identifier, + ACTIONS(12663), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7736), 4, + STATE(7900), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222918] = 9, + [230332] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533177,19 +540469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12390), 1, - anon_sym_GT, + ACTIONS(12665), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7737), 4, + STATE(7901), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222950] = 9, + [230364] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533200,19 +540492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12392), 1, - anon_sym_do, + ACTIONS(12667), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7738), 4, + STATE(7902), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [222982] = 9, + [230396] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533223,19 +540515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12394), 1, + ACTIONS(12669), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7739), 4, + STATE(7903), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223014] = 9, + [230428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533246,19 +540538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12396), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12671), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7740), 4, + STATE(7904), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223046] = 9, + [230460] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533269,19 +540561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12398), 1, - anon_sym_COLON, + ACTIONS(9679), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7741), 4, + STATE(7905), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223078] = 9, + [230492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533292,19 +540584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12400), 1, - sym_identifier, + ACTIONS(12673), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7742), 4, + STATE(7906), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223110] = 9, + [230524] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533315,19 +540607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12402), 1, + ACTIONS(12675), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7743), 4, + STATE(7907), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223142] = 9, + [230556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533338,19 +540630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12404), 1, - sym_identifier, + ACTIONS(12677), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7744), 4, + STATE(7908), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223174] = 9, + [230588] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533361,19 +540653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12406), 1, - sym__indent, + ACTIONS(12679), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7745), 4, + STATE(7909), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223206] = 9, + [230620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533384,19 +540676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12408), 1, - sym__indent, + ACTIONS(12681), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7746), 4, + STATE(7910), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223238] = 9, + [230652] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533407,19 +540699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12410), 1, - sym__dedent, + ACTIONS(12683), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7747), 4, + STATE(7911), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223270] = 9, + [230684] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533430,19 +540722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12412), 1, - sym_identifier, + ACTIONS(12685), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7748), 4, + STATE(7912), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223302] = 9, + [230716] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533453,19 +540745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12414), 1, + ACTIONS(12687), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7749), 4, + STATE(7913), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223334] = 9, + [230748] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533476,19 +540768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12416), 1, - anon_sym_EQ, + ACTIONS(12689), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7750), 4, + STATE(7914), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223366] = 9, + [230780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533499,19 +540791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12418), 1, - anon_sym_GT, + ACTIONS(12691), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7751), 4, + STATE(7915), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223398] = 9, + [230812] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533522,19 +540814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12420), 1, - sym__dedent, + ACTIONS(12693), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7752), 4, + STATE(7916), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223430] = 9, + [230844] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533545,19 +540837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12422), 1, - sym_identifier, + ACTIONS(12695), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7753), 4, + STATE(7917), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223462] = 9, + [230876] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533568,19 +540860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9576), 1, + ACTIONS(12697), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7754), 4, + STATE(7918), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223494] = 9, + [230908] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533591,19 +540883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12424), 1, - sym__dedent, + ACTIONS(12699), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7755), 4, + STATE(7919), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223526] = 9, + [230940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533614,19 +540906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12426), 1, + ACTIONS(12701), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7756), 4, + STATE(7920), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223558] = 9, + [230972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533637,19 +540929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12428), 1, - anon_sym_LT2, + ACTIONS(12703), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7757), 4, + STATE(7921), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223590] = 9, + [231004] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533660,19 +540952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12430), 1, + ACTIONS(12705), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7758), 4, + STATE(7922), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223622] = 9, + [231036] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533683,19 +540975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12432), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12707), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7759), 4, + STATE(7923), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223654] = 9, + [231068] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533706,19 +540998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12434), 1, - anon_sym_DASH_GT, + ACTIONS(12709), 1, + anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7760), 4, + STATE(7924), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223686] = 9, + [231100] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533729,19 +541021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12436), 1, - sym__indent, + ACTIONS(12711), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7761), 4, + STATE(7925), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223718] = 9, + [231132] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533752,19 +541044,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12438), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12713), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7762), 4, + STATE(7926), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223750] = 9, + [231164] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533775,19 +541067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12440), 1, - sym_identifier, + ACTIONS(12715), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7763), 4, + STATE(7927), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223782] = 9, + [231196] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533798,19 +541090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12442), 1, - sym_identifier, + ACTIONS(12717), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7764), 4, + STATE(7928), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223814] = 9, + [231228] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533821,19 +541113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12444), 1, - sym__indent, + ACTIONS(12719), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7765), 4, + STATE(7929), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223846] = 9, + [231260] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533844,19 +541136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12446), 1, - sym_identifier, + ACTIONS(12721), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7766), 4, + STATE(7930), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223878] = 9, + [231292] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533867,19 +541159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12448), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12723), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7767), 4, + STATE(7931), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223910] = 9, + [231324] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533890,19 +541182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12450), 1, + ACTIONS(12725), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7768), 4, + STATE(7932), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223942] = 9, + [231356] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533913,19 +541205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12452), 1, - sym_identifier, + ACTIONS(12727), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7769), 4, + STATE(7933), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [223974] = 9, + [231388] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533936,19 +541228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12454), 1, - anon_sym_POUNDendif, + ACTIONS(12729), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7770), 4, + STATE(7934), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224006] = 9, + [231420] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533959,19 +541251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12456), 1, - sym_int, + ACTIONS(12731), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7771), 4, + STATE(7935), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224038] = 9, + [231452] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -533982,19 +541274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12458), 1, - anon_sym_RBRACK, + ACTIONS(12733), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7772), 4, + STATE(7936), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224070] = 9, + [231484] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534005,19 +541297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12460), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12735), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7773), 4, + STATE(7937), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224102] = 9, + [231516] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534028,19 +541320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12462), 1, - sym_identifier, + ACTIONS(12737), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7774), 4, + STATE(7938), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224134] = 9, + [231548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534051,19 +541343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12464), 1, - sym__indent, + ACTIONS(12739), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7775), 4, + STATE(7939), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224166] = 9, + [231580] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534074,19 +541366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12466), 1, - sym__indent, + ACTIONS(12741), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7776), 4, + STATE(7940), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224198] = 9, + [231612] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534097,19 +541389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12468), 1, - anon_sym_end, + ACTIONS(12743), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7777), 4, + STATE(7941), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224230] = 9, + [231644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534120,19 +541412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12470), 1, + ACTIONS(12745), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7778), 4, + STATE(7942), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224262] = 9, + [231676] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534143,19 +541435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12472), 1, - anon_sym_end, + ACTIONS(9757), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7779), 4, + STATE(7943), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224294] = 9, + [231708] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534166,19 +541458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12474), 1, - anon_sym_RPAREN, + ACTIONS(12747), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7780), 4, + STATE(7944), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224326] = 9, + [231740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534189,19 +541481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3640), 1, - sym__newline_not_aligned, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(12749), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7781), 4, + STATE(7945), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224358] = 9, + [231772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534212,19 +541504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12476), 1, - anon_sym_GT, + ACTIONS(12751), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7782), 4, + STATE(7946), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224390] = 9, + [231804] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534235,19 +541527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12478), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12753), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7783), 4, + STATE(7947), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224422] = 9, + [231836] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534258,19 +541550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12480), 1, - anon_sym_EQ, + ACTIONS(12755), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7784), 4, + STATE(7948), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224454] = 9, + [231868] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534281,19 +541573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12482), 1, - sym__indent, + ACTIONS(12757), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7785), 4, + STATE(7949), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224486] = 9, + [231900] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534304,19 +541596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12484), 1, - sym__indent, + ACTIONS(12759), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7786), 4, + STATE(7950), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224518] = 9, + [231932] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534327,19 +541619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12486), 1, - sym__indent, + ACTIONS(12761), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7787), 4, + STATE(7951), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224550] = 9, + [231964] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534350,19 +541642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12488), 1, - anon_sym_RBRACE, + ACTIONS(12763), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7788), 4, + STATE(7952), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224582] = 9, + [231996] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534373,19 +541665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12490), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12765), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7789), 4, + STATE(7953), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224614] = 9, + [232028] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534396,19 +541688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12492), 1, - sym_identifier, + ACTIONS(12767), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7790), 4, + STATE(7954), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224646] = 9, + [232060] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534419,19 +541711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12494), 1, - anon_sym_RBRACK, + ACTIONS(12769), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7791), 4, + STATE(7955), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224678] = 9, + [232092] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534442,19 +541734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9722), 1, - anon_sym_GT, + ACTIONS(12771), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7792), 4, + STATE(7956), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224710] = 9, + [232124] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534465,19 +541757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10467), 1, - anon_sym_new, + ACTIONS(12773), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7793), 4, + STATE(7957), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224742] = 9, + [232156] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534488,19 +541780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12496), 1, - sym_int, + ACTIONS(12775), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7794), 4, + STATE(7958), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224774] = 9, + [232188] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534511,19 +541803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12498), 1, - sym__indent, + ACTIONS(12777), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7795), 4, + STATE(7959), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224806] = 9, + [232220] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534534,19 +541826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12500), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12779), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7796), 4, + STATE(7960), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224838] = 9, + [232252] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534557,19 +541849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12502), 1, - anon_sym_EQ, + ACTIONS(12781), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7797), 4, + STATE(7961), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224870] = 9, + [232284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534580,19 +541872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12504), 1, - anon_sym_EQ, + ACTIONS(12783), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7798), 4, + STATE(7962), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224902] = 9, + [232316] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534603,19 +541895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12506), 1, - sym__dedent, + ACTIONS(12785), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7799), 4, + STATE(7963), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224934] = 9, + [232348] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534626,19 +541918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12508), 1, - sym__indent, + ACTIONS(12787), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7800), 4, + STATE(7964), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224966] = 9, + [232380] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534649,19 +541941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12510), 1, - sym_identifier, + ACTIONS(12789), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7801), 4, + STATE(7965), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [224998] = 9, + [232412] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534672,19 +541964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12512), 1, - sym__dedent, + ACTIONS(12791), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7802), 4, + STATE(7966), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225030] = 9, + [232444] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534695,19 +541987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12514), 1, - anon_sym_GT, + ACTIONS(12793), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7803), 4, + STATE(7967), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225062] = 9, + [232476] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534718,19 +542010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12516), 1, + ACTIONS(12795), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7804), 4, + STATE(7968), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225094] = 9, + [232508] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534741,19 +542033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12518), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12797), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7805), 4, + STATE(7969), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225126] = 9, + [232540] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534764,19 +542056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12520), 1, - anon_sym_GT, + ACTIONS(12799), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7806), 4, + STATE(7970), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225158] = 9, + [232572] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534787,19 +542079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12522), 1, + ACTIONS(12801), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7807), 4, + STATE(7971), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225190] = 9, + [232604] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534810,19 +542102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12524), 1, + ACTIONS(12803), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7808), 4, + STATE(7972), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225222] = 9, + [232636] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534833,19 +542125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12526), 1, - anon_sym_RPAREN, + ACTIONS(12805), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7809), 4, + STATE(7973), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225254] = 9, + [232668] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534856,19 +542148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12528), 1, + ACTIONS(12807), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7810), 4, + STATE(7974), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225286] = 9, + [232700] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534879,19 +542171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12530), 1, + ACTIONS(12809), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7811), 4, + STATE(7975), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225318] = 9, + [232732] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534902,19 +542194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12532), 1, - anon_sym_GT, + ACTIONS(12811), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7812), 4, + STATE(7976), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225350] = 9, + [232764] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534925,19 +542217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12534), 1, + ACTIONS(12813), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7813), 4, + STATE(7977), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225382] = 9, + [232796] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534948,19 +542240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12536), 1, + ACTIONS(12815), 1, anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7814), 4, + STATE(7978), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225414] = 9, + [232828] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534971,19 +542263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12538), 1, - anon_sym_RBRACK, + ACTIONS(12817), 1, + anon_sym_struct, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7815), 4, + STATE(7979), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225446] = 9, + [232860] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -534994,19 +542286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(3702), 1, - sym__newline_not_aligned, - ACTIONS(5467), 1, + ACTIONS(5219), 1, + anon_sym_EQ, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7816), 4, + STATE(7980), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225478] = 9, + [232892] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535017,19 +542309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12540), 1, + ACTIONS(12819), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7817), 4, + STATE(7981), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225510] = 9, + [232924] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535040,19 +542332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12542), 1, - sym_identifier, + ACTIONS(12821), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7818), 4, + STATE(7982), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225542] = 9, + [232956] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535063,19 +542355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12544), 1, + ACTIONS(12823), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7819), 4, + STATE(7983), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225574] = 9, + [232988] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535086,19 +542378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12546), 1, + ACTIONS(12825), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7820), 4, + STATE(7984), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225606] = 9, + [233020] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535109,19 +542401,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12548), 1, + ACTIONS(12827), 1, anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7821), 4, + STATE(7985), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225638] = 9, + [233052] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535132,19 +542424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12550), 1, + ACTIONS(12829), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7822), 4, + STATE(7986), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225670] = 9, + [233084] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535155,19 +542447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5238), 1, + anon_sym_EQ, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12552), 1, - sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7823), 4, + STATE(7987), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225702] = 9, + [233116] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535178,19 +542470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12554), 1, + ACTIONS(12831), 1, anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7824), 4, + STATE(7988), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225734] = 9, + [233148] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535201,19 +542493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12556), 1, - sym_identifier, + ACTIONS(9693), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7825), 4, + STATE(7989), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225766] = 9, + [233180] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535224,19 +542516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12558), 1, - sym_int, + ACTIONS(12833), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7826), 4, + STATE(7990), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225798] = 9, + [233212] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535247,19 +542539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12560), 1, - sym_identifier, + ACTIONS(12835), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7827), 4, + STATE(7991), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225830] = 9, + [233244] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535270,19 +542562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12562), 1, + ACTIONS(12837), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7828), 4, + STATE(7992), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225862] = 9, + [233276] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535293,19 +542585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12564), 1, + ACTIONS(12839), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7829), 4, + STATE(7993), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225894] = 9, + [233308] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535316,19 +542608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12566), 1, - sym_int, + ACTIONS(12841), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7830), 4, + STATE(7994), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225926] = 9, + [233340] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535339,19 +542631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12568), 1, - sym_identifier, + ACTIONS(12843), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7831), 4, + STATE(7995), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225958] = 9, + [233372] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535362,19 +542654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12570), 1, - sym_identifier, + ACTIONS(9773), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7832), 4, + STATE(7996), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [225990] = 9, + [233404] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535385,19 +542677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12572), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12845), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7833), 4, + STATE(7997), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226022] = 9, + [233436] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535408,19 +542700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12574), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12847), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7834), 4, + STATE(7998), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226054] = 9, + [233468] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535431,19 +542723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12576), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12849), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7835), 4, + STATE(7999), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226086] = 9, + [233500] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535454,19 +542746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10485), 1, - anon_sym_new, + ACTIONS(12851), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7836), 4, + STATE(8000), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226118] = 9, + [233532] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535477,19 +542769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12578), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12853), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7837), 4, + STATE(8001), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226150] = 9, + [233564] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535500,19 +542792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12580), 1, - sym__indent, + ACTIONS(12855), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7838), 4, + STATE(8002), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226182] = 9, + [233596] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535523,19 +542815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12582), 1, - sym__indent, + ACTIONS(12857), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7839), 4, + STATE(8003), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226214] = 9, + [233628] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535546,19 +542838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12584), 1, + ACTIONS(12859), 1, sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7840), 4, + STATE(8004), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226246] = 9, + [233660] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535569,19 +542861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12586), 1, - sym__indent, + ACTIONS(12861), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7841), 4, + STATE(8005), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226278] = 9, + [233692] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535592,19 +542884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12588), 1, - sym_identifier, + ACTIONS(9695), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7842), 4, + STATE(8006), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226310] = 9, + [233724] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535615,19 +542907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12590), 1, - sym_identifier, + ACTIONS(12863), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7843), 4, + STATE(8007), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226342] = 9, + [233756] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535638,19 +542930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12592), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12865), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7844), 4, + STATE(8008), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226374] = 9, + [233788] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535661,19 +542953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12594), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12867), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7845), 4, + STATE(8009), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226406] = 9, + [233820] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535684,19 +542976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12596), 1, - sym_identifier, + ACTIONS(12869), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7846), 4, + STATE(8010), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226438] = 9, + [233852] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535707,19 +542999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12598), 1, - anon_sym_EQ, + ACTIONS(12871), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7847), 4, + STATE(8011), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226470] = 9, + [233884] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535730,19 +543022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12600), 1, - sym__indent, + ACTIONS(12873), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7848), 4, + STATE(8012), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226502] = 9, + [233916] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535753,19 +543045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12602), 1, - sym__indent, + ACTIONS(12875), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7849), 4, + STATE(8013), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226534] = 9, + [233948] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535776,19 +543068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12604), 1, + ACTIONS(12877), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7850), 4, + STATE(8014), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226566] = 9, + [233980] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535799,19 +543091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12606), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12879), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7851), 4, + STATE(8015), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226598] = 9, + [234012] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535822,19 +543114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12608), 1, - anon_sym_RBRACK, + ACTIONS(12881), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7852), 4, + STATE(8016), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226630] = 9, + [234044] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535845,19 +543137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12610), 1, + ACTIONS(12883), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7853), 4, + STATE(8017), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226662] = 9, + [234076] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535868,19 +543160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12612), 1, - anon_sym_COLON, + ACTIONS(12885), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7854), 4, + STATE(8018), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226694] = 9, + [234108] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535891,19 +543183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12614), 1, - sym__dedent, + ACTIONS(12887), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7855), 4, + STATE(8019), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226726] = 9, + [234140] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535914,19 +543206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12616), 1, - anon_sym_end, + ACTIONS(12889), 1, + anon_sym_PIPE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7856), 4, + STATE(8020), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226758] = 9, + [234172] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535937,19 +543229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12618), 1, - sym__indent, + ACTIONS(12891), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7857), 4, + STATE(8021), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226790] = 9, + [234204] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535960,19 +543252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12620), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12893), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7858), 4, + STATE(8022), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226822] = 9, + [234236] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -535983,19 +543275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12622), 1, - anon_sym_EQ, + ACTIONS(12895), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7859), 4, + STATE(8023), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226854] = 9, + [234268] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536006,19 +543298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12624), 1, - anon_sym_EQ, + ACTIONS(12897), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7860), 4, + STATE(8024), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226886] = 9, + [234300] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536029,19 +543321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12626), 1, - anon_sym_end, + ACTIONS(12899), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7861), 4, + STATE(8025), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226918] = 9, + [234332] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536052,19 +543344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12628), 1, - anon_sym_GT, + ACTIONS(12901), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7862), 4, + STATE(8026), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226950] = 9, + [234364] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536075,19 +543367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12630), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12903), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7863), 4, + STATE(8027), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [226982] = 9, + [234396] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536098,19 +543390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12632), 1, - sym__indent, + ACTIONS(12905), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7864), 4, + STATE(8028), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227014] = 9, + [234428] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536121,19 +543413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6772), 1, - sym__dedent, + ACTIONS(12907), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7865), 4, + STATE(8029), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227046] = 9, + [234460] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536144,19 +543436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12634), 1, - sym__dedent, + ACTIONS(12909), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7866), 4, + STATE(8030), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227078] = 9, + [234492] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536167,19 +543459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12636), 1, + ACTIONS(12911), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7867), 4, + STATE(8031), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227110] = 9, + [234524] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536190,19 +543482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12638), 1, - sym__indent, + ACTIONS(12913), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7868), 4, + STATE(8032), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227142] = 9, + [234556] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536213,19 +543505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9690), 1, - anon_sym_GT, + ACTIONS(12915), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7869), 4, + STATE(8033), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227174] = 9, + [234588] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536236,19 +543528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12640), 1, - sym__indent, + ACTIONS(12917), 1, + anon_sym_do, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7870), 4, + STATE(8034), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227206] = 9, + [234620] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536259,19 +543551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12642), 1, - sym__indent, + ACTIONS(12919), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7871), 4, + STATE(8035), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227238] = 9, + [234652] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536282,19 +543574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12644), 1, - sym_int, + ACTIONS(12921), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7872), 4, + STATE(8036), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227270] = 9, + [234684] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536305,19 +543597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12646), 1, - sym__indent, + ACTIONS(12923), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7873), 4, + STATE(8037), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227302] = 9, + [234716] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536328,19 +543620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12648), 1, - anon_sym_EQ, + ACTIONS(12925), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7874), 4, + STATE(8038), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227334] = 9, + [234748] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536351,19 +543643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12650), 1, - anon_sym_set, + ACTIONS(12915), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7875), 4, + STATE(8039), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227366] = 9, + [234780] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536374,19 +543666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12652), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12927), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7876), 4, + STATE(8040), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227398] = 9, + [234812] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536397,19 +543689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12654), 1, - sym_identifier, + ACTIONS(12929), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7877), 4, + STATE(8041), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227430] = 9, + [234844] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536420,19 +543712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12656), 1, - sym_identifier, + ACTIONS(12931), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7878), 4, + STATE(8042), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227462] = 9, + [234876] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536443,19 +543735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12658), 1, - sym__dedent, + ACTIONS(12933), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7879), 4, + STATE(8043), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227494] = 9, + [234908] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536466,19 +543758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12660), 1, - sym_identifier, + ACTIONS(12935), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7880), 4, + STATE(8044), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227526] = 9, + [234940] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536489,19 +543781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12662), 1, - anon_sym_LT2, + ACTIONS(12937), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7881), 4, + STATE(8045), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227558] = 9, + [234972] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536512,19 +543804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12664), 1, - sym__dedent, + ACTIONS(12939), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7882), 4, + STATE(8046), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227590] = 9, + [235004] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536535,19 +543827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12666), 1, - sym_int, + ACTIONS(12933), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7883), 4, + STATE(8047), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227622] = 9, + [235036] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536558,19 +543850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12668), 1, - anon_sym_DASH_GT, + ACTIONS(12941), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7884), 4, + STATE(8048), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227654] = 9, + [235068] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536581,19 +543873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9632), 1, - anon_sym_GT, + ACTIONS(12943), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7885), 4, + STATE(8049), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227686] = 9, + [235100] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536604,19 +543896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12670), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12945), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7886), 4, + STATE(8050), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227718] = 9, + [235132] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536627,19 +543919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12672), 1, - anon_sym_RBRACK, + ACTIONS(6819), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7887), 4, + STATE(8051), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227750] = 9, + [235164] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536650,19 +543942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12674), 1, - sym__indent, + ACTIONS(12947), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7888), 4, + STATE(8052), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227782] = 9, + [235196] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536673,19 +543965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12676), 1, + ACTIONS(12949), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7889), 4, + STATE(8053), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227814] = 9, + [235228] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536696,19 +543988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12678), 1, - sym_identifier, + ACTIONS(12951), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7890), 4, + STATE(8054), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227846] = 9, + [235260] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536719,19 +544011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12680), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12947), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7891), 4, + STATE(8055), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227878] = 9, + [235292] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536742,19 +544034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12682), 1, - anon_sym_RPAREN, + ACTIONS(12953), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7892), 4, + STATE(8056), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227910] = 9, + [235324] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536765,19 +544057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12684), 1, - anon_sym_end, + ACTIONS(12955), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7893), 4, + STATE(8057), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227942] = 9, + [235356] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536788,19 +544080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12686), 1, - sym__dedent, + ACTIONS(12957), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7894), 4, + STATE(8058), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [227974] = 9, + [235388] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536811,19 +544103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12688), 1, - sym__indent, + ACTIONS(12959), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7895), 4, + STATE(8059), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228006] = 9, + [235420] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536834,19 +544126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12690), 1, - sym__indent, + ACTIONS(12961), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7896), 4, + STATE(8060), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228038] = 9, + [235452] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536857,19 +544149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12692), 1, - sym__indent, + ACTIONS(12963), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7897), 4, + STATE(8061), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228070] = 9, + [235484] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536880,19 +544172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12694), 1, - sym__dedent, + ACTIONS(12965), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7898), 4, + STATE(8062), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228102] = 9, + [235516] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536903,19 +544195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12696), 1, - sym__indent, + ACTIONS(12967), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7899), 4, + STATE(8063), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228134] = 9, + [235548] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536926,19 +544218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12698), 1, + ACTIONS(12969), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7900), 4, + STATE(8064), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228166] = 9, + [235580] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536949,19 +544241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12700), 1, + ACTIONS(12971), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7901), 4, + STATE(8065), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228198] = 9, + [235612] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536972,19 +544264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12702), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12973), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7902), 4, + STATE(8066), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228230] = 9, + [235644] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -536995,19 +544287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12704), 1, - anon_sym_RBRACK, + ACTIONS(12975), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7903), 4, + STATE(8067), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228262] = 9, + [235676] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537018,19 +544310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12706), 1, - sym_identifier, + ACTIONS(12977), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7904), 4, + STATE(8068), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228294] = 9, + [235708] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537041,19 +544333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12708), 1, - anon_sym_GT, + ACTIONS(12979), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7905), 4, + STATE(8069), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228326] = 9, + [235740] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537064,19 +544356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12710), 1, - anon_sym_RPAREN, + ACTIONS(12981), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7906), 4, + STATE(8070), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228358] = 9, + [235772] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537087,19 +544379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12712), 1, - anon_sym_RBRACK, + ACTIONS(12983), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7907), 4, + STATE(8071), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228390] = 9, + [235804] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537110,19 +544402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12714), 1, - sym_identifier, + ACTIONS(10574), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7908), 4, + STATE(8072), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228422] = 9, + [235836] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537133,19 +544425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12716), 1, - sym__indent, + ACTIONS(12985), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7909), 4, + STATE(8073), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228454] = 9, + [235868] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537156,19 +544448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12718), 1, - sym_int, + ACTIONS(12987), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7910), 4, + STATE(8074), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228486] = 9, + [235900] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537179,19 +544471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12720), 1, - anon_sym_struct, + ACTIONS(12989), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7911), 4, + STATE(8075), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228518] = 9, + [235932] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537202,19 +544494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12722), 1, - sym_identifier, + ACTIONS(12991), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7912), 4, + STATE(8076), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228550] = 9, + [235964] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537225,19 +544517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12724), 1, - sym__indent, + ACTIONS(12993), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7913), 4, + STATE(8077), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228582] = 9, + [235996] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537248,41 +544540,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12726), 1, - sym_identifier, + ACTIONS(12995), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7914), 4, + STATE(8078), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228614] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [236028] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12728), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12997), 1, + anon_sym_PIPE_RPAREN, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7915), 4, + STATE(8079), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228644] = 9, + [236060] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537293,19 +544586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12730), 1, - anon_sym_POUNDendif, + ACTIONS(12999), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7916), 4, + STATE(8080), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228676] = 9, + [236092] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537316,19 +544609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12732), 1, - anon_sym_GT, + ACTIONS(13001), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7917), 4, + STATE(8081), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228708] = 9, + [236124] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537339,19 +544632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12734), 1, - sym_identifier, + ACTIONS(12995), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7918), 4, + STATE(8082), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228740] = 9, + [236156] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537362,19 +544655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12736), 1, - anon_sym_end, + ACTIONS(13003), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7919), 4, + STATE(8083), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228772] = 9, + [236188] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537385,19 +544678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12738), 1, - sym_identifier, + ACTIONS(9723), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7920), 4, + STATE(8084), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228804] = 9, + [236220] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537408,19 +544701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12740), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13005), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7921), 4, + STATE(8085), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228836] = 9, + [236252] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537431,19 +544724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12742), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13007), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7922), 4, + STATE(8086), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228868] = 9, + [236284] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537454,19 +544747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12744), 1, - anon_sym_RPAREN, + ACTIONS(13009), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7923), 4, + STATE(8087), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228900] = 9, + [236316] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537477,19 +544770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12746), 1, - sym__indent, + ACTIONS(13011), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7924), 4, + STATE(8088), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228932] = 9, + [236348] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537500,19 +544793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12748), 1, - sym_identifier, + ACTIONS(13013), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7925), 4, + STATE(8089), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228964] = 9, + [236380] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537523,19 +544816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12750), 1, - sym_identifier, + ACTIONS(13015), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7926), 4, + STATE(8090), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [228996] = 9, + [236412] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537546,19 +544839,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12752), 1, - anon_sym_RPAREN, + ACTIONS(13017), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7927), 4, + STATE(8091), 4, + sym_block_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [236444] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, + anon_sym_POUNDnowarn, + ACTIONS(7954), 1, + anon_sym_POUNDlight, + ACTIONS(7956), 1, + anon_sym_POUNDr, + ACTIONS(13019), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(15), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(125), 2, + anon_sym_SEMI, + sym_line_comment, + STATE(8092), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229028] = 9, + [236474] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537569,19 +544884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12754), 1, - anon_sym_POUNDendif, + ACTIONS(13021), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7928), 4, + STATE(8093), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229060] = 9, + [236506] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537592,19 +544907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12756), 1, - anon_sym_GT, + ACTIONS(13023), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7929), 4, + STATE(8094), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229092] = 9, + [236538] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537615,19 +544930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12758), 1, - sym__indent, + ACTIONS(13025), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7930), 4, + STATE(8095), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229124] = 9, + [236570] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537638,19 +544953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12760), 1, - sym__indent, + ACTIONS(13027), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7931), 4, + STATE(8096), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229156] = 9, + [236602] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537661,19 +544976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12762), 1, - sym__dedent, + ACTIONS(13029), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7932), 4, + STATE(8097), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229188] = 9, + [236634] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537684,19 +544999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12764), 1, - anon_sym_set, + ACTIONS(13031), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7933), 4, + STATE(8098), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229220] = 9, + [236666] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537707,19 +545022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12766), 1, - sym__newline_not_aligned, + ACTIONS(13033), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7934), 4, + STATE(8099), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229252] = 9, + [236698] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537730,19 +545045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12764), 1, - anon_sym_get, + ACTIONS(13035), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7935), 4, + STATE(8100), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229284] = 9, + [236730] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537753,19 +545068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12768), 1, - anon_sym_RBRACE, + ACTIONS(13037), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7936), 4, + STATE(8101), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229316] = 9, + [236762] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537776,19 +545091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12770), 1, - anon_sym_set, + ACTIONS(13039), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7937), 4, + STATE(8102), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229348] = 9, + [236794] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537799,19 +545114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12770), 1, - anon_sym_get, + ACTIONS(13041), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7938), 4, + STATE(8103), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229380] = 9, + [236826] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537822,19 +545137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12772), 1, - sym_identifier, + ACTIONS(13043), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7939), 4, + STATE(8104), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229412] = 9, + [236858] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537845,19 +545160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12774), 1, - sym_identifier, + ACTIONS(13045), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7940), 4, + STATE(8105), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229444] = 9, + [236890] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537868,19 +545183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(13047), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7941), 4, + STATE(8106), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229476] = 9, + [236922] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537891,19 +545206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12776), 1, - sym_identifier, + ACTIONS(13049), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7942), 4, + STATE(8107), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229508] = 9, + [236954] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537914,19 +545229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12778), 1, - anon_sym_RPAREN, + ACTIONS(13051), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7943), 4, + STATE(8108), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229540] = 9, + [236986] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537937,19 +545252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12780), 1, + ACTIONS(13053), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7944), 4, + STATE(8109), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229572] = 9, + [237018] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537960,19 +545275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12782), 1, - anon_sym_GT, + ACTIONS(13055), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7945), 4, + STATE(8110), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229604] = 9, + [237050] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -537983,19 +545298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6752), 1, - sym__dedent, + ACTIONS(13057), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7946), 4, + STATE(8111), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229636] = 9, + [237082] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538006,19 +545321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12784), 1, - sym_identifier, + ACTIONS(13059), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7947), 4, + STATE(8112), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229668] = 9, + [237114] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538029,19 +545344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12786), 1, - sym__indent, + ACTIONS(13061), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7948), 4, + STATE(8113), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229700] = 9, + [237146] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538052,19 +545367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12788), 1, - anon_sym_set, + ACTIONS(13063), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7949), 4, + STATE(8114), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229732] = 9, + [237178] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538075,19 +545390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12790), 1, - anon_sym_RBRACK, + ACTIONS(13065), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7950), 4, + STATE(8115), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229764] = 9, + [237210] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538098,19 +545413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12788), 1, - anon_sym_get, + ACTIONS(13067), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7951), 4, + STATE(8116), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229796] = 9, + [237242] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538121,19 +545436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12792), 1, + ACTIONS(13069), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7952), 4, + STATE(8117), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229828] = 9, + [237274] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538144,19 +545459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12794), 1, - sym__dedent, + ACTIONS(13071), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7953), 4, + STATE(8118), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229860] = 9, + [237306] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538167,19 +545482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12796), 1, + ACTIONS(13073), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7954), 4, + STATE(8119), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229892] = 9, + [237338] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538190,19 +545505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12798), 1, - anon_sym_of, + ACTIONS(13075), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7955), 4, + STATE(8120), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229924] = 9, + [237370] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538213,19 +545528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12800), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(13077), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7956), 4, + STATE(8121), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229956] = 9, + [237402] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538236,19 +545551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12802), 1, - sym_identifier, + ACTIONS(13079), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7957), 4, + STATE(8122), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [229988] = 9, + [237434] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538259,19 +545574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12804), 1, - sym__indent, + ACTIONS(13081), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7958), 4, + STATE(8123), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230020] = 9, + [237466] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538282,19 +545597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12806), 1, - sym_identifier, + ACTIONS(13083), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7959), 4, + STATE(8124), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230052] = 9, + [237498] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538305,19 +545620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12808), 1, - sym_identifier, + ACTIONS(13085), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7960), 4, + STATE(8125), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230084] = 9, + [237530] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538328,19 +545643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12810), 1, - anon_sym_set, + ACTIONS(13087), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7961), 4, + STATE(8126), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230116] = 9, + [237562] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538351,41 +545666,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12810), 1, - anon_sym_get, + ACTIONS(9739), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7962), 4, + STATE(8127), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230148] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [237594] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12812), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13089), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7963), 4, + STATE(8128), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230178] = 9, + [237626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538396,19 +545712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12814), 1, - sym__dedent, + ACTIONS(13091), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7964), 4, + STATE(8129), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230210] = 9, + [237658] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538419,19 +545735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12816), 1, - sym__indent, + ACTIONS(13093), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7965), 4, + STATE(8130), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230242] = 9, + [237690] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538442,19 +545758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12818), 1, - sym__dedent, + ACTIONS(13095), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7966), 4, + STATE(8131), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230274] = 9, + [237722] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538465,19 +545781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12820), 1, - anon_sym_get, + ACTIONS(13097), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7967), 4, + STATE(8132), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230306] = 9, + [237754] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538488,19 +545804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12820), 1, - anon_sym_set, + ACTIONS(13099), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7968), 4, + STATE(8133), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230338] = 9, + [237786] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538511,19 +545827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12822), 1, - sym__dedent, + ACTIONS(13101), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7969), 4, + STATE(8134), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230370] = 9, + [237818] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538534,19 +545850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12824), 1, - anon_sym_end, + ACTIONS(13103), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7970), 4, + STATE(8135), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230402] = 9, + [237850] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538557,19 +545873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12650), 1, - anon_sym_get, + ACTIONS(13105), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7971), 4, + STATE(8136), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230434] = 9, + [237882] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538580,19 +545896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12826), 1, - anon_sym_end, + ACTIONS(13107), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7972), 4, + STATE(8137), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230466] = 9, + [237914] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538603,19 +545919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12828), 1, + ACTIONS(13109), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7973), 4, + STATE(8138), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230498] = 9, + [237946] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538626,19 +545942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12830), 1, - anon_sym_GT, + ACTIONS(13111), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7974), 4, + STATE(8139), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230530] = 9, + [237978] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538649,19 +545965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12832), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13113), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7975), 4, + STATE(8140), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230562] = 9, + [238010] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538672,19 +545988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12834), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13115), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7976), 4, + STATE(8141), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230594] = 9, + [238042] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538695,19 +546011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9644), 1, - anon_sym_GT, + ACTIONS(13117), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7977), 4, + STATE(8142), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230626] = 9, + [238074] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538718,19 +546034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12836), 1, + ACTIONS(13119), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7978), 4, + STATE(8143), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230658] = 9, + [238106] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538741,19 +546057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6784), 1, - sym__dedent, + ACTIONS(13121), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7979), 4, + STATE(8144), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230690] = 9, + [238138] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538764,19 +546080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12838), 1, - anon_sym_get, + ACTIONS(13123), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7980), 4, + STATE(8145), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230722] = 9, + [238170] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538787,19 +546103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12840), 1, - sym_identifier, + ACTIONS(13125), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7981), 4, + STATE(8146), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230754] = 9, + [238202] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538810,19 +546126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12842), 1, - sym__indent, + ACTIONS(13127), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7982), 4, + STATE(8147), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230786] = 9, + [238234] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538833,19 +546149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5217), 1, + anon_sym_EQ, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12838), 1, - anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7983), 4, + STATE(8148), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230818] = 9, + [238266] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538856,19 +546172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12844), 1, - sym_int, + ACTIONS(13129), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7984), 4, + STATE(8149), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230850] = 9, + [238298] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538879,19 +546195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12846), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13131), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7985), 4, + STATE(8150), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230882] = 9, + [238330] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538902,19 +546218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12848), 1, - sym_identifier, + ACTIONS(13133), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7986), 4, + STATE(8151), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230914] = 9, + [238362] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538925,19 +546241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12850), 1, - anon_sym_get, + ACTIONS(13135), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7987), 4, + STATE(8152), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230946] = 9, + [238394] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538948,19 +546264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12852), 1, - sym_identifier, + ACTIONS(6853), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7988), 4, + STATE(8153), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [230978] = 9, + [238426] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538971,19 +546287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(4232), 1, - anon_sym_EQ2, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(13137), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7989), 4, + STATE(8154), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231010] = 9, + [238458] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -538994,19 +546310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12854), 1, - sym__dedent, + ACTIONS(13139), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7990), 4, + STATE(8155), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231042] = 9, + [238490] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539017,19 +546333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12856), 1, - anon_sym_GT, + ACTIONS(13141), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7991), 4, + STATE(8156), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231074] = 9, + [238522] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539040,19 +546356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12858), 1, - sym__indent, + ACTIONS(13143), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7992), 4, + STATE(8157), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231106] = 9, + [238554] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539063,19 +546379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12860), 1, - sym_identifier, + ACTIONS(13145), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7993), 4, + STATE(8158), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231138] = 9, + [238586] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539086,19 +546402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12862), 1, - sym_identifier, + ACTIONS(13147), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7994), 4, + STATE(8159), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231170] = 9, + [238618] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539109,19 +546425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12850), 1, - anon_sym_set, + ACTIONS(13149), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7995), 4, + STATE(8160), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231202] = 9, + [238650] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539132,19 +546448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12864), 1, - sym_int, + ACTIONS(13151), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7996), 4, + STATE(8161), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231234] = 9, + [238682] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539155,19 +546471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12866), 1, - sym__dedent, + ACTIONS(13153), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7997), 4, + STATE(8162), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231266] = 9, + [238714] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539178,19 +546494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12868), 1, - anon_sym_RPAREN, + ACTIONS(13155), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7998), 4, + STATE(8163), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231298] = 9, + [238746] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539201,19 +546517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12870), 1, - sym__indent, + ACTIONS(13157), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(7999), 4, + STATE(8164), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231330] = 9, + [238778] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539224,19 +546540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12872), 1, - anon_sym_POUNDendif, + ACTIONS(13159), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8000), 4, + STATE(8165), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231362] = 9, + [238810] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539247,19 +546563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(862), 1, - sym__dedent, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(9743), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8001), 4, + STATE(8166), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231394] = 9, + [238842] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539270,19 +546586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12874), 1, - sym__dedent, + ACTIONS(13161), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8002), 4, + STATE(8167), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231426] = 9, + [238874] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539293,19 +546609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12876), 1, + ACTIONS(13163), 1, sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8003), 4, + STATE(8168), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231458] = 9, + [238906] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539316,19 +546632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12878), 1, - sym_identifier, + ACTIONS(13165), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8004), 4, + STATE(8169), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231490] = 9, + [238938] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539339,19 +546655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12880), 1, + ACTIONS(13167), 1, sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8005), 4, + STATE(8170), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231522] = 9, + [238970] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539362,19 +546678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12882), 1, - anon_sym_RBRACK, + ACTIONS(13169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8006), 4, + STATE(8171), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231554] = 9, + [239002] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539385,19 +546701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12884), 1, - sym_int, + ACTIONS(13171), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8007), 4, + STATE(8172), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231586] = 9, + [239034] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539408,19 +546724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12886), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13173), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8008), 4, + STATE(8173), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231618] = 9, + [239066] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539431,19 +546747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12888), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13175), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8009), 4, + STATE(8174), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231650] = 9, + [239098] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539454,19 +546770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12890), 1, - sym__indent, + ACTIONS(13177), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8010), 4, + STATE(8175), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231682] = 9, + [239130] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539477,19 +546793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12892), 1, - sym_identifier, + ACTIONS(13179), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8011), 4, + STATE(8176), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231714] = 9, + [239162] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539500,19 +546816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12894), 1, - sym_identifier, + ACTIONS(13181), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8012), 4, + STATE(8177), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231746] = 9, + [239194] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539523,19 +546839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(4255), 1, + anon_sym_EQ2, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12896), 1, - sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8013), 4, + STATE(8178), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231778] = 9, + [239226] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539546,19 +546862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12898), 1, - anon_sym_struct, + ACTIONS(13183), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8014), 4, + STATE(8179), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231810] = 9, + [239258] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539569,19 +546885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12900), 1, - sym_identifier, + ACTIONS(13185), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8015), 4, + STATE(8180), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231842] = 9, + [239290] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539592,19 +546908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12902), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13187), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8016), 4, + STATE(8181), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231874] = 9, + [239322] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539615,19 +546931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12904), 1, - sym__indent, + ACTIONS(13189), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8017), 4, + STATE(8182), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231906] = 9, + [239354] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539638,19 +546954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12906), 1, - sym__dedent, + ACTIONS(13191), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8018), 4, + STATE(8183), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231938] = 9, + [239386] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539661,19 +546977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12908), 1, - anon_sym_EQ, + ACTIONS(13193), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8019), 4, + STATE(8184), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [231970] = 9, + [239418] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539684,19 +547000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12910), 1, - sym_identifier, + ACTIONS(13195), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8020), 4, + STATE(8185), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232002] = 9, + [239450] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539707,19 +547023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12912), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13197), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8021), 4, + STATE(8186), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232034] = 9, + [239482] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539730,19 +547046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(902), 1, + sym__dedent, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12914), 1, - anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8022), 4, + STATE(8187), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232066] = 9, + [239514] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539753,19 +547069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12916), 1, - anon_sym_RBRACK, + ACTIONS(13199), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8023), 4, + STATE(8188), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232098] = 9, + [239546] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539776,19 +547092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12918), 1, - anon_sym_RBRACE, + ACTIONS(13201), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8024), 4, + STATE(8189), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232130] = 9, + [239578] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539799,19 +547115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12920), 1, - anon_sym_end, + ACTIONS(13203), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8025), 4, + STATE(8190), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232162] = 9, + [239610] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539822,19 +547138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12922), 1, - anon_sym_GT, + ACTIONS(13205), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8026), 4, + STATE(8191), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232194] = 9, + [239642] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539845,19 +547161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12924), 1, - sym__indent, + ACTIONS(13207), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8027), 4, + STATE(8192), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232226] = 9, + [239674] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539868,19 +547184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12926), 1, + ACTIONS(13209), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8028), 4, + STATE(8193), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232258] = 9, + [239706] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539891,19 +547207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12928), 1, + ACTIONS(13211), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8029), 4, + STATE(8194), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232290] = 9, + [239738] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539914,19 +547230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12930), 1, + ACTIONS(13213), 1, sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8030), 4, + STATE(8195), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232322] = 9, + [239770] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539937,19 +547253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12932), 1, - sym__dedent, + ACTIONS(13215), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8031), 4, + STATE(8196), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232354] = 9, + [239802] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539960,19 +547276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12934), 1, + ACTIONS(13217), 1, anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8032), 4, + STATE(8197), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232386] = 9, + [239834] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -539983,19 +547299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12936), 1, - anon_sym_GT, + ACTIONS(13219), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8033), 4, + STATE(8198), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232418] = 9, + [239866] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540006,19 +547322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12938), 1, - sym__indent, + ACTIONS(13221), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8034), 4, + STATE(8199), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232450] = 9, + [239898] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540029,19 +547345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12940), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13223), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8035), 4, + STATE(8200), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232482] = 9, + [239930] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540052,19 +547368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12942), 1, - sym__dedent, + ACTIONS(13225), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8036), 4, + STATE(8201), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232514] = 9, + [239962] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540075,19 +547391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9604), 1, - anon_sym_GT, + ACTIONS(13227), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8037), 4, + STATE(8202), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232546] = 9, + [239994] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540098,19 +547414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12944), 1, - sym__indent, + ACTIONS(13229), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8038), 4, + STATE(8203), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232578] = 9, + [240026] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540121,19 +547437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12946), 1, - sym_int, + ACTIONS(13231), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8039), 4, + STATE(8204), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232610] = 9, + [240058] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540144,19 +547460,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12948), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13233), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8040), 4, + STATE(8205), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232642] = 9, + [240090] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540167,19 +547483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12950), 1, - anon_sym_and, + ACTIONS(13235), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8041), 4, + STATE(8206), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232674] = 9, + [240122] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540190,19 +547506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12952), 1, - sym_identifier, + ACTIONS(13237), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8042), 4, + STATE(8207), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232706] = 9, + [240154] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540213,19 +547529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12954), 1, - anon_sym_GT, + ACTIONS(13239), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8043), 4, + STATE(8208), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232738] = 9, + [240186] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540236,19 +547552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12956), 1, - sym__indent, + ACTIONS(13241), 1, + anon_sym_and, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8044), 4, + STATE(8209), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232770] = 9, + [240218] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540259,19 +547575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12958), 1, + ACTIONS(13243), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8045), 4, + STATE(8210), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232802] = 9, + [240250] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540282,19 +547598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12960), 1, - sym_identifier, + ACTIONS(13245), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8046), 4, + STATE(8211), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232834] = 9, + [240282] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540305,19 +547621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12962), 1, - anon_sym_end, + ACTIONS(13247), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8047), 4, + STATE(8212), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232866] = 9, + [240314] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540328,19 +547644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12964), 1, - anon_sym_end, + ACTIONS(13247), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8048), 4, + STATE(8213), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232898] = 9, + [240346] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540351,19 +547667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12966), 1, - sym__dedent, + ACTIONS(13249), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8049), 4, + STATE(8214), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232930] = 9, + [240378] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540374,19 +547690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12968), 1, - sym_identifier, + ACTIONS(13251), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8050), 4, + STATE(8215), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232962] = 9, + [240410] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540397,19 +547713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12970), 1, + ACTIONS(13253), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8051), 4, + STATE(8216), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [232994] = 9, + [240442] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540420,41 +547736,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12972), 1, - anon_sym_RPAREN, + ACTIONS(13255), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8052), 4, + STATE(8217), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233026] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [240474] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12974), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13257), 1, + sym__indent, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8053), 4, + STATE(8218), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233056] = 9, + [240506] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540465,19 +547782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12976), 1, + ACTIONS(13259), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8054), 4, + STATE(8219), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233088] = 9, + [240538] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540488,19 +547805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12978), 1, - sym__newline_not_aligned, + ACTIONS(13249), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8055), 4, + STATE(8220), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233120] = 9, + [240570] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540511,19 +547828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12980), 1, - anon_sym_RBRACK, + ACTIONS(13261), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8056), 4, + STATE(8221), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233152] = 9, + [240602] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540534,19 +547851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12982), 1, - sym__newline_not_aligned, + ACTIONS(13263), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8057), 4, + STATE(8222), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233184] = 9, + [240634] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540557,19 +547874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12984), 1, - sym_identifier, + ACTIONS(13265), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8058), 4, + STATE(8223), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233216] = 9, + [240666] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540580,19 +547897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12986), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13267), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8059), 4, + STATE(8224), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233248] = 9, + [240698] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540603,19 +547920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12988), 1, - sym_int, + ACTIONS(13269), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8060), 4, + STATE(8225), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233280] = 9, + [240730] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540626,19 +547943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12990), 1, + ACTIONS(13271), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8061), 4, + STATE(8226), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233312] = 9, + [240762] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540649,19 +547966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12992), 1, - sym_identifier, + ACTIONS(13273), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8062), 4, + STATE(8227), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233344] = 9, + [240794] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540672,19 +547989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12994), 1, - sym_identifier, + ACTIONS(13275), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8063), 4, + STATE(8228), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233376] = 9, + [240826] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540695,19 +548012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12996), 1, - sym_int, + ACTIONS(13269), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8064), 4, + STATE(8229), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233408] = 9, + [240858] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540718,19 +548035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(12998), 1, - sym__dedent, + ACTIONS(13277), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8065), 4, + STATE(8230), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233440] = 9, + [240890] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540741,19 +548058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13000), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13279), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8066), 4, + STATE(8231), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233472] = 9, + [240922] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540764,19 +548081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13002), 1, - anon_sym_POUNDendif, + ACTIONS(13281), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8067), 4, + STATE(8232), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233504] = 9, + [240954] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540787,19 +548104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13004), 1, - sym__indent, + ACTIONS(13283), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8068), 4, + STATE(8233), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233536] = 9, + [240986] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540810,19 +548127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13006), 1, - sym__dedent, + ACTIONS(13285), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8069), 4, + STATE(8234), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233568] = 9, + [241018] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540833,19 +548150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13008), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13287), 1, + anon_sym_unit, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8070), 4, + STATE(8235), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233600] = 9, + [241050] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540856,19 +548173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13010), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10566), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8071), 4, + STATE(8236), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233632] = 9, + [241082] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540879,19 +548196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13012), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13289), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8072), 4, + STATE(8237), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233664] = 9, + [241114] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540902,19 +548219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13014), 1, - sym_identifier, + ACTIONS(13291), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8073), 4, + STATE(8238), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233696] = 9, + [241146] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540925,19 +548242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13016), 1, + ACTIONS(13293), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8074), 4, + STATE(8239), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233728] = 9, + [241178] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540948,19 +548265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13018), 1, - sym_identifier, + ACTIONS(13295), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8075), 4, + STATE(8240), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233760] = 9, + [241210] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540971,19 +548288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13020), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13297), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8076), 4, + STATE(8241), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233792] = 9, + [241242] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -540994,19 +548311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13022), 1, - sym_identifier, + ACTIONS(13299), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8077), 4, + STATE(8242), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233824] = 9, + [241274] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541017,19 +548334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13024), 1, - sym_int, + ACTIONS(13301), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8078), 4, + STATE(8243), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233856] = 9, + [241306] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541040,19 +548357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13026), 1, - sym_identifier, + ACTIONS(9789), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8079), 4, + STATE(8244), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233888] = 9, + [241338] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541063,19 +548380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13028), 1, - sym__indent, + ACTIONS(13303), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8080), 4, + STATE(8245), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233920] = 9, + [241370] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541086,19 +548403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13030), 1, + ACTIONS(13305), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8081), 4, + STATE(8246), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233952] = 9, + [241402] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541109,19 +548426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13032), 1, - sym__indent, + ACTIONS(13301), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8082), 4, + STATE(8247), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [233984] = 9, + [241434] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541132,19 +548449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13034), 1, + ACTIONS(13307), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8083), 4, + STATE(8248), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234016] = 9, + [241466] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541155,19 +548472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13036), 1, - sym_identifier, + ACTIONS(13309), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8084), 4, + STATE(8249), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234048] = 9, + [241498] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541178,19 +548495,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13038), 1, - sym__indent, + ACTIONS(13311), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8085), 4, + STATE(8250), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234080] = 9, + [241530] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541201,19 +548518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13040), 1, - anon_sym_end, + ACTIONS(13313), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8086), 4, + STATE(8251), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234112] = 9, + [241562] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541224,19 +548541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(6774), 1, - sym__dedent, + ACTIONS(13315), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8087), 4, + STATE(8252), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234144] = 9, + [241594] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541247,19 +548564,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13042), 1, + ACTIONS(13317), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8088), 4, + STATE(8253), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234176] = 9, + [241626] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541270,19 +548587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13044), 1, - anon_sym_EQ, + ACTIONS(13319), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8089), 4, + STATE(8254), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234208] = 9, + [241658] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541293,19 +548610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13046), 1, - sym_identifier, + ACTIONS(13321), 1, + anon_sym_unit, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8090), 4, + STATE(8255), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234240] = 9, + [241690] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541316,19 +548633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13048), 1, - anon_sym_GT, + ACTIONS(13323), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8091), 4, + STATE(8256), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234272] = 9, + [241722] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541339,19 +548656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13050), 1, + ACTIONS(13325), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8092), 4, + STATE(8257), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234304] = 9, + [241754] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541362,19 +548679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13052), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13327), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8093), 4, + STATE(8258), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234336] = 9, + [241786] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541385,19 +548702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9550), 1, - anon_sym_GT, + ACTIONS(13329), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8094), 4, + STATE(8259), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234368] = 9, + [241818] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541408,19 +548725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13054), 1, - sym__dedent, + ACTIONS(13331), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8095), 4, + STATE(8260), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234400] = 9, + [241850] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541431,19 +548748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13056), 1, - anon_sym_RBRACE, + ACTIONS(13333), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8096), 4, + STATE(8261), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234432] = 9, + [241882] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541454,19 +548771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13058), 1, - sym_identifier, + ACTIONS(13335), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8097), 4, + STATE(8262), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234464] = 9, + [241914] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541477,19 +548794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13060), 1, - sym__newline_not_aligned, + ACTIONS(13337), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8098), 4, + STATE(8263), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234496] = 9, + [241946] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541500,19 +548817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13062), 1, + ACTIONS(13339), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8099), 4, + STATE(8264), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234528] = 9, + [241978] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541523,19 +548840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13064), 1, - sym_int, + ACTIONS(13341), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8100), 4, + STATE(8265), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234560] = 9, + [242010] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541546,19 +548863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13066), 1, - anon_sym_unit, + ACTIONS(13343), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8101), 4, + STATE(8266), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234592] = 9, + [242042] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541569,19 +548886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10471), 1, - anon_sym_new, + ACTIONS(13345), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8102), 4, + STATE(8267), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234624] = 9, + [242074] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541592,19 +548909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13068), 1, + ACTIONS(13347), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8103), 4, + STATE(8268), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234656] = 9, + [242106] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541615,19 +548932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13070), 1, - sym__indent, + ACTIONS(13349), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8104), 4, + STATE(8269), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234688] = 9, + [242138] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541638,19 +548955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13072), 1, - anon_sym_POUNDendif, + ACTIONS(13351), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8105), 4, + STATE(8270), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234720] = 9, + [242170] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541661,19 +548978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13074), 1, - sym__indent, + ACTIONS(13353), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8106), 4, + STATE(8271), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234752] = 9, + [242202] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541684,19 +549001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13076), 1, - anon_sym_POUNDendif, + ACTIONS(13355), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8107), 4, + STATE(8272), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234784] = 9, + [242234] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541707,19 +549024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13078), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13357), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8108), 4, + STATE(8273), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234816] = 9, + [242266] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541730,19 +549047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13080), 1, - sym_int, + ACTIONS(13359), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8109), 4, + STATE(8274), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234848] = 9, + [242298] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541753,19 +549070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13082), 1, - anon_sym_EQ, + ACTIONS(13361), 1, + anon_sym_unit, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8110), 4, + STATE(8275), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234880] = 9, + [242330] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541776,19 +549093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13084), 1, - sym_identifier, + ACTIONS(13363), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8111), 4, + STATE(8276), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234912] = 9, + [242362] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541799,19 +549116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13086), 1, - sym__dedent, + ACTIONS(13365), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8112), 4, + STATE(8277), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234944] = 9, + [242394] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541822,19 +549139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13088), 1, + ACTIONS(13367), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8113), 4, + STATE(8278), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [234976] = 9, + [242426] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541845,19 +549162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13090), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13369), 1, + anon_sym_struct, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8114), 4, + STATE(8279), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235008] = 9, + [242458] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541868,19 +549185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13092), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13371), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8115), 4, + STATE(8280), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235040] = 9, + [242490] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541891,19 +549208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13094), 1, - sym_identifier, + ACTIONS(13373), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8116), 4, + STATE(8281), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235072] = 9, + [242522] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541914,19 +549231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13096), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13375), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8117), 4, + STATE(8282), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235104] = 9, + [242554] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541937,19 +549254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13098), 1, - anon_sym_GT, + ACTIONS(13377), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8118), 4, + STATE(8283), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235136] = 9, + [242586] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541960,19 +549277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13100), 1, - sym__dedent, + ACTIONS(10540), 1, + anon_sym_new, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8119), 4, + STATE(8284), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235168] = 9, + [242618] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -541983,19 +549300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13102), 1, - anon_sym_unit, + ACTIONS(13379), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8120), 4, + STATE(8285), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235200] = 9, + [242650] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542006,19 +549323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13104), 1, - anon_sym_new, + ACTIONS(13381), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8121), 4, + STATE(8286), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235232] = 9, + [242682] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542029,19 +549346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13106), 1, - sym__indent, + ACTIONS(13383), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8122), 4, + STATE(8287), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235264] = 9, + [242714] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542052,19 +549369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13108), 1, + ACTIONS(13385), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8123), 4, + STATE(8288), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235296] = 9, + [242746] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542075,19 +549392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13110), 1, - anon_sym_RBRACK, + ACTIONS(13387), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8124), 4, + STATE(8289), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235328] = 9, + [242778] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542098,19 +549415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13112), 1, - sym__indent, + ACTIONS(13389), 1, + anon_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8125), 4, + STATE(8290), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235360] = 9, + [242810] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542121,19 +549438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13114), 1, - anon_sym_GT, + ACTIONS(13391), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8126), 4, + STATE(8291), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235392] = 9, + [242842] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542144,19 +549461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13116), 1, - anon_sym_RPAREN, + ACTIONS(13393), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8127), 4, + STATE(8292), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235424] = 9, + [242874] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542167,19 +549484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13118), 1, - anon_sym_GT, + ACTIONS(13395), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8128), 4, + STATE(8293), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235456] = 9, + [242906] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542190,19 +549507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13120), 1, - anon_sym_EQ, + ACTIONS(13397), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8129), 4, + STATE(8294), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235488] = 9, + [242938] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542213,19 +549530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13122), 1, - sym_identifier, + ACTIONS(13399), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8130), 4, + STATE(8295), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235520] = 9, + [242970] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542236,19 +549553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13124), 1, - sym_identifier, + ACTIONS(13401), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8131), 4, + STATE(8296), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235552] = 9, + [243002] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542259,19 +549576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13126), 1, - sym__indent, + ACTIONS(13403), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8132), 4, + STATE(8297), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235584] = 9, + [243034] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542282,19 +549599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9502), 1, - anon_sym_GT, + ACTIONS(13405), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8133), 4, + STATE(8298), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235616] = 9, + [243066] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542305,19 +549622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13128), 1, - anon_sym_RPAREN, + ACTIONS(13407), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8134), 4, + STATE(8299), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235648] = 9, + [243098] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542328,19 +549645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13130), 1, - sym_identifier, + ACTIONS(13409), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8135), 4, + STATE(8300), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235680] = 9, + [243130] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542351,19 +549668,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13132), 1, - anon_sym_COLON, + ACTIONS(13411), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8136), 4, + STATE(8301), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235712] = 9, + [243162] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542374,19 +549691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13134), 1, - anon_sym_RPAREN, + ACTIONS(13413), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8137), 4, + STATE(8302), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235744] = 9, + [243194] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542397,19 +549714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13136), 1, - anon_sym_of, + ACTIONS(13415), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8138), 4, + STATE(8303), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235776] = 9, + [243226] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542420,19 +549737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13138), 1, - anon_sym_unit, + ACTIONS(13417), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8139), 4, + STATE(8304), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235808] = 9, + [243258] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542443,19 +549760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13140), 1, - anon_sym_new, + ACTIONS(13419), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8140), 4, + STATE(8305), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235840] = 9, + [243290] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542466,19 +549783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13142), 1, + ACTIONS(13421), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8141), 4, + STATE(8306), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235872] = 9, + [243322] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542489,19 +549806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13144), 1, + ACTIONS(13423), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8142), 4, + STATE(8307), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235904] = 9, + [243354] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542512,19 +549829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13146), 1, - anon_sym_EQ, + ACTIONS(13425), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8143), 4, + STATE(8308), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235936] = 9, + [243386] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542535,19 +549852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13148), 1, + ACTIONS(13427), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8144), 4, + STATE(8309), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [235968] = 9, + [243418] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542558,19 +549875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13150), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13429), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8145), 4, + STATE(8310), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236000] = 9, + [243450] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542581,19 +549898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13152), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13431), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8146), 4, + STATE(8311), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236032] = 9, + [243482] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542604,19 +549921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(10463), 1, - anon_sym_new, + ACTIONS(13433), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8147), 4, + STATE(8312), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236064] = 9, + [243514] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542627,19 +549944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13154), 1, + ACTIONS(13435), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8148), 4, + STATE(8313), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236096] = 9, + [243546] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542650,19 +549967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13156), 1, + ACTIONS(13437), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8149), 4, + STATE(8314), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236128] = 9, + [243578] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542673,19 +549990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13158), 1, - anon_sym_DASH_GT, + ACTIONS(13439), 1, + anon_sym_of, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8150), 4, + STATE(8315), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236160] = 9, + [243610] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542696,19 +550013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13160), 1, + ACTIONS(13441), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8151), 4, + STATE(8316), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236192] = 9, + [243642] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542719,19 +550036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13162), 1, - anon_sym_GT, + ACTIONS(13443), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8152), 4, + STATE(8317), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236224] = 9, + [243674] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542742,19 +550059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13164), 1, - anon_sym_then, + ACTIONS(13445), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8153), 4, + STATE(8318), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236256] = 9, + [243706] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542765,19 +550082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13166), 1, - sym__indent, + ACTIONS(13447), 1, + anon_sym_EQ, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8154), 4, + STATE(8319), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236288] = 9, + [243738] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542788,19 +550105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13168), 1, + ACTIONS(13449), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8155), 4, + STATE(8320), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236320] = 9, + [243770] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542811,19 +550128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13170), 1, - sym__dedent, + ACTIONS(13451), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8156), 4, + STATE(8321), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236352] = 9, + [243802] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542834,19 +550151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13172), 1, - sym__indent, + ACTIONS(13453), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8157), 4, + STATE(8322), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236384] = 9, + [243834] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542857,19 +550174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13174), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13455), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8158), 4, + STATE(8323), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236416] = 9, + [243866] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542880,19 +550197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13176), 1, - sym__dedent, + ACTIONS(13457), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8159), 4, + STATE(8324), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236448] = 9, + [243898] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542903,19 +550220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13178), 1, - sym__indent, + ACTIONS(13459), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8160), 4, + STATE(8325), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236480] = 9, + [243930] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542926,19 +550243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13180), 1, - sym__indent, + ACTIONS(13461), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8161), 4, + STATE(8326), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236512] = 9, + [243962] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542949,19 +550266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13182), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13463), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8162), 4, + STATE(8327), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236544] = 9, + [243994] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542972,19 +550289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13184), 1, + ACTIONS(13465), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8163), 4, + STATE(8328), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236576] = 9, + [244026] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -542995,19 +550312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13186), 1, - sym__dedent, + ACTIONS(13467), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8164), 4, + STATE(8329), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236608] = 9, + [244058] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543018,19 +550335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13188), 1, - anon_sym_RBRACK, + ACTIONS(13469), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8165), 4, + STATE(8330), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236640] = 9, + [244090] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543041,19 +550358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13190), 1, + ACTIONS(13471), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8166), 4, + STATE(8331), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236672] = 9, + [244122] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543064,19 +550381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13192), 1, - sym__indent, + ACTIONS(13473), 1, + anon_sym_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8167), 4, + STATE(8332), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236704] = 9, + [244154] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543087,19 +550404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13194), 1, - sym_block_comment_content, + ACTIONS(13475), 1, + anon_sym_POUNDendif, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8168), 4, + STATE(8333), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236736] = 9, + [244186] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543110,19 +550427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13196), 1, + ACTIONS(13477), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8169), 4, + STATE(8334), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236768] = 9, + [244218] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543133,19 +550450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13198), 1, - sym__dedent, + ACTIONS(13479), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8170), 4, + STATE(8335), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236800] = 9, + [244250] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543156,19 +550473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13200), 1, - anon_sym_RBRACE, + ACTIONS(13481), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8171), 4, + STATE(8336), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236832] = 9, + [244282] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543179,19 +550496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13202), 1, - sym__indent, + ACTIONS(13453), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8172), 4, + STATE(8337), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236864] = 9, + [244314] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543202,19 +550519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13204), 1, + ACTIONS(13483), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8173), 4, + STATE(8338), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236896] = 9, + [244346] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543225,19 +550542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9634), 1, - anon_sym_GT, + ACTIONS(13485), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8174), 4, + STATE(8339), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236928] = 9, + [244378] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543248,19 +550565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13206), 1, + ACTIONS(13487), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8175), 4, + STATE(8340), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236960] = 9, + [244410] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543271,19 +550588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13208), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13489), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8176), 4, + STATE(8341), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [236992] = 9, + [244442] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543294,19 +550611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13210), 1, - sym__dedent, + ACTIONS(13491), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8177), 4, + STATE(8342), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237024] = 9, + [244474] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543317,19 +550634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13212), 1, + ACTIONS(13493), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8178), 4, + STATE(8343), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237056] = 9, + [244506] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543340,19 +550657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13214), 1, + ACTIONS(13495), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8179), 4, + STATE(8344), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237088] = 9, + [244538] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543363,19 +550680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13216), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(13497), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8180), 4, + STATE(8345), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237120] = 9, + [244570] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543386,19 +550703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13218), 1, + ACTIONS(13499), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8181), 4, + STATE(8346), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237152] = 9, + [244602] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543409,19 +550726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13220), 1, - sym_int, + ACTIONS(13501), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8182), 4, + STATE(8347), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237184] = 9, + [244634] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543432,19 +550749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13222), 1, - anon_sym_POUNDendif, + ACTIONS(13503), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8183), 4, + STATE(8348), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237216] = 9, + [244666] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543455,19 +550772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13224), 1, + ACTIONS(13505), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8184), 4, + STATE(8349), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237248] = 9, + [244698] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543478,19 +550795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13226), 1, + ACTIONS(13507), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8185), 4, + STATE(8350), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237280] = 9, + [244730] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543501,19 +550818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13228), 1, - sym_identifier, + ACTIONS(13509), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8186), 4, + STATE(8351), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237312] = 9, + [244762] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543524,19 +550841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13230), 1, + ACTIONS(13511), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8187), 4, + STATE(8352), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237344] = 9, + [244794] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543547,19 +550864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13232), 1, - sym_identifier, + ACTIONS(13513), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8188), 4, + STATE(8353), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237376] = 9, + [244826] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543570,19 +550887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13234), 1, - sym_int, + ACTIONS(13515), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8189), 4, + STATE(8354), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237408] = 9, + [244858] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543593,19 +550910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13236), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13517), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8190), 4, + STATE(8355), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237440] = 9, + [244890] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543616,19 +550933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13238), 1, - anon_sym_end, + ACTIONS(13519), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8191), 4, + STATE(8356), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237472] = 9, + [244922] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543639,19 +550956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13240), 1, - sym_identifier, + ACTIONS(13521), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8192), 4, + STATE(8357), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237504] = 9, + [244954] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543662,19 +550979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13242), 1, - anon_sym_end, + ACTIONS(13523), 1, + anon_sym_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8193), 4, + STATE(8358), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237536] = 9, + [244986] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543685,19 +551002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13244), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13525), 1, + anon_sym_PIPE_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8194), 4, + STATE(8359), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237568] = 9, + [245018] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543708,19 +551025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13246), 1, - sym_int, + ACTIONS(13527), 1, + anon_sym_RBRACK, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8195), 4, + STATE(8360), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237600] = 9, + [245050] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543731,19 +551048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13248), 1, - sym_identifier, + ACTIONS(13529), 1, + sym_block_comment_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8196), 4, + STATE(8361), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237632] = 9, + [245082] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543754,19 +551071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13250), 1, - anon_sym_GT, + ACTIONS(13531), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8197), 4, + STATE(8362), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237664] = 9, + [245114] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543777,19 +551094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13252), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(13531), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8198), 4, + STATE(8363), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237696] = 9, + [245146] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543800,19 +551117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13254), 1, - anon_sym_RBRACE, + ACTIONS(13533), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8199), 4, + STATE(8364), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237728] = 9, + [245178] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543823,19 +551140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13256), 1, + ACTIONS(13535), 1, anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8200), 4, + STATE(8365), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237760] = 9, + [245210] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543846,19 +551163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13258), 1, - sym_identifier, + ACTIONS(13537), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8201), 4, + STATE(8366), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237792] = 9, + [245242] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543869,19 +551186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13260), 1, - anon_sym_POUNDendif, + ACTIONS(13539), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8202), 4, + STATE(8367), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237824] = 9, + [245274] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543892,19 +551209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13262), 1, + ACTIONS(13541), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8203), 4, + STATE(8368), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237856] = 9, + [245306] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543915,19 +551232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13264), 1, + ACTIONS(13543), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8204), 4, + STATE(8369), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237888] = 9, + [245338] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543938,19 +551255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13266), 1, + ACTIONS(13545), 1, anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8205), 4, + STATE(8370), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237920] = 9, + [245370] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543961,19 +551278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13268), 1, + ACTIONS(13547), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8206), 4, + STATE(8371), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237952] = 9, + [245402] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -543984,19 +551301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13270), 1, - anon_sym_COLON, + ACTIONS(13549), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8207), 4, + STATE(8372), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [237984] = 9, + [245434] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544007,19 +551324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13272), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(6859), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8208), 4, + STATE(8373), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238016] = 9, + [245466] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544030,19 +551347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13274), 1, + ACTIONS(13551), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8209), 4, + STATE(8374), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238048] = 9, + [245498] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544053,19 +551370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13276), 1, + ACTIONS(13553), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8210), 4, + STATE(8375), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238080] = 9, + [245530] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544076,19 +551393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13278), 1, + ACTIONS(13555), 1, anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8211), 4, + STATE(8376), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238112] = 9, + [245562] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544099,19 +551416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13280), 1, + ACTIONS(13557), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8212), 4, + STATE(8377), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238144] = 9, + [245594] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544122,42 +551439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13282), 1, + ACTIONS(13559), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8213), 4, + STATE(8378), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238176] = 9, - ACTIONS(7), 1, + [245626] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(13561), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13284), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(8214), 4, + STATE(8379), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238208] = 9, + [245656] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544168,19 +551484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13286), 1, + ACTIONS(13563), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8215), 4, + STATE(8380), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238240] = 9, + [245688] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544191,19 +551507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13288), 1, + ACTIONS(13565), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8216), 4, + STATE(8381), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238272] = 9, + [245720] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544214,19 +551530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13290), 1, + ACTIONS(13567), 1, anon_sym_LT2, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8217), 4, + STATE(8382), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238304] = 9, + [245752] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544237,19 +551553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13292), 1, + ACTIONS(13569), 1, anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8218), 4, + STATE(8383), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238336] = 9, + [245784] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544260,19 +551576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(9512), 1, - anon_sym_GT, + ACTIONS(13571), 1, + anon_sym_COLON, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8219), 4, + STATE(8384), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238368] = 9, + [245816] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544283,19 +551599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13294), 1, + ACTIONS(9779), 1, anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8220), 4, + STATE(8385), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238400] = 9, + [245848] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544306,19 +551622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13296), 1, - sym_int, + ACTIONS(13573), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8221), 4, + STATE(8386), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238432] = 9, + [245880] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544329,41 +551645,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13298), 1, - anon_sym_RPAREN, + ACTIONS(13575), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8222), 4, + STATE(8387), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238464] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7879), 1, + [245912] = 9, + ACTIONS(7), 1, anon_sym_POUNDnowarn, - ACTIONS(7881), 1, + ACTIONS(9), 1, anon_sym_POUNDlight, - ACTIONS(7883), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(13300), 1, - aux_sym_fsi_directive_decl_token1, - ACTIONS(15), 2, + ACTIONS(13), 1, anon_sym_POUNDload, + ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(135), 2, + ACTIONS(5284), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13577), 1, + anon_sym_COLON, + ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8223), 4, + STATE(8388), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238494] = 9, + [245944] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544374,19 +551691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13302), 1, - anon_sym_RBRACE, + ACTIONS(13579), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8224), 4, + STATE(8389), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238526] = 9, + [245976] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544397,19 +551714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13304), 1, - sym__newline_not_aligned, + ACTIONS(13581), 1, + sym_int, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8225), 4, + STATE(8390), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238558] = 9, + [246008] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544420,42 +551737,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13306), 1, - anon_sym_STAR_RPAREN, + ACTIONS(13583), 1, + anon_sym_PIPE_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8226), 4, + STATE(8391), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238590] = 9, - ACTIONS(7), 1, + [246040] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7952), 1, anon_sym_POUNDnowarn, - ACTIONS(9), 1, + ACTIONS(7954), 1, anon_sym_POUNDlight, - ACTIONS(11), 1, + ACTIONS(7956), 1, anon_sym_POUNDr, - ACTIONS(13), 1, + ACTIONS(13585), 1, + aux_sym_fsi_directive_decl_token1, + ACTIONS(15), 2, anon_sym_POUNDload, - ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13308), 1, - anon_sym_GT, - ACTIONS(3), 2, + ACTIONS(125), 2, anon_sym_SEMI, sym_line_comment, - STATE(8227), 4, + STATE(8392), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238622] = 9, + [246070] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544466,19 +551782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13310), 1, - anon_sym_then, + ACTIONS(13587), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8228), 4, + STATE(8393), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238654] = 9, + [246102] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544489,19 +551805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13312), 1, - anon_sym_RBRACK, + ACTIONS(13589), 1, + sym__newline_not_aligned, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8229), 4, + STATE(8394), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238686] = 9, + [246134] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544512,19 +551828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(1960), 1, - ts_builtin_sym_end, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, + ACTIONS(13591), 1, + anon_sym_STAR_RPAREN, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8230), 4, + STATE(8395), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238718] = 9, + [246166] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544535,19 +551851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13314), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13593), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8231), 4, + STATE(8396), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238750] = 9, + [246198] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544558,19 +551874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13316), 1, - ts_builtin_sym_end, + ACTIONS(13595), 1, + anon_sym_then, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8232), 4, + STATE(8397), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238782] = 9, + [246230] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544581,19 +551897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13318), 1, - sym_identifier, + ACTIONS(13597), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8233), 4, + STATE(8398), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238814] = 9, + [246262] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544604,19 +551920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(1989), 1, + ts_builtin_sym_end, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13320), 1, - sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8234), 4, + STATE(8399), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238846] = 9, + [246294] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544627,19 +551943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13322), 1, - sym__triple_quoted_content, + ACTIONS(13599), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8235), 4, + STATE(8400), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238878] = 9, + [246326] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544650,19 +551966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13324), 1, - sym__triple_quoted_content, + ACTIONS(13601), 1, + ts_builtin_sym_end, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8236), 4, + STATE(8401), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238910] = 9, + [246358] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544673,19 +551989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13326), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13603), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8237), 4, + STATE(8402), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238942] = 9, + [246390] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544696,19 +552012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13328), 1, - sym__indent, + ACTIONS(13605), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8238), 4, + STATE(8403), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [238974] = 9, + [246422] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544719,19 +552035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13330), 1, - anon_sym_GT, + ACTIONS(13607), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8239), 4, + STATE(8404), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239006] = 9, + [246454] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544742,19 +552058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13332), 1, - sym_identifier, + ACTIONS(13609), 1, + sym__triple_quoted_content, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8240), 4, + STATE(8405), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239038] = 9, + [246486] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544765,19 +552081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13334), 1, - anon_sym_RBRACK, + ACTIONS(13611), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8241), 4, + STATE(8406), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239070] = 9, + [246518] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544788,19 +552104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13336), 1, - sym_identifier, + ACTIONS(13613), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8242), 4, + STATE(8407), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239102] = 9, + [246550] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544811,19 +552127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13338), 1, - sym__indent, + ACTIONS(13615), 1, + sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8243), 4, + STATE(8408), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239134] = 9, + [246582] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544834,19 +552150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13340), 1, + ACTIONS(13617), 1, sym_identifier, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8244), 4, + STATE(8409), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239166] = 9, + [246614] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544857,19 +552173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13342), 1, - sym_int, + ACTIONS(13619), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8245), 4, + STATE(8410), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239198] = 9, + [246646] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544880,19 +552196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13344), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13593), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8246), 4, + STATE(8411), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239230] = 9, + [246678] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544903,19 +552219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13346), 1, - sym__indent, + ACTIONS(13621), 1, + sym__dedent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8247), 4, + STATE(8412), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239262] = 9, + [246710] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544926,19 +552242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13348), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13623), 1, + sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8248), 4, + STATE(8413), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239294] = 9, + [246742] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544949,19 +552265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13350), 1, + ACTIONS(13625), 1, sym__indent, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8249), 4, + STATE(8414), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239326] = 9, + [246774] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544972,19 +552288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13352), 1, - sym__dedent, + ACTIONS(9787), 1, + anon_sym_GT, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8250), 4, + STATE(8415), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239358] = 9, + [246806] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -544995,19 +552311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13354), 1, - sym_identifier, + ACTIONS(13627), 1, + anon_sym_PIPE_RBRACE, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8251), 4, + STATE(8416), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239390] = 9, + [246838] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -545018,19 +552334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13356), 1, - sym__dedent, + ACTIONS(13629), 1, + anon_sym_set, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8252), 4, + STATE(8417), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239422] = 9, + [246870] = 9, ACTIONS(7), 1, anon_sym_POUNDnowarn, ACTIONS(9), 1, @@ -545041,11490 +552357,11774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDload, ACTIONS(15), 1, aux_sym_preproc_line_token1, - ACTIONS(5467), 1, + ACTIONS(5284), 1, anon_sym_LPAREN_STAR, - ACTIONS(13358), 1, - anon_sym_GT, + ACTIONS(13629), 1, + anon_sym_get, ACTIONS(3), 2, anon_sym_SEMI, sym_line_comment, - STATE(8253), 4, + STATE(8418), 4, sym_block_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [239454] = 1, - ACTIONS(13360), 1, + [246902] = 1, + ACTIONS(13631), 1, ts_builtin_sym_end, - [239458] = 1, - ACTIONS(13362), 1, + [246906] = 1, + ACTIONS(13633), 1, ts_builtin_sym_end, - [239462] = 1, - ACTIONS(13364), 1, + [246910] = 1, + ACTIONS(13635), 1, ts_builtin_sym_end, - [239466] = 1, - ACTIONS(5421), 1, + [246914] = 1, + ACTIONS(5535), 1, ts_builtin_sym_end, - [239470] = 1, - ACTIONS(13366), 1, + [246918] = 1, + ACTIONS(13637), 1, ts_builtin_sym_end, - [239474] = 1, - ACTIONS(13368), 1, + [246922] = 1, + ACTIONS(13639), 1, ts_builtin_sym_end, - [239478] = 1, - ACTIONS(13370), 1, + [246926] = 1, + ACTIONS(13641), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3188)] = 0, - [SMALL_STATE(3189)] = 132, - [SMALL_STATE(3190)] = 260, - [SMALL_STATE(3191)] = 392, - [SMALL_STATE(3192)] = 518, - [SMALL_STATE(3193)] = 644, - [SMALL_STATE(3194)] = 770, - [SMALL_STATE(3195)] = 896, - [SMALL_STATE(3196)] = 1022, - [SMALL_STATE(3197)] = 1148, - [SMALL_STATE(3198)] = 1274, - [SMALL_STATE(3199)] = 1400, - [SMALL_STATE(3200)] = 1526, - [SMALL_STATE(3201)] = 1652, - [SMALL_STATE(3202)] = 1778, - [SMALL_STATE(3203)] = 1904, - [SMALL_STATE(3204)] = 2030, - [SMALL_STATE(3205)] = 2156, - [SMALL_STATE(3206)] = 2282, - [SMALL_STATE(3207)] = 2408, - [SMALL_STATE(3208)] = 2514, - [SMALL_STATE(3209)] = 2619, - [SMALL_STATE(3210)] = 2724, - [SMALL_STATE(3211)] = 2828, - [SMALL_STATE(3212)] = 2932, - [SMALL_STATE(3213)] = 3032, - [SMALL_STATE(3214)] = 3131, - [SMALL_STATE(3215)] = 3230, - [SMALL_STATE(3216)] = 3328, - [SMALL_STATE(3217)] = 3426, - [SMALL_STATE(3218)] = 3517, - [SMALL_STATE(3219)] = 3603, - [SMALL_STATE(3220)] = 3687, - [SMALL_STATE(3221)] = 3771, - [SMALL_STATE(3222)] = 3857, - [SMALL_STATE(3223)] = 3943, - [SMALL_STATE(3224)] = 4017, - [SMALL_STATE(3225)] = 4089, - [SMALL_STATE(3226)] = 4163, - [SMALL_STATE(3227)] = 4235, - [SMALL_STATE(3228)] = 4321, - [SMALL_STATE(3229)] = 4407, - [SMALL_STATE(3230)] = 4493, - [SMALL_STATE(3231)] = 4567, - [SMALL_STATE(3232)] = 4653, - [SMALL_STATE(3233)] = 4739, - [SMALL_STATE(3234)] = 4813, - [SMALL_STATE(3235)] = 4882, - [SMALL_STATE(3236)] = 4951, - [SMALL_STATE(3237)] = 5020, - [SMALL_STATE(3238)] = 5093, - [SMALL_STATE(3239)] = 5166, - [SMALL_STATE(3240)] = 5237, - [SMALL_STATE(3241)] = 5306, - [SMALL_STATE(3242)] = 5379, - [SMALL_STATE(3243)] = 5452, - [SMALL_STATE(3244)] = 5537, - [SMALL_STATE(3245)] = 5608, - [SMALL_STATE(3246)] = 5703, - [SMALL_STATE(3247)] = 5771, - [SMALL_STATE(3248)] = 5897, - [SMALL_STATE(3249)] = 6023, - [SMALL_STATE(3250)] = 6091, - [SMALL_STATE(3251)] = 6217, - [SMALL_STATE(3252)] = 6287, - [SMALL_STATE(3253)] = 6413, - [SMALL_STATE(3254)] = 6485, - [SMALL_STATE(3255)] = 6577, - [SMALL_STATE(3256)] = 6703, - [SMALL_STATE(3257)] = 6773, - [SMALL_STATE(3258)] = 6841, - [SMALL_STATE(3259)] = 6967, - [SMALL_STATE(3260)] = 7037, - [SMALL_STATE(3261)] = 7107, - [SMALL_STATE(3262)] = 7175, - [SMALL_STATE(3263)] = 7247, - [SMALL_STATE(3264)] = 7314, - [SMALL_STATE(3265)] = 7381, - [SMALL_STATE(3266)] = 7448, - [SMALL_STATE(3267)] = 7515, - [SMALL_STATE(3268)] = 7582, - [SMALL_STATE(3269)] = 7651, - [SMALL_STATE(3270)] = 7718, - [SMALL_STATE(3271)] = 7785, - [SMALL_STATE(3272)] = 7852, - [SMALL_STATE(3273)] = 7919, - [SMALL_STATE(3274)] = 7986, - [SMALL_STATE(3275)] = 8053, - [SMALL_STATE(3276)] = 8120, - [SMALL_STATE(3277)] = 8187, - [SMALL_STATE(3278)] = 8254, - [SMALL_STATE(3279)] = 8323, - [SMALL_STATE(3280)] = 8392, - [SMALL_STATE(3281)] = 8511, - [SMALL_STATE(3282)] = 8578, - [SMALL_STATE(3283)] = 8673, - [SMALL_STATE(3284)] = 8740, - [SMALL_STATE(3285)] = 8807, - [SMALL_STATE(3286)] = 8874, - [SMALL_STATE(3287)] = 8941, - [SMALL_STATE(3288)] = 9008, - [SMALL_STATE(3289)] = 9074, - [SMALL_STATE(3290)] = 9144, - [SMALL_STATE(3291)] = 9212, - [SMALL_STATE(3292)] = 9282, - [SMALL_STATE(3293)] = 9350, - [SMALL_STATE(3294)] = 9418, - [SMALL_STATE(3295)] = 9538, - [SMALL_STATE(3296)] = 9604, - [SMALL_STATE(3297)] = 9722, - [SMALL_STATE(3298)] = 9790, - [SMALL_STATE(3299)] = 9860, - [SMALL_STATE(3300)] = 9980, - [SMALL_STATE(3301)] = 10047, - [SMALL_STATE(3302)] = 10118, - [SMALL_STATE(3303)] = 10189, - [SMALL_STATE(3304)] = 10256, - [SMALL_STATE(3305)] = 10323, - [SMALL_STATE(3306)] = 10440, - [SMALL_STATE(3307)] = 10511, - [SMALL_STATE(3308)] = 10578, - [SMALL_STATE(3309)] = 10643, - [SMALL_STATE(3310)] = 10710, - [SMALL_STATE(3311)] = 10779, - [SMALL_STATE(3312)] = 10896, - [SMALL_STATE(3313)] = 10961, - [SMALL_STATE(3314)] = 11078, - [SMALL_STATE(3315)] = 11149, - [SMALL_STATE(3316)] = 11218, - [SMALL_STATE(3317)] = 11289, - [SMALL_STATE(3318)] = 11378, - [SMALL_STATE(3319)] = 11467, - [SMALL_STATE(3320)] = 11532, - [SMALL_STATE(3321)] = 11601, - [SMALL_STATE(3322)] = 11718, - [SMALL_STATE(3323)] = 11807, - [SMALL_STATE(3324)] = 11896, - [SMALL_STATE(3325)] = 12013, - [SMALL_STATE(3326)] = 12082, - [SMALL_STATE(3327)] = 12153, - [SMALL_STATE(3328)] = 12220, - [SMALL_STATE(3329)] = 12337, - [SMALL_STATE(3330)] = 12402, - [SMALL_STATE(3331)] = 12473, - [SMALL_STATE(3332)] = 12544, - [SMALL_STATE(3333)] = 12615, - [SMALL_STATE(3334)] = 12682, - [SMALL_STATE(3335)] = 12771, - [SMALL_STATE(3336)] = 12860, - [SMALL_STATE(3337)] = 12931, - [SMALL_STATE(3338)] = 12998, - [SMALL_STATE(3339)] = 13063, - [SMALL_STATE(3340)] = 13134, - [SMALL_STATE(3341)] = 13205, - [SMALL_STATE(3342)] = 13274, - [SMALL_STATE(3343)] = 13391, - [SMALL_STATE(3344)] = 13460, - [SMALL_STATE(3345)] = 13529, - [SMALL_STATE(3346)] = 13618, - [SMALL_STATE(3347)] = 13735, - [SMALL_STATE(3348)] = 13849, - [SMALL_STATE(3349)] = 13913, - [SMALL_STATE(3350)] = 13977, - [SMALL_STATE(3351)] = 14043, - [SMALL_STATE(3352)] = 14111, - [SMALL_STATE(3353)] = 14175, - [SMALL_STATE(3354)] = 14243, - [SMALL_STATE(3355)] = 14309, - [SMALL_STATE(3356)] = 14373, - [SMALL_STATE(3357)] = 14441, - [SMALL_STATE(3358)] = 14505, - [SMALL_STATE(3359)] = 14569, - [SMALL_STATE(3360)] = 14633, - [SMALL_STATE(3361)] = 14697, - [SMALL_STATE(3362)] = 14761, - [SMALL_STATE(3363)] = 14829, - [SMALL_STATE(3364)] = 14895, - [SMALL_STATE(3365)] = 14959, - [SMALL_STATE(3366)] = 15023, - [SMALL_STATE(3367)] = 15089, - [SMALL_STATE(3368)] = 15153, - [SMALL_STATE(3369)] = 15217, - [SMALL_STATE(3370)] = 15281, - [SMALL_STATE(3371)] = 15345, - [SMALL_STATE(3372)] = 15409, - [SMALL_STATE(3373)] = 15473, - [SMALL_STATE(3374)] = 15537, - [SMALL_STATE(3375)] = 15601, - [SMALL_STATE(3376)] = 15665, - [SMALL_STATE(3377)] = 15729, - [SMALL_STATE(3378)] = 15795, - [SMALL_STATE(3379)] = 15859, - [SMALL_STATE(3380)] = 15927, - [SMALL_STATE(3381)] = 15991, - [SMALL_STATE(3382)] = 16057, - [SMALL_STATE(3383)] = 16121, - [SMALL_STATE(3384)] = 16185, - [SMALL_STATE(3385)] = 16249, - [SMALL_STATE(3386)] = 16313, - [SMALL_STATE(3387)] = 16377, - [SMALL_STATE(3388)] = 16441, - [SMALL_STATE(3389)] = 16505, - [SMALL_STATE(3390)] = 16569, - [SMALL_STATE(3391)] = 16633, - [SMALL_STATE(3392)] = 16697, - [SMALL_STATE(3393)] = 16763, - [SMALL_STATE(3394)] = 16827, - [SMALL_STATE(3395)] = 16891, - [SMALL_STATE(3396)] = 16959, - [SMALL_STATE(3397)] = 17023, - [SMALL_STATE(3398)] = 17087, - [SMALL_STATE(3399)] = 17151, - [SMALL_STATE(3400)] = 17219, - [SMALL_STATE(3401)] = 17333, - [SMALL_STATE(3402)] = 17397, - [SMALL_STATE(3403)] = 17465, - [SMALL_STATE(3404)] = 17529, - [SMALL_STATE(3405)] = 17595, - [SMALL_STATE(3406)] = 17709, - [SMALL_STATE(3407)] = 17773, - [SMALL_STATE(3408)] = 17841, - [SMALL_STATE(3409)] = 17909, - [SMALL_STATE(3410)] = 17975, - [SMALL_STATE(3411)] = 18039, - [SMALL_STATE(3412)] = 18153, - [SMALL_STATE(3413)] = 18217, - [SMALL_STATE(3414)] = 18281, - [SMALL_STATE(3415)] = 18347, - [SMALL_STATE(3416)] = 18424, - [SMALL_STATE(3417)] = 18523, - [SMALL_STATE(3418)] = 18588, - [SMALL_STATE(3419)] = 18651, - [SMALL_STATE(3420)] = 18750, - [SMALL_STATE(3421)] = 18813, - [SMALL_STATE(3422)] = 18876, - [SMALL_STATE(3423)] = 18939, - [SMALL_STATE(3424)] = 19002, - [SMALL_STATE(3425)] = 19065, - [SMALL_STATE(3426)] = 19128, - [SMALL_STATE(3427)] = 19227, - [SMALL_STATE(3428)] = 19326, - [SMALL_STATE(3429)] = 19425, - [SMALL_STATE(3430)] = 19488, - [SMALL_STATE(3431)] = 19551, - [SMALL_STATE(3432)] = 19614, - [SMALL_STATE(3433)] = 19677, - [SMALL_STATE(3434)] = 19740, - [SMALL_STATE(3435)] = 19803, - [SMALL_STATE(3436)] = 19866, - [SMALL_STATE(3437)] = 19929, - [SMALL_STATE(3438)] = 19992, - [SMALL_STATE(3439)] = 20055, - [SMALL_STATE(3440)] = 20118, - [SMALL_STATE(3441)] = 20181, - [SMALL_STATE(3442)] = 20244, - [SMALL_STATE(3443)] = 20307, - [SMALL_STATE(3444)] = 20370, - [SMALL_STATE(3445)] = 20433, - [SMALL_STATE(3446)] = 20496, - [SMALL_STATE(3447)] = 20559, - [SMALL_STATE(3448)] = 20622, - [SMALL_STATE(3449)] = 20685, - [SMALL_STATE(3450)] = 20748, - [SMALL_STATE(3451)] = 20847, - [SMALL_STATE(3452)] = 20910, - [SMALL_STATE(3453)] = 20973, - [SMALL_STATE(3454)] = 21084, - [SMALL_STATE(3455)] = 21147, - [SMALL_STATE(3456)] = 21246, - [SMALL_STATE(3457)] = 21309, - [SMALL_STATE(3458)] = 21372, - [SMALL_STATE(3459)] = 21435, - [SMALL_STATE(3460)] = 21498, - [SMALL_STATE(3461)] = 21597, - [SMALL_STATE(3462)] = 21696, - [SMALL_STATE(3463)] = 21759, - [SMALL_STATE(3464)] = 21822, - [SMALL_STATE(3465)] = 21933, - [SMALL_STATE(3466)] = 21996, - [SMALL_STATE(3467)] = 22059, - [SMALL_STATE(3468)] = 22122, - [SMALL_STATE(3469)] = 22185, - [SMALL_STATE(3470)] = 22248, - [SMALL_STATE(3471)] = 22311, - [SMALL_STATE(3472)] = 22374, - [SMALL_STATE(3473)] = 22437, - [SMALL_STATE(3474)] = 22500, - [SMALL_STATE(3475)] = 22563, - [SMALL_STATE(3476)] = 22626, - [SMALL_STATE(3477)] = 22691, - [SMALL_STATE(3478)] = 22754, - [SMALL_STATE(3479)] = 22817, - [SMALL_STATE(3480)] = 22884, - [SMALL_STATE(3481)] = 22947, - [SMALL_STATE(3482)] = 23010, - [SMALL_STATE(3483)] = 23073, - [SMALL_STATE(3484)] = 23136, - [SMALL_STATE(3485)] = 23199, - [SMALL_STATE(3486)] = 23262, - [SMALL_STATE(3487)] = 23325, - [SMALL_STATE(3488)] = 23392, - [SMALL_STATE(3489)] = 23455, - [SMALL_STATE(3490)] = 23566, - [SMALL_STATE(3491)] = 23629, - [SMALL_STATE(3492)] = 23728, - [SMALL_STATE(3493)] = 23791, - [SMALL_STATE(3494)] = 23854, - [SMALL_STATE(3495)] = 23917, - [SMALL_STATE(3496)] = 23980, - [SMALL_STATE(3497)] = 24043, - [SMALL_STATE(3498)] = 24110, - [SMALL_STATE(3499)] = 24209, - [SMALL_STATE(3500)] = 24272, - [SMALL_STATE(3501)] = 24335, - [SMALL_STATE(3502)] = 24412, - [SMALL_STATE(3503)] = 24475, - [SMALL_STATE(3504)] = 24538, - [SMALL_STATE(3505)] = 24601, - [SMALL_STATE(3506)] = 24664, - [SMALL_STATE(3507)] = 24727, - [SMALL_STATE(3508)] = 24792, - [SMALL_STATE(3509)] = 24855, - [SMALL_STATE(3510)] = 24918, - [SMALL_STATE(3511)] = 25017, - [SMALL_STATE(3512)] = 25080, - [SMALL_STATE(3513)] = 25179, - [SMALL_STATE(3514)] = 25242, - [SMALL_STATE(3515)] = 25305, - [SMALL_STATE(3516)] = 25368, - [SMALL_STATE(3517)] = 25431, - [SMALL_STATE(3518)] = 25530, - [SMALL_STATE(3519)] = 25593, - [SMALL_STATE(3520)] = 25658, - [SMALL_STATE(3521)] = 25721, - [SMALL_STATE(3522)] = 25784, - [SMALL_STATE(3523)] = 25847, - [SMALL_STATE(3524)] = 25910, - [SMALL_STATE(3525)] = 25973, - [SMALL_STATE(3526)] = 26050, - [SMALL_STATE(3527)] = 26113, - [SMALL_STATE(3528)] = 26178, - [SMALL_STATE(3529)] = 26243, - [SMALL_STATE(3530)] = 26310, - [SMALL_STATE(3531)] = 26373, - [SMALL_STATE(3532)] = 26440, - [SMALL_STATE(3533)] = 26503, - [SMALL_STATE(3534)] = 26570, - [SMALL_STATE(3535)] = 26637, - [SMALL_STATE(3536)] = 26699, - [SMALL_STATE(3537)] = 26761, - [SMALL_STATE(3538)] = 26823, - [SMALL_STATE(3539)] = 26885, - [SMALL_STATE(3540)] = 26947, - [SMALL_STATE(3541)] = 27043, - [SMALL_STATE(3542)] = 27105, - [SMALL_STATE(3543)] = 27167, - [SMALL_STATE(3544)] = 27229, - [SMALL_STATE(3545)] = 27291, - [SMALL_STATE(3546)] = 27353, - [SMALL_STATE(3547)] = 27415, - [SMALL_STATE(3548)] = 27509, - [SMALL_STATE(3549)] = 27571, - [SMALL_STATE(3550)] = 27633, - [SMALL_STATE(3551)] = 27695, - [SMALL_STATE(3552)] = 27757, - [SMALL_STATE(3553)] = 27819, - [SMALL_STATE(3554)] = 27881, - [SMALL_STATE(3555)] = 27943, - [SMALL_STATE(3556)] = 28005, - [SMALL_STATE(3557)] = 28067, - [SMALL_STATE(3558)] = 28129, - [SMALL_STATE(3559)] = 28191, - [SMALL_STATE(3560)] = 28253, - [SMALL_STATE(3561)] = 28315, - [SMALL_STATE(3562)] = 28377, - [SMALL_STATE(3563)] = 28439, - [SMALL_STATE(3564)] = 28501, - [SMALL_STATE(3565)] = 28563, - [SMALL_STATE(3566)] = 28625, - [SMALL_STATE(3567)] = 28687, - [SMALL_STATE(3568)] = 28749, - [SMALL_STATE(3569)] = 28811, - [SMALL_STATE(3570)] = 28873, - [SMALL_STATE(3571)] = 28969, - [SMALL_STATE(3572)] = 29031, - [SMALL_STATE(3573)] = 29093, - [SMALL_STATE(3574)] = 29155, - [SMALL_STATE(3575)] = 29217, - [SMALL_STATE(3576)] = 29279, - [SMALL_STATE(3577)] = 29341, - [SMALL_STATE(3578)] = 29437, - [SMALL_STATE(3579)] = 29533, - [SMALL_STATE(3580)] = 29595, - [SMALL_STATE(3581)] = 29657, - [SMALL_STATE(3582)] = 29719, - [SMALL_STATE(3583)] = 29781, - [SMALL_STATE(3584)] = 29843, - [SMALL_STATE(3585)] = 29939, - [SMALL_STATE(3586)] = 30001, - [SMALL_STATE(3587)] = 30063, - [SMALL_STATE(3588)] = 30125, - [SMALL_STATE(3589)] = 30221, - [SMALL_STATE(3590)] = 30283, - [SMALL_STATE(3591)] = 30345, - [SMALL_STATE(3592)] = 30407, - [SMALL_STATE(3593)] = 30469, - [SMALL_STATE(3594)] = 30531, - [SMALL_STATE(3595)] = 30593, - [SMALL_STATE(3596)] = 30655, - [SMALL_STATE(3597)] = 30717, - [SMALL_STATE(3598)] = 30779, - [SMALL_STATE(3599)] = 30841, - [SMALL_STATE(3600)] = 30903, - [SMALL_STATE(3601)] = 30965, - [SMALL_STATE(3602)] = 31027, - [SMALL_STATE(3603)] = 31089, - [SMALL_STATE(3604)] = 31151, - [SMALL_STATE(3605)] = 31213, - [SMALL_STATE(3606)] = 31275, - [SMALL_STATE(3607)] = 31337, - [SMALL_STATE(3608)] = 31399, - [SMALL_STATE(3609)] = 31461, - [SMALL_STATE(3610)] = 31523, - [SMALL_STATE(3611)] = 31585, - [SMALL_STATE(3612)] = 31647, - [SMALL_STATE(3613)] = 31709, - [SMALL_STATE(3614)] = 31771, - [SMALL_STATE(3615)] = 31867, - [SMALL_STATE(3616)] = 31929, - [SMALL_STATE(3617)] = 31991, - [SMALL_STATE(3618)] = 32053, - [SMALL_STATE(3619)] = 32115, - [SMALL_STATE(3620)] = 32177, - [SMALL_STATE(3621)] = 32239, - [SMALL_STATE(3622)] = 32301, - [SMALL_STATE(3623)] = 32363, - [SMALL_STATE(3624)] = 32425, - [SMALL_STATE(3625)] = 32487, - [SMALL_STATE(3626)] = 32549, - [SMALL_STATE(3627)] = 32611, - [SMALL_STATE(3628)] = 32673, - [SMALL_STATE(3629)] = 32735, - [SMALL_STATE(3630)] = 32797, - [SMALL_STATE(3631)] = 32861, - [SMALL_STATE(3632)] = 32923, - [SMALL_STATE(3633)] = 32985, - [SMALL_STATE(3634)] = 33047, - [SMALL_STATE(3635)] = 33109, - [SMALL_STATE(3636)] = 33171, - [SMALL_STATE(3637)] = 33252, - [SMALL_STATE(3638)] = 33332, - [SMALL_STATE(3639)] = 33394, - [SMALL_STATE(3640)] = 33468, - [SMALL_STATE(3641)] = 33532, - [SMALL_STATE(3642)] = 33608, - [SMALL_STATE(3643)] = 33674, - [SMALL_STATE(3644)] = 33736, - [SMALL_STATE(3645)] = 33812, - [SMALL_STATE(3646)] = 33888, - [SMALL_STATE(3647)] = 33978, - [SMALL_STATE(3648)] = 34054, - [SMALL_STATE(3649)] = 34118, - [SMALL_STATE(3650)] = 34192, - [SMALL_STATE(3651)] = 34251, - [SMALL_STATE(3652)] = 34310, - [SMALL_STATE(3653)] = 34385, - [SMALL_STATE(3654)] = 34460, - [SMALL_STATE(3655)] = 34519, - [SMALL_STATE(3656)] = 34606, - [SMALL_STATE(3657)] = 34681, - [SMALL_STATE(3658)] = 34744, - [SMALL_STATE(3659)] = 34807, - [SMALL_STATE(3660)] = 34872, - [SMALL_STATE(3661)] = 34931, - [SMALL_STATE(3662)] = 34990, - [SMALL_STATE(3663)] = 35065, - [SMALL_STATE(3664)] = 35140, - [SMALL_STATE(3665)] = 35201, - [SMALL_STATE(3666)] = 35260, - [SMALL_STATE(3667)] = 35323, - [SMALL_STATE(3668)] = 35382, - [SMALL_STATE(3669)] = 35441, - [SMALL_STATE(3670)] = 35516, - [SMALL_STATE(3671)] = 35575, - [SMALL_STATE(3672)] = 35648, - [SMALL_STATE(3673)] = 35711, - [SMALL_STATE(3674)] = 35786, - [SMALL_STATE(3675)] = 35847, - [SMALL_STATE(3676)] = 35922, - [SMALL_STATE(3677)] = 35997, - [SMALL_STATE(3678)] = 36070, - [SMALL_STATE(3679)] = 36144, - [SMALL_STATE(3680)] = 36204, - [SMALL_STATE(3681)] = 36306, - [SMALL_STATE(3682)] = 36380, - [SMALL_STATE(3683)] = 36482, - [SMALL_STATE(3684)] = 36542, - [SMALL_STATE(3685)] = 36616, - [SMALL_STATE(3686)] = 36718, - [SMALL_STATE(3687)] = 36792, - [SMALL_STATE(3688)] = 36864, - [SMALL_STATE(3689)] = 36926, - [SMALL_STATE(3690)] = 36984, - [SMALL_STATE(3691)] = 37070, - [SMALL_STATE(3692)] = 37130, - [SMALL_STATE(3693)] = 37232, - [SMALL_STATE(3694)] = 37290, - [SMALL_STATE(3695)] = 37362, - [SMALL_STATE(3696)] = 37422, - [SMALL_STATE(3697)] = 37496, - [SMALL_STATE(3698)] = 37554, - [SMALL_STATE(3699)] = 37616, - [SMALL_STATE(3700)] = 37678, - [SMALL_STATE(3701)] = 37736, - [SMALL_STATE(3702)] = 37798, - [SMALL_STATE(3703)] = 37855, - [SMALL_STATE(3704)] = 37912, - [SMALL_STATE(3705)] = 37969, - [SMALL_STATE(3706)] = 38028, - [SMALL_STATE(3707)] = 38085, - [SMALL_STATE(3708)] = 38142, - [SMALL_STATE(3709)] = 38203, - [SMALL_STATE(3710)] = 38260, - [SMALL_STATE(3711)] = 38317, - [SMALL_STATE(3712)] = 38398, - [SMALL_STATE(3713)] = 38455, - [SMALL_STATE(3714)] = 38512, - [SMALL_STATE(3715)] = 38569, - [SMALL_STATE(3716)] = 38640, - [SMALL_STATE(3717)] = 38697, - [SMALL_STATE(3718)] = 38756, - [SMALL_STATE(3719)] = 38813, - [SMALL_STATE(3720)] = 38874, - [SMALL_STATE(3721)] = 38945, - [SMALL_STATE(3722)] = 39030, - [SMALL_STATE(3723)] = 39089, - [SMALL_STATE(3724)] = 39146, - [SMALL_STATE(3725)] = 39207, - [SMALL_STATE(3726)] = 39289, - [SMALL_STATE(3727)] = 39385, - [SMALL_STATE(3728)] = 39467, - [SMALL_STATE(3729)] = 39563, - [SMALL_STATE(3730)] = 39659, - [SMALL_STATE(3731)] = 39755, - [SMALL_STATE(3732)] = 39851, - [SMALL_STATE(3733)] = 39933, - [SMALL_STATE(3734)] = 40029, - [SMALL_STATE(3735)] = 40111, - [SMALL_STATE(3736)] = 40207, - [SMALL_STATE(3737)] = 40263, - [SMALL_STATE(3738)] = 40345, - [SMALL_STATE(3739)] = 40427, - [SMALL_STATE(3740)] = 40485, - [SMALL_STATE(3741)] = 40567, - [SMALL_STATE(3742)] = 40649, - [SMALL_STATE(3743)] = 40731, - [SMALL_STATE(3744)] = 40827, - [SMALL_STATE(3745)] = 40909, - [SMALL_STATE(3746)] = 40965, - [SMALL_STATE(3747)] = 41021, - [SMALL_STATE(3748)] = 41103, - [SMALL_STATE(3749)] = 41199, - [SMALL_STATE(3750)] = 41255, - [SMALL_STATE(3751)] = 41311, - [SMALL_STATE(3752)] = 41367, - [SMALL_STATE(3753)] = 41423, - [SMALL_STATE(3754)] = 41505, - [SMALL_STATE(3755)] = 41601, - [SMALL_STATE(3756)] = 41657, - [SMALL_STATE(3757)] = 41713, - [SMALL_STATE(3758)] = 41769, - [SMALL_STATE(3759)] = 41865, - [SMALL_STATE(3760)] = 41961, - [SMALL_STATE(3761)] = 42043, - [SMALL_STATE(3762)] = 42125, - [SMALL_STATE(3763)] = 42221, - [SMALL_STATE(3764)] = 42317, - [SMALL_STATE(3765)] = 42373, - [SMALL_STATE(3766)] = 42431, - [SMALL_STATE(3767)] = 42487, - [SMALL_STATE(3768)] = 42583, - [SMALL_STATE(3769)] = 42665, - [SMALL_STATE(3770)] = 42735, - [SMALL_STATE(3771)] = 42817, - [SMALL_STATE(3772)] = 42873, - [SMALL_STATE(3773)] = 42969, - [SMALL_STATE(3774)] = 43024, - [SMALL_STATE(3775)] = 43083, - [SMALL_STATE(3776)] = 43176, - [SMALL_STATE(3777)] = 43251, - [SMALL_STATE(3778)] = 43326, - [SMALL_STATE(3779)] = 43385, - [SMALL_STATE(3780)] = 43456, - [SMALL_STATE(3781)] = 43515, - [SMALL_STATE(3782)] = 43586, - [SMALL_STATE(3783)] = 43657, - [SMALL_STATE(3784)] = 43728, - [SMALL_STATE(3785)] = 43803, - [SMALL_STATE(3786)] = 43896, - [SMALL_STATE(3787)] = 43955, - [SMALL_STATE(3788)] = 44048, - [SMALL_STATE(3789)] = 44123, - [SMALL_STATE(3790)] = 44216, - [SMALL_STATE(3791)] = 44309, - [SMALL_STATE(3792)] = 44384, - [SMALL_STATE(3793)] = 44459, - [SMALL_STATE(3794)] = 44552, - [SMALL_STATE(3795)] = 44645, - [SMALL_STATE(3796)] = 44704, - [SMALL_STATE(3797)] = 44763, - [SMALL_STATE(3798)] = 44838, - [SMALL_STATE(3799)] = 44895, - [SMALL_STATE(3800)] = 44988, - [SMALL_STATE(3801)] = 45081, - [SMALL_STATE(3802)] = 45174, - [SMALL_STATE(3803)] = 45233, - [SMALL_STATE(3804)] = 45290, - [SMALL_STATE(3805)] = 45351, - [SMALL_STATE(3806)] = 45426, - [SMALL_STATE(3807)] = 45483, - [SMALL_STATE(3808)] = 45576, - [SMALL_STATE(3809)] = 45669, - [SMALL_STATE(3810)] = 45762, - [SMALL_STATE(3811)] = 45817, - [SMALL_STATE(3812)] = 45876, - [SMALL_STATE(3813)] = 45951, - [SMALL_STATE(3814)] = 46026, - [SMALL_STATE(3815)] = 46101, - [SMALL_STATE(3816)] = 46194, - [SMALL_STATE(3817)] = 46269, - [SMALL_STATE(3818)] = 46344, - [SMALL_STATE(3819)] = 46399, - [SMALL_STATE(3820)] = 46454, - [SMALL_STATE(3821)] = 46509, - [SMALL_STATE(3822)] = 46580, - [SMALL_STATE(3823)] = 46673, - [SMALL_STATE(3824)] = 46756, - [SMALL_STATE(3825)] = 46831, - [SMALL_STATE(3826)] = 46906, - [SMALL_STATE(3827)] = 46963, - [SMALL_STATE(3828)] = 47056, - [SMALL_STATE(3829)] = 47131, - [SMALL_STATE(3830)] = 47222, - [SMALL_STATE(3831)] = 47293, - [SMALL_STATE(3832)] = 47364, - [SMALL_STATE(3833)] = 47439, - [SMALL_STATE(3834)] = 47494, - [SMALL_STATE(3835)] = 47549, - [SMALL_STATE(3836)] = 47620, - [SMALL_STATE(3837)] = 47713, - [SMALL_STATE(3838)] = 47806, - [SMALL_STATE(3839)] = 47899, - [SMALL_STATE(3840)] = 47954, - [SMALL_STATE(3841)] = 48009, - [SMALL_STATE(3842)] = 48102, - [SMALL_STATE(3843)] = 48172, - [SMALL_STATE(3844)] = 48230, - [SMALL_STATE(3845)] = 48286, - [SMALL_STATE(3846)] = 48360, - [SMALL_STATE(3847)] = 48418, - [SMALL_STATE(3848)] = 48474, - [SMALL_STATE(3849)] = 48532, - [SMALL_STATE(3850)] = 48588, - [SMALL_STATE(3851)] = 48656, - [SMALL_STATE(3852)] = 48724, - [SMALL_STATE(3853)] = 48796, - [SMALL_STATE(3854)] = 48886, - [SMALL_STATE(3855)] = 48940, - [SMALL_STATE(3856)] = 49000, - [SMALL_STATE(3857)] = 49082, - [SMALL_STATE(3858)] = 49150, - [SMALL_STATE(3859)] = 49204, - [SMALL_STATE(3860)] = 49264, - [SMALL_STATE(3861)] = 49334, - [SMALL_STATE(3862)] = 49392, - [SMALL_STATE(3863)] = 49450, - [SMALL_STATE(3864)] = 49518, - [SMALL_STATE(3865)] = 49588, - [SMALL_STATE(3866)] = 49678, - [SMALL_STATE(3867)] = 49746, - [SMALL_STATE(3868)] = 49816, - [SMALL_STATE(3869)] = 49886, - [SMALL_STATE(3870)] = 49956, - [SMALL_STATE(3871)] = 50026, - [SMALL_STATE(3872)] = 50080, - [SMALL_STATE(3873)] = 50140, - [SMALL_STATE(3874)] = 50210, - [SMALL_STATE(3875)] = 50264, - [SMALL_STATE(3876)] = 50318, - [SMALL_STATE(3877)] = 50388, - [SMALL_STATE(3878)] = 50446, - [SMALL_STATE(3879)] = 50502, - [SMALL_STATE(3880)] = 50560, - [SMALL_STATE(3881)] = 50628, - [SMALL_STATE(3882)] = 50698, - [SMALL_STATE(3883)] = 50770, - [SMALL_STATE(3884)] = 50860, - [SMALL_STATE(3885)] = 50950, - [SMALL_STATE(3886)] = 51008, - [SMALL_STATE(3887)] = 51077, - [SMALL_STATE(3888)] = 51146, - [SMALL_STATE(3889)] = 51215, - [SMALL_STATE(3890)] = 51284, - [SMALL_STATE(3891)] = 51353, - [SMALL_STATE(3892)] = 51422, - [SMALL_STATE(3893)] = 51491, - [SMALL_STATE(3894)] = 51560, - [SMALL_STATE(3895)] = 51629, - [SMALL_STATE(3896)] = 51698, - [SMALL_STATE(3897)] = 51767, - [SMALL_STATE(3898)] = 51836, - [SMALL_STATE(3899)] = 51923, - [SMALL_STATE(3900)] = 51992, - [SMALL_STATE(3901)] = 52061, - [SMALL_STATE(3902)] = 52130, - [SMALL_STATE(3903)] = 52199, - [SMALL_STATE(3904)] = 52268, - [SMALL_STATE(3905)] = 52337, - [SMALL_STATE(3906)] = 52406, - [SMALL_STATE(3907)] = 52475, - [SMALL_STATE(3908)] = 52544, - [SMALL_STATE(3909)] = 52613, - [SMALL_STATE(3910)] = 52666, - [SMALL_STATE(3911)] = 52735, - [SMALL_STATE(3912)] = 52804, - [SMALL_STATE(3913)] = 52873, - [SMALL_STATE(3914)] = 52942, - [SMALL_STATE(3915)] = 53011, - [SMALL_STATE(3916)] = 53080, - [SMALL_STATE(3917)] = 53149, - [SMALL_STATE(3918)] = 53218, - [SMALL_STATE(3919)] = 53287, - [SMALL_STATE(3920)] = 53356, - [SMALL_STATE(3921)] = 53411, - [SMALL_STATE(3922)] = 53464, - [SMALL_STATE(3923)] = 53533, - [SMALL_STATE(3924)] = 53602, - [SMALL_STATE(3925)] = 53671, - [SMALL_STATE(3926)] = 53740, - [SMALL_STATE(3927)] = 53809, - [SMALL_STATE(3928)] = 53878, - [SMALL_STATE(3929)] = 53947, - [SMALL_STATE(3930)] = 54016, - [SMALL_STATE(3931)] = 54085, - [SMALL_STATE(3932)] = 54154, - [SMALL_STATE(3933)] = 54223, - [SMALL_STATE(3934)] = 54292, - [SMALL_STATE(3935)] = 54361, - [SMALL_STATE(3936)] = 54430, - [SMALL_STATE(3937)] = 54499, - [SMALL_STATE(3938)] = 54568, - [SMALL_STATE(3939)] = 54637, - [SMALL_STATE(3940)] = 54706, - [SMALL_STATE(3941)] = 54775, - [SMALL_STATE(3942)] = 54844, - [SMALL_STATE(3943)] = 54913, - [SMALL_STATE(3944)] = 54982, - [SMALL_STATE(3945)] = 55051, - [SMALL_STATE(3946)] = 55120, - [SMALL_STATE(3947)] = 55189, - [SMALL_STATE(3948)] = 55258, - [SMALL_STATE(3949)] = 55327, - [SMALL_STATE(3950)] = 55396, - [SMALL_STATE(3951)] = 55465, - [SMALL_STATE(3952)] = 55534, - [SMALL_STATE(3953)] = 55603, - [SMALL_STATE(3954)] = 55672, - [SMALL_STATE(3955)] = 55741, - [SMALL_STATE(3956)] = 55810, - [SMALL_STATE(3957)] = 55879, - [SMALL_STATE(3958)] = 55948, - [SMALL_STATE(3959)] = 56017, - [SMALL_STATE(3960)] = 56070, - [SMALL_STATE(3961)] = 56139, - [SMALL_STATE(3962)] = 56208, - [SMALL_STATE(3963)] = 56261, - [SMALL_STATE(3964)] = 56330, - [SMALL_STATE(3965)] = 56399, - [SMALL_STATE(3966)] = 56468, - [SMALL_STATE(3967)] = 56537, - [SMALL_STATE(3968)] = 56606, - [SMALL_STATE(3969)] = 56675, - [SMALL_STATE(3970)] = 56744, - [SMALL_STATE(3971)] = 56813, - [SMALL_STATE(3972)] = 56882, - [SMALL_STATE(3973)] = 56939, - [SMALL_STATE(3974)] = 57008, - [SMALL_STATE(3975)] = 57065, - [SMALL_STATE(3976)] = 57134, - [SMALL_STATE(3977)] = 57203, - [SMALL_STATE(3978)] = 57272, - [SMALL_STATE(3979)] = 57341, - [SMALL_STATE(3980)] = 57410, - [SMALL_STATE(3981)] = 57479, - [SMALL_STATE(3982)] = 57548, - [SMALL_STATE(3983)] = 57617, - [SMALL_STATE(3984)] = 57686, - [SMALL_STATE(3985)] = 57755, - [SMALL_STATE(3986)] = 57808, - [SMALL_STATE(3987)] = 57877, - [SMALL_STATE(3988)] = 57946, - [SMALL_STATE(3989)] = 58005, - [SMALL_STATE(3990)] = 58074, - [SMALL_STATE(3991)] = 58143, - [SMALL_STATE(3992)] = 58212, - [SMALL_STATE(3993)] = 58281, - [SMALL_STATE(3994)] = 58350, - [SMALL_STATE(3995)] = 58419, - [SMALL_STATE(3996)] = 58488, - [SMALL_STATE(3997)] = 58557, - [SMALL_STATE(3998)] = 58626, - [SMALL_STATE(3999)] = 58695, - [SMALL_STATE(4000)] = 58764, - [SMALL_STATE(4001)] = 58833, - [SMALL_STATE(4002)] = 58902, - [SMALL_STATE(4003)] = 58971, - [SMALL_STATE(4004)] = 59040, - [SMALL_STATE(4005)] = 59109, - [SMALL_STATE(4006)] = 59162, - [SMALL_STATE(4007)] = 59231, - [SMALL_STATE(4008)] = 59300, - [SMALL_STATE(4009)] = 59369, - [SMALL_STATE(4010)] = 59438, - [SMALL_STATE(4011)] = 59525, - [SMALL_STATE(4012)] = 59594, - [SMALL_STATE(4013)] = 59663, - [SMALL_STATE(4014)] = 59732, - [SMALL_STATE(4015)] = 59801, - [SMALL_STATE(4016)] = 59870, - [SMALL_STATE(4017)] = 59939, - [SMALL_STATE(4018)] = 60008, - [SMALL_STATE(4019)] = 60077, - [SMALL_STATE(4020)] = 60146, - [SMALL_STATE(4021)] = 60223, - [SMALL_STATE(4022)] = 60292, - [SMALL_STATE(4023)] = 60361, - [SMALL_STATE(4024)] = 60430, - [SMALL_STATE(4025)] = 60499, - [SMALL_STATE(4026)] = 60568, - [SMALL_STATE(4027)] = 60637, - [SMALL_STATE(4028)] = 60690, - [SMALL_STATE(4029)] = 60743, - [SMALL_STATE(4030)] = 60812, - [SMALL_STATE(4031)] = 60881, - [SMALL_STATE(4032)] = 60950, - [SMALL_STATE(4033)] = 61019, - [SMALL_STATE(4034)] = 61088, - [SMALL_STATE(4035)] = 61157, - [SMALL_STATE(4036)] = 61226, - [SMALL_STATE(4037)] = 61295, - [SMALL_STATE(4038)] = 61364, - [SMALL_STATE(4039)] = 61433, - [SMALL_STATE(4040)] = 61502, - [SMALL_STATE(4041)] = 61571, - [SMALL_STATE(4042)] = 61640, - [SMALL_STATE(4043)] = 61709, - [SMALL_STATE(4044)] = 61778, - [SMALL_STATE(4045)] = 61833, - [SMALL_STATE(4046)] = 61902, - [SMALL_STATE(4047)] = 61971, - [SMALL_STATE(4048)] = 62040, - [SMALL_STATE(4049)] = 62093, - [SMALL_STATE(4050)] = 62162, - [SMALL_STATE(4051)] = 62231, - [SMALL_STATE(4052)] = 62300, - [SMALL_STATE(4053)] = 62353, - [SMALL_STATE(4054)] = 62422, - [SMALL_STATE(4055)] = 62491, - [SMALL_STATE(4056)] = 62560, - [SMALL_STATE(4057)] = 62629, - [SMALL_STATE(4058)] = 62698, - [SMALL_STATE(4059)] = 62767, - [SMALL_STATE(4060)] = 62836, - [SMALL_STATE(4061)] = 62905, - [SMALL_STATE(4062)] = 62974, - [SMALL_STATE(4063)] = 63043, - [SMALL_STATE(4064)] = 63112, - [SMALL_STATE(4065)] = 63181, - [SMALL_STATE(4066)] = 63250, - [SMALL_STATE(4067)] = 63319, - [SMALL_STATE(4068)] = 63388, - [SMALL_STATE(4069)] = 63457, - [SMALL_STATE(4070)] = 63526, - [SMALL_STATE(4071)] = 63595, - [SMALL_STATE(4072)] = 63664, - [SMALL_STATE(4073)] = 63733, - [SMALL_STATE(4074)] = 63802, - [SMALL_STATE(4075)] = 63871, - [SMALL_STATE(4076)] = 63940, - [SMALL_STATE(4077)] = 64009, - [SMALL_STATE(4078)] = 64078, - [SMALL_STATE(4079)] = 64147, - [SMALL_STATE(4080)] = 64216, - [SMALL_STATE(4081)] = 64285, - [SMALL_STATE(4082)] = 64354, - [SMALL_STATE(4083)] = 64407, - [SMALL_STATE(4084)] = 64476, - [SMALL_STATE(4085)] = 64545, - [SMALL_STATE(4086)] = 64614, - [SMALL_STATE(4087)] = 64683, - [SMALL_STATE(4088)] = 64752, - [SMALL_STATE(4089)] = 64805, - [SMALL_STATE(4090)] = 64874, - [SMALL_STATE(4091)] = 64927, - [SMALL_STATE(4092)] = 64996, - [SMALL_STATE(4093)] = 65065, - [SMALL_STATE(4094)] = 65134, - [SMALL_STATE(4095)] = 65203, - [SMALL_STATE(4096)] = 65272, - [SMALL_STATE(4097)] = 65325, - [SMALL_STATE(4098)] = 65394, - [SMALL_STATE(4099)] = 65463, - [SMALL_STATE(4100)] = 65532, - [SMALL_STATE(4101)] = 65601, - [SMALL_STATE(4102)] = 65670, - [SMALL_STATE(4103)] = 65723, - [SMALL_STATE(4104)] = 65776, - [SMALL_STATE(4105)] = 65845, - [SMALL_STATE(4106)] = 65914, - [SMALL_STATE(4107)] = 65983, - [SMALL_STATE(4108)] = 66052, - [SMALL_STATE(4109)] = 66121, - [SMALL_STATE(4110)] = 66190, - [SMALL_STATE(4111)] = 66259, - [SMALL_STATE(4112)] = 66328, - [SMALL_STATE(4113)] = 66397, - [SMALL_STATE(4114)] = 66466, - [SMALL_STATE(4115)] = 66519, - [SMALL_STATE(4116)] = 66588, - [SMALL_STATE(4117)] = 66657, - [SMALL_STATE(4118)] = 66710, - [SMALL_STATE(4119)] = 66763, - [SMALL_STATE(4120)] = 66832, - [SMALL_STATE(4121)] = 66901, - [SMALL_STATE(4122)] = 66970, - [SMALL_STATE(4123)] = 67023, - [SMALL_STATE(4124)] = 67092, - [SMALL_STATE(4125)] = 67145, - [SMALL_STATE(4126)] = 67232, - [SMALL_STATE(4127)] = 67301, - [SMALL_STATE(4128)] = 67354, - [SMALL_STATE(4129)] = 67407, - [SMALL_STATE(4130)] = 67460, - [SMALL_STATE(4131)] = 67547, - [SMALL_STATE(4132)] = 67600, - [SMALL_STATE(4133)] = 67653, - [SMALL_STATE(4134)] = 67722, - [SMALL_STATE(4135)] = 67775, - [SMALL_STATE(4136)] = 67844, - [SMALL_STATE(4137)] = 67897, - [SMALL_STATE(4138)] = 67950, - [SMALL_STATE(4139)] = 68003, - [SMALL_STATE(4140)] = 68056, - [SMALL_STATE(4141)] = 68109, - [SMALL_STATE(4142)] = 68162, - [SMALL_STATE(4143)] = 68215, - [SMALL_STATE(4144)] = 68268, - [SMALL_STATE(4145)] = 68337, - [SMALL_STATE(4146)] = 68406, - [SMALL_STATE(4147)] = 68475, - [SMALL_STATE(4148)] = 68544, - [SMALL_STATE(4149)] = 68613, - [SMALL_STATE(4150)] = 68682, - [SMALL_STATE(4151)] = 68751, - [SMALL_STATE(4152)] = 68820, - [SMALL_STATE(4153)] = 68889, - [SMALL_STATE(4154)] = 68958, - [SMALL_STATE(4155)] = 69027, - [SMALL_STATE(4156)] = 69096, - [SMALL_STATE(4157)] = 69165, - [SMALL_STATE(4158)] = 69234, - [SMALL_STATE(4159)] = 69303, - [SMALL_STATE(4160)] = 69362, - [SMALL_STATE(4161)] = 69431, - [SMALL_STATE(4162)] = 69500, - [SMALL_STATE(4163)] = 69569, - [SMALL_STATE(4164)] = 69626, - [SMALL_STATE(4165)] = 69695, - [SMALL_STATE(4166)] = 69764, - [SMALL_STATE(4167)] = 69817, - [SMALL_STATE(4168)] = 69870, - [SMALL_STATE(4169)] = 69927, - [SMALL_STATE(4170)] = 69980, - [SMALL_STATE(4171)] = 70033, - [SMALL_STATE(4172)] = 70086, - [SMALL_STATE(4173)] = 70155, - [SMALL_STATE(4174)] = 70208, - [SMALL_STATE(4175)] = 70277, - [SMALL_STATE(4176)] = 70346, - [SMALL_STATE(4177)] = 70415, - [SMALL_STATE(4178)] = 70484, - [SMALL_STATE(4179)] = 70553, - [SMALL_STATE(4180)] = 70622, - [SMALL_STATE(4181)] = 70677, - [SMALL_STATE(4182)] = 70734, - [SMALL_STATE(4183)] = 70803, - [SMALL_STATE(4184)] = 70872, - [SMALL_STATE(4185)] = 70941, - [SMALL_STATE(4186)] = 71010, - [SMALL_STATE(4187)] = 71079, - [SMALL_STATE(4188)] = 71148, - [SMALL_STATE(4189)] = 71217, - [SMALL_STATE(4190)] = 71286, - [SMALL_STATE(4191)] = 71339, - [SMALL_STATE(4192)] = 71408, - [SMALL_STATE(4193)] = 71461, - [SMALL_STATE(4194)] = 71530, - [SMALL_STATE(4195)] = 71599, - [SMALL_STATE(4196)] = 71668, - [SMALL_STATE(4197)] = 71737, - [SMALL_STATE(4198)] = 71806, - [SMALL_STATE(4199)] = 71875, - [SMALL_STATE(4200)] = 71944, - [SMALL_STATE(4201)] = 72013, - [SMALL_STATE(4202)] = 72066, - [SMALL_STATE(4203)] = 72135, - [SMALL_STATE(4204)] = 72204, - [SMALL_STATE(4205)] = 72257, - [SMALL_STATE(4206)] = 72310, - [SMALL_STATE(4207)] = 72367, - [SMALL_STATE(4208)] = 72436, - [SMALL_STATE(4209)] = 72489, - [SMALL_STATE(4210)] = 72558, - [SMALL_STATE(4211)] = 72645, - [SMALL_STATE(4212)] = 72712, - [SMALL_STATE(4213)] = 72781, - [SMALL_STATE(4214)] = 72850, - [SMALL_STATE(4215)] = 72919, - [SMALL_STATE(4216)] = 72988, - [SMALL_STATE(4217)] = 73041, - [SMALL_STATE(4218)] = 73110, - [SMALL_STATE(4219)] = 73165, - [SMALL_STATE(4220)] = 73218, - [SMALL_STATE(4221)] = 73275, - [SMALL_STATE(4222)] = 73344, - [SMALL_STATE(4223)] = 73413, - [SMALL_STATE(4224)] = 73480, - [SMALL_STATE(4225)] = 73549, - [SMALL_STATE(4226)] = 73618, - [SMALL_STATE(4227)] = 73687, - [SMALL_STATE(4228)] = 73756, - [SMALL_STATE(4229)] = 73825, - [SMALL_STATE(4230)] = 73894, - [SMALL_STATE(4231)] = 73963, - [SMALL_STATE(4232)] = 74032, - [SMALL_STATE(4233)] = 74085, - [SMALL_STATE(4234)] = 74154, - [SMALL_STATE(4235)] = 74223, - [SMALL_STATE(4236)] = 74292, - [SMALL_STATE(4237)] = 74361, - [SMALL_STATE(4238)] = 74430, - [SMALL_STATE(4239)] = 74483, - [SMALL_STATE(4240)] = 74552, - [SMALL_STATE(4241)] = 74621, - [SMALL_STATE(4242)] = 74690, - [SMALL_STATE(4243)] = 74759, - [SMALL_STATE(4244)] = 74814, - [SMALL_STATE(4245)] = 74881, - [SMALL_STATE(4246)] = 74950, - [SMALL_STATE(4247)] = 75007, - [SMALL_STATE(4248)] = 75076, - [SMALL_STATE(4249)] = 75145, - [SMALL_STATE(4250)] = 75214, - [SMALL_STATE(4251)] = 75283, - [SMALL_STATE(4252)] = 75352, - [SMALL_STATE(4253)] = 75421, - [SMALL_STATE(4254)] = 75476, - [SMALL_STATE(4255)] = 75533, - [SMALL_STATE(4256)] = 75602, - [SMALL_STATE(4257)] = 75659, - [SMALL_STATE(4258)] = 75728, - [SMALL_STATE(4259)] = 75783, - [SMALL_STATE(4260)] = 75852, - [SMALL_STATE(4261)] = 75921, - [SMALL_STATE(4262)] = 75990, - [SMALL_STATE(4263)] = 76059, - [SMALL_STATE(4264)] = 76128, - [SMALL_STATE(4265)] = 76197, - [SMALL_STATE(4266)] = 76266, - [SMALL_STATE(4267)] = 76335, - [SMALL_STATE(4268)] = 76404, - [SMALL_STATE(4269)] = 76473, - [SMALL_STATE(4270)] = 76542, - [SMALL_STATE(4271)] = 76611, - [SMALL_STATE(4272)] = 76680, - [SMALL_STATE(4273)] = 76749, - [SMALL_STATE(4274)] = 76818, - [SMALL_STATE(4275)] = 76887, - [SMALL_STATE(4276)] = 76956, - [SMALL_STATE(4277)] = 77025, - [SMALL_STATE(4278)] = 77094, - [SMALL_STATE(4279)] = 77163, - [SMALL_STATE(4280)] = 77232, - [SMALL_STATE(4281)] = 77301, - [SMALL_STATE(4282)] = 77370, - [SMALL_STATE(4283)] = 77439, - [SMALL_STATE(4284)] = 77508, - [SMALL_STATE(4285)] = 77577, - [SMALL_STATE(4286)] = 77646, - [SMALL_STATE(4287)] = 77715, - [SMALL_STATE(4288)] = 77784, - [SMALL_STATE(4289)] = 77851, - [SMALL_STATE(4290)] = 77920, - [SMALL_STATE(4291)] = 77989, - [SMALL_STATE(4292)] = 78058, - [SMALL_STATE(4293)] = 78126, - [SMALL_STATE(4294)] = 78178, - [SMALL_STATE(4295)] = 78230, - [SMALL_STATE(4296)] = 78308, - [SMALL_STATE(4297)] = 78360, - [SMALL_STATE(4298)] = 78414, - [SMALL_STATE(4299)] = 78466, - [SMALL_STATE(4300)] = 78534, - [SMALL_STATE(4301)] = 78586, - [SMALL_STATE(4302)] = 78640, - [SMALL_STATE(4303)] = 78708, - [SMALL_STATE(4304)] = 78764, - [SMALL_STATE(4305)] = 78818, - [SMALL_STATE(4306)] = 78886, - [SMALL_STATE(4307)] = 78940, - [SMALL_STATE(4308)] = 78992, - [SMALL_STATE(4309)] = 79060, - [SMALL_STATE(4310)] = 79112, - [SMALL_STATE(4311)] = 79164, - [SMALL_STATE(4312)] = 79232, - [SMALL_STATE(4313)] = 79300, - [SMALL_STATE(4314)] = 79352, - [SMALL_STATE(4315)] = 79404, - [SMALL_STATE(4316)] = 79460, - [SMALL_STATE(4317)] = 79512, - [SMALL_STATE(4318)] = 79564, - [SMALL_STATE(4319)] = 79616, - [SMALL_STATE(4320)] = 79668, - [SMALL_STATE(4321)] = 79720, - [SMALL_STATE(4322)] = 79788, - [SMALL_STATE(4323)] = 79840, - [SMALL_STATE(4324)] = 79892, - [SMALL_STATE(4325)] = 79944, - [SMALL_STATE(4326)] = 79996, - [SMALL_STATE(4327)] = 80050, - [SMALL_STATE(4328)] = 80126, - [SMALL_STATE(4329)] = 80182, - [SMALL_STATE(4330)] = 80234, - [SMALL_STATE(4331)] = 80286, - [SMALL_STATE(4332)] = 80364, - [SMALL_STATE(4333)] = 80416, - [SMALL_STATE(4334)] = 80494, - [SMALL_STATE(4335)] = 80548, - [SMALL_STATE(4336)] = 80600, - [SMALL_STATE(4337)] = 80654, - [SMALL_STATE(4338)] = 80706, - [SMALL_STATE(4339)] = 80758, - [SMALL_STATE(4340)] = 80812, - [SMALL_STATE(4341)] = 80866, - [SMALL_STATE(4342)] = 80922, - [SMALL_STATE(4343)] = 80974, - [SMALL_STATE(4344)] = 81042, - [SMALL_STATE(4345)] = 81096, - [SMALL_STATE(4346)] = 81150, - [SMALL_STATE(4347)] = 81218, - [SMALL_STATE(4348)] = 81296, - [SMALL_STATE(4349)] = 81348, - [SMALL_STATE(4350)] = 81402, - [SMALL_STATE(4351)] = 81456, - [SMALL_STATE(4352)] = 81510, - [SMALL_STATE(4353)] = 81562, - [SMALL_STATE(4354)] = 81614, - [SMALL_STATE(4355)] = 81692, - [SMALL_STATE(4356)] = 81746, - [SMALL_STATE(4357)] = 81798, - [SMALL_STATE(4358)] = 81852, - [SMALL_STATE(4359)] = 81908, - [SMALL_STATE(4360)] = 81960, - [SMALL_STATE(4361)] = 82012, - [SMALL_STATE(4362)] = 82066, - [SMALL_STATE(4363)] = 82120, - [SMALL_STATE(4364)] = 82176, - [SMALL_STATE(4365)] = 82254, - [SMALL_STATE(4366)] = 82308, - [SMALL_STATE(4367)] = 82360, - [SMALL_STATE(4368)] = 82423, - [SMALL_STATE(4369)] = 82474, - [SMALL_STATE(4370)] = 82525, - [SMALL_STATE(4371)] = 82576, - [SMALL_STATE(4372)] = 82631, - [SMALL_STATE(4373)] = 82708, - [SMALL_STATE(4374)] = 82771, - [SMALL_STATE(4375)] = 82822, - [SMALL_STATE(4376)] = 82873, - [SMALL_STATE(4377)] = 82924, - [SMALL_STATE(4378)] = 82975, - [SMALL_STATE(4379)] = 83026, - [SMALL_STATE(4380)] = 83077, - [SMALL_STATE(4381)] = 83130, - [SMALL_STATE(4382)] = 83181, - [SMALL_STATE(4383)] = 83234, - [SMALL_STATE(4384)] = 83285, - [SMALL_STATE(4385)] = 83336, - [SMALL_STATE(4386)] = 83387, - [SMALL_STATE(4387)] = 83438, - [SMALL_STATE(4388)] = 83489, - [SMALL_STATE(4389)] = 83540, - [SMALL_STATE(4390)] = 83591, - [SMALL_STATE(4391)] = 83642, - [SMALL_STATE(4392)] = 83695, - [SMALL_STATE(4393)] = 83748, - [SMALL_STATE(4394)] = 83799, - [SMALL_STATE(4395)] = 83866, - [SMALL_STATE(4396)] = 83919, - [SMALL_STATE(4397)] = 83970, - [SMALL_STATE(4398)] = 84021, - [SMALL_STATE(4399)] = 84074, - [SMALL_STATE(4400)] = 84127, - [SMALL_STATE(4401)] = 84178, - [SMALL_STATE(4402)] = 84229, - [SMALL_STATE(4403)] = 84280, - [SMALL_STATE(4404)] = 84331, - [SMALL_STATE(4405)] = 84382, - [SMALL_STATE(4406)] = 84433, - [SMALL_STATE(4407)] = 84486, - [SMALL_STATE(4408)] = 84537, - [SMALL_STATE(4409)] = 84604, - [SMALL_STATE(4410)] = 84655, - [SMALL_STATE(4411)] = 84706, - [SMALL_STATE(4412)] = 84757, - [SMALL_STATE(4413)] = 84808, - [SMALL_STATE(4414)] = 84859, - [SMALL_STATE(4415)] = 84910, - [SMALL_STATE(4416)] = 84961, - [SMALL_STATE(4417)] = 85014, - [SMALL_STATE(4418)] = 85065, - [SMALL_STATE(4419)] = 85132, - [SMALL_STATE(4420)] = 85209, - [SMALL_STATE(4421)] = 85280, - [SMALL_STATE(4422)] = 85333, - [SMALL_STATE(4423)] = 85386, - [SMALL_STATE(4424)] = 85437, - [SMALL_STATE(4425)] = 85488, - [SMALL_STATE(4426)] = 85539, - [SMALL_STATE(4427)] = 85590, - [SMALL_STATE(4428)] = 85657, - [SMALL_STATE(4429)] = 85708, - [SMALL_STATE(4430)] = 85759, - [SMALL_STATE(4431)] = 85810, - [SMALL_STATE(4432)] = 85861, - [SMALL_STATE(4433)] = 85912, - [SMALL_STATE(4434)] = 85989, - [SMALL_STATE(4435)] = 86060, - [SMALL_STATE(4436)] = 86111, - [SMALL_STATE(4437)] = 86164, - [SMALL_STATE(4438)] = 86243, - [SMALL_STATE(4439)] = 86294, - [SMALL_STATE(4440)] = 86345, - [SMALL_STATE(4441)] = 86396, - [SMALL_STATE(4442)] = 86447, - [SMALL_STATE(4443)] = 86498, - [SMALL_STATE(4444)] = 86551, - [SMALL_STATE(4445)] = 86602, - [SMALL_STATE(4446)] = 86653, - [SMALL_STATE(4447)] = 86732, - [SMALL_STATE(4448)] = 86783, - [SMALL_STATE(4449)] = 86834, - [SMALL_STATE(4450)] = 86885, - [SMALL_STATE(4451)] = 86936, - [SMALL_STATE(4452)] = 86987, - [SMALL_STATE(4453)] = 87038, - [SMALL_STATE(4454)] = 87091, - [SMALL_STATE(4455)] = 87144, - [SMALL_STATE(4456)] = 87195, - [SMALL_STATE(4457)] = 87272, - [SMALL_STATE(4458)] = 87323, - [SMALL_STATE(4459)] = 87374, - [SMALL_STATE(4460)] = 87429, - [SMALL_STATE(4461)] = 87480, - [SMALL_STATE(4462)] = 87531, - [SMALL_STATE(4463)] = 87582, - [SMALL_STATE(4464)] = 87633, - [SMALL_STATE(4465)] = 87684, - [SMALL_STATE(4466)] = 87735, - [SMALL_STATE(4467)] = 87813, - [SMALL_STATE(4468)] = 87863, - [SMALL_STATE(4469)] = 87929, - [SMALL_STATE(4470)] = 87979, - [SMALL_STATE(4471)] = 88057, - [SMALL_STATE(4472)] = 88107, - [SMALL_STATE(4473)] = 88157, - [SMALL_STATE(4474)] = 88207, - [SMALL_STATE(4475)] = 88257, - [SMALL_STATE(4476)] = 88323, - [SMALL_STATE(4477)] = 88373, - [SMALL_STATE(4478)] = 88423, - [SMALL_STATE(4479)] = 88473, - [SMALL_STATE(4480)] = 88523, - [SMALL_STATE(4481)] = 88573, - [SMALL_STATE(4482)] = 88625, - [SMALL_STATE(4483)] = 88675, - [SMALL_STATE(4484)] = 88725, - [SMALL_STATE(4485)] = 88775, - [SMALL_STATE(4486)] = 88825, - [SMALL_STATE(4487)] = 88891, - [SMALL_STATE(4488)] = 88957, - [SMALL_STATE(4489)] = 89011, - [SMALL_STATE(4490)] = 89061, - [SMALL_STATE(4491)] = 89111, - [SMALL_STATE(4492)] = 89165, - [SMALL_STATE(4493)] = 89215, - [SMALL_STATE(4494)] = 89269, - [SMALL_STATE(4495)] = 89319, - [SMALL_STATE(4496)] = 89385, - [SMALL_STATE(4497)] = 89437, - [SMALL_STATE(4498)] = 89487, - [SMALL_STATE(4499)] = 89553, - [SMALL_STATE(4500)] = 89603, - [SMALL_STATE(4501)] = 89653, - [SMALL_STATE(4502)] = 89703, - [SMALL_STATE(4503)] = 89753, - [SMALL_STATE(4504)] = 89803, - [SMALL_STATE(4505)] = 89853, - [SMALL_STATE(4506)] = 89919, - [SMALL_STATE(4507)] = 89969, - [SMALL_STATE(4508)] = 90019, - [SMALL_STATE(4509)] = 90069, - [SMALL_STATE(4510)] = 90119, - [SMALL_STATE(4511)] = 90185, - [SMALL_STATE(4512)] = 90235, - [SMALL_STATE(4513)] = 90301, - [SMALL_STATE(4514)] = 90367, - [SMALL_STATE(4515)] = 90421, - [SMALL_STATE(4516)] = 90473, - [SMALL_STATE(4517)] = 90523, - [SMALL_STATE(4518)] = 90573, - [SMALL_STATE(4519)] = 90623, - [SMALL_STATE(4520)] = 90673, - [SMALL_STATE(4521)] = 90723, - [SMALL_STATE(4522)] = 90773, - [SMALL_STATE(4523)] = 90827, - [SMALL_STATE(4524)] = 90881, - [SMALL_STATE(4525)] = 90931, - [SMALL_STATE(4526)] = 90981, - [SMALL_STATE(4527)] = 91031, - [SMALL_STATE(4528)] = 91097, - [SMALL_STATE(4529)] = 91147, - [SMALL_STATE(4530)] = 91197, - [SMALL_STATE(4531)] = 91263, - [SMALL_STATE(4532)] = 91313, - [SMALL_STATE(4533)] = 91367, - [SMALL_STATE(4534)] = 91437, - [SMALL_STATE(4535)] = 91487, - [SMALL_STATE(4536)] = 91553, - [SMALL_STATE(4537)] = 91619, - [SMALL_STATE(4538)] = 91689, - [SMALL_STATE(4539)] = 91739, - [SMALL_STATE(4540)] = 91789, - [SMALL_STATE(4541)] = 91843, - [SMALL_STATE(4542)] = 91893, - [SMALL_STATE(4543)] = 91943, - [SMALL_STATE(4544)] = 92009, - [SMALL_STATE(4545)] = 92059, - [SMALL_STATE(4546)] = 92129, - [SMALL_STATE(4547)] = 92181, - [SMALL_STATE(4548)] = 92247, - [SMALL_STATE(4549)] = 92297, - [SMALL_STATE(4550)] = 92360, - [SMALL_STATE(4551)] = 92425, - [SMALL_STATE(4552)] = 92490, - [SMALL_STATE(4553)] = 92555, - [SMALL_STATE(4554)] = 92608, - [SMALL_STATE(4555)] = 92673, - [SMALL_STATE(4556)] = 92748, - [SMALL_STATE(4557)] = 92803, - [SMALL_STATE(4558)] = 92852, - [SMALL_STATE(4559)] = 92903, - [SMALL_STATE(4560)] = 92968, - [SMALL_STATE(4561)] = 93021, - [SMALL_STATE(4562)] = 93072, - [SMALL_STATE(4563)] = 93137, - [SMALL_STATE(4564)] = 93190, - [SMALL_STATE(4565)] = 93243, - [SMALL_STATE(4566)] = 93296, - [SMALL_STATE(4567)] = 93347, - [SMALL_STATE(4568)] = 93410, - [SMALL_STATE(4569)] = 93463, - [SMALL_STATE(4570)] = 93516, - [SMALL_STATE(4571)] = 93567, - [SMALL_STATE(4572)] = 93632, - [SMALL_STATE(4573)] = 93681, - [SMALL_STATE(4574)] = 93730, - [SMALL_STATE(4575)] = 93783, - [SMALL_STATE(4576)] = 93836, - [SMALL_STATE(4577)] = 93911, - [SMALL_STATE(4578)] = 93986, - [SMALL_STATE(4579)] = 94061, - [SMALL_STATE(4580)] = 94126, - [SMALL_STATE(4581)] = 94191, - [SMALL_STATE(4582)] = 94244, - [SMALL_STATE(4583)] = 94293, - [SMALL_STATE(4584)] = 94344, - [SMALL_STATE(4585)] = 94419, - [SMALL_STATE(4586)] = 94472, - [SMALL_STATE(4587)] = 94527, - [SMALL_STATE(4588)] = 94602, - [SMALL_STATE(4589)] = 94667, - [SMALL_STATE(4590)] = 94742, - [SMALL_STATE(4591)] = 94795, - [SMALL_STATE(4592)] = 94860, - [SMALL_STATE(4593)] = 94909, - [SMALL_STATE(4594)] = 94974, - [SMALL_STATE(4595)] = 95025, - [SMALL_STATE(4596)] = 95090, - [SMALL_STATE(4597)] = 95143, - [SMALL_STATE(4598)] = 95198, - [SMALL_STATE(4599)] = 95263, - [SMALL_STATE(4600)] = 95314, - [SMALL_STATE(4601)] = 95377, - [SMALL_STATE(4602)] = 95442, - [SMALL_STATE(4603)] = 95507, - [SMALL_STATE(4604)] = 95556, - [SMALL_STATE(4605)] = 95621, - [SMALL_STATE(4606)] = 95674, - [SMALL_STATE(4607)] = 95727, - [SMALL_STATE(4608)] = 95778, - [SMALL_STATE(4609)] = 95831, - [SMALL_STATE(4610)] = 95896, - [SMALL_STATE(4611)] = 95949, - [SMALL_STATE(4612)] = 95998, - [SMALL_STATE(4613)] = 96063, - [SMALL_STATE(4614)] = 96128, - [SMALL_STATE(4615)] = 96179, - [SMALL_STATE(4616)] = 96244, - [SMALL_STATE(4617)] = 96297, - [SMALL_STATE(4618)] = 96362, - [SMALL_STATE(4619)] = 96413, - [SMALL_STATE(4620)] = 96462, - [SMALL_STATE(4621)] = 96525, - [SMALL_STATE(4622)] = 96590, - [SMALL_STATE(4623)] = 96665, - [SMALL_STATE(4624)] = 96717, - [SMALL_STATE(4625)] = 96765, - [SMALL_STATE(4626)] = 96815, - [SMALL_STATE(4627)] = 96865, - [SMALL_STATE(4628)] = 96913, - [SMALL_STATE(4629)] = 96967, - [SMALL_STATE(4630)] = 97015, - [SMALL_STATE(4631)] = 97063, - [SMALL_STATE(4632)] = 97127, - [SMALL_STATE(4633)] = 97179, - [SMALL_STATE(4634)] = 97227, - [SMALL_STATE(4635)] = 97277, - [SMALL_STATE(4636)] = 97327, - [SMALL_STATE(4637)] = 97379, - [SMALL_STATE(4638)] = 97429, - [SMALL_STATE(4639)] = 97477, - [SMALL_STATE(4640)] = 97525, - [SMALL_STATE(4641)] = 97575, - [SMALL_STATE(4642)] = 97623, - [SMALL_STATE(4643)] = 97695, - [SMALL_STATE(4644)] = 97747, - [SMALL_STATE(4645)] = 97797, - [SMALL_STATE(4646)] = 97847, - [SMALL_STATE(4647)] = 97895, - [SMALL_STATE(4648)] = 97943, - [SMALL_STATE(4649)] = 97995, - [SMALL_STATE(4650)] = 98047, - [SMALL_STATE(4651)] = 98095, - [SMALL_STATE(4652)] = 98159, - [SMALL_STATE(4653)] = 98207, - [SMALL_STATE(4654)] = 98255, - [SMALL_STATE(4655)] = 98307, - [SMALL_STATE(4656)] = 98355, - [SMALL_STATE(4657)] = 98405, - [SMALL_STATE(4658)] = 98473, - [SMALL_STATE(4659)] = 98525, - [SMALL_STATE(4660)] = 98577, - [SMALL_STATE(4661)] = 98629, - [SMALL_STATE(4662)] = 98681, - [SMALL_STATE(4663)] = 98729, - [SMALL_STATE(4664)] = 98779, - [SMALL_STATE(4665)] = 98831, - [SMALL_STATE(4666)] = 98879, - [SMALL_STATE(4667)] = 98927, - [SMALL_STATE(4668)] = 98977, - [SMALL_STATE(4669)] = 99025, - [SMALL_STATE(4670)] = 99075, - [SMALL_STATE(4671)] = 99123, - [SMALL_STATE(4672)] = 99175, - [SMALL_STATE(4673)] = 99239, - [SMALL_STATE(4674)] = 99287, - [SMALL_STATE(4675)] = 99335, - [SMALL_STATE(4676)] = 99385, - [SMALL_STATE(4677)] = 99433, - [SMALL_STATE(4678)] = 99481, - [SMALL_STATE(4679)] = 99531, - [SMALL_STATE(4680)] = 99583, - [SMALL_STATE(4681)] = 99631, - [SMALL_STATE(4682)] = 99679, - [SMALL_STATE(4683)] = 99727, - [SMALL_STATE(4684)] = 99777, - [SMALL_STATE(4685)] = 99827, - [SMALL_STATE(4686)] = 99877, - [SMALL_STATE(4687)] = 99929, - [SMALL_STATE(4688)] = 99997, - [SMALL_STATE(4689)] = 100044, - [SMALL_STATE(4690)] = 100091, - [SMALL_STATE(4691)] = 100160, - [SMALL_STATE(4692)] = 100211, - [SMALL_STATE(4693)] = 100256, - [SMALL_STATE(4694)] = 100305, - [SMALL_STATE(4695)] = 100356, - [SMALL_STATE(4696)] = 100403, - [SMALL_STATE(4697)] = 100450, - [SMALL_STATE(4698)] = 100499, - [SMALL_STATE(4699)] = 100546, - [SMALL_STATE(4700)] = 100593, - [SMALL_STATE(4701)] = 100640, - [SMALL_STATE(4702)] = 100689, - [SMALL_STATE(4703)] = 100736, - [SMALL_STATE(4704)] = 100781, - [SMALL_STATE(4705)] = 100828, - [SMALL_STATE(4706)] = 100875, - [SMALL_STATE(4707)] = 100922, - [SMALL_STATE(4708)] = 100969, - [SMALL_STATE(4709)] = 101018, - [SMALL_STATE(4710)] = 101065, - [SMALL_STATE(4711)] = 101116, - [SMALL_STATE(4712)] = 101163, - [SMALL_STATE(4713)] = 101210, - [SMALL_STATE(4714)] = 101257, - [SMALL_STATE(4715)] = 101326, - [SMALL_STATE(4716)] = 101373, - [SMALL_STATE(4717)] = 101420, - [SMALL_STATE(4718)] = 101467, - [SMALL_STATE(4719)] = 101514, - [SMALL_STATE(4720)] = 101561, - [SMALL_STATE(4721)] = 101608, - [SMALL_STATE(4722)] = 101655, - [SMALL_STATE(4723)] = 101704, - [SMALL_STATE(4724)] = 101751, - [SMALL_STATE(4725)] = 101798, - [SMALL_STATE(4726)] = 101845, - [SMALL_STATE(4727)] = 101892, - [SMALL_STATE(4728)] = 101943, - [SMALL_STATE(4729)] = 101990, - [SMALL_STATE(4730)] = 102039, - [SMALL_STATE(4731)] = 102086, - [SMALL_STATE(4732)] = 102133, - [SMALL_STATE(4733)] = 102182, - [SMALL_STATE(4734)] = 102251, - [SMALL_STATE(4735)] = 102300, - [SMALL_STATE(4736)] = 102349, - [SMALL_STATE(4737)] = 102396, - [SMALL_STATE(4738)] = 102443, - [SMALL_STATE(4739)] = 102512, - [SMALL_STATE(4740)] = 102561, - [SMALL_STATE(4741)] = 102610, - [SMALL_STATE(4742)] = 102657, - [SMALL_STATE(4743)] = 102708, - [SMALL_STATE(4744)] = 102755, - [SMALL_STATE(4745)] = 102804, - [SMALL_STATE(4746)] = 102853, - [SMALL_STATE(4747)] = 102900, - [SMALL_STATE(4748)] = 102947, - [SMALL_STATE(4749)] = 102994, - [SMALL_STATE(4750)] = 103045, - [SMALL_STATE(4751)] = 103096, - [SMALL_STATE(4752)] = 103163, - [SMALL_STATE(4753)] = 103212, - [SMALL_STATE(4754)] = 103259, - [SMALL_STATE(4755)] = 103308, - [SMALL_STATE(4756)] = 103355, - [SMALL_STATE(4757)] = 103402, - [SMALL_STATE(4758)] = 103449, - [SMALL_STATE(4759)] = 103496, - [SMALL_STATE(4760)] = 103543, - [SMALL_STATE(4761)] = 103590, - [SMALL_STATE(4762)] = 103637, - [SMALL_STATE(4763)] = 103684, - [SMALL_STATE(4764)] = 103731, - [SMALL_STATE(4765)] = 103780, - [SMALL_STATE(4766)] = 103827, - [SMALL_STATE(4767)] = 103878, - [SMALL_STATE(4768)] = 103925, - [SMALL_STATE(4769)] = 103974, - [SMALL_STATE(4770)] = 104020, - [SMALL_STATE(4771)] = 104078, - [SMALL_STATE(4772)] = 104126, - [SMALL_STATE(4773)] = 104172, - [SMALL_STATE(4774)] = 104230, - [SMALL_STATE(4775)] = 104276, - [SMALL_STATE(4776)] = 104322, - [SMALL_STATE(4777)] = 104380, - [SMALL_STATE(4778)] = 104426, - [SMALL_STATE(4779)] = 104472, - [SMALL_STATE(4780)] = 104518, - [SMALL_STATE(4781)] = 104576, - [SMALL_STATE(4782)] = 104622, - [SMALL_STATE(4783)] = 104668, - [SMALL_STATE(4784)] = 104714, - [SMALL_STATE(4785)] = 104760, - [SMALL_STATE(4786)] = 104806, - [SMALL_STATE(4787)] = 104852, - [SMALL_STATE(4788)] = 104898, - [SMALL_STATE(4789)] = 104944, - [SMALL_STATE(4790)] = 104988, - [SMALL_STATE(4791)] = 105046, - [SMALL_STATE(4792)] = 105092, - [SMALL_STATE(4793)] = 105138, - [SMALL_STATE(4794)] = 105184, - [SMALL_STATE(4795)] = 105240, - [SMALL_STATE(4796)] = 105286, - [SMALL_STATE(4797)] = 105332, - [SMALL_STATE(4798)] = 105378, - [SMALL_STATE(4799)] = 105424, - [SMALL_STATE(4800)] = 105470, - [SMALL_STATE(4801)] = 105516, - [SMALL_STATE(4802)] = 105562, - [SMALL_STATE(4803)] = 105610, - [SMALL_STATE(4804)] = 105668, - [SMALL_STATE(4805)] = 105726, - [SMALL_STATE(4806)] = 105772, - [SMALL_STATE(4807)] = 105818, - [SMALL_STATE(4808)] = 105866, - [SMALL_STATE(4809)] = 105912, - [SMALL_STATE(4810)] = 105970, - [SMALL_STATE(4811)] = 106016, - [SMALL_STATE(4812)] = 106074, - [SMALL_STATE(4813)] = 106120, - [SMALL_STATE(4814)] = 106166, - [SMALL_STATE(4815)] = 106212, - [SMALL_STATE(4816)] = 106258, - [SMALL_STATE(4817)] = 106304, - [SMALL_STATE(4818)] = 106352, - [SMALL_STATE(4819)] = 106398, - [SMALL_STATE(4820)] = 106456, - [SMALL_STATE(4821)] = 106504, - [SMALL_STATE(4822)] = 106550, - [SMALL_STATE(4823)] = 106596, - [SMALL_STATE(4824)] = 106654, - [SMALL_STATE(4825)] = 106700, - [SMALL_STATE(4826)] = 106746, - [SMALL_STATE(4827)] = 106804, - [SMALL_STATE(4828)] = 106862, - [SMALL_STATE(4829)] = 106908, - [SMALL_STATE(4830)] = 106954, - [SMALL_STATE(4831)] = 107012, - [SMALL_STATE(4832)] = 107058, - [SMALL_STATE(4833)] = 107104, - [SMALL_STATE(4834)] = 107152, - [SMALL_STATE(4835)] = 107198, - [SMALL_STATE(4836)] = 107244, - [SMALL_STATE(4837)] = 107288, - [SMALL_STATE(4838)] = 107332, - [SMALL_STATE(4839)] = 107390, - [SMALL_STATE(4840)] = 107436, - [SMALL_STATE(4841)] = 107494, - [SMALL_STATE(4842)] = 107552, - [SMALL_STATE(4843)] = 107610, - [SMALL_STATE(4844)] = 107656, - [SMALL_STATE(4845)] = 107702, - [SMALL_STATE(4846)] = 107760, - [SMALL_STATE(4847)] = 107818, - [SMALL_STATE(4848)] = 107866, - [SMALL_STATE(4849)] = 107912, - [SMALL_STATE(4850)] = 107960, - [SMALL_STATE(4851)] = 108018, - [SMALL_STATE(4852)] = 108064, - [SMALL_STATE(4853)] = 108122, - [SMALL_STATE(4854)] = 108168, - [SMALL_STATE(4855)] = 108214, - [SMALL_STATE(4856)] = 108260, - [SMALL_STATE(4857)] = 108306, - [SMALL_STATE(4858)] = 108350, - [SMALL_STATE(4859)] = 108396, - [SMALL_STATE(4860)] = 108442, - [SMALL_STATE(4861)] = 108488, - [SMALL_STATE(4862)] = 108534, - [SMALL_STATE(4863)] = 108580, - [SMALL_STATE(4864)] = 108626, - [SMALL_STATE(4865)] = 108684, - [SMALL_STATE(4866)] = 108742, - [SMALL_STATE(4867)] = 108788, - [SMALL_STATE(4868)] = 108834, - [SMALL_STATE(4869)] = 108880, - [SMALL_STATE(4870)] = 108938, - [SMALL_STATE(4871)] = 108984, - [SMALL_STATE(4872)] = 109032, - [SMALL_STATE(4873)] = 109090, - [SMALL_STATE(4874)] = 109134, - [SMALL_STATE(4875)] = 109192, - [SMALL_STATE(4876)] = 109250, - [SMALL_STATE(4877)] = 109312, - [SMALL_STATE(4878)] = 109370, - [SMALL_STATE(4879)] = 109416, - [SMALL_STATE(4880)] = 109474, - [SMALL_STATE(4881)] = 109520, - [SMALL_STATE(4882)] = 109566, - [SMALL_STATE(4883)] = 109612, - [SMALL_STATE(4884)] = 109670, - [SMALL_STATE(4885)] = 109732, - [SMALL_STATE(4886)] = 109794, - [SMALL_STATE(4887)] = 109840, - [SMALL_STATE(4888)] = 109886, - [SMALL_STATE(4889)] = 109936, - [SMALL_STATE(4890)] = 109998, - [SMALL_STATE(4891)] = 110044, - [SMALL_STATE(4892)] = 110090, - [SMALL_STATE(4893)] = 110148, - [SMALL_STATE(4894)] = 110196, - [SMALL_STATE(4895)] = 110254, - [SMALL_STATE(4896)] = 110300, - [SMALL_STATE(4897)] = 110346, - [SMALL_STATE(4898)] = 110404, - [SMALL_STATE(4899)] = 110462, - [SMALL_STATE(4900)] = 110520, - [SMALL_STATE(4901)] = 110566, - [SMALL_STATE(4902)] = 110624, - [SMALL_STATE(4903)] = 110682, - [SMALL_STATE(4904)] = 110728, - [SMALL_STATE(4905)] = 110774, - [SMALL_STATE(4906)] = 110832, - [SMALL_STATE(4907)] = 110890, - [SMALL_STATE(4908)] = 110936, - [SMALL_STATE(4909)] = 110994, - [SMALL_STATE(4910)] = 111040, - [SMALL_STATE(4911)] = 111088, - [SMALL_STATE(4912)] = 111136, - [SMALL_STATE(4913)] = 111194, - [SMALL_STATE(4914)] = 111240, - [SMALL_STATE(4915)] = 111298, - [SMALL_STATE(4916)] = 111356, - [SMALL_STATE(4917)] = 111414, - [SMALL_STATE(4918)] = 111472, - [SMALL_STATE(4919)] = 111519, - [SMALL_STATE(4920)] = 111564, - [SMALL_STATE(4921)] = 111609, - [SMALL_STATE(4922)] = 111654, - [SMALL_STATE(4923)] = 111699, - [SMALL_STATE(4924)] = 111764, - [SMALL_STATE(4925)] = 111807, - [SMALL_STATE(4926)] = 111850, - [SMALL_STATE(4927)] = 111893, - [SMALL_STATE(4928)] = 111948, - [SMALL_STATE(4929)] = 111991, - [SMALL_STATE(4930)] = 112034, - [SMALL_STATE(4931)] = 112099, - [SMALL_STATE(4932)] = 112144, - [SMALL_STATE(4933)] = 112187, - [SMALL_STATE(4934)] = 112252, - [SMALL_STATE(4935)] = 112317, - [SMALL_STATE(4936)] = 112360, - [SMALL_STATE(4937)] = 112415, - [SMALL_STATE(4938)] = 112460, - [SMALL_STATE(4939)] = 112503, - [SMALL_STATE(4940)] = 112546, - [SMALL_STATE(4941)] = 112591, - [SMALL_STATE(4942)] = 112636, - [SMALL_STATE(4943)] = 112679, - [SMALL_STATE(4944)] = 112734, - [SMALL_STATE(4945)] = 112789, - [SMALL_STATE(4946)] = 112844, - [SMALL_STATE(4947)] = 112891, - [SMALL_STATE(4948)] = 112934, - [SMALL_STATE(4949)] = 112989, - [SMALL_STATE(4950)] = 113044, - [SMALL_STATE(4951)] = 113109, - [SMALL_STATE(4952)] = 113154, - [SMALL_STATE(4953)] = 113197, - [SMALL_STATE(4954)] = 113252, - [SMALL_STATE(4955)] = 113297, - [SMALL_STATE(4956)] = 113352, - [SMALL_STATE(4957)] = 113397, - [SMALL_STATE(4958)] = 113442, - [SMALL_STATE(4959)] = 113487, - [SMALL_STATE(4960)] = 113542, - [SMALL_STATE(4961)] = 113585, - [SMALL_STATE(4962)] = 113630, - [SMALL_STATE(4963)] = 113679, - [SMALL_STATE(4964)] = 113734, - [SMALL_STATE(4965)] = 113779, - [SMALL_STATE(4966)] = 113822, - [SMALL_STATE(4967)] = 113887, - [SMALL_STATE(4968)] = 113930, - [SMALL_STATE(4969)] = 113985, - [SMALL_STATE(4970)] = 114030, - [SMALL_STATE(4971)] = 114073, - [SMALL_STATE(4972)] = 114118, - [SMALL_STATE(4973)] = 114161, - [SMALL_STATE(4974)] = 114206, - [SMALL_STATE(4975)] = 114251, - [SMALL_STATE(4976)] = 114296, - [SMALL_STATE(4977)] = 114341, - [SMALL_STATE(4978)] = 114384, - [SMALL_STATE(4979)] = 114439, - [SMALL_STATE(4980)] = 114484, - [SMALL_STATE(4981)] = 114539, - [SMALL_STATE(4982)] = 114594, - [SMALL_STATE(4983)] = 114637, - [SMALL_STATE(4984)] = 114684, - [SMALL_STATE(4985)] = 114729, - [SMALL_STATE(4986)] = 114784, - [SMALL_STATE(4987)] = 114827, - [SMALL_STATE(4988)] = 114892, - [SMALL_STATE(4989)] = 114935, - [SMALL_STATE(4990)] = 114990, - [SMALL_STATE(4991)] = 115045, - [SMALL_STATE(4992)] = 115100, - [SMALL_STATE(4993)] = 115143, - [SMALL_STATE(4994)] = 115198, - [SMALL_STATE(4995)] = 115263, - [SMALL_STATE(4996)] = 115306, - [SMALL_STATE(4997)] = 115349, - [SMALL_STATE(4998)] = 115404, - [SMALL_STATE(4999)] = 115449, - [SMALL_STATE(5000)] = 115504, - [SMALL_STATE(5001)] = 115547, - [SMALL_STATE(5002)] = 115592, - [SMALL_STATE(5003)] = 115657, - [SMALL_STATE(5004)] = 115712, - [SMALL_STATE(5005)] = 115767, - [SMALL_STATE(5006)] = 115814, - [SMALL_STATE(5007)] = 115879, - [SMALL_STATE(5008)] = 115924, - [SMALL_STATE(5009)] = 115967, - [SMALL_STATE(5010)] = 116022, - [SMALL_STATE(5011)] = 116067, - [SMALL_STATE(5012)] = 116110, - [SMALL_STATE(5013)] = 116155, - [SMALL_STATE(5014)] = 116198, - [SMALL_STATE(5015)] = 116243, - [SMALL_STATE(5016)] = 116308, - [SMALL_STATE(5017)] = 116351, - [SMALL_STATE(5018)] = 116396, - [SMALL_STATE(5019)] = 116451, - [SMALL_STATE(5020)] = 116506, - [SMALL_STATE(5021)] = 116561, - [SMALL_STATE(5022)] = 116616, - [SMALL_STATE(5023)] = 116671, - [SMALL_STATE(5024)] = 116716, - [SMALL_STATE(5025)] = 116761, - [SMALL_STATE(5026)] = 116826, - [SMALL_STATE(5027)] = 116871, - [SMALL_STATE(5028)] = 116926, - [SMALL_STATE(5029)] = 116971, - [SMALL_STATE(5030)] = 117016, - [SMALL_STATE(5031)] = 117061, - [SMALL_STATE(5032)] = 117106, - [SMALL_STATE(5033)] = 117151, - [SMALL_STATE(5034)] = 117196, - [SMALL_STATE(5035)] = 117239, - [SMALL_STATE(5036)] = 117284, - [SMALL_STATE(5037)] = 117339, - [SMALL_STATE(5038)] = 117382, - [SMALL_STATE(5039)] = 117447, - [SMALL_STATE(5040)] = 117492, - [SMALL_STATE(5041)] = 117535, - [SMALL_STATE(5042)] = 117588, - [SMALL_STATE(5043)] = 117633, - [SMALL_STATE(5044)] = 117678, - [SMALL_STATE(5045)] = 117743, - [SMALL_STATE(5046)] = 117788, - [SMALL_STATE(5047)] = 117843, - [SMALL_STATE(5048)] = 117886, - [SMALL_STATE(5049)] = 117929, - [SMALL_STATE(5050)] = 117972, - [SMALL_STATE(5051)] = 118017, - [SMALL_STATE(5052)] = 118072, - [SMALL_STATE(5053)] = 118127, - [SMALL_STATE(5054)] = 118172, - [SMALL_STATE(5055)] = 118217, - [SMALL_STATE(5056)] = 118282, - [SMALL_STATE(5057)] = 118327, - [SMALL_STATE(5058)] = 118372, - [SMALL_STATE(5059)] = 118417, - [SMALL_STATE(5060)] = 118462, - [SMALL_STATE(5061)] = 118517, - [SMALL_STATE(5062)] = 118560, - [SMALL_STATE(5063)] = 118625, - [SMALL_STATE(5064)] = 118670, - [SMALL_STATE(5065)] = 118735, - [SMALL_STATE(5066)] = 118780, - [SMALL_STATE(5067)] = 118835, - [SMALL_STATE(5068)] = 118878, - [SMALL_STATE(5069)] = 118923, - [SMALL_STATE(5070)] = 118968, - [SMALL_STATE(5071)] = 119023, - [SMALL_STATE(5072)] = 119068, - [SMALL_STATE(5073)] = 119111, - [SMALL_STATE(5074)] = 119156, - [SMALL_STATE(5075)] = 119201, - [SMALL_STATE(5076)] = 119246, - [SMALL_STATE(5077)] = 119289, - [SMALL_STATE(5078)] = 119344, - [SMALL_STATE(5079)] = 119389, - [SMALL_STATE(5080)] = 119432, - [SMALL_STATE(5081)] = 119477, - [SMALL_STATE(5082)] = 119522, - [SMALL_STATE(5083)] = 119567, - [SMALL_STATE(5084)] = 119610, - [SMALL_STATE(5085)] = 119653, - [SMALL_STATE(5086)] = 119696, - [SMALL_STATE(5087)] = 119739, - [SMALL_STATE(5088)] = 119782, - [SMALL_STATE(5089)] = 119837, - [SMALL_STATE(5090)] = 119880, - [SMALL_STATE(5091)] = 119923, - [SMALL_STATE(5092)] = 119968, - [SMALL_STATE(5093)] = 120033, - [SMALL_STATE(5094)] = 120076, - [SMALL_STATE(5095)] = 120131, - [SMALL_STATE(5096)] = 120174, - [SMALL_STATE(5097)] = 120219, - [SMALL_STATE(5098)] = 120262, - [SMALL_STATE(5099)] = 120307, - [SMALL_STATE(5100)] = 120362, - [SMALL_STATE(5101)] = 120427, - [SMALL_STATE(5102)] = 120472, - [SMALL_STATE(5103)] = 120527, - [SMALL_STATE(5104)] = 120572, - [SMALL_STATE(5105)] = 120615, - [SMALL_STATE(5106)] = 120670, - [SMALL_STATE(5107)] = 120715, - [SMALL_STATE(5108)] = 120758, - [SMALL_STATE(5109)] = 120801, - [SMALL_STATE(5110)] = 120846, - [SMALL_STATE(5111)] = 120911, - [SMALL_STATE(5112)] = 120954, - [SMALL_STATE(5113)] = 120997, - [SMALL_STATE(5114)] = 121052, - [SMALL_STATE(5115)] = 121095, - [SMALL_STATE(5116)] = 121138, - [SMALL_STATE(5117)] = 121181, - [SMALL_STATE(5118)] = 121236, - [SMALL_STATE(5119)] = 121279, - [SMALL_STATE(5120)] = 121324, - [SMALL_STATE(5121)] = 121367, - [SMALL_STATE(5122)] = 121417, - [SMALL_STATE(5123)] = 121459, - [SMALL_STATE(5124)] = 121501, - [SMALL_STATE(5125)] = 121543, - [SMALL_STATE(5126)] = 121585, - [SMALL_STATE(5127)] = 121645, - [SMALL_STATE(5128)] = 121687, - [SMALL_STATE(5129)] = 121729, - [SMALL_STATE(5130)] = 121771, - [SMALL_STATE(5131)] = 121831, - [SMALL_STATE(5132)] = 121873, - [SMALL_STATE(5133)] = 121933, - [SMALL_STATE(5134)] = 121975, - [SMALL_STATE(5135)] = 122017, - [SMALL_STATE(5136)] = 122059, - [SMALL_STATE(5137)] = 122101, - [SMALL_STATE(5138)] = 122147, - [SMALL_STATE(5139)] = 122193, - [SMALL_STATE(5140)] = 122235, - [SMALL_STATE(5141)] = 122281, - [SMALL_STATE(5142)] = 122323, - [SMALL_STATE(5143)] = 122365, - [SMALL_STATE(5144)] = 122407, - [SMALL_STATE(5145)] = 122449, - [SMALL_STATE(5146)] = 122491, - [SMALL_STATE(5147)] = 122533, - [SMALL_STATE(5148)] = 122575, - [SMALL_STATE(5149)] = 122617, - [SMALL_STATE(5150)] = 122663, - [SMALL_STATE(5151)] = 122705, - [SMALL_STATE(5152)] = 122747, - [SMALL_STATE(5153)] = 122789, - [SMALL_STATE(5154)] = 122831, - [SMALL_STATE(5155)] = 122873, - [SMALL_STATE(5156)] = 122915, - [SMALL_STATE(5157)] = 122957, - [SMALL_STATE(5158)] = 122999, - [SMALL_STATE(5159)] = 123041, - [SMALL_STATE(5160)] = 123083, - [SMALL_STATE(5161)] = 123125, - [SMALL_STATE(5162)] = 123185, - [SMALL_STATE(5163)] = 123233, - [SMALL_STATE(5164)] = 123275, - [SMALL_STATE(5165)] = 123317, - [SMALL_STATE(5166)] = 123359, - [SMALL_STATE(5167)] = 123411, - [SMALL_STATE(5168)] = 123457, - [SMALL_STATE(5169)] = 123499, - [SMALL_STATE(5170)] = 123541, - [SMALL_STATE(5171)] = 123583, - [SMALL_STATE(5172)] = 123625, - [SMALL_STATE(5173)] = 123667, - [SMALL_STATE(5174)] = 123709, - [SMALL_STATE(5175)] = 123751, - [SMALL_STATE(5176)] = 123803, - [SMALL_STATE(5177)] = 123845, - [SMALL_STATE(5178)] = 123887, - [SMALL_STATE(5179)] = 123929, - [SMALL_STATE(5180)] = 123977, - [SMALL_STATE(5181)] = 124019, - [SMALL_STATE(5182)] = 124061, - [SMALL_STATE(5183)] = 124103, - [SMALL_STATE(5184)] = 124155, - [SMALL_STATE(5185)] = 124197, - [SMALL_STATE(5186)] = 124245, - [SMALL_STATE(5187)] = 124307, - [SMALL_STATE(5188)] = 124349, - [SMALL_STATE(5189)] = 124391, - [SMALL_STATE(5190)] = 124433, - [SMALL_STATE(5191)] = 124485, - [SMALL_STATE(5192)] = 124527, - [SMALL_STATE(5193)] = 124569, - [SMALL_STATE(5194)] = 124611, - [SMALL_STATE(5195)] = 124653, - [SMALL_STATE(5196)] = 124695, - [SMALL_STATE(5197)] = 124737, - [SMALL_STATE(5198)] = 124779, - [SMALL_STATE(5199)] = 124821, - [SMALL_STATE(5200)] = 124863, - [SMALL_STATE(5201)] = 124905, - [SMALL_STATE(5202)] = 124964, - [SMALL_STATE(5203)] = 125021, - [SMALL_STATE(5204)] = 125068, - [SMALL_STATE(5205)] = 125111, - [SMALL_STATE(5206)] = 125162, - [SMALL_STATE(5207)] = 125221, - [SMALL_STATE(5208)] = 125278, - [SMALL_STATE(5209)] = 125337, - [SMALL_STATE(5210)] = 125396, - [SMALL_STATE(5211)] = 125455, - [SMALL_STATE(5212)] = 125514, - [SMALL_STATE(5213)] = 125571, - [SMALL_STATE(5214)] = 125630, - [SMALL_STATE(5215)] = 125673, - [SMALL_STATE(5216)] = 125732, - [SMALL_STATE(5217)] = 125783, - [SMALL_STATE(5218)] = 125842, - [SMALL_STATE(5219)] = 125901, - [SMALL_STATE(5220)] = 125958, - [SMALL_STATE(5221)] = 126017, - [SMALL_STATE(5222)] = 126076, - [SMALL_STATE(5223)] = 126127, - [SMALL_STATE(5224)] = 126174, - [SMALL_STATE(5225)] = 126225, - [SMALL_STATE(5226)] = 126272, - [SMALL_STATE(5227)] = 126317, - [SMALL_STATE(5228)] = 126374, - [SMALL_STATE(5229)] = 126425, - [SMALL_STATE(5230)] = 126482, - [SMALL_STATE(5231)] = 126533, - [SMALL_STATE(5232)] = 126576, - [SMALL_STATE(5233)] = 126625, - [SMALL_STATE(5234)] = 126676, - [SMALL_STATE(5235)] = 126727, - [SMALL_STATE(5236)] = 126774, - [SMALL_STATE(5237)] = 126833, - [SMALL_STATE(5238)] = 126884, - [SMALL_STATE(5239)] = 126941, - [SMALL_STATE(5240)] = 126992, - [SMALL_STATE(5241)] = 127051, - [SMALL_STATE(5242)] = 127110, - [SMALL_STATE(5243)] = 127167, - [SMALL_STATE(5244)] = 127218, - [SMALL_STATE(5245)] = 127275, - [SMALL_STATE(5246)] = 127334, - [SMALL_STATE(5247)] = 127385, - [SMALL_STATE(5248)] = 127444, - [SMALL_STATE(5249)] = 127487, - [SMALL_STATE(5250)] = 127546, - [SMALL_STATE(5251)] = 127603, - [SMALL_STATE(5252)] = 127660, - [SMALL_STATE(5253)] = 127705, - [SMALL_STATE(5254)] = 127762, - [SMALL_STATE(5255)] = 127813, - [SMALL_STATE(5256)] = 127870, - [SMALL_STATE(5257)] = 127927, - [SMALL_STATE(5258)] = 127978, - [SMALL_STATE(5259)] = 128037, - [SMALL_STATE(5260)] = 128084, - [SMALL_STATE(5261)] = 128141, - [SMALL_STATE(5262)] = 128192, - [SMALL_STATE(5263)] = 128249, - [SMALL_STATE(5264)] = 128300, - [SMALL_STATE(5265)] = 128357, - [SMALL_STATE(5266)] = 128414, - [SMALL_STATE(5267)] = 128471, - [SMALL_STATE(5268)] = 128528, - [SMALL_STATE(5269)] = 128571, - [SMALL_STATE(5270)] = 128630, - [SMALL_STATE(5271)] = 128689, - [SMALL_STATE(5272)] = 128734, - [SMALL_STATE(5273)] = 128793, - [SMALL_STATE(5274)] = 128844, - [SMALL_STATE(5275)] = 128901, - [SMALL_STATE(5276)] = 128958, - [SMALL_STATE(5277)] = 129003, - [SMALL_STATE(5278)] = 129054, - [SMALL_STATE(5279)] = 129105, - [SMALL_STATE(5280)] = 129156, - [SMALL_STATE(5281)] = 129215, - [SMALL_STATE(5282)] = 129274, - [SMALL_STATE(5283)] = 129325, - [SMALL_STATE(5284)] = 129384, - [SMALL_STATE(5285)] = 129441, - [SMALL_STATE(5286)] = 129492, - [SMALL_STATE(5287)] = 129549, - [SMALL_STATE(5288)] = 129608, - [SMALL_STATE(5289)] = 129665, - [SMALL_STATE(5290)] = 129722, - [SMALL_STATE(5291)] = 129779, - [SMALL_STATE(5292)] = 129836, - [SMALL_STATE(5293)] = 129893, - [SMALL_STATE(5294)] = 129950, - [SMALL_STATE(5295)] = 130007, - [SMALL_STATE(5296)] = 130054, - [SMALL_STATE(5297)] = 130105, - [SMALL_STATE(5298)] = 130156, - [SMALL_STATE(5299)] = 130207, - [SMALL_STATE(5300)] = 130252, - [SMALL_STATE(5301)] = 130303, - [SMALL_STATE(5302)] = 130350, - [SMALL_STATE(5303)] = 130409, - [SMALL_STATE(5304)] = 130460, - [SMALL_STATE(5305)] = 130517, - [SMALL_STATE(5306)] = 130564, - [SMALL_STATE(5307)] = 130615, - [SMALL_STATE(5308)] = 130672, - [SMALL_STATE(5309)] = 130731, - [SMALL_STATE(5310)] = 130782, - [SMALL_STATE(5311)] = 130829, - [SMALL_STATE(5312)] = 130880, - [SMALL_STATE(5313)] = 130937, - [SMALL_STATE(5314)] = 130984, - [SMALL_STATE(5315)] = 131041, - [SMALL_STATE(5316)] = 131100, - [SMALL_STATE(5317)] = 131157, - [SMALL_STATE(5318)] = 131214, - [SMALL_STATE(5319)] = 131257, - [SMALL_STATE(5320)] = 131314, - [SMALL_STATE(5321)] = 131359, - [SMALL_STATE(5322)] = 131416, - [SMALL_STATE(5323)] = 131459, - [SMALL_STATE(5324)] = 131508, - [SMALL_STATE(5325)] = 131551, - [SMALL_STATE(5326)] = 131594, - [SMALL_STATE(5327)] = 131651, - [SMALL_STATE(5328)] = 131708, - [SMALL_STATE(5329)] = 131755, - [SMALL_STATE(5330)] = 131812, - [SMALL_STATE(5331)] = 131871, - [SMALL_STATE(5332)] = 131918, - [SMALL_STATE(5333)] = 131977, - [SMALL_STATE(5334)] = 132034, - [SMALL_STATE(5335)] = 132093, - [SMALL_STATE(5336)] = 132144, - [SMALL_STATE(5337)] = 132201, - [SMALL_STATE(5338)] = 132252, - [SMALL_STATE(5339)] = 132309, - [SMALL_STATE(5340)] = 132360, - [SMALL_STATE(5341)] = 132403, - [SMALL_STATE(5342)] = 132454, - [SMALL_STATE(5343)] = 132505, - [SMALL_STATE(5344)] = 132562, - [SMALL_STATE(5345)] = 132619, - [SMALL_STATE(5346)] = 132678, - [SMALL_STATE(5347)] = 132737, - [SMALL_STATE(5348)] = 132796, - [SMALL_STATE(5349)] = 132841, - [SMALL_STATE(5350)] = 132900, - [SMALL_STATE(5351)] = 132947, - [SMALL_STATE(5352)] = 132992, - [SMALL_STATE(5353)] = 133037, - [SMALL_STATE(5354)] = 133088, - [SMALL_STATE(5355)] = 133139, - [SMALL_STATE(5356)] = 133196, - [SMALL_STATE(5357)] = 133247, - [SMALL_STATE(5358)] = 133294, - [SMALL_STATE(5359)] = 133345, - [SMALL_STATE(5360)] = 133396, - [SMALL_STATE(5361)] = 133453, - [SMALL_STATE(5362)] = 133510, - [SMALL_STATE(5363)] = 133567, - [SMALL_STATE(5364)] = 133626, - [SMALL_STATE(5365)] = 133677, - [SMALL_STATE(5366)] = 133734, - [SMALL_STATE(5367)] = 133785, - [SMALL_STATE(5368)] = 133844, - [SMALL_STATE(5369)] = 133903, - [SMALL_STATE(5370)] = 133950, - [SMALL_STATE(5371)] = 134007, - [SMALL_STATE(5372)] = 134064, - [SMALL_STATE(5373)] = 134123, - [SMALL_STATE(5374)] = 134174, - [SMALL_STATE(5375)] = 134233, - [SMALL_STATE(5376)] = 134290, - [SMALL_STATE(5377)] = 134341, - [SMALL_STATE(5378)] = 134398, - [SMALL_STATE(5379)] = 134457, - [SMALL_STATE(5380)] = 134508, - [SMALL_STATE(5381)] = 134559, - [SMALL_STATE(5382)] = 134616, - [SMALL_STATE(5383)] = 134673, - [SMALL_STATE(5384)] = 134730, - [SMALL_STATE(5385)] = 134774, - [SMALL_STATE(5386)] = 134830, - [SMALL_STATE(5387)] = 134886, - [SMALL_STATE(5388)] = 134928, - [SMALL_STATE(5389)] = 134970, - [SMALL_STATE(5390)] = 135014, - [SMALL_STATE(5391)] = 135058, - [SMALL_STATE(5392)] = 135104, - [SMALL_STATE(5393)] = 135148, - [SMALL_STATE(5394)] = 135190, - [SMALL_STATE(5395)] = 135234, - [SMALL_STATE(5396)] = 135290, - [SMALL_STATE(5397)] = 135332, - [SMALL_STATE(5398)] = 135388, - [SMALL_STATE(5399)] = 135430, - [SMALL_STATE(5400)] = 135474, - [SMALL_STATE(5401)] = 135520, - [SMALL_STATE(5402)] = 135574, - [SMALL_STATE(5403)] = 135628, - [SMALL_STATE(5404)] = 135684, - [SMALL_STATE(5405)] = 135740, - [SMALL_STATE(5406)] = 135796, - [SMALL_STATE(5407)] = 135852, - [SMALL_STATE(5408)] = 135908, - [SMALL_STATE(5409)] = 135952, - [SMALL_STATE(5410)] = 135996, - [SMALL_STATE(5411)] = 136038, - [SMALL_STATE(5412)] = 136084, - [SMALL_STATE(5413)] = 136140, - [SMALL_STATE(5414)] = 136196, - [SMALL_STATE(5415)] = 136252, - [SMALL_STATE(5416)] = 136296, - [SMALL_STATE(5417)] = 136340, - [SMALL_STATE(5418)] = 136384, - [SMALL_STATE(5419)] = 136438, - [SMALL_STATE(5420)] = 136494, - [SMALL_STATE(5421)] = 136548, - [SMALL_STATE(5422)] = 136604, - [SMALL_STATE(5423)] = 136660, - [SMALL_STATE(5424)] = 136716, - [SMALL_STATE(5425)] = 136772, - [SMALL_STATE(5426)] = 136826, - [SMALL_STATE(5427)] = 136882, - [SMALL_STATE(5428)] = 136938, - [SMALL_STATE(5429)] = 136994, - [SMALL_STATE(5430)] = 137050, - [SMALL_STATE(5431)] = 137106, - [SMALL_STATE(5432)] = 137162, - [SMALL_STATE(5433)] = 137218, - [SMALL_STATE(5434)] = 137274, - [SMALL_STATE(5435)] = 137318, - [SMALL_STATE(5436)] = 137366, - [SMALL_STATE(5437)] = 137422, - [SMALL_STATE(5438)] = 137466, - [SMALL_STATE(5439)] = 137522, - [SMALL_STATE(5440)] = 137578, - [SMALL_STATE(5441)] = 137634, - [SMALL_STATE(5442)] = 137690, - [SMALL_STATE(5443)] = 137746, - [SMALL_STATE(5444)] = 137802, - [SMALL_STATE(5445)] = 137858, - [SMALL_STATE(5446)] = 137914, - [SMALL_STATE(5447)] = 137970, - [SMALL_STATE(5448)] = 138026, - [SMALL_STATE(5449)] = 138066, - [SMALL_STATE(5450)] = 138106, - [SMALL_STATE(5451)] = 138162, - [SMALL_STATE(5452)] = 138218, - [SMALL_STATE(5453)] = 138274, - [SMALL_STATE(5454)] = 138330, - [SMALL_STATE(5455)] = 138370, - [SMALL_STATE(5456)] = 138426, - [SMALL_STATE(5457)] = 138482, - [SMALL_STATE(5458)] = 138538, - [SMALL_STATE(5459)] = 138594, - [SMALL_STATE(5460)] = 138648, - [SMALL_STATE(5461)] = 138694, - [SMALL_STATE(5462)] = 138750, - [SMALL_STATE(5463)] = 138806, - [SMALL_STATE(5464)] = 138862, - [SMALL_STATE(5465)] = 138918, - [SMALL_STATE(5466)] = 138974, - [SMALL_STATE(5467)] = 139030, - [SMALL_STATE(5468)] = 139086, - [SMALL_STATE(5469)] = 139142, - [SMALL_STATE(5470)] = 139198, - [SMALL_STATE(5471)] = 139254, - [SMALL_STATE(5472)] = 139298, - [SMALL_STATE(5473)] = 139346, - [SMALL_STATE(5474)] = 139402, - [SMALL_STATE(5475)] = 139458, - [SMALL_STATE(5476)] = 139514, - [SMALL_STATE(5477)] = 139570, - [SMALL_STATE(5478)] = 139618, - [SMALL_STATE(5479)] = 139674, - [SMALL_STATE(5480)] = 139730, - [SMALL_STATE(5481)] = 139786, - [SMALL_STATE(5482)] = 139842, - [SMALL_STATE(5483)] = 139890, - [SMALL_STATE(5484)] = 139930, - [SMALL_STATE(5485)] = 139986, - [SMALL_STATE(5486)] = 140030, - [SMALL_STATE(5487)] = 140086, - [SMALL_STATE(5488)] = 140142, - [SMALL_STATE(5489)] = 140182, - [SMALL_STATE(5490)] = 140222, - [SMALL_STATE(5491)] = 140278, - [SMALL_STATE(5492)] = 140324, - [SMALL_STATE(5493)] = 140370, - [SMALL_STATE(5494)] = 140426, - [SMALL_STATE(5495)] = 140470, - [SMALL_STATE(5496)] = 140514, - [SMALL_STATE(5497)] = 140558, - [SMALL_STATE(5498)] = 140604, - [SMALL_STATE(5499)] = 140648, - [SMALL_STATE(5500)] = 140694, - [SMALL_STATE(5501)] = 140748, - [SMALL_STATE(5502)] = 140804, - [SMALL_STATE(5503)] = 140860, - [SMALL_STATE(5504)] = 140916, - [SMALL_STATE(5505)] = 140956, - [SMALL_STATE(5506)] = 141012, - [SMALL_STATE(5507)] = 141068, - [SMALL_STATE(5508)] = 141124, - [SMALL_STATE(5509)] = 141168, - [SMALL_STATE(5510)] = 141212, - [SMALL_STATE(5511)] = 141268, - [SMALL_STATE(5512)] = 141324, - [SMALL_STATE(5513)] = 141380, - [SMALL_STATE(5514)] = 141436, - [SMALL_STATE(5515)] = 141482, - [SMALL_STATE(5516)] = 141538, - [SMALL_STATE(5517)] = 141592, - [SMALL_STATE(5518)] = 141648, - [SMALL_STATE(5519)] = 141694, - [SMALL_STATE(5520)] = 141750, - [SMALL_STATE(5521)] = 141806, - [SMALL_STATE(5522)] = 141862, - [SMALL_STATE(5523)] = 141918, - [SMALL_STATE(5524)] = 141974, - [SMALL_STATE(5525)] = 142030, - [SMALL_STATE(5526)] = 142076, - [SMALL_STATE(5527)] = 142132, - [SMALL_STATE(5528)] = 142178, - [SMALL_STATE(5529)] = 142234, - [SMALL_STATE(5530)] = 142290, - [SMALL_STATE(5531)] = 142346, - [SMALL_STATE(5532)] = 142402, - [SMALL_STATE(5533)] = 142458, - [SMALL_STATE(5534)] = 142506, - [SMALL_STATE(5535)] = 142562, - [SMALL_STATE(5536)] = 142606, - [SMALL_STATE(5537)] = 142650, - [SMALL_STATE(5538)] = 142706, - [SMALL_STATE(5539)] = 142750, - [SMALL_STATE(5540)] = 142806, - [SMALL_STATE(5541)] = 142862, - [SMALL_STATE(5542)] = 142918, - [SMALL_STATE(5543)] = 142974, - [SMALL_STATE(5544)] = 143030, - [SMALL_STATE(5545)] = 143074, - [SMALL_STATE(5546)] = 143130, - [SMALL_STATE(5547)] = 143186, - [SMALL_STATE(5548)] = 143230, - [SMALL_STATE(5549)] = 143286, - [SMALL_STATE(5550)] = 143330, - [SMALL_STATE(5551)] = 143386, - [SMALL_STATE(5552)] = 143442, - [SMALL_STATE(5553)] = 143496, - [SMALL_STATE(5554)] = 143552, - [SMALL_STATE(5555)] = 143608, - [SMALL_STATE(5556)] = 143652, - [SMALL_STATE(5557)] = 143708, - [SMALL_STATE(5558)] = 143752, - [SMALL_STATE(5559)] = 143796, - [SMALL_STATE(5560)] = 143852, - [SMALL_STATE(5561)] = 143908, - [SMALL_STATE(5562)] = 143964, - [SMALL_STATE(5563)] = 144018, - [SMALL_STATE(5564)] = 144074, - [SMALL_STATE(5565)] = 144122, - [SMALL_STATE(5566)] = 144178, - [SMALL_STATE(5567)] = 144234, - [SMALL_STATE(5568)] = 144278, - [SMALL_STATE(5569)] = 144334, - [SMALL_STATE(5570)] = 144390, - [SMALL_STATE(5571)] = 144432, - [SMALL_STATE(5572)] = 144478, - [SMALL_STATE(5573)] = 144534, - [SMALL_STATE(5574)] = 144576, - [SMALL_STATE(5575)] = 144632, - [SMALL_STATE(5576)] = 144674, - [SMALL_STATE(5577)] = 144716, - [SMALL_STATE(5578)] = 144772, - [SMALL_STATE(5579)] = 144816, - [SMALL_STATE(5580)] = 144872, - [SMALL_STATE(5581)] = 144928, - [SMALL_STATE(5582)] = 144984, - [SMALL_STATE(5583)] = 145026, - [SMALL_STATE(5584)] = 145068, - [SMALL_STATE(5585)] = 145110, - [SMALL_STATE(5586)] = 145166, - [SMALL_STATE(5587)] = 145214, - [SMALL_STATE(5588)] = 145270, - [SMALL_STATE(5589)] = 145311, - [SMALL_STATE(5590)] = 145362, - [SMALL_STATE(5591)] = 145403, - [SMALL_STATE(5592)] = 145444, - [SMALL_STATE(5593)] = 145487, - [SMALL_STATE(5594)] = 145530, - [SMALL_STATE(5595)] = 145581, - [SMALL_STATE(5596)] = 145620, - [SMALL_STATE(5597)] = 145673, - [SMALL_STATE(5598)] = 145724, - [SMALL_STATE(5599)] = 145777, - [SMALL_STATE(5600)] = 145818, - [SMALL_STATE(5601)] = 145859, - [SMALL_STATE(5602)] = 145904, - [SMALL_STATE(5603)] = 145945, - [SMALL_STATE(5604)] = 145988, - [SMALL_STATE(5605)] = 146029, - [SMALL_STATE(5606)] = 146070, - [SMALL_STATE(5607)] = 146119, - [SMALL_STATE(5608)] = 146160, - [SMALL_STATE(5609)] = 146211, - [SMALL_STATE(5610)] = 146252, - [SMALL_STATE(5611)] = 146293, - [SMALL_STATE(5612)] = 146344, - [SMALL_STATE(5613)] = 146397, - [SMALL_STATE(5614)] = 146438, - [SMALL_STATE(5615)] = 146491, - [SMALL_STATE(5616)] = 146530, - [SMALL_STATE(5617)] = 146583, - [SMALL_STATE(5618)] = 146626, - [SMALL_STATE(5619)] = 146669, - [SMALL_STATE(5620)] = 146712, - [SMALL_STATE(5621)] = 146757, - [SMALL_STATE(5622)] = 146810, - [SMALL_STATE(5623)] = 146853, - [SMALL_STATE(5624)] = 146896, - [SMALL_STATE(5625)] = 146939, - [SMALL_STATE(5626)] = 146980, - [SMALL_STATE(5627)] = 147033, - [SMALL_STATE(5628)] = 147076, - [SMALL_STATE(5629)] = 147119, - [SMALL_STATE(5630)] = 147172, - [SMALL_STATE(5631)] = 147221, - [SMALL_STATE(5632)] = 147274, - [SMALL_STATE(5633)] = 147325, - [SMALL_STATE(5634)] = 147368, - [SMALL_STATE(5635)] = 147421, - [SMALL_STATE(5636)] = 147464, - [SMALL_STATE(5637)] = 147505, - [SMALL_STATE(5638)] = 147548, - [SMALL_STATE(5639)] = 147591, - [SMALL_STATE(5640)] = 147644, - [SMALL_STATE(5641)] = 147685, - [SMALL_STATE(5642)] = 147726, - [SMALL_STATE(5643)] = 147767, - [SMALL_STATE(5644)] = 147810, - [SMALL_STATE(5645)] = 147851, - [SMALL_STATE(5646)] = 147892, - [SMALL_STATE(5647)] = 147933, - [SMALL_STATE(5648)] = 147974, - [SMALL_STATE(5649)] = 148015, - [SMALL_STATE(5650)] = 148066, - [SMALL_STATE(5651)] = 148107, - [SMALL_STATE(5652)] = 148160, - [SMALL_STATE(5653)] = 148199, - [SMALL_STATE(5654)] = 148240, - [SMALL_STATE(5655)] = 148285, - [SMALL_STATE(5656)] = 148326, - [SMALL_STATE(5657)] = 148367, - [SMALL_STATE(5658)] = 148408, - [SMALL_STATE(5659)] = 148461, - [SMALL_STATE(5660)] = 148514, - [SMALL_STATE(5661)] = 148567, - [SMALL_STATE(5662)] = 148620, - [SMALL_STATE(5663)] = 148673, - [SMALL_STATE(5664)] = 148726, - [SMALL_STATE(5665)] = 148779, - [SMALL_STATE(5666)] = 148832, - [SMALL_STATE(5667)] = 148883, - [SMALL_STATE(5668)] = 148936, - [SMALL_STATE(5669)] = 148977, - [SMALL_STATE(5670)] = 149018, - [SMALL_STATE(5671)] = 149071, - [SMALL_STATE(5672)] = 149112, - [SMALL_STATE(5673)] = 149153, - [SMALL_STATE(5674)] = 149206, - [SMALL_STATE(5675)] = 149247, - [SMALL_STATE(5676)] = 149300, - [SMALL_STATE(5677)] = 149341, - [SMALL_STATE(5678)] = 149394, - [SMALL_STATE(5679)] = 149435, - [SMALL_STATE(5680)] = 149476, - [SMALL_STATE(5681)] = 149529, - [SMALL_STATE(5682)] = 149570, - [SMALL_STATE(5683)] = 149611, - [SMALL_STATE(5684)] = 149652, - [SMALL_STATE(5685)] = 149705, - [SMALL_STATE(5686)] = 149746, - [SMALL_STATE(5687)] = 149787, - [SMALL_STATE(5688)] = 149828, - [SMALL_STATE(5689)] = 149881, - [SMALL_STATE(5690)] = 149934, - [SMALL_STATE(5691)] = 149985, - [SMALL_STATE(5692)] = 150026, - [SMALL_STATE(5693)] = 150077, - [SMALL_STATE(5694)] = 150118, - [SMALL_STATE(5695)] = 150159, - [SMALL_STATE(5696)] = 150212, - [SMALL_STATE(5697)] = 150265, - [SMALL_STATE(5698)] = 150306, - [SMALL_STATE(5699)] = 150359, - [SMALL_STATE(5700)] = 150412, - [SMALL_STATE(5701)] = 150465, - [SMALL_STATE(5702)] = 150518, - [SMALL_STATE(5703)] = 150559, - [SMALL_STATE(5704)] = 150612, - [SMALL_STATE(5705)] = 150653, - [SMALL_STATE(5706)] = 150706, - [SMALL_STATE(5707)] = 150747, - [SMALL_STATE(5708)] = 150788, - [SMALL_STATE(5709)] = 150841, - [SMALL_STATE(5710)] = 150882, - [SMALL_STATE(5711)] = 150923, - [SMALL_STATE(5712)] = 150976, - [SMALL_STATE(5713)] = 151029, - [SMALL_STATE(5714)] = 151070, - [SMALL_STATE(5715)] = 151111, - [SMALL_STATE(5716)] = 151162, - [SMALL_STATE(5717)] = 151215, - [SMALL_STATE(5718)] = 151256, - [SMALL_STATE(5719)] = 151309, - [SMALL_STATE(5720)] = 151362, - [SMALL_STATE(5721)] = 151415, - [SMALL_STATE(5722)] = 151468, - [SMALL_STATE(5723)] = 151509, - [SMALL_STATE(5724)] = 151550, - [SMALL_STATE(5725)] = 151603, - [SMALL_STATE(5726)] = 151656, - [SMALL_STATE(5727)] = 151697, - [SMALL_STATE(5728)] = 151738, - [SMALL_STATE(5729)] = 151791, - [SMALL_STATE(5730)] = 151832, - [SMALL_STATE(5731)] = 151885, - [SMALL_STATE(5732)] = 151925, - [SMALL_STATE(5733)] = 151975, - [SMALL_STATE(5734)] = 152015, - [SMALL_STATE(5735)] = 152065, - [SMALL_STATE(5736)] = 152105, - [SMALL_STATE(5737)] = 152145, - [SMALL_STATE(5738)] = 152185, - [SMALL_STATE(5739)] = 152225, - [SMALL_STATE(5740)] = 152265, - [SMALL_STATE(5741)] = 152305, - [SMALL_STATE(5742)] = 152345, - [SMALL_STATE(5743)] = 152385, - [SMALL_STATE(5744)] = 152425, - [SMALL_STATE(5745)] = 152465, - [SMALL_STATE(5746)] = 152505, - [SMALL_STATE(5747)] = 152545, - [SMALL_STATE(5748)] = 152585, - [SMALL_STATE(5749)] = 152635, - [SMALL_STATE(5750)] = 152683, - [SMALL_STATE(5751)] = 152723, - [SMALL_STATE(5752)] = 152763, - [SMALL_STATE(5753)] = 152803, - [SMALL_STATE(5754)] = 152843, - [SMALL_STATE(5755)] = 152883, - [SMALL_STATE(5756)] = 152923, - [SMALL_STATE(5757)] = 152963, - [SMALL_STATE(5758)] = 153003, - [SMALL_STATE(5759)] = 153053, - [SMALL_STATE(5760)] = 153093, - [SMALL_STATE(5761)] = 153133, - [SMALL_STATE(5762)] = 153173, - [SMALL_STATE(5763)] = 153213, - [SMALL_STATE(5764)] = 153253, - [SMALL_STATE(5765)] = 153293, - [SMALL_STATE(5766)] = 153343, - [SMALL_STATE(5767)] = 153393, - [SMALL_STATE(5768)] = 153441, - [SMALL_STATE(5769)] = 153481, - [SMALL_STATE(5770)] = 153521, - [SMALL_STATE(5771)] = 153561, - [SMALL_STATE(5772)] = 153611, - [SMALL_STATE(5773)] = 153659, - [SMALL_STATE(5774)] = 153709, - [SMALL_STATE(5775)] = 153757, - [SMALL_STATE(5776)] = 153807, - [SMALL_STATE(5777)] = 153845, - [SMALL_STATE(5778)] = 153883, - [SMALL_STATE(5779)] = 153933, - [SMALL_STATE(5780)] = 153983, - [SMALL_STATE(5781)] = 154033, - [SMALL_STATE(5782)] = 154077, - [SMALL_STATE(5783)] = 154125, - [SMALL_STATE(5784)] = 154175, - [SMALL_STATE(5785)] = 154225, - [SMALL_STATE(5786)] = 154265, - [SMALL_STATE(5787)] = 154313, - [SMALL_STATE(5788)] = 154353, - [SMALL_STATE(5789)] = 154393, - [SMALL_STATE(5790)] = 154433, - [SMALL_STATE(5791)] = 154473, - [SMALL_STATE(5792)] = 154521, - [SMALL_STATE(5793)] = 154569, - [SMALL_STATE(5794)] = 154609, - [SMALL_STATE(5795)] = 154653, - [SMALL_STATE(5796)] = 154693, - [SMALL_STATE(5797)] = 154743, - [SMALL_STATE(5798)] = 154793, - [SMALL_STATE(5799)] = 154843, - [SMALL_STATE(5800)] = 154893, - [SMALL_STATE(5801)] = 154941, - [SMALL_STATE(5802)] = 154991, - [SMALL_STATE(5803)] = 155041, - [SMALL_STATE(5804)] = 155081, - [SMALL_STATE(5805)] = 155131, - [SMALL_STATE(5806)] = 155171, - [SMALL_STATE(5807)] = 155211, - [SMALL_STATE(5808)] = 155261, - [SMALL_STATE(5809)] = 155309, - [SMALL_STATE(5810)] = 155349, - [SMALL_STATE(5811)] = 155397, - [SMALL_STATE(5812)] = 155437, - [SMALL_STATE(5813)] = 155487, - [SMALL_STATE(5814)] = 155529, - [SMALL_STATE(5815)] = 155577, - [SMALL_STATE(5816)] = 155627, - [SMALL_STATE(5817)] = 155677, - [SMALL_STATE(5818)] = 155717, - [SMALL_STATE(5819)] = 155767, - [SMALL_STATE(5820)] = 155809, - [SMALL_STATE(5821)] = 155859, - [SMALL_STATE(5822)] = 155909, - [SMALL_STATE(5823)] = 155949, - [SMALL_STATE(5824)] = 155989, - [SMALL_STATE(5825)] = 156029, - [SMALL_STATE(5826)] = 156079, - [SMALL_STATE(5827)] = 156129, - [SMALL_STATE(5828)] = 156169, - [SMALL_STATE(5829)] = 156219, - [SMALL_STATE(5830)] = 156269, - [SMALL_STATE(5831)] = 156319, - [SMALL_STATE(5832)] = 156367, - [SMALL_STATE(5833)] = 156417, - [SMALL_STATE(5834)] = 156465, - [SMALL_STATE(5835)] = 156515, - [SMALL_STATE(5836)] = 156565, - [SMALL_STATE(5837)] = 156603, - [SMALL_STATE(5838)] = 156651, - [SMALL_STATE(5839)] = 156701, - [SMALL_STATE(5840)] = 156751, - [SMALL_STATE(5841)] = 156801, - [SMALL_STATE(5842)] = 156851, - [SMALL_STATE(5843)] = 156899, - [SMALL_STATE(5844)] = 156947, - [SMALL_STATE(5845)] = 156997, - [SMALL_STATE(5846)] = 157047, - [SMALL_STATE(5847)] = 157095, - [SMALL_STATE(5848)] = 157145, - [SMALL_STATE(5849)] = 157195, - [SMALL_STATE(5850)] = 157237, - [SMALL_STATE(5851)] = 157287, - [SMALL_STATE(5852)] = 157337, - [SMALL_STATE(5853)] = 157374, - [SMALL_STATE(5854)] = 157411, - [SMALL_STATE(5855)] = 157458, - [SMALL_STATE(5856)] = 157495, - [SMALL_STATE(5857)] = 157534, - [SMALL_STATE(5858)] = 157581, - [SMALL_STATE(5859)] = 157622, - [SMALL_STATE(5860)] = 157665, - [SMALL_STATE(5861)] = 157704, - [SMALL_STATE(5862)] = 157746, - [SMALL_STATE(5863)] = 157782, - [SMALL_STATE(5864)] = 157826, - [SMALL_STATE(5865)] = 157870, - [SMALL_STATE(5866)] = 157914, - [SMALL_STATE(5867)] = 157950, - [SMALL_STATE(5868)] = 157986, - [SMALL_STATE(5869)] = 158030, - [SMALL_STATE(5870)] = 158074, - [SMALL_STATE(5871)] = 158118, - [SMALL_STATE(5872)] = 158162, - [SMALL_STATE(5873)] = 158206, - [SMALL_STATE(5874)] = 158250, - [SMALL_STATE(5875)] = 158288, - [SMALL_STATE(5876)] = 158332, - [SMALL_STATE(5877)] = 158376, - [SMALL_STATE(5878)] = 158420, - [SMALL_STATE(5879)] = 158462, - [SMALL_STATE(5880)] = 158504, - [SMALL_STATE(5881)] = 158546, - [SMALL_STATE(5882)] = 158590, - [SMALL_STATE(5883)] = 158634, - [SMALL_STATE(5884)] = 158678, - [SMALL_STATE(5885)] = 158722, - [SMALL_STATE(5886)] = 158766, - [SMALL_STATE(5887)] = 158810, - [SMALL_STATE(5888)] = 158854, - [SMALL_STATE(5889)] = 158896, - [SMALL_STATE(5890)] = 158938, - [SMALL_STATE(5891)] = 158982, - [SMALL_STATE(5892)] = 159026, - [SMALL_STATE(5893)] = 159070, - [SMALL_STATE(5894)] = 159114, - [SMALL_STATE(5895)] = 159158, - [SMALL_STATE(5896)] = 159200, - [SMALL_STATE(5897)] = 159244, - [SMALL_STATE(5898)] = 159286, - [SMALL_STATE(5899)] = 159330, - [SMALL_STATE(5900)] = 159372, - [SMALL_STATE(5901)] = 159414, - [SMALL_STATE(5902)] = 159458, - [SMALL_STATE(5903)] = 159500, - [SMALL_STATE(5904)] = 159544, - [SMALL_STATE(5905)] = 159582, - [SMALL_STATE(5906)] = 159624, - [SMALL_STATE(5907)] = 159666, - [SMALL_STATE(5908)] = 159710, - [SMALL_STATE(5909)] = 159754, - [SMALL_STATE(5910)] = 159798, - [SMALL_STATE(5911)] = 159842, - [SMALL_STATE(5912)] = 159886, - [SMALL_STATE(5913)] = 159930, - [SMALL_STATE(5914)] = 159974, - [SMALL_STATE(5915)] = 160016, - [SMALL_STATE(5916)] = 160060, - [SMALL_STATE(5917)] = 160104, - [SMALL_STATE(5918)] = 160148, - [SMALL_STATE(5919)] = 160192, - [SMALL_STATE(5920)] = 160236, - [SMALL_STATE(5921)] = 160280, - [SMALL_STATE(5922)] = 160322, - [SMALL_STATE(5923)] = 160366, - [SMALL_STATE(5924)] = 160410, - [SMALL_STATE(5925)] = 160454, - [SMALL_STATE(5926)] = 160498, - [SMALL_STATE(5927)] = 160534, - [SMALL_STATE(5928)] = 160578, - [SMALL_STATE(5929)] = 160620, - [SMALL_STATE(5930)] = 160664, - [SMALL_STATE(5931)] = 160708, - [SMALL_STATE(5932)] = 160750, - [SMALL_STATE(5933)] = 160792, - [SMALL_STATE(5934)] = 160836, - [SMALL_STATE(5935)] = 160880, - [SMALL_STATE(5936)] = 160924, - [SMALL_STATE(5937)] = 160966, - [SMALL_STATE(5938)] = 161010, - [SMALL_STATE(5939)] = 161054, - [SMALL_STATE(5940)] = 161098, - [SMALL_STATE(5941)] = 161142, - [SMALL_STATE(5942)] = 161178, - [SMALL_STATE(5943)] = 161222, - [SMALL_STATE(5944)] = 161266, - [SMALL_STATE(5945)] = 161308, - [SMALL_STATE(5946)] = 161350, - [SMALL_STATE(5947)] = 161394, - [SMALL_STATE(5948)] = 161438, - [SMALL_STATE(5949)] = 161482, - [SMALL_STATE(5950)] = 161524, - [SMALL_STATE(5951)] = 161568, - [SMALL_STATE(5952)] = 161612, - [SMALL_STATE(5953)] = 161656, - [SMALL_STATE(5954)] = 161698, - [SMALL_STATE(5955)] = 161742, - [SMALL_STATE(5956)] = 161786, - [SMALL_STATE(5957)] = 161828, - [SMALL_STATE(5958)] = 161870, - [SMALL_STATE(5959)] = 161914, - [SMALL_STATE(5960)] = 161958, - [SMALL_STATE(5961)] = 162002, - [SMALL_STATE(5962)] = 162046, - [SMALL_STATE(5963)] = 162082, - [SMALL_STATE(5964)] = 162124, - [SMALL_STATE(5965)] = 162168, - [SMALL_STATE(5966)] = 162212, - [SMALL_STATE(5967)] = 162256, - [SMALL_STATE(5968)] = 162300, - [SMALL_STATE(5969)] = 162344, - [SMALL_STATE(5970)] = 162388, - [SMALL_STATE(5971)] = 162432, - [SMALL_STATE(5972)] = 162474, - [SMALL_STATE(5973)] = 162518, - [SMALL_STATE(5974)] = 162562, - [SMALL_STATE(5975)] = 162606, - [SMALL_STATE(5976)] = 162650, - [SMALL_STATE(5977)] = 162694, - [SMALL_STATE(5978)] = 162736, - [SMALL_STATE(5979)] = 162780, - [SMALL_STATE(5980)] = 162824, - [SMALL_STATE(5981)] = 162868, - [SMALL_STATE(5982)] = 162910, - [SMALL_STATE(5983)] = 162954, - [SMALL_STATE(5984)] = 162996, - [SMALL_STATE(5985)] = 163038, - [SMALL_STATE(5986)] = 163082, - [SMALL_STATE(5987)] = 163126, - [SMALL_STATE(5988)] = 163168, - [SMALL_STATE(5989)] = 163210, - [SMALL_STATE(5990)] = 163254, - [SMALL_STATE(5991)] = 163298, - [SMALL_STATE(5992)] = 163342, - [SMALL_STATE(5993)] = 163386, - [SMALL_STATE(5994)] = 163428, - [SMALL_STATE(5995)] = 163472, - [SMALL_STATE(5996)] = 163513, - [SMALL_STATE(5997)] = 163554, - [SMALL_STATE(5998)] = 163595, - [SMALL_STATE(5999)] = 163630, - [SMALL_STATE(6000)] = 163671, - [SMALL_STATE(6001)] = 163706, - [SMALL_STATE(6002)] = 163741, - [SMALL_STATE(6003)] = 163776, - [SMALL_STATE(6004)] = 163811, - [SMALL_STATE(6005)] = 163846, - [SMALL_STATE(6006)] = 163881, - [SMALL_STATE(6007)] = 163922, - [SMALL_STATE(6008)] = 163957, - [SMALL_STATE(6009)] = 163992, - [SMALL_STATE(6010)] = 164027, - [SMALL_STATE(6011)] = 164062, - [SMALL_STATE(6012)] = 164097, - [SMALL_STATE(6013)] = 164132, - [SMALL_STATE(6014)] = 164173, - [SMALL_STATE(6015)] = 164208, - [SMALL_STATE(6016)] = 164247, - [SMALL_STATE(6017)] = 164288, - [SMALL_STATE(6018)] = 164323, - [SMALL_STATE(6019)] = 164364, - [SMALL_STATE(6020)] = 164399, - [SMALL_STATE(6021)] = 164440, - [SMALL_STATE(6022)] = 164481, - [SMALL_STATE(6023)] = 164516, - [SMALL_STATE(6024)] = 164551, - [SMALL_STATE(6025)] = 164590, - [SMALL_STATE(6026)] = 164631, - [SMALL_STATE(6027)] = 164666, - [SMALL_STATE(6028)] = 164701, - [SMALL_STATE(6029)] = 164736, - [SMALL_STATE(6030)] = 164777, - [SMALL_STATE(6031)] = 164818, - [SMALL_STATE(6032)] = 164853, - [SMALL_STATE(6033)] = 164894, - [SMALL_STATE(6034)] = 164933, - [SMALL_STATE(6035)] = 164968, - [SMALL_STATE(6036)] = 165009, - [SMALL_STATE(6037)] = 165050, - [SMALL_STATE(6038)] = 165085, - [SMALL_STATE(6039)] = 165120, - [SMALL_STATE(6040)] = 165155, - [SMALL_STATE(6041)] = 165196, - [SMALL_STATE(6042)] = 165231, - [SMALL_STATE(6043)] = 165266, - [SMALL_STATE(6044)] = 165301, - [SMALL_STATE(6045)] = 165336, - [SMALL_STATE(6046)] = 165377, - [SMALL_STATE(6047)] = 165418, - [SMALL_STATE(6048)] = 165453, - [SMALL_STATE(6049)] = 165494, - [SMALL_STATE(6050)] = 165535, - [SMALL_STATE(6051)] = 165570, - [SMALL_STATE(6052)] = 165605, - [SMALL_STATE(6053)] = 165646, - [SMALL_STATE(6054)] = 165687, - [SMALL_STATE(6055)] = 165722, - [SMALL_STATE(6056)] = 165763, - [SMALL_STATE(6057)] = 165800, - [SMALL_STATE(6058)] = 165841, - [SMALL_STATE(6059)] = 165882, - [SMALL_STATE(6060)] = 165917, - [SMALL_STATE(6061)] = 165952, - [SMALL_STATE(6062)] = 165993, - [SMALL_STATE(6063)] = 166028, - [SMALL_STATE(6064)] = 166063, - [SMALL_STATE(6065)] = 166098, - [SMALL_STATE(6066)] = 166139, - [SMALL_STATE(6067)] = 166174, - [SMALL_STATE(6068)] = 166215, - [SMALL_STATE(6069)] = 166256, - [SMALL_STATE(6070)] = 166291, - [SMALL_STATE(6071)] = 166326, - [SMALL_STATE(6072)] = 166361, - [SMALL_STATE(6073)] = 166396, - [SMALL_STATE(6074)] = 166435, - [SMALL_STATE(6075)] = 166470, - [SMALL_STATE(6076)] = 166511, - [SMALL_STATE(6077)] = 166552, - [SMALL_STATE(6078)] = 166591, - [SMALL_STATE(6079)] = 166632, - [SMALL_STATE(6080)] = 166673, - [SMALL_STATE(6081)] = 166708, - [SMALL_STATE(6082)] = 166749, - [SMALL_STATE(6083)] = 166790, - [SMALL_STATE(6084)] = 166831, - [SMALL_STATE(6085)] = 166872, - [SMALL_STATE(6086)] = 166913, - [SMALL_STATE(6087)] = 166948, - [SMALL_STATE(6088)] = 166989, - [SMALL_STATE(6089)] = 167030, - [SMALL_STATE(6090)] = 167071, - [SMALL_STATE(6091)] = 167112, - [SMALL_STATE(6092)] = 167153, - [SMALL_STATE(6093)] = 167188, - [SMALL_STATE(6094)] = 167229, - [SMALL_STATE(6095)] = 167270, - [SMALL_STATE(6096)] = 167311, - [SMALL_STATE(6097)] = 167352, - [SMALL_STATE(6098)] = 167387, - [SMALL_STATE(6099)] = 167428, - [SMALL_STATE(6100)] = 167469, - [SMALL_STATE(6101)] = 167508, - [SMALL_STATE(6102)] = 167549, - [SMALL_STATE(6103)] = 167590, - [SMALL_STATE(6104)] = 167625, - [SMALL_STATE(6105)] = 167666, - [SMALL_STATE(6106)] = 167707, - [SMALL_STATE(6107)] = 167748, - [SMALL_STATE(6108)] = 167787, - [SMALL_STATE(6109)] = 167828, - [SMALL_STATE(6110)] = 167869, - [SMALL_STATE(6111)] = 167910, - [SMALL_STATE(6112)] = 167951, - [SMALL_STATE(6113)] = 167992, - [SMALL_STATE(6114)] = 168033, - [SMALL_STATE(6115)] = 168072, - [SMALL_STATE(6116)] = 168113, - [SMALL_STATE(6117)] = 168154, - [SMALL_STATE(6118)] = 168189, - [SMALL_STATE(6119)] = 168230, - [SMALL_STATE(6120)] = 168266, - [SMALL_STATE(6121)] = 168304, - [SMALL_STATE(6122)] = 168338, - [SMALL_STATE(6123)] = 168374, - [SMALL_STATE(6124)] = 168410, - [SMALL_STATE(6125)] = 168448, - [SMALL_STATE(6126)] = 168484, - [SMALL_STATE(6127)] = 168520, - [SMALL_STATE(6128)] = 168558, - [SMALL_STATE(6129)] = 168596, - [SMALL_STATE(6130)] = 168630, - [SMALL_STATE(6131)] = 168666, - [SMALL_STATE(6132)] = 168704, - [SMALL_STATE(6133)] = 168738, - [SMALL_STATE(6134)] = 168774, - [SMALL_STATE(6135)] = 168812, - [SMALL_STATE(6136)] = 168846, - [SMALL_STATE(6137)] = 168880, - [SMALL_STATE(6138)] = 168914, - [SMALL_STATE(6139)] = 168948, - [SMALL_STATE(6140)] = 168984, - [SMALL_STATE(6141)] = 169022, - [SMALL_STATE(6142)] = 169060, - [SMALL_STATE(6143)] = 169098, - [SMALL_STATE(6144)] = 169136, - [SMALL_STATE(6145)] = 169170, - [SMALL_STATE(6146)] = 169208, - [SMALL_STATE(6147)] = 169242, - [SMALL_STATE(6148)] = 169280, - [SMALL_STATE(6149)] = 169318, - [SMALL_STATE(6150)] = 169356, - [SMALL_STATE(6151)] = 169390, - [SMALL_STATE(6152)] = 169424, - [SMALL_STATE(6153)] = 169460, - [SMALL_STATE(6154)] = 169496, - [SMALL_STATE(6155)] = 169534, - [SMALL_STATE(6156)] = 169572, - [SMALL_STATE(6157)] = 169606, - [SMALL_STATE(6158)] = 169642, - [SMALL_STATE(6159)] = 169680, - [SMALL_STATE(6160)] = 169718, - [SMALL_STATE(6161)] = 169754, - [SMALL_STATE(6162)] = 169792, - [SMALL_STATE(6163)] = 169830, - [SMALL_STATE(6164)] = 169868, - [SMALL_STATE(6165)] = 169904, - [SMALL_STATE(6166)] = 169938, - [SMALL_STATE(6167)] = 169976, - [SMALL_STATE(6168)] = 170010, - [SMALL_STATE(6169)] = 170044, - [SMALL_STATE(6170)] = 170082, - [SMALL_STATE(6171)] = 170118, - [SMALL_STATE(6172)] = 170156, - [SMALL_STATE(6173)] = 170194, - [SMALL_STATE(6174)] = 170230, - [SMALL_STATE(6175)] = 170264, - [SMALL_STATE(6176)] = 170298, - [SMALL_STATE(6177)] = 170336, - [SMALL_STATE(6178)] = 170370, - [SMALL_STATE(6179)] = 170408, - [SMALL_STATE(6180)] = 170442, - [SMALL_STATE(6181)] = 170480, - [SMALL_STATE(6182)] = 170516, - [SMALL_STATE(6183)] = 170554, - [SMALL_STATE(6184)] = 170588, - [SMALL_STATE(6185)] = 170626, - [SMALL_STATE(6186)] = 170664, - [SMALL_STATE(6187)] = 170698, - [SMALL_STATE(6188)] = 170732, - [SMALL_STATE(6189)] = 170768, - [SMALL_STATE(6190)] = 170806, - [SMALL_STATE(6191)] = 170844, - [SMALL_STATE(6192)] = 170882, - [SMALL_STATE(6193)] = 170920, - [SMALL_STATE(6194)] = 170954, - [SMALL_STATE(6195)] = 170990, - [SMALL_STATE(6196)] = 171026, - [SMALL_STATE(6197)] = 171062, - [SMALL_STATE(6198)] = 171100, - [SMALL_STATE(6199)] = 171134, - [SMALL_STATE(6200)] = 171170, - [SMALL_STATE(6201)] = 171208, - [SMALL_STATE(6202)] = 171242, - [SMALL_STATE(6203)] = 171280, - [SMALL_STATE(6204)] = 171318, - [SMALL_STATE(6205)] = 171354, - [SMALL_STATE(6206)] = 171392, - [SMALL_STATE(6207)] = 171428, - [SMALL_STATE(6208)] = 171464, - [SMALL_STATE(6209)] = 171502, - [SMALL_STATE(6210)] = 171540, - [SMALL_STATE(6211)] = 171578, - [SMALL_STATE(6212)] = 171614, - [SMALL_STATE(6213)] = 171648, - [SMALL_STATE(6214)] = 171684, - [SMALL_STATE(6215)] = 171720, - [SMALL_STATE(6216)] = 171758, - [SMALL_STATE(6217)] = 171792, - [SMALL_STATE(6218)] = 171828, - [SMALL_STATE(6219)] = 171864, - [SMALL_STATE(6220)] = 171900, - [SMALL_STATE(6221)] = 171938, - [SMALL_STATE(6222)] = 171976, - [SMALL_STATE(6223)] = 172010, - [SMALL_STATE(6224)] = 172048, - [SMALL_STATE(6225)] = 172086, - [SMALL_STATE(6226)] = 172124, - [SMALL_STATE(6227)] = 172162, - [SMALL_STATE(6228)] = 172198, - [SMALL_STATE(6229)] = 172234, - [SMALL_STATE(6230)] = 172272, - [SMALL_STATE(6231)] = 172310, - [SMALL_STATE(6232)] = 172348, - [SMALL_STATE(6233)] = 172384, - [SMALL_STATE(6234)] = 172422, - [SMALL_STATE(6235)] = 172460, - [SMALL_STATE(6236)] = 172496, - [SMALL_STATE(6237)] = 172534, - [SMALL_STATE(6238)] = 172572, - [SMALL_STATE(6239)] = 172610, - [SMALL_STATE(6240)] = 172648, - [SMALL_STATE(6241)] = 172686, - [SMALL_STATE(6242)] = 172724, - [SMALL_STATE(6243)] = 172760, - [SMALL_STATE(6244)] = 172798, - [SMALL_STATE(6245)] = 172834, - [SMALL_STATE(6246)] = 172872, - [SMALL_STATE(6247)] = 172910, - [SMALL_STATE(6248)] = 172948, - [SMALL_STATE(6249)] = 172986, - [SMALL_STATE(6250)] = 173024, - [SMALL_STATE(6251)] = 173062, - [SMALL_STATE(6252)] = 173100, - [SMALL_STATE(6253)] = 173138, - [SMALL_STATE(6254)] = 173176, - [SMALL_STATE(6255)] = 173214, - [SMALL_STATE(6256)] = 173252, - [SMALL_STATE(6257)] = 173288, - [SMALL_STATE(6258)] = 173326, - [SMALL_STATE(6259)] = 173364, - [SMALL_STATE(6260)] = 173402, - [SMALL_STATE(6261)] = 173438, - [SMALL_STATE(6262)] = 173476, - [SMALL_STATE(6263)] = 173514, - [SMALL_STATE(6264)] = 173552, - [SMALL_STATE(6265)] = 173590, - [SMALL_STATE(6266)] = 173626, - [SMALL_STATE(6267)] = 173664, - [SMALL_STATE(6268)] = 173702, - [SMALL_STATE(6269)] = 173740, - [SMALL_STATE(6270)] = 173778, - [SMALL_STATE(6271)] = 173816, - [SMALL_STATE(6272)] = 173854, - [SMALL_STATE(6273)] = 173892, - [SMALL_STATE(6274)] = 173928, - [SMALL_STATE(6275)] = 173966, - [SMALL_STATE(6276)] = 174004, - [SMALL_STATE(6277)] = 174042, - [SMALL_STATE(6278)] = 174080, - [SMALL_STATE(6279)] = 174118, - [SMALL_STATE(6280)] = 174156, - [SMALL_STATE(6281)] = 174194, - [SMALL_STATE(6282)] = 174232, - [SMALL_STATE(6283)] = 174270, - [SMALL_STATE(6284)] = 174308, - [SMALL_STATE(6285)] = 174346, - [SMALL_STATE(6286)] = 174384, - [SMALL_STATE(6287)] = 174422, - [SMALL_STATE(6288)] = 174460, - [SMALL_STATE(6289)] = 174494, - [SMALL_STATE(6290)] = 174530, - [SMALL_STATE(6291)] = 174568, - [SMALL_STATE(6292)] = 174606, - [SMALL_STATE(6293)] = 174644, - [SMALL_STATE(6294)] = 174682, - [SMALL_STATE(6295)] = 174720, - [SMALL_STATE(6296)] = 174758, - [SMALL_STATE(6297)] = 174796, - [SMALL_STATE(6298)] = 174834, - [SMALL_STATE(6299)] = 174872, - [SMALL_STATE(6300)] = 174910, - [SMALL_STATE(6301)] = 174946, - [SMALL_STATE(6302)] = 174984, - [SMALL_STATE(6303)] = 175022, - [SMALL_STATE(6304)] = 175060, - [SMALL_STATE(6305)] = 175098, - [SMALL_STATE(6306)] = 175136, - [SMALL_STATE(6307)] = 175174, - [SMALL_STATE(6308)] = 175212, - [SMALL_STATE(6309)] = 175250, - [SMALL_STATE(6310)] = 175288, - [SMALL_STATE(6311)] = 175326, - [SMALL_STATE(6312)] = 175364, - [SMALL_STATE(6313)] = 175402, - [SMALL_STATE(6314)] = 175440, - [SMALL_STATE(6315)] = 175478, - [SMALL_STATE(6316)] = 175516, - [SMALL_STATE(6317)] = 175552, - [SMALL_STATE(6318)] = 175588, - [SMALL_STATE(6319)] = 175626, - [SMALL_STATE(6320)] = 175664, - [SMALL_STATE(6321)] = 175702, - [SMALL_STATE(6322)] = 175740, - [SMALL_STATE(6323)] = 175778, - [SMALL_STATE(6324)] = 175816, - [SMALL_STATE(6325)] = 175854, - [SMALL_STATE(6326)] = 175892, - [SMALL_STATE(6327)] = 175930, - [SMALL_STATE(6328)] = 175968, - [SMALL_STATE(6329)] = 176006, - [SMALL_STATE(6330)] = 176044, - [SMALL_STATE(6331)] = 176082, - [SMALL_STATE(6332)] = 176120, - [SMALL_STATE(6333)] = 176158, - [SMALL_STATE(6334)] = 176196, - [SMALL_STATE(6335)] = 176234, - [SMALL_STATE(6336)] = 176270, - [SMALL_STATE(6337)] = 176308, - [SMALL_STATE(6338)] = 176346, - [SMALL_STATE(6339)] = 176384, - [SMALL_STATE(6340)] = 176422, - [SMALL_STATE(6341)] = 176460, - [SMALL_STATE(6342)] = 176498, - [SMALL_STATE(6343)] = 176536, - [SMALL_STATE(6344)] = 176572, - [SMALL_STATE(6345)] = 176610, - [SMALL_STATE(6346)] = 176648, - [SMALL_STATE(6347)] = 176684, - [SMALL_STATE(6348)] = 176722, - [SMALL_STATE(6349)] = 176760, - [SMALL_STATE(6350)] = 176796, - [SMALL_STATE(6351)] = 176834, - [SMALL_STATE(6352)] = 176868, - [SMALL_STATE(6353)] = 176904, - [SMALL_STATE(6354)] = 176942, - [SMALL_STATE(6355)] = 176978, - [SMALL_STATE(6356)] = 177016, - [SMALL_STATE(6357)] = 177054, - [SMALL_STATE(6358)] = 177092, - [SMALL_STATE(6359)] = 177130, - [SMALL_STATE(6360)] = 177168, - [SMALL_STATE(6361)] = 177206, - [SMALL_STATE(6362)] = 177244, - [SMALL_STATE(6363)] = 177282, - [SMALL_STATE(6364)] = 177318, - [SMALL_STATE(6365)] = 177356, - [SMALL_STATE(6366)] = 177394, - [SMALL_STATE(6367)] = 177430, - [SMALL_STATE(6368)] = 177468, - [SMALL_STATE(6369)] = 177506, - [SMALL_STATE(6370)] = 177544, - [SMALL_STATE(6371)] = 177582, - [SMALL_STATE(6372)] = 177620, - [SMALL_STATE(6373)] = 177654, - [SMALL_STATE(6374)] = 177692, - [SMALL_STATE(6375)] = 177727, - [SMALL_STATE(6376)] = 177760, - [SMALL_STATE(6377)] = 177795, - [SMALL_STATE(6378)] = 177830, - [SMALL_STATE(6379)] = 177865, - [SMALL_STATE(6380)] = 177898, - [SMALL_STATE(6381)] = 177933, - [SMALL_STATE(6382)] = 177966, - [SMALL_STATE(6383)] = 178001, - [SMALL_STATE(6384)] = 178036, - [SMALL_STATE(6385)] = 178071, - [SMALL_STATE(6386)] = 178106, - [SMALL_STATE(6387)] = 178143, - [SMALL_STATE(6388)] = 178178, - [SMALL_STATE(6389)] = 178213, - [SMALL_STATE(6390)] = 178248, - [SMALL_STATE(6391)] = 178281, - [SMALL_STATE(6392)] = 178314, - [SMALL_STATE(6393)] = 178347, - [SMALL_STATE(6394)] = 178380, - [SMALL_STATE(6395)] = 178413, - [SMALL_STATE(6396)] = 178446, - [SMALL_STATE(6397)] = 178479, - [SMALL_STATE(6398)] = 178512, - [SMALL_STATE(6399)] = 178545, - [SMALL_STATE(6400)] = 178580, - [SMALL_STATE(6401)] = 178613, - [SMALL_STATE(6402)] = 178648, - [SMALL_STATE(6403)] = 178683, - [SMALL_STATE(6404)] = 178718, - [SMALL_STATE(6405)] = 178753, - [SMALL_STATE(6406)] = 178786, - [SMALL_STATE(6407)] = 178819, - [SMALL_STATE(6408)] = 178854, - [SMALL_STATE(6409)] = 178889, - [SMALL_STATE(6410)] = 178924, - [SMALL_STATE(6411)] = 178957, - [SMALL_STATE(6412)] = 178992, - [SMALL_STATE(6413)] = 179027, - [SMALL_STATE(6414)] = 179062, - [SMALL_STATE(6415)] = 179095, - [SMALL_STATE(6416)] = 179130, - [SMALL_STATE(6417)] = 179167, - [SMALL_STATE(6418)] = 179200, - [SMALL_STATE(6419)] = 179235, - [SMALL_STATE(6420)] = 179270, - [SMALL_STATE(6421)] = 179305, - [SMALL_STATE(6422)] = 179340, - [SMALL_STATE(6423)] = 179375, - [SMALL_STATE(6424)] = 179408, - [SMALL_STATE(6425)] = 179443, - [SMALL_STATE(6426)] = 179476, - [SMALL_STATE(6427)] = 179511, - [SMALL_STATE(6428)] = 179544, - [SMALL_STATE(6429)] = 179579, - [SMALL_STATE(6430)] = 179614, - [SMALL_STATE(6431)] = 179649, - [SMALL_STATE(6432)] = 179684, - [SMALL_STATE(6433)] = 179719, - [SMALL_STATE(6434)] = 179754, - [SMALL_STATE(6435)] = 179789, - [SMALL_STATE(6436)] = 179824, - [SMALL_STATE(6437)] = 179859, - [SMALL_STATE(6438)] = 179894, - [SMALL_STATE(6439)] = 179929, - [SMALL_STATE(6440)] = 179962, - [SMALL_STATE(6441)] = 179997, - [SMALL_STATE(6442)] = 180032, - [SMALL_STATE(6443)] = 180067, - [SMALL_STATE(6444)] = 180100, - [SMALL_STATE(6445)] = 180135, - [SMALL_STATE(6446)] = 180170, - [SMALL_STATE(6447)] = 180205, - [SMALL_STATE(6448)] = 180240, - [SMALL_STATE(6449)] = 180275, - [SMALL_STATE(6450)] = 180310, - [SMALL_STATE(6451)] = 180345, - [SMALL_STATE(6452)] = 180380, - [SMALL_STATE(6453)] = 180415, - [SMALL_STATE(6454)] = 180450, - [SMALL_STATE(6455)] = 180483, - [SMALL_STATE(6456)] = 180518, - [SMALL_STATE(6457)] = 180551, - [SMALL_STATE(6458)] = 180584, - [SMALL_STATE(6459)] = 180619, - [SMALL_STATE(6460)] = 180654, - [SMALL_STATE(6461)] = 180689, - [SMALL_STATE(6462)] = 180724, - [SMALL_STATE(6463)] = 180759, - [SMALL_STATE(6464)] = 180792, - [SMALL_STATE(6465)] = 180825, - [SMALL_STATE(6466)] = 180860, - [SMALL_STATE(6467)] = 180895, - [SMALL_STATE(6468)] = 180930, - [SMALL_STATE(6469)] = 180965, - [SMALL_STATE(6470)] = 181000, - [SMALL_STATE(6471)] = 181035, - [SMALL_STATE(6472)] = 181070, - [SMALL_STATE(6473)] = 181105, - [SMALL_STATE(6474)] = 181138, - [SMALL_STATE(6475)] = 181173, - [SMALL_STATE(6476)] = 181208, - [SMALL_STATE(6477)] = 181241, - [SMALL_STATE(6478)] = 181276, - [SMALL_STATE(6479)] = 181311, - [SMALL_STATE(6480)] = 181346, - [SMALL_STATE(6481)] = 181381, - [SMALL_STATE(6482)] = 181414, - [SMALL_STATE(6483)] = 181449, - [SMALL_STATE(6484)] = 181484, - [SMALL_STATE(6485)] = 181519, - [SMALL_STATE(6486)] = 181552, - [SMALL_STATE(6487)] = 181585, - [SMALL_STATE(6488)] = 181620, - [SMALL_STATE(6489)] = 181655, - [SMALL_STATE(6490)] = 181690, - [SMALL_STATE(6491)] = 181725, - [SMALL_STATE(6492)] = 181760, - [SMALL_STATE(6493)] = 181795, - [SMALL_STATE(6494)] = 181832, - [SMALL_STATE(6495)] = 181867, - [SMALL_STATE(6496)] = 181900, - [SMALL_STATE(6497)] = 181935, - [SMALL_STATE(6498)] = 181970, - [SMALL_STATE(6499)] = 182005, - [SMALL_STATE(6500)] = 182040, - [SMALL_STATE(6501)] = 182075, - [SMALL_STATE(6502)] = 182110, - [SMALL_STATE(6503)] = 182143, - [SMALL_STATE(6504)] = 182178, - [SMALL_STATE(6505)] = 182213, - [SMALL_STATE(6506)] = 182246, - [SMALL_STATE(6507)] = 182281, - [SMALL_STATE(6508)] = 182316, - [SMALL_STATE(6509)] = 182351, - [SMALL_STATE(6510)] = 182386, - [SMALL_STATE(6511)] = 182421, - [SMALL_STATE(6512)] = 182456, - [SMALL_STATE(6513)] = 182491, - [SMALL_STATE(6514)] = 182526, - [SMALL_STATE(6515)] = 182561, - [SMALL_STATE(6516)] = 182596, - [SMALL_STATE(6517)] = 182631, - [SMALL_STATE(6518)] = 182666, - [SMALL_STATE(6519)] = 182701, - [SMALL_STATE(6520)] = 182736, - [SMALL_STATE(6521)] = 182771, - [SMALL_STATE(6522)] = 182806, - [SMALL_STATE(6523)] = 182841, - [SMALL_STATE(6524)] = 182874, - [SMALL_STATE(6525)] = 182909, - [SMALL_STATE(6526)] = 182944, - [SMALL_STATE(6527)] = 182977, - [SMALL_STATE(6528)] = 183012, - [SMALL_STATE(6529)] = 183045, - [SMALL_STATE(6530)] = 183080, - [SMALL_STATE(6531)] = 183115, - [SMALL_STATE(6532)] = 183148, - [SMALL_STATE(6533)] = 183181, - [SMALL_STATE(6534)] = 183216, - [SMALL_STATE(6535)] = 183251, - [SMALL_STATE(6536)] = 183286, - [SMALL_STATE(6537)] = 183321, - [SMALL_STATE(6538)] = 183356, - [SMALL_STATE(6539)] = 183391, - [SMALL_STATE(6540)] = 183426, - [SMALL_STATE(6541)] = 183461, - [SMALL_STATE(6542)] = 183496, - [SMALL_STATE(6543)] = 183531, - [SMALL_STATE(6544)] = 183566, - [SMALL_STATE(6545)] = 183601, - [SMALL_STATE(6546)] = 183636, - [SMALL_STATE(6547)] = 183671, - [SMALL_STATE(6548)] = 183706, - [SMALL_STATE(6549)] = 183741, - [SMALL_STATE(6550)] = 183776, - [SMALL_STATE(6551)] = 183813, - [SMALL_STATE(6552)] = 183848, - [SMALL_STATE(6553)] = 183883, - [SMALL_STATE(6554)] = 183918, - [SMALL_STATE(6555)] = 183953, - [SMALL_STATE(6556)] = 183988, - [SMALL_STATE(6557)] = 184023, - [SMALL_STATE(6558)] = 184056, - [SMALL_STATE(6559)] = 184091, - [SMALL_STATE(6560)] = 184124, - [SMALL_STATE(6561)] = 184159, - [SMALL_STATE(6562)] = 184194, - [SMALL_STATE(6563)] = 184229, - [SMALL_STATE(6564)] = 184264, - [SMALL_STATE(6565)] = 184299, - [SMALL_STATE(6566)] = 184334, - [SMALL_STATE(6567)] = 184371, - [SMALL_STATE(6568)] = 184406, - [SMALL_STATE(6569)] = 184441, - [SMALL_STATE(6570)] = 184476, - [SMALL_STATE(6571)] = 184511, - [SMALL_STATE(6572)] = 184546, - [SMALL_STATE(6573)] = 184581, - [SMALL_STATE(6574)] = 184618, - [SMALL_STATE(6575)] = 184653, - [SMALL_STATE(6576)] = 184688, - [SMALL_STATE(6577)] = 184723, - [SMALL_STATE(6578)] = 184758, - [SMALL_STATE(6579)] = 184791, - [SMALL_STATE(6580)] = 184826, - [SMALL_STATE(6581)] = 184861, - [SMALL_STATE(6582)] = 184896, - [SMALL_STATE(6583)] = 184931, - [SMALL_STATE(6584)] = 184968, - [SMALL_STATE(6585)] = 185003, - [SMALL_STATE(6586)] = 185038, - [SMALL_STATE(6587)] = 185073, - [SMALL_STATE(6588)] = 185108, - [SMALL_STATE(6589)] = 185143, - [SMALL_STATE(6590)] = 185178, - [SMALL_STATE(6591)] = 185213, - [SMALL_STATE(6592)] = 185248, - [SMALL_STATE(6593)] = 185283, - [SMALL_STATE(6594)] = 185318, - [SMALL_STATE(6595)] = 185353, - [SMALL_STATE(6596)] = 185388, - [SMALL_STATE(6597)] = 185423, - [SMALL_STATE(6598)] = 185458, - [SMALL_STATE(6599)] = 185493, - [SMALL_STATE(6600)] = 185528, - [SMALL_STATE(6601)] = 185563, - [SMALL_STATE(6602)] = 185598, - [SMALL_STATE(6603)] = 185633, - [SMALL_STATE(6604)] = 185668, - [SMALL_STATE(6605)] = 185703, - [SMALL_STATE(6606)] = 185738, - [SMALL_STATE(6607)] = 185773, - [SMALL_STATE(6608)] = 185808, - [SMALL_STATE(6609)] = 185843, - [SMALL_STATE(6610)] = 185878, - [SMALL_STATE(6611)] = 185913, - [SMALL_STATE(6612)] = 185948, - [SMALL_STATE(6613)] = 185983, - [SMALL_STATE(6614)] = 186018, - [SMALL_STATE(6615)] = 186053, - [SMALL_STATE(6616)] = 186088, - [SMALL_STATE(6617)] = 186123, - [SMALL_STATE(6618)] = 186158, - [SMALL_STATE(6619)] = 186193, - [SMALL_STATE(6620)] = 186228, - [SMALL_STATE(6621)] = 186263, - [SMALL_STATE(6622)] = 186296, - [SMALL_STATE(6623)] = 186331, - [SMALL_STATE(6624)] = 186366, - [SMALL_STATE(6625)] = 186399, - [SMALL_STATE(6626)] = 186434, - [SMALL_STATE(6627)] = 186469, - [SMALL_STATE(6628)] = 186504, - [SMALL_STATE(6629)] = 186539, - [SMALL_STATE(6630)] = 186574, - [SMALL_STATE(6631)] = 186609, - [SMALL_STATE(6632)] = 186644, - [SMALL_STATE(6633)] = 186679, - [SMALL_STATE(6634)] = 186714, - [SMALL_STATE(6635)] = 186749, - [SMALL_STATE(6636)] = 186782, - [SMALL_STATE(6637)] = 186815, - [SMALL_STATE(6638)] = 186848, - [SMALL_STATE(6639)] = 186883, - [SMALL_STATE(6640)] = 186918, - [SMALL_STATE(6641)] = 186953, - [SMALL_STATE(6642)] = 186988, - [SMALL_STATE(6643)] = 187023, - [SMALL_STATE(6644)] = 187058, - [SMALL_STATE(6645)] = 187093, - [SMALL_STATE(6646)] = 187128, - [SMALL_STATE(6647)] = 187163, - [SMALL_STATE(6648)] = 187198, - [SMALL_STATE(6649)] = 187233, - [SMALL_STATE(6650)] = 187268, - [SMALL_STATE(6651)] = 187301, - [SMALL_STATE(6652)] = 187336, - [SMALL_STATE(6653)] = 187371, - [SMALL_STATE(6654)] = 187406, - [SMALL_STATE(6655)] = 187441, - [SMALL_STATE(6656)] = 187476, - [SMALL_STATE(6657)] = 187511, - [SMALL_STATE(6658)] = 187546, - [SMALL_STATE(6659)] = 187581, - [SMALL_STATE(6660)] = 187616, - [SMALL_STATE(6661)] = 187651, - [SMALL_STATE(6662)] = 187686, - [SMALL_STATE(6663)] = 187721, - [SMALL_STATE(6664)] = 187756, - [SMALL_STATE(6665)] = 187791, - [SMALL_STATE(6666)] = 187826, - [SMALL_STATE(6667)] = 187861, - [SMALL_STATE(6668)] = 187896, - [SMALL_STATE(6669)] = 187931, - [SMALL_STATE(6670)] = 187966, - [SMALL_STATE(6671)] = 188001, - [SMALL_STATE(6672)] = 188036, - [SMALL_STATE(6673)] = 188071, - [SMALL_STATE(6674)] = 188106, - [SMALL_STATE(6675)] = 188141, - [SMALL_STATE(6676)] = 188176, - [SMALL_STATE(6677)] = 188211, - [SMALL_STATE(6678)] = 188244, - [SMALL_STATE(6679)] = 188281, - [SMALL_STATE(6680)] = 188316, - [SMALL_STATE(6681)] = 188351, - [SMALL_STATE(6682)] = 188384, - [SMALL_STATE(6683)] = 188417, - [SMALL_STATE(6684)] = 188452, - [SMALL_STATE(6685)] = 188487, - [SMALL_STATE(6686)] = 188520, - [SMALL_STATE(6687)] = 188555, - [SMALL_STATE(6688)] = 188590, - [SMALL_STATE(6689)] = 188625, - [SMALL_STATE(6690)] = 188660, - [SMALL_STATE(6691)] = 188695, - [SMALL_STATE(6692)] = 188730, - [SMALL_STATE(6693)] = 188765, - [SMALL_STATE(6694)] = 188800, - [SMALL_STATE(6695)] = 188837, - [SMALL_STATE(6696)] = 188872, - [SMALL_STATE(6697)] = 188907, - [SMALL_STATE(6698)] = 188942, - [SMALL_STATE(6699)] = 188977, - [SMALL_STATE(6700)] = 189012, - [SMALL_STATE(6701)] = 189047, - [SMALL_STATE(6702)] = 189082, - [SMALL_STATE(6703)] = 189117, - [SMALL_STATE(6704)] = 189152, - [SMALL_STATE(6705)] = 189187, - [SMALL_STATE(6706)] = 189222, - [SMALL_STATE(6707)] = 189257, - [SMALL_STATE(6708)] = 189292, - [SMALL_STATE(6709)] = 189327, - [SMALL_STATE(6710)] = 189362, - [SMALL_STATE(6711)] = 189397, - [SMALL_STATE(6712)] = 189432, - [SMALL_STATE(6713)] = 189467, - [SMALL_STATE(6714)] = 189502, - [SMALL_STATE(6715)] = 189537, - [SMALL_STATE(6716)] = 189572, - [SMALL_STATE(6717)] = 189607, - [SMALL_STATE(6718)] = 189642, - [SMALL_STATE(6719)] = 189675, - [SMALL_STATE(6720)] = 189710, - [SMALL_STATE(6721)] = 189743, - [SMALL_STATE(6722)] = 189778, - [SMALL_STATE(6723)] = 189813, - [SMALL_STATE(6724)] = 189848, - [SMALL_STATE(6725)] = 189883, - [SMALL_STATE(6726)] = 189918, - [SMALL_STATE(6727)] = 189953, - [SMALL_STATE(6728)] = 189988, - [SMALL_STATE(6729)] = 190023, - [SMALL_STATE(6730)] = 190058, - [SMALL_STATE(6731)] = 190093, - [SMALL_STATE(6732)] = 190128, - [SMALL_STATE(6733)] = 190163, - [SMALL_STATE(6734)] = 190198, - [SMALL_STATE(6735)] = 190233, - [SMALL_STATE(6736)] = 190268, - [SMALL_STATE(6737)] = 190303, - [SMALL_STATE(6738)] = 190338, - [SMALL_STATE(6739)] = 190371, - [SMALL_STATE(6740)] = 190406, - [SMALL_STATE(6741)] = 190441, - [SMALL_STATE(6742)] = 190476, - [SMALL_STATE(6743)] = 190511, - [SMALL_STATE(6744)] = 190546, - [SMALL_STATE(6745)] = 190581, - [SMALL_STATE(6746)] = 190616, - [SMALL_STATE(6747)] = 190651, - [SMALL_STATE(6748)] = 190686, - [SMALL_STATE(6749)] = 190721, - [SMALL_STATE(6750)] = 190756, - [SMALL_STATE(6751)] = 190791, - [SMALL_STATE(6752)] = 190828, - [SMALL_STATE(6753)] = 190863, - [SMALL_STATE(6754)] = 190898, - [SMALL_STATE(6755)] = 190933, - [SMALL_STATE(6756)] = 190968, - [SMALL_STATE(6757)] = 191003, - [SMALL_STATE(6758)] = 191038, - [SMALL_STATE(6759)] = 191073, - [SMALL_STATE(6760)] = 191108, - [SMALL_STATE(6761)] = 191143, - [SMALL_STATE(6762)] = 191178, - [SMALL_STATE(6763)] = 191213, - [SMALL_STATE(6764)] = 191246, - [SMALL_STATE(6765)] = 191281, - [SMALL_STATE(6766)] = 191316, - [SMALL_STATE(6767)] = 191349, - [SMALL_STATE(6768)] = 191382, - [SMALL_STATE(6769)] = 191417, - [SMALL_STATE(6770)] = 191452, - [SMALL_STATE(6771)] = 191487, - [SMALL_STATE(6772)] = 191522, - [SMALL_STATE(6773)] = 191557, - [SMALL_STATE(6774)] = 191592, - [SMALL_STATE(6775)] = 191627, - [SMALL_STATE(6776)] = 191662, - [SMALL_STATE(6777)] = 191697, - [SMALL_STATE(6778)] = 191732, - [SMALL_STATE(6779)] = 191767, - [SMALL_STATE(6780)] = 191802, - [SMALL_STATE(6781)] = 191837, - [SMALL_STATE(6782)] = 191872, - [SMALL_STATE(6783)] = 191907, - [SMALL_STATE(6784)] = 191942, - [SMALL_STATE(6785)] = 191977, - [SMALL_STATE(6786)] = 192012, - [SMALL_STATE(6787)] = 192047, - [SMALL_STATE(6788)] = 192082, - [SMALL_STATE(6789)] = 192117, - [SMALL_STATE(6790)] = 192152, - [SMALL_STATE(6791)] = 192187, - [SMALL_STATE(6792)] = 192222, - [SMALL_STATE(6793)] = 192257, - [SMALL_STATE(6794)] = 192290, - [SMALL_STATE(6795)] = 192325, - [SMALL_STATE(6796)] = 192360, - [SMALL_STATE(6797)] = 192393, - [SMALL_STATE(6798)] = 192428, - [SMALL_STATE(6799)] = 192463, - [SMALL_STATE(6800)] = 192498, - [SMALL_STATE(6801)] = 192533, - [SMALL_STATE(6802)] = 192568, - [SMALL_STATE(6803)] = 192603, - [SMALL_STATE(6804)] = 192638, - [SMALL_STATE(6805)] = 192673, - [SMALL_STATE(6806)] = 192708, - [SMALL_STATE(6807)] = 192743, - [SMALL_STATE(6808)] = 192778, - [SMALL_STATE(6809)] = 192813, - [SMALL_STATE(6810)] = 192848, - [SMALL_STATE(6811)] = 192883, - [SMALL_STATE(6812)] = 192918, - [SMALL_STATE(6813)] = 192953, - [SMALL_STATE(6814)] = 192986, - [SMALL_STATE(6815)] = 193021, - [SMALL_STATE(6816)] = 193056, - [SMALL_STATE(6817)] = 193089, - [SMALL_STATE(6818)] = 193124, - [SMALL_STATE(6819)] = 193159, - [SMALL_STATE(6820)] = 193194, - [SMALL_STATE(6821)] = 193229, - [SMALL_STATE(6822)] = 193264, - [SMALL_STATE(6823)] = 193299, - [SMALL_STATE(6824)] = 193332, - [SMALL_STATE(6825)] = 193365, - [SMALL_STATE(6826)] = 193398, - [SMALL_STATE(6827)] = 193433, - [SMALL_STATE(6828)] = 193468, - [SMALL_STATE(6829)] = 193503, - [SMALL_STATE(6830)] = 193536, - [SMALL_STATE(6831)] = 193571, - [SMALL_STATE(6832)] = 193606, - [SMALL_STATE(6833)] = 193641, - [SMALL_STATE(6834)] = 193676, - [SMALL_STATE(6835)] = 193711, - [SMALL_STATE(6836)] = 193746, - [SMALL_STATE(6837)] = 193781, - [SMALL_STATE(6838)] = 193816, - [SMALL_STATE(6839)] = 193851, - [SMALL_STATE(6840)] = 193886, - [SMALL_STATE(6841)] = 193921, - [SMALL_STATE(6842)] = 193956, - [SMALL_STATE(6843)] = 193991, - [SMALL_STATE(6844)] = 194026, - [SMALL_STATE(6845)] = 194061, - [SMALL_STATE(6846)] = 194096, - [SMALL_STATE(6847)] = 194131, - [SMALL_STATE(6848)] = 194166, - [SMALL_STATE(6849)] = 194201, - [SMALL_STATE(6850)] = 194236, - [SMALL_STATE(6851)] = 194271, - [SMALL_STATE(6852)] = 194304, - [SMALL_STATE(6853)] = 194339, - [SMALL_STATE(6854)] = 194372, - [SMALL_STATE(6855)] = 194407, - [SMALL_STATE(6856)] = 194440, - [SMALL_STATE(6857)] = 194475, - [SMALL_STATE(6858)] = 194508, - [SMALL_STATE(6859)] = 194543, - [SMALL_STATE(6860)] = 194578, - [SMALL_STATE(6861)] = 194613, - [SMALL_STATE(6862)] = 194648, - [SMALL_STATE(6863)] = 194683, - [SMALL_STATE(6864)] = 194718, - [SMALL_STATE(6865)] = 194753, - [SMALL_STATE(6866)] = 194788, - [SMALL_STATE(6867)] = 194823, - [SMALL_STATE(6868)] = 194856, - [SMALL_STATE(6869)] = 194891, - [SMALL_STATE(6870)] = 194926, - [SMALL_STATE(6871)] = 194961, - [SMALL_STATE(6872)] = 194996, - [SMALL_STATE(6873)] = 195031, - [SMALL_STATE(6874)] = 195064, - [SMALL_STATE(6875)] = 195099, - [SMALL_STATE(6876)] = 195132, - [SMALL_STATE(6877)] = 195165, - [SMALL_STATE(6878)] = 195200, - [SMALL_STATE(6879)] = 195235, - [SMALL_STATE(6880)] = 195270, - [SMALL_STATE(6881)] = 195305, - [SMALL_STATE(6882)] = 195340, - [SMALL_STATE(6883)] = 195375, - [SMALL_STATE(6884)] = 195410, - [SMALL_STATE(6885)] = 195445, - [SMALL_STATE(6886)] = 195480, - [SMALL_STATE(6887)] = 195515, - [SMALL_STATE(6888)] = 195550, - [SMALL_STATE(6889)] = 195585, - [SMALL_STATE(6890)] = 195618, - [SMALL_STATE(6891)] = 195653, - [SMALL_STATE(6892)] = 195686, - [SMALL_STATE(6893)] = 195721, - [SMALL_STATE(6894)] = 195754, - [SMALL_STATE(6895)] = 195789, - [SMALL_STATE(6896)] = 195822, - [SMALL_STATE(6897)] = 195857, - [SMALL_STATE(6898)] = 195892, - [SMALL_STATE(6899)] = 195927, - [SMALL_STATE(6900)] = 195962, - [SMALL_STATE(6901)] = 195997, - [SMALL_STATE(6902)] = 196032, - [SMALL_STATE(6903)] = 196067, - [SMALL_STATE(6904)] = 196102, - [SMALL_STATE(6905)] = 196137, - [SMALL_STATE(6906)] = 196172, - [SMALL_STATE(6907)] = 196207, - [SMALL_STATE(6908)] = 196242, - [SMALL_STATE(6909)] = 196277, - [SMALL_STATE(6910)] = 196312, - [SMALL_STATE(6911)] = 196345, - [SMALL_STATE(6912)] = 196378, - [SMALL_STATE(6913)] = 196413, - [SMALL_STATE(6914)] = 196448, - [SMALL_STATE(6915)] = 196483, - [SMALL_STATE(6916)] = 196518, - [SMALL_STATE(6917)] = 196553, - [SMALL_STATE(6918)] = 196588, - [SMALL_STATE(6919)] = 196623, - [SMALL_STATE(6920)] = 196658, - [SMALL_STATE(6921)] = 196693, - [SMALL_STATE(6922)] = 196728, - [SMALL_STATE(6923)] = 196763, - [SMALL_STATE(6924)] = 196798, - [SMALL_STATE(6925)] = 196833, - [SMALL_STATE(6926)] = 196868, - [SMALL_STATE(6927)] = 196903, - [SMALL_STATE(6928)] = 196938, - [SMALL_STATE(6929)] = 196973, - [SMALL_STATE(6930)] = 197008, - [SMALL_STATE(6931)] = 197043, - [SMALL_STATE(6932)] = 197076, - [SMALL_STATE(6933)] = 197111, - [SMALL_STATE(6934)] = 197146, - [SMALL_STATE(6935)] = 197181, - [SMALL_STATE(6936)] = 197216, - [SMALL_STATE(6937)] = 197249, - [SMALL_STATE(6938)] = 197282, - [SMALL_STATE(6939)] = 197315, - [SMALL_STATE(6940)] = 197350, - [SMALL_STATE(6941)] = 197385, - [SMALL_STATE(6942)] = 197420, - [SMALL_STATE(6943)] = 197455, - [SMALL_STATE(6944)] = 197490, - [SMALL_STATE(6945)] = 197525, - [SMALL_STATE(6946)] = 197560, - [SMALL_STATE(6947)] = 197595, - [SMALL_STATE(6948)] = 197630, - [SMALL_STATE(6949)] = 197665, - [SMALL_STATE(6950)] = 197698, - [SMALL_STATE(6951)] = 197733, - [SMALL_STATE(6952)] = 197768, - [SMALL_STATE(6953)] = 197801, - [SMALL_STATE(6954)] = 197836, - [SMALL_STATE(6955)] = 197871, - [SMALL_STATE(6956)] = 197906, - [SMALL_STATE(6957)] = 197941, - [SMALL_STATE(6958)] = 197974, - [SMALL_STATE(6959)] = 198009, - [SMALL_STATE(6960)] = 198044, - [SMALL_STATE(6961)] = 198077, - [SMALL_STATE(6962)] = 198112, - [SMALL_STATE(6963)] = 198147, - [SMALL_STATE(6964)] = 198182, - [SMALL_STATE(6965)] = 198217, - [SMALL_STATE(6966)] = 198252, - [SMALL_STATE(6967)] = 198284, - [SMALL_STATE(6968)] = 198316, - [SMALL_STATE(6969)] = 198348, - [SMALL_STATE(6970)] = 198378, - [SMALL_STATE(6971)] = 198410, - [SMALL_STATE(6972)] = 198442, - [SMALL_STATE(6973)] = 198474, - [SMALL_STATE(6974)] = 198506, - [SMALL_STATE(6975)] = 198538, - [SMALL_STATE(6976)] = 198570, - [SMALL_STATE(6977)] = 198602, - [SMALL_STATE(6978)] = 198634, - [SMALL_STATE(6979)] = 198666, - [SMALL_STATE(6980)] = 198698, - [SMALL_STATE(6981)] = 198730, - [SMALL_STATE(6982)] = 198762, - [SMALL_STATE(6983)] = 198794, - [SMALL_STATE(6984)] = 198826, - [SMALL_STATE(6985)] = 198858, - [SMALL_STATE(6986)] = 198890, - [SMALL_STATE(6987)] = 198922, - [SMALL_STATE(6988)] = 198954, - [SMALL_STATE(6989)] = 198986, - [SMALL_STATE(6990)] = 199018, - [SMALL_STATE(6991)] = 199050, - [SMALL_STATE(6992)] = 199082, - [SMALL_STATE(6993)] = 199114, - [SMALL_STATE(6994)] = 199146, - [SMALL_STATE(6995)] = 199178, - [SMALL_STATE(6996)] = 199210, - [SMALL_STATE(6997)] = 199242, - [SMALL_STATE(6998)] = 199274, - [SMALL_STATE(6999)] = 199306, - [SMALL_STATE(7000)] = 199338, - [SMALL_STATE(7001)] = 199370, - [SMALL_STATE(7002)] = 199402, - [SMALL_STATE(7003)] = 199434, - [SMALL_STATE(7004)] = 199466, - [SMALL_STATE(7005)] = 199498, - [SMALL_STATE(7006)] = 199530, - [SMALL_STATE(7007)] = 199562, - [SMALL_STATE(7008)] = 199594, - [SMALL_STATE(7009)] = 199626, - [SMALL_STATE(7010)] = 199658, - [SMALL_STATE(7011)] = 199690, - [SMALL_STATE(7012)] = 199722, - [SMALL_STATE(7013)] = 199754, - [SMALL_STATE(7014)] = 199786, - [SMALL_STATE(7015)] = 199818, - [SMALL_STATE(7016)] = 199850, - [SMALL_STATE(7017)] = 199882, - [SMALL_STATE(7018)] = 199914, - [SMALL_STATE(7019)] = 199946, - [SMALL_STATE(7020)] = 199978, - [SMALL_STATE(7021)] = 200010, - [SMALL_STATE(7022)] = 200042, - [SMALL_STATE(7023)] = 200074, - [SMALL_STATE(7024)] = 200106, - [SMALL_STATE(7025)] = 200138, - [SMALL_STATE(7026)] = 200170, - [SMALL_STATE(7027)] = 200202, - [SMALL_STATE(7028)] = 200234, - [SMALL_STATE(7029)] = 200266, - [SMALL_STATE(7030)] = 200298, - [SMALL_STATE(7031)] = 200330, - [SMALL_STATE(7032)] = 200362, - [SMALL_STATE(7033)] = 200394, - [SMALL_STATE(7034)] = 200426, - [SMALL_STATE(7035)] = 200458, - [SMALL_STATE(7036)] = 200490, - [SMALL_STATE(7037)] = 200522, - [SMALL_STATE(7038)] = 200554, - [SMALL_STATE(7039)] = 200586, - [SMALL_STATE(7040)] = 200618, - [SMALL_STATE(7041)] = 200650, - [SMALL_STATE(7042)] = 200682, - [SMALL_STATE(7043)] = 200714, - [SMALL_STATE(7044)] = 200744, - [SMALL_STATE(7045)] = 200776, - [SMALL_STATE(7046)] = 200808, - [SMALL_STATE(7047)] = 200840, - [SMALL_STATE(7048)] = 200872, - [SMALL_STATE(7049)] = 200904, - [SMALL_STATE(7050)] = 200936, - [SMALL_STATE(7051)] = 200968, - [SMALL_STATE(7052)] = 201000, - [SMALL_STATE(7053)] = 201032, - [SMALL_STATE(7054)] = 201064, - [SMALL_STATE(7055)] = 201096, - [SMALL_STATE(7056)] = 201128, - [SMALL_STATE(7057)] = 201160, - [SMALL_STATE(7058)] = 201192, - [SMALL_STATE(7059)] = 201224, - [SMALL_STATE(7060)] = 201256, - [SMALL_STATE(7061)] = 201288, - [SMALL_STATE(7062)] = 201320, - [SMALL_STATE(7063)] = 201352, - [SMALL_STATE(7064)] = 201384, - [SMALL_STATE(7065)] = 201416, - [SMALL_STATE(7066)] = 201448, - [SMALL_STATE(7067)] = 201480, - [SMALL_STATE(7068)] = 201512, - [SMALL_STATE(7069)] = 201544, - [SMALL_STATE(7070)] = 201576, - [SMALL_STATE(7071)] = 201608, - [SMALL_STATE(7072)] = 201640, - [SMALL_STATE(7073)] = 201672, - [SMALL_STATE(7074)] = 201704, - [SMALL_STATE(7075)] = 201736, - [SMALL_STATE(7076)] = 201768, - [SMALL_STATE(7077)] = 201800, - [SMALL_STATE(7078)] = 201832, - [SMALL_STATE(7079)] = 201864, - [SMALL_STATE(7080)] = 201896, - [SMALL_STATE(7081)] = 201928, - [SMALL_STATE(7082)] = 201960, - [SMALL_STATE(7083)] = 201992, - [SMALL_STATE(7084)] = 202024, - [SMALL_STATE(7085)] = 202056, - [SMALL_STATE(7086)] = 202088, - [SMALL_STATE(7087)] = 202120, - [SMALL_STATE(7088)] = 202152, - [SMALL_STATE(7089)] = 202184, - [SMALL_STATE(7090)] = 202214, - [SMALL_STATE(7091)] = 202246, - [SMALL_STATE(7092)] = 202278, - [SMALL_STATE(7093)] = 202310, - [SMALL_STATE(7094)] = 202342, - [SMALL_STATE(7095)] = 202374, - [SMALL_STATE(7096)] = 202406, - [SMALL_STATE(7097)] = 202438, - [SMALL_STATE(7098)] = 202470, - [SMALL_STATE(7099)] = 202502, - [SMALL_STATE(7100)] = 202534, - [SMALL_STATE(7101)] = 202566, - [SMALL_STATE(7102)] = 202598, - [SMALL_STATE(7103)] = 202630, - [SMALL_STATE(7104)] = 202662, - [SMALL_STATE(7105)] = 202694, - [SMALL_STATE(7106)] = 202726, - [SMALL_STATE(7107)] = 202758, - [SMALL_STATE(7108)] = 202790, - [SMALL_STATE(7109)] = 202822, - [SMALL_STATE(7110)] = 202854, - [SMALL_STATE(7111)] = 202886, - [SMALL_STATE(7112)] = 202918, - [SMALL_STATE(7113)] = 202950, - [SMALL_STATE(7114)] = 202982, - [SMALL_STATE(7115)] = 203014, - [SMALL_STATE(7116)] = 203046, - [SMALL_STATE(7117)] = 203078, - [SMALL_STATE(7118)] = 203110, - [SMALL_STATE(7119)] = 203142, - [SMALL_STATE(7120)] = 203174, - [SMALL_STATE(7121)] = 203206, - [SMALL_STATE(7122)] = 203238, - [SMALL_STATE(7123)] = 203270, - [SMALL_STATE(7124)] = 203302, - [SMALL_STATE(7125)] = 203334, - [SMALL_STATE(7126)] = 203366, - [SMALL_STATE(7127)] = 203398, - [SMALL_STATE(7128)] = 203430, - [SMALL_STATE(7129)] = 203462, - [SMALL_STATE(7130)] = 203494, - [SMALL_STATE(7131)] = 203526, - [SMALL_STATE(7132)] = 203558, - [SMALL_STATE(7133)] = 203590, - [SMALL_STATE(7134)] = 203622, - [SMALL_STATE(7135)] = 203654, - [SMALL_STATE(7136)] = 203686, - [SMALL_STATE(7137)] = 203718, - [SMALL_STATE(7138)] = 203750, - [SMALL_STATE(7139)] = 203782, - [SMALL_STATE(7140)] = 203814, - [SMALL_STATE(7141)] = 203846, - [SMALL_STATE(7142)] = 203878, - [SMALL_STATE(7143)] = 203910, - [SMALL_STATE(7144)] = 203942, - [SMALL_STATE(7145)] = 203974, - [SMALL_STATE(7146)] = 204006, - [SMALL_STATE(7147)] = 204038, - [SMALL_STATE(7148)] = 204070, - [SMALL_STATE(7149)] = 204102, - [SMALL_STATE(7150)] = 204134, - [SMALL_STATE(7151)] = 204166, - [SMALL_STATE(7152)] = 204198, - [SMALL_STATE(7153)] = 204230, - [SMALL_STATE(7154)] = 204262, - [SMALL_STATE(7155)] = 204294, - [SMALL_STATE(7156)] = 204326, - [SMALL_STATE(7157)] = 204358, - [SMALL_STATE(7158)] = 204390, - [SMALL_STATE(7159)] = 204422, - [SMALL_STATE(7160)] = 204454, - [SMALL_STATE(7161)] = 204486, - [SMALL_STATE(7162)] = 204518, - [SMALL_STATE(7163)] = 204550, - [SMALL_STATE(7164)] = 204582, - [SMALL_STATE(7165)] = 204614, - [SMALL_STATE(7166)] = 204646, - [SMALL_STATE(7167)] = 204678, - [SMALL_STATE(7168)] = 204710, - [SMALL_STATE(7169)] = 204742, - [SMALL_STATE(7170)] = 204774, - [SMALL_STATE(7171)] = 204806, - [SMALL_STATE(7172)] = 204838, - [SMALL_STATE(7173)] = 204870, - [SMALL_STATE(7174)] = 204902, - [SMALL_STATE(7175)] = 204934, - [SMALL_STATE(7176)] = 204966, - [SMALL_STATE(7177)] = 204998, - [SMALL_STATE(7178)] = 205030, - [SMALL_STATE(7179)] = 205062, - [SMALL_STATE(7180)] = 205094, - [SMALL_STATE(7181)] = 205126, - [SMALL_STATE(7182)] = 205158, - [SMALL_STATE(7183)] = 205190, - [SMALL_STATE(7184)] = 205222, - [SMALL_STATE(7185)] = 205254, - [SMALL_STATE(7186)] = 205286, - [SMALL_STATE(7187)] = 205318, - [SMALL_STATE(7188)] = 205350, - [SMALL_STATE(7189)] = 205382, - [SMALL_STATE(7190)] = 205414, - [SMALL_STATE(7191)] = 205446, - [SMALL_STATE(7192)] = 205478, - [SMALL_STATE(7193)] = 205510, - [SMALL_STATE(7194)] = 205542, - [SMALL_STATE(7195)] = 205574, - [SMALL_STATE(7196)] = 205606, - [SMALL_STATE(7197)] = 205638, - [SMALL_STATE(7198)] = 205670, - [SMALL_STATE(7199)] = 205702, - [SMALL_STATE(7200)] = 205734, - [SMALL_STATE(7201)] = 205766, - [SMALL_STATE(7202)] = 205798, - [SMALL_STATE(7203)] = 205830, - [SMALL_STATE(7204)] = 205862, - [SMALL_STATE(7205)] = 205894, - [SMALL_STATE(7206)] = 205926, - [SMALL_STATE(7207)] = 205958, - [SMALL_STATE(7208)] = 205990, - [SMALL_STATE(7209)] = 206022, - [SMALL_STATE(7210)] = 206054, - [SMALL_STATE(7211)] = 206086, - [SMALL_STATE(7212)] = 206118, - [SMALL_STATE(7213)] = 206150, - [SMALL_STATE(7214)] = 206182, - [SMALL_STATE(7215)] = 206214, - [SMALL_STATE(7216)] = 206246, - [SMALL_STATE(7217)] = 206278, - [SMALL_STATE(7218)] = 206310, - [SMALL_STATE(7219)] = 206342, - [SMALL_STATE(7220)] = 206374, - [SMALL_STATE(7221)] = 206406, - [SMALL_STATE(7222)] = 206438, - [SMALL_STATE(7223)] = 206470, - [SMALL_STATE(7224)] = 206502, - [SMALL_STATE(7225)] = 206534, - [SMALL_STATE(7226)] = 206566, - [SMALL_STATE(7227)] = 206598, - [SMALL_STATE(7228)] = 206630, - [SMALL_STATE(7229)] = 206662, - [SMALL_STATE(7230)] = 206694, - [SMALL_STATE(7231)] = 206726, - [SMALL_STATE(7232)] = 206758, - [SMALL_STATE(7233)] = 206790, - [SMALL_STATE(7234)] = 206822, - [SMALL_STATE(7235)] = 206854, - [SMALL_STATE(7236)] = 206886, - [SMALL_STATE(7237)] = 206918, - [SMALL_STATE(7238)] = 206950, - [SMALL_STATE(7239)] = 206982, - [SMALL_STATE(7240)] = 207014, - [SMALL_STATE(7241)] = 207046, - [SMALL_STATE(7242)] = 207078, - [SMALL_STATE(7243)] = 207110, - [SMALL_STATE(7244)] = 207142, - [SMALL_STATE(7245)] = 207174, - [SMALL_STATE(7246)] = 207206, - [SMALL_STATE(7247)] = 207238, - [SMALL_STATE(7248)] = 207270, - [SMALL_STATE(7249)] = 207302, - [SMALL_STATE(7250)] = 207334, - [SMALL_STATE(7251)] = 207366, - [SMALL_STATE(7252)] = 207398, - [SMALL_STATE(7253)] = 207430, - [SMALL_STATE(7254)] = 207462, - [SMALL_STATE(7255)] = 207494, - [SMALL_STATE(7256)] = 207526, - [SMALL_STATE(7257)] = 207558, - [SMALL_STATE(7258)] = 207590, - [SMALL_STATE(7259)] = 207622, - [SMALL_STATE(7260)] = 207654, - [SMALL_STATE(7261)] = 207686, - [SMALL_STATE(7262)] = 207718, - [SMALL_STATE(7263)] = 207750, - [SMALL_STATE(7264)] = 207782, - [SMALL_STATE(7265)] = 207814, - [SMALL_STATE(7266)] = 207846, - [SMALL_STATE(7267)] = 207878, - [SMALL_STATE(7268)] = 207910, - [SMALL_STATE(7269)] = 207942, - [SMALL_STATE(7270)] = 207974, - [SMALL_STATE(7271)] = 208006, - [SMALL_STATE(7272)] = 208038, - [SMALL_STATE(7273)] = 208070, - [SMALL_STATE(7274)] = 208102, - [SMALL_STATE(7275)] = 208134, - [SMALL_STATE(7276)] = 208166, - [SMALL_STATE(7277)] = 208198, - [SMALL_STATE(7278)] = 208230, - [SMALL_STATE(7279)] = 208262, - [SMALL_STATE(7280)] = 208294, - [SMALL_STATE(7281)] = 208326, - [SMALL_STATE(7282)] = 208358, - [SMALL_STATE(7283)] = 208390, - [SMALL_STATE(7284)] = 208422, - [SMALL_STATE(7285)] = 208454, - [SMALL_STATE(7286)] = 208486, - [SMALL_STATE(7287)] = 208518, - [SMALL_STATE(7288)] = 208550, - [SMALL_STATE(7289)] = 208582, - [SMALL_STATE(7290)] = 208614, - [SMALL_STATE(7291)] = 208646, - [SMALL_STATE(7292)] = 208678, - [SMALL_STATE(7293)] = 208710, - [SMALL_STATE(7294)] = 208742, - [SMALL_STATE(7295)] = 208774, - [SMALL_STATE(7296)] = 208806, - [SMALL_STATE(7297)] = 208838, - [SMALL_STATE(7298)] = 208870, - [SMALL_STATE(7299)] = 208902, - [SMALL_STATE(7300)] = 208934, - [SMALL_STATE(7301)] = 208966, - [SMALL_STATE(7302)] = 208998, - [SMALL_STATE(7303)] = 209030, - [SMALL_STATE(7304)] = 209062, - [SMALL_STATE(7305)] = 209094, - [SMALL_STATE(7306)] = 209126, - [SMALL_STATE(7307)] = 209158, - [SMALL_STATE(7308)] = 209190, - [SMALL_STATE(7309)] = 209222, - [SMALL_STATE(7310)] = 209254, - [SMALL_STATE(7311)] = 209286, - [SMALL_STATE(7312)] = 209318, - [SMALL_STATE(7313)] = 209350, - [SMALL_STATE(7314)] = 209382, - [SMALL_STATE(7315)] = 209414, - [SMALL_STATE(7316)] = 209446, - [SMALL_STATE(7317)] = 209478, - [SMALL_STATE(7318)] = 209510, - [SMALL_STATE(7319)] = 209542, - [SMALL_STATE(7320)] = 209574, - [SMALL_STATE(7321)] = 209606, - [SMALL_STATE(7322)] = 209638, - [SMALL_STATE(7323)] = 209670, - [SMALL_STATE(7324)] = 209702, - [SMALL_STATE(7325)] = 209734, - [SMALL_STATE(7326)] = 209766, - [SMALL_STATE(7327)] = 209798, - [SMALL_STATE(7328)] = 209830, - [SMALL_STATE(7329)] = 209862, - [SMALL_STATE(7330)] = 209894, - [SMALL_STATE(7331)] = 209926, - [SMALL_STATE(7332)] = 209958, - [SMALL_STATE(7333)] = 209990, - [SMALL_STATE(7334)] = 210022, - [SMALL_STATE(7335)] = 210054, - [SMALL_STATE(7336)] = 210086, - [SMALL_STATE(7337)] = 210118, - [SMALL_STATE(7338)] = 210150, - [SMALL_STATE(7339)] = 210182, - [SMALL_STATE(7340)] = 210214, - [SMALL_STATE(7341)] = 210246, - [SMALL_STATE(7342)] = 210278, - [SMALL_STATE(7343)] = 210310, - [SMALL_STATE(7344)] = 210342, - [SMALL_STATE(7345)] = 210374, - [SMALL_STATE(7346)] = 210406, - [SMALL_STATE(7347)] = 210438, - [SMALL_STATE(7348)] = 210470, - [SMALL_STATE(7349)] = 210502, - [SMALL_STATE(7350)] = 210534, - [SMALL_STATE(7351)] = 210566, - [SMALL_STATE(7352)] = 210598, - [SMALL_STATE(7353)] = 210630, - [SMALL_STATE(7354)] = 210662, - [SMALL_STATE(7355)] = 210694, - [SMALL_STATE(7356)] = 210726, - [SMALL_STATE(7357)] = 210758, - [SMALL_STATE(7358)] = 210790, - [SMALL_STATE(7359)] = 210822, - [SMALL_STATE(7360)] = 210854, - [SMALL_STATE(7361)] = 210886, - [SMALL_STATE(7362)] = 210918, - [SMALL_STATE(7363)] = 210950, - [SMALL_STATE(7364)] = 210982, - [SMALL_STATE(7365)] = 211014, - [SMALL_STATE(7366)] = 211046, - [SMALL_STATE(7367)] = 211078, - [SMALL_STATE(7368)] = 211110, - [SMALL_STATE(7369)] = 211142, - [SMALL_STATE(7370)] = 211174, - [SMALL_STATE(7371)] = 211206, - [SMALL_STATE(7372)] = 211238, - [SMALL_STATE(7373)] = 211270, - [SMALL_STATE(7374)] = 211302, - [SMALL_STATE(7375)] = 211334, - [SMALL_STATE(7376)] = 211366, - [SMALL_STATE(7377)] = 211398, - [SMALL_STATE(7378)] = 211430, - [SMALL_STATE(7379)] = 211462, - [SMALL_STATE(7380)] = 211494, - [SMALL_STATE(7381)] = 211526, - [SMALL_STATE(7382)] = 211558, - [SMALL_STATE(7383)] = 211590, - [SMALL_STATE(7384)] = 211622, - [SMALL_STATE(7385)] = 211654, - [SMALL_STATE(7386)] = 211686, - [SMALL_STATE(7387)] = 211718, - [SMALL_STATE(7388)] = 211750, - [SMALL_STATE(7389)] = 211782, - [SMALL_STATE(7390)] = 211814, - [SMALL_STATE(7391)] = 211846, - [SMALL_STATE(7392)] = 211878, - [SMALL_STATE(7393)] = 211910, - [SMALL_STATE(7394)] = 211942, - [SMALL_STATE(7395)] = 211974, - [SMALL_STATE(7396)] = 212006, - [SMALL_STATE(7397)] = 212038, - [SMALL_STATE(7398)] = 212070, - [SMALL_STATE(7399)] = 212102, - [SMALL_STATE(7400)] = 212134, - [SMALL_STATE(7401)] = 212166, - [SMALL_STATE(7402)] = 212198, - [SMALL_STATE(7403)] = 212230, - [SMALL_STATE(7404)] = 212262, - [SMALL_STATE(7405)] = 212294, - [SMALL_STATE(7406)] = 212326, - [SMALL_STATE(7407)] = 212358, - [SMALL_STATE(7408)] = 212390, - [SMALL_STATE(7409)] = 212422, - [SMALL_STATE(7410)] = 212454, - [SMALL_STATE(7411)] = 212486, - [SMALL_STATE(7412)] = 212518, - [SMALL_STATE(7413)] = 212550, - [SMALL_STATE(7414)] = 212582, - [SMALL_STATE(7415)] = 212614, - [SMALL_STATE(7416)] = 212646, - [SMALL_STATE(7417)] = 212678, - [SMALL_STATE(7418)] = 212710, - [SMALL_STATE(7419)] = 212742, - [SMALL_STATE(7420)] = 212774, - [SMALL_STATE(7421)] = 212806, - [SMALL_STATE(7422)] = 212838, - [SMALL_STATE(7423)] = 212870, - [SMALL_STATE(7424)] = 212902, - [SMALL_STATE(7425)] = 212934, - [SMALL_STATE(7426)] = 212966, - [SMALL_STATE(7427)] = 212998, - [SMALL_STATE(7428)] = 213030, - [SMALL_STATE(7429)] = 213062, - [SMALL_STATE(7430)] = 213094, - [SMALL_STATE(7431)] = 213126, - [SMALL_STATE(7432)] = 213158, - [SMALL_STATE(7433)] = 213190, - [SMALL_STATE(7434)] = 213222, - [SMALL_STATE(7435)] = 213254, - [SMALL_STATE(7436)] = 213286, - [SMALL_STATE(7437)] = 213318, - [SMALL_STATE(7438)] = 213350, - [SMALL_STATE(7439)] = 213382, - [SMALL_STATE(7440)] = 213414, - [SMALL_STATE(7441)] = 213446, - [SMALL_STATE(7442)] = 213478, - [SMALL_STATE(7443)] = 213510, - [SMALL_STATE(7444)] = 213542, - [SMALL_STATE(7445)] = 213574, - [SMALL_STATE(7446)] = 213606, - [SMALL_STATE(7447)] = 213638, - [SMALL_STATE(7448)] = 213670, - [SMALL_STATE(7449)] = 213702, - [SMALL_STATE(7450)] = 213734, - [SMALL_STATE(7451)] = 213766, - [SMALL_STATE(7452)] = 213798, - [SMALL_STATE(7453)] = 213830, - [SMALL_STATE(7454)] = 213862, - [SMALL_STATE(7455)] = 213894, - [SMALL_STATE(7456)] = 213926, - [SMALL_STATE(7457)] = 213958, - [SMALL_STATE(7458)] = 213990, - [SMALL_STATE(7459)] = 214022, - [SMALL_STATE(7460)] = 214054, - [SMALL_STATE(7461)] = 214086, - [SMALL_STATE(7462)] = 214118, - [SMALL_STATE(7463)] = 214150, - [SMALL_STATE(7464)] = 214182, - [SMALL_STATE(7465)] = 214214, - [SMALL_STATE(7466)] = 214246, - [SMALL_STATE(7467)] = 214278, - [SMALL_STATE(7468)] = 214310, - [SMALL_STATE(7469)] = 214342, - [SMALL_STATE(7470)] = 214374, - [SMALL_STATE(7471)] = 214406, - [SMALL_STATE(7472)] = 214438, - [SMALL_STATE(7473)] = 214470, - [SMALL_STATE(7474)] = 214502, - [SMALL_STATE(7475)] = 214534, - [SMALL_STATE(7476)] = 214566, - [SMALL_STATE(7477)] = 214598, - [SMALL_STATE(7478)] = 214630, - [SMALL_STATE(7479)] = 214662, - [SMALL_STATE(7480)] = 214694, - [SMALL_STATE(7481)] = 214726, - [SMALL_STATE(7482)] = 214758, - [SMALL_STATE(7483)] = 214790, - [SMALL_STATE(7484)] = 214822, - [SMALL_STATE(7485)] = 214854, - [SMALL_STATE(7486)] = 214886, - [SMALL_STATE(7487)] = 214918, - [SMALL_STATE(7488)] = 214950, - [SMALL_STATE(7489)] = 214982, - [SMALL_STATE(7490)] = 215014, - [SMALL_STATE(7491)] = 215046, - [SMALL_STATE(7492)] = 215078, - [SMALL_STATE(7493)] = 215110, - [SMALL_STATE(7494)] = 215142, - [SMALL_STATE(7495)] = 215174, - [SMALL_STATE(7496)] = 215206, - [SMALL_STATE(7497)] = 215238, - [SMALL_STATE(7498)] = 215270, - [SMALL_STATE(7499)] = 215302, - [SMALL_STATE(7500)] = 215334, - [SMALL_STATE(7501)] = 215366, - [SMALL_STATE(7502)] = 215398, - [SMALL_STATE(7503)] = 215430, - [SMALL_STATE(7504)] = 215462, - [SMALL_STATE(7505)] = 215494, - [SMALL_STATE(7506)] = 215526, - [SMALL_STATE(7507)] = 215558, - [SMALL_STATE(7508)] = 215590, - [SMALL_STATE(7509)] = 215622, - [SMALL_STATE(7510)] = 215654, - [SMALL_STATE(7511)] = 215686, - [SMALL_STATE(7512)] = 215718, - [SMALL_STATE(7513)] = 215750, - [SMALL_STATE(7514)] = 215782, - [SMALL_STATE(7515)] = 215814, - [SMALL_STATE(7516)] = 215846, - [SMALL_STATE(7517)] = 215878, - [SMALL_STATE(7518)] = 215910, - [SMALL_STATE(7519)] = 215942, - [SMALL_STATE(7520)] = 215974, - [SMALL_STATE(7521)] = 216006, - [SMALL_STATE(7522)] = 216038, - [SMALL_STATE(7523)] = 216070, - [SMALL_STATE(7524)] = 216102, - [SMALL_STATE(7525)] = 216134, - [SMALL_STATE(7526)] = 216166, - [SMALL_STATE(7527)] = 216198, - [SMALL_STATE(7528)] = 216230, - [SMALL_STATE(7529)] = 216262, - [SMALL_STATE(7530)] = 216294, - [SMALL_STATE(7531)] = 216326, - [SMALL_STATE(7532)] = 216358, - [SMALL_STATE(7533)] = 216390, - [SMALL_STATE(7534)] = 216422, - [SMALL_STATE(7535)] = 216454, - [SMALL_STATE(7536)] = 216486, - [SMALL_STATE(7537)] = 216518, - [SMALL_STATE(7538)] = 216550, - [SMALL_STATE(7539)] = 216582, - [SMALL_STATE(7540)] = 216614, - [SMALL_STATE(7541)] = 216646, - [SMALL_STATE(7542)] = 216678, - [SMALL_STATE(7543)] = 216710, - [SMALL_STATE(7544)] = 216742, - [SMALL_STATE(7545)] = 216774, - [SMALL_STATE(7546)] = 216806, - [SMALL_STATE(7547)] = 216838, - [SMALL_STATE(7548)] = 216870, - [SMALL_STATE(7549)] = 216902, - [SMALL_STATE(7550)] = 216934, - [SMALL_STATE(7551)] = 216966, - [SMALL_STATE(7552)] = 216998, - [SMALL_STATE(7553)] = 217030, - [SMALL_STATE(7554)] = 217062, - [SMALL_STATE(7555)] = 217094, - [SMALL_STATE(7556)] = 217126, - [SMALL_STATE(7557)] = 217158, - [SMALL_STATE(7558)] = 217190, - [SMALL_STATE(7559)] = 217222, - [SMALL_STATE(7560)] = 217254, - [SMALL_STATE(7561)] = 217286, - [SMALL_STATE(7562)] = 217318, - [SMALL_STATE(7563)] = 217350, - [SMALL_STATE(7564)] = 217382, - [SMALL_STATE(7565)] = 217414, - [SMALL_STATE(7566)] = 217446, - [SMALL_STATE(7567)] = 217478, - [SMALL_STATE(7568)] = 217510, - [SMALL_STATE(7569)] = 217542, - [SMALL_STATE(7570)] = 217574, - [SMALL_STATE(7571)] = 217606, - [SMALL_STATE(7572)] = 217638, - [SMALL_STATE(7573)] = 217670, - [SMALL_STATE(7574)] = 217702, - [SMALL_STATE(7575)] = 217734, - [SMALL_STATE(7576)] = 217766, - [SMALL_STATE(7577)] = 217798, - [SMALL_STATE(7578)] = 217830, - [SMALL_STATE(7579)] = 217862, - [SMALL_STATE(7580)] = 217894, - [SMALL_STATE(7581)] = 217926, - [SMALL_STATE(7582)] = 217958, - [SMALL_STATE(7583)] = 217990, - [SMALL_STATE(7584)] = 218022, - [SMALL_STATE(7585)] = 218054, - [SMALL_STATE(7586)] = 218086, - [SMALL_STATE(7587)] = 218118, - [SMALL_STATE(7588)] = 218150, - [SMALL_STATE(7589)] = 218182, - [SMALL_STATE(7590)] = 218214, - [SMALL_STATE(7591)] = 218246, - [SMALL_STATE(7592)] = 218278, - [SMALL_STATE(7593)] = 218310, - [SMALL_STATE(7594)] = 218342, - [SMALL_STATE(7595)] = 218374, - [SMALL_STATE(7596)] = 218406, - [SMALL_STATE(7597)] = 218438, - [SMALL_STATE(7598)] = 218470, - [SMALL_STATE(7599)] = 218502, - [SMALL_STATE(7600)] = 218534, - [SMALL_STATE(7601)] = 218566, - [SMALL_STATE(7602)] = 218598, - [SMALL_STATE(7603)] = 218630, - [SMALL_STATE(7604)] = 218662, - [SMALL_STATE(7605)] = 218694, - [SMALL_STATE(7606)] = 218726, - [SMALL_STATE(7607)] = 218758, - [SMALL_STATE(7608)] = 218790, - [SMALL_STATE(7609)] = 218822, - [SMALL_STATE(7610)] = 218854, - [SMALL_STATE(7611)] = 218886, - [SMALL_STATE(7612)] = 218918, - [SMALL_STATE(7613)] = 218950, - [SMALL_STATE(7614)] = 218982, - [SMALL_STATE(7615)] = 219014, - [SMALL_STATE(7616)] = 219046, - [SMALL_STATE(7617)] = 219078, - [SMALL_STATE(7618)] = 219110, - [SMALL_STATE(7619)] = 219142, - [SMALL_STATE(7620)] = 219174, - [SMALL_STATE(7621)] = 219206, - [SMALL_STATE(7622)] = 219238, - [SMALL_STATE(7623)] = 219270, - [SMALL_STATE(7624)] = 219302, - [SMALL_STATE(7625)] = 219334, - [SMALL_STATE(7626)] = 219366, - [SMALL_STATE(7627)] = 219398, - [SMALL_STATE(7628)] = 219430, - [SMALL_STATE(7629)] = 219462, - [SMALL_STATE(7630)] = 219494, - [SMALL_STATE(7631)] = 219526, - [SMALL_STATE(7632)] = 219558, - [SMALL_STATE(7633)] = 219590, - [SMALL_STATE(7634)] = 219622, - [SMALL_STATE(7635)] = 219654, - [SMALL_STATE(7636)] = 219686, - [SMALL_STATE(7637)] = 219718, - [SMALL_STATE(7638)] = 219750, - [SMALL_STATE(7639)] = 219782, - [SMALL_STATE(7640)] = 219814, - [SMALL_STATE(7641)] = 219846, - [SMALL_STATE(7642)] = 219878, - [SMALL_STATE(7643)] = 219910, - [SMALL_STATE(7644)] = 219942, - [SMALL_STATE(7645)] = 219974, - [SMALL_STATE(7646)] = 220006, - [SMALL_STATE(7647)] = 220038, - [SMALL_STATE(7648)] = 220070, - [SMALL_STATE(7649)] = 220102, - [SMALL_STATE(7650)] = 220134, - [SMALL_STATE(7651)] = 220166, - [SMALL_STATE(7652)] = 220198, - [SMALL_STATE(7653)] = 220230, - [SMALL_STATE(7654)] = 220262, - [SMALL_STATE(7655)] = 220294, - [SMALL_STATE(7656)] = 220326, - [SMALL_STATE(7657)] = 220358, - [SMALL_STATE(7658)] = 220390, - [SMALL_STATE(7659)] = 220422, - [SMALL_STATE(7660)] = 220454, - [SMALL_STATE(7661)] = 220486, - [SMALL_STATE(7662)] = 220518, - [SMALL_STATE(7663)] = 220550, - [SMALL_STATE(7664)] = 220582, - [SMALL_STATE(7665)] = 220614, - [SMALL_STATE(7666)] = 220646, - [SMALL_STATE(7667)] = 220678, - [SMALL_STATE(7668)] = 220710, - [SMALL_STATE(7669)] = 220742, - [SMALL_STATE(7670)] = 220774, - [SMALL_STATE(7671)] = 220806, - [SMALL_STATE(7672)] = 220838, - [SMALL_STATE(7673)] = 220870, - [SMALL_STATE(7674)] = 220902, - [SMALL_STATE(7675)] = 220934, - [SMALL_STATE(7676)] = 220966, - [SMALL_STATE(7677)] = 220998, - [SMALL_STATE(7678)] = 221030, - [SMALL_STATE(7679)] = 221062, - [SMALL_STATE(7680)] = 221094, - [SMALL_STATE(7681)] = 221126, - [SMALL_STATE(7682)] = 221158, - [SMALL_STATE(7683)] = 221190, - [SMALL_STATE(7684)] = 221222, - [SMALL_STATE(7685)] = 221254, - [SMALL_STATE(7686)] = 221286, - [SMALL_STATE(7687)] = 221318, - [SMALL_STATE(7688)] = 221350, - [SMALL_STATE(7689)] = 221382, - [SMALL_STATE(7690)] = 221414, - [SMALL_STATE(7691)] = 221446, - [SMALL_STATE(7692)] = 221478, - [SMALL_STATE(7693)] = 221510, - [SMALL_STATE(7694)] = 221542, - [SMALL_STATE(7695)] = 221574, - [SMALL_STATE(7696)] = 221606, - [SMALL_STATE(7697)] = 221638, - [SMALL_STATE(7698)] = 221670, - [SMALL_STATE(7699)] = 221702, - [SMALL_STATE(7700)] = 221734, - [SMALL_STATE(7701)] = 221766, - [SMALL_STATE(7702)] = 221798, - [SMALL_STATE(7703)] = 221830, - [SMALL_STATE(7704)] = 221862, - [SMALL_STATE(7705)] = 221894, - [SMALL_STATE(7706)] = 221926, - [SMALL_STATE(7707)] = 221958, - [SMALL_STATE(7708)] = 221990, - [SMALL_STATE(7709)] = 222022, - [SMALL_STATE(7710)] = 222054, - [SMALL_STATE(7711)] = 222086, - [SMALL_STATE(7712)] = 222118, - [SMALL_STATE(7713)] = 222150, - [SMALL_STATE(7714)] = 222182, - [SMALL_STATE(7715)] = 222214, - [SMALL_STATE(7716)] = 222246, - [SMALL_STATE(7717)] = 222278, - [SMALL_STATE(7718)] = 222310, - [SMALL_STATE(7719)] = 222342, - [SMALL_STATE(7720)] = 222374, - [SMALL_STATE(7721)] = 222406, - [SMALL_STATE(7722)] = 222438, - [SMALL_STATE(7723)] = 222470, - [SMALL_STATE(7724)] = 222502, - [SMALL_STATE(7725)] = 222534, - [SMALL_STATE(7726)] = 222566, - [SMALL_STATE(7727)] = 222598, - [SMALL_STATE(7728)] = 222630, - [SMALL_STATE(7729)] = 222662, - [SMALL_STATE(7730)] = 222694, - [SMALL_STATE(7731)] = 222726, - [SMALL_STATE(7732)] = 222758, - [SMALL_STATE(7733)] = 222790, - [SMALL_STATE(7734)] = 222822, - [SMALL_STATE(7735)] = 222854, - [SMALL_STATE(7736)] = 222886, - [SMALL_STATE(7737)] = 222918, - [SMALL_STATE(7738)] = 222950, - [SMALL_STATE(7739)] = 222982, - [SMALL_STATE(7740)] = 223014, - [SMALL_STATE(7741)] = 223046, - [SMALL_STATE(7742)] = 223078, - [SMALL_STATE(7743)] = 223110, - [SMALL_STATE(7744)] = 223142, - [SMALL_STATE(7745)] = 223174, - [SMALL_STATE(7746)] = 223206, - [SMALL_STATE(7747)] = 223238, - [SMALL_STATE(7748)] = 223270, - [SMALL_STATE(7749)] = 223302, - [SMALL_STATE(7750)] = 223334, - [SMALL_STATE(7751)] = 223366, - [SMALL_STATE(7752)] = 223398, - [SMALL_STATE(7753)] = 223430, - [SMALL_STATE(7754)] = 223462, - [SMALL_STATE(7755)] = 223494, - [SMALL_STATE(7756)] = 223526, - [SMALL_STATE(7757)] = 223558, - [SMALL_STATE(7758)] = 223590, - [SMALL_STATE(7759)] = 223622, - [SMALL_STATE(7760)] = 223654, - [SMALL_STATE(7761)] = 223686, - [SMALL_STATE(7762)] = 223718, - [SMALL_STATE(7763)] = 223750, - [SMALL_STATE(7764)] = 223782, - [SMALL_STATE(7765)] = 223814, - [SMALL_STATE(7766)] = 223846, - [SMALL_STATE(7767)] = 223878, - [SMALL_STATE(7768)] = 223910, - [SMALL_STATE(7769)] = 223942, - [SMALL_STATE(7770)] = 223974, - [SMALL_STATE(7771)] = 224006, - [SMALL_STATE(7772)] = 224038, - [SMALL_STATE(7773)] = 224070, - [SMALL_STATE(7774)] = 224102, - [SMALL_STATE(7775)] = 224134, - [SMALL_STATE(7776)] = 224166, - [SMALL_STATE(7777)] = 224198, - [SMALL_STATE(7778)] = 224230, - [SMALL_STATE(7779)] = 224262, - [SMALL_STATE(7780)] = 224294, - [SMALL_STATE(7781)] = 224326, - [SMALL_STATE(7782)] = 224358, - [SMALL_STATE(7783)] = 224390, - [SMALL_STATE(7784)] = 224422, - [SMALL_STATE(7785)] = 224454, - [SMALL_STATE(7786)] = 224486, - [SMALL_STATE(7787)] = 224518, - [SMALL_STATE(7788)] = 224550, - [SMALL_STATE(7789)] = 224582, - [SMALL_STATE(7790)] = 224614, - [SMALL_STATE(7791)] = 224646, - [SMALL_STATE(7792)] = 224678, - [SMALL_STATE(7793)] = 224710, - [SMALL_STATE(7794)] = 224742, - [SMALL_STATE(7795)] = 224774, - [SMALL_STATE(7796)] = 224806, - [SMALL_STATE(7797)] = 224838, - [SMALL_STATE(7798)] = 224870, - [SMALL_STATE(7799)] = 224902, - [SMALL_STATE(7800)] = 224934, - [SMALL_STATE(7801)] = 224966, - [SMALL_STATE(7802)] = 224998, - [SMALL_STATE(7803)] = 225030, - [SMALL_STATE(7804)] = 225062, - [SMALL_STATE(7805)] = 225094, - [SMALL_STATE(7806)] = 225126, - [SMALL_STATE(7807)] = 225158, - [SMALL_STATE(7808)] = 225190, - [SMALL_STATE(7809)] = 225222, - [SMALL_STATE(7810)] = 225254, - [SMALL_STATE(7811)] = 225286, - [SMALL_STATE(7812)] = 225318, - [SMALL_STATE(7813)] = 225350, - [SMALL_STATE(7814)] = 225382, - [SMALL_STATE(7815)] = 225414, - [SMALL_STATE(7816)] = 225446, - [SMALL_STATE(7817)] = 225478, - [SMALL_STATE(7818)] = 225510, - [SMALL_STATE(7819)] = 225542, - [SMALL_STATE(7820)] = 225574, - [SMALL_STATE(7821)] = 225606, - [SMALL_STATE(7822)] = 225638, - [SMALL_STATE(7823)] = 225670, - [SMALL_STATE(7824)] = 225702, - [SMALL_STATE(7825)] = 225734, - [SMALL_STATE(7826)] = 225766, - [SMALL_STATE(7827)] = 225798, - [SMALL_STATE(7828)] = 225830, - [SMALL_STATE(7829)] = 225862, - [SMALL_STATE(7830)] = 225894, - [SMALL_STATE(7831)] = 225926, - [SMALL_STATE(7832)] = 225958, - [SMALL_STATE(7833)] = 225990, - [SMALL_STATE(7834)] = 226022, - [SMALL_STATE(7835)] = 226054, - [SMALL_STATE(7836)] = 226086, - [SMALL_STATE(7837)] = 226118, - [SMALL_STATE(7838)] = 226150, - [SMALL_STATE(7839)] = 226182, - [SMALL_STATE(7840)] = 226214, - [SMALL_STATE(7841)] = 226246, - [SMALL_STATE(7842)] = 226278, - [SMALL_STATE(7843)] = 226310, - [SMALL_STATE(7844)] = 226342, - [SMALL_STATE(7845)] = 226374, - [SMALL_STATE(7846)] = 226406, - [SMALL_STATE(7847)] = 226438, - [SMALL_STATE(7848)] = 226470, - [SMALL_STATE(7849)] = 226502, - [SMALL_STATE(7850)] = 226534, - [SMALL_STATE(7851)] = 226566, - [SMALL_STATE(7852)] = 226598, - [SMALL_STATE(7853)] = 226630, - [SMALL_STATE(7854)] = 226662, - [SMALL_STATE(7855)] = 226694, - [SMALL_STATE(7856)] = 226726, - [SMALL_STATE(7857)] = 226758, - [SMALL_STATE(7858)] = 226790, - [SMALL_STATE(7859)] = 226822, - [SMALL_STATE(7860)] = 226854, - [SMALL_STATE(7861)] = 226886, - [SMALL_STATE(7862)] = 226918, - [SMALL_STATE(7863)] = 226950, - [SMALL_STATE(7864)] = 226982, - [SMALL_STATE(7865)] = 227014, - [SMALL_STATE(7866)] = 227046, - [SMALL_STATE(7867)] = 227078, - [SMALL_STATE(7868)] = 227110, - [SMALL_STATE(7869)] = 227142, - [SMALL_STATE(7870)] = 227174, - [SMALL_STATE(7871)] = 227206, - [SMALL_STATE(7872)] = 227238, - [SMALL_STATE(7873)] = 227270, - [SMALL_STATE(7874)] = 227302, - [SMALL_STATE(7875)] = 227334, - [SMALL_STATE(7876)] = 227366, - [SMALL_STATE(7877)] = 227398, - [SMALL_STATE(7878)] = 227430, - [SMALL_STATE(7879)] = 227462, - [SMALL_STATE(7880)] = 227494, - [SMALL_STATE(7881)] = 227526, - [SMALL_STATE(7882)] = 227558, - [SMALL_STATE(7883)] = 227590, - [SMALL_STATE(7884)] = 227622, - [SMALL_STATE(7885)] = 227654, - [SMALL_STATE(7886)] = 227686, - [SMALL_STATE(7887)] = 227718, - [SMALL_STATE(7888)] = 227750, - [SMALL_STATE(7889)] = 227782, - [SMALL_STATE(7890)] = 227814, - [SMALL_STATE(7891)] = 227846, - [SMALL_STATE(7892)] = 227878, - [SMALL_STATE(7893)] = 227910, - [SMALL_STATE(7894)] = 227942, - [SMALL_STATE(7895)] = 227974, - [SMALL_STATE(7896)] = 228006, - [SMALL_STATE(7897)] = 228038, - [SMALL_STATE(7898)] = 228070, - [SMALL_STATE(7899)] = 228102, - [SMALL_STATE(7900)] = 228134, - [SMALL_STATE(7901)] = 228166, - [SMALL_STATE(7902)] = 228198, - [SMALL_STATE(7903)] = 228230, - [SMALL_STATE(7904)] = 228262, - [SMALL_STATE(7905)] = 228294, - [SMALL_STATE(7906)] = 228326, - [SMALL_STATE(7907)] = 228358, - [SMALL_STATE(7908)] = 228390, - [SMALL_STATE(7909)] = 228422, - [SMALL_STATE(7910)] = 228454, - [SMALL_STATE(7911)] = 228486, - [SMALL_STATE(7912)] = 228518, - [SMALL_STATE(7913)] = 228550, - [SMALL_STATE(7914)] = 228582, - [SMALL_STATE(7915)] = 228614, - [SMALL_STATE(7916)] = 228644, - [SMALL_STATE(7917)] = 228676, - [SMALL_STATE(7918)] = 228708, - [SMALL_STATE(7919)] = 228740, - [SMALL_STATE(7920)] = 228772, - [SMALL_STATE(7921)] = 228804, - [SMALL_STATE(7922)] = 228836, - [SMALL_STATE(7923)] = 228868, - [SMALL_STATE(7924)] = 228900, - [SMALL_STATE(7925)] = 228932, - [SMALL_STATE(7926)] = 228964, - [SMALL_STATE(7927)] = 228996, - [SMALL_STATE(7928)] = 229028, - [SMALL_STATE(7929)] = 229060, - [SMALL_STATE(7930)] = 229092, - [SMALL_STATE(7931)] = 229124, - [SMALL_STATE(7932)] = 229156, - [SMALL_STATE(7933)] = 229188, - [SMALL_STATE(7934)] = 229220, - [SMALL_STATE(7935)] = 229252, - [SMALL_STATE(7936)] = 229284, - [SMALL_STATE(7937)] = 229316, - [SMALL_STATE(7938)] = 229348, - [SMALL_STATE(7939)] = 229380, - [SMALL_STATE(7940)] = 229412, - [SMALL_STATE(7941)] = 229444, - [SMALL_STATE(7942)] = 229476, - [SMALL_STATE(7943)] = 229508, - [SMALL_STATE(7944)] = 229540, - [SMALL_STATE(7945)] = 229572, - [SMALL_STATE(7946)] = 229604, - [SMALL_STATE(7947)] = 229636, - [SMALL_STATE(7948)] = 229668, - [SMALL_STATE(7949)] = 229700, - [SMALL_STATE(7950)] = 229732, - [SMALL_STATE(7951)] = 229764, - [SMALL_STATE(7952)] = 229796, - [SMALL_STATE(7953)] = 229828, - [SMALL_STATE(7954)] = 229860, - [SMALL_STATE(7955)] = 229892, - [SMALL_STATE(7956)] = 229924, - [SMALL_STATE(7957)] = 229956, - [SMALL_STATE(7958)] = 229988, - [SMALL_STATE(7959)] = 230020, - [SMALL_STATE(7960)] = 230052, - [SMALL_STATE(7961)] = 230084, - [SMALL_STATE(7962)] = 230116, - [SMALL_STATE(7963)] = 230148, - [SMALL_STATE(7964)] = 230178, - [SMALL_STATE(7965)] = 230210, - [SMALL_STATE(7966)] = 230242, - [SMALL_STATE(7967)] = 230274, - [SMALL_STATE(7968)] = 230306, - [SMALL_STATE(7969)] = 230338, - [SMALL_STATE(7970)] = 230370, - [SMALL_STATE(7971)] = 230402, - [SMALL_STATE(7972)] = 230434, - [SMALL_STATE(7973)] = 230466, - [SMALL_STATE(7974)] = 230498, - [SMALL_STATE(7975)] = 230530, - [SMALL_STATE(7976)] = 230562, - [SMALL_STATE(7977)] = 230594, - [SMALL_STATE(7978)] = 230626, - [SMALL_STATE(7979)] = 230658, - [SMALL_STATE(7980)] = 230690, - [SMALL_STATE(7981)] = 230722, - [SMALL_STATE(7982)] = 230754, - [SMALL_STATE(7983)] = 230786, - [SMALL_STATE(7984)] = 230818, - [SMALL_STATE(7985)] = 230850, - [SMALL_STATE(7986)] = 230882, - [SMALL_STATE(7987)] = 230914, - [SMALL_STATE(7988)] = 230946, - [SMALL_STATE(7989)] = 230978, - [SMALL_STATE(7990)] = 231010, - [SMALL_STATE(7991)] = 231042, - [SMALL_STATE(7992)] = 231074, - [SMALL_STATE(7993)] = 231106, - [SMALL_STATE(7994)] = 231138, - [SMALL_STATE(7995)] = 231170, - [SMALL_STATE(7996)] = 231202, - [SMALL_STATE(7997)] = 231234, - [SMALL_STATE(7998)] = 231266, - [SMALL_STATE(7999)] = 231298, - [SMALL_STATE(8000)] = 231330, - [SMALL_STATE(8001)] = 231362, - [SMALL_STATE(8002)] = 231394, - [SMALL_STATE(8003)] = 231426, - [SMALL_STATE(8004)] = 231458, - [SMALL_STATE(8005)] = 231490, - [SMALL_STATE(8006)] = 231522, - [SMALL_STATE(8007)] = 231554, - [SMALL_STATE(8008)] = 231586, - [SMALL_STATE(8009)] = 231618, - [SMALL_STATE(8010)] = 231650, - [SMALL_STATE(8011)] = 231682, - [SMALL_STATE(8012)] = 231714, - [SMALL_STATE(8013)] = 231746, - [SMALL_STATE(8014)] = 231778, - [SMALL_STATE(8015)] = 231810, - [SMALL_STATE(8016)] = 231842, - [SMALL_STATE(8017)] = 231874, - [SMALL_STATE(8018)] = 231906, - [SMALL_STATE(8019)] = 231938, - [SMALL_STATE(8020)] = 231970, - [SMALL_STATE(8021)] = 232002, - [SMALL_STATE(8022)] = 232034, - [SMALL_STATE(8023)] = 232066, - [SMALL_STATE(8024)] = 232098, - [SMALL_STATE(8025)] = 232130, - [SMALL_STATE(8026)] = 232162, - [SMALL_STATE(8027)] = 232194, - [SMALL_STATE(8028)] = 232226, - [SMALL_STATE(8029)] = 232258, - [SMALL_STATE(8030)] = 232290, - [SMALL_STATE(8031)] = 232322, - [SMALL_STATE(8032)] = 232354, - [SMALL_STATE(8033)] = 232386, - [SMALL_STATE(8034)] = 232418, - [SMALL_STATE(8035)] = 232450, - [SMALL_STATE(8036)] = 232482, - [SMALL_STATE(8037)] = 232514, - [SMALL_STATE(8038)] = 232546, - [SMALL_STATE(8039)] = 232578, - [SMALL_STATE(8040)] = 232610, - [SMALL_STATE(8041)] = 232642, - [SMALL_STATE(8042)] = 232674, - [SMALL_STATE(8043)] = 232706, - [SMALL_STATE(8044)] = 232738, - [SMALL_STATE(8045)] = 232770, - [SMALL_STATE(8046)] = 232802, - [SMALL_STATE(8047)] = 232834, - [SMALL_STATE(8048)] = 232866, - [SMALL_STATE(8049)] = 232898, - [SMALL_STATE(8050)] = 232930, - [SMALL_STATE(8051)] = 232962, - [SMALL_STATE(8052)] = 232994, - [SMALL_STATE(8053)] = 233026, - [SMALL_STATE(8054)] = 233056, - [SMALL_STATE(8055)] = 233088, - [SMALL_STATE(8056)] = 233120, - [SMALL_STATE(8057)] = 233152, - [SMALL_STATE(8058)] = 233184, - [SMALL_STATE(8059)] = 233216, - [SMALL_STATE(8060)] = 233248, - [SMALL_STATE(8061)] = 233280, - [SMALL_STATE(8062)] = 233312, - [SMALL_STATE(8063)] = 233344, - [SMALL_STATE(8064)] = 233376, - [SMALL_STATE(8065)] = 233408, - [SMALL_STATE(8066)] = 233440, - [SMALL_STATE(8067)] = 233472, - [SMALL_STATE(8068)] = 233504, - [SMALL_STATE(8069)] = 233536, - [SMALL_STATE(8070)] = 233568, - [SMALL_STATE(8071)] = 233600, - [SMALL_STATE(8072)] = 233632, - [SMALL_STATE(8073)] = 233664, - [SMALL_STATE(8074)] = 233696, - [SMALL_STATE(8075)] = 233728, - [SMALL_STATE(8076)] = 233760, - [SMALL_STATE(8077)] = 233792, - [SMALL_STATE(8078)] = 233824, - [SMALL_STATE(8079)] = 233856, - [SMALL_STATE(8080)] = 233888, - [SMALL_STATE(8081)] = 233920, - [SMALL_STATE(8082)] = 233952, - [SMALL_STATE(8083)] = 233984, - [SMALL_STATE(8084)] = 234016, - [SMALL_STATE(8085)] = 234048, - [SMALL_STATE(8086)] = 234080, - [SMALL_STATE(8087)] = 234112, - [SMALL_STATE(8088)] = 234144, - [SMALL_STATE(8089)] = 234176, - [SMALL_STATE(8090)] = 234208, - [SMALL_STATE(8091)] = 234240, - [SMALL_STATE(8092)] = 234272, - [SMALL_STATE(8093)] = 234304, - [SMALL_STATE(8094)] = 234336, - [SMALL_STATE(8095)] = 234368, - [SMALL_STATE(8096)] = 234400, - [SMALL_STATE(8097)] = 234432, - [SMALL_STATE(8098)] = 234464, - [SMALL_STATE(8099)] = 234496, - [SMALL_STATE(8100)] = 234528, - [SMALL_STATE(8101)] = 234560, - [SMALL_STATE(8102)] = 234592, - [SMALL_STATE(8103)] = 234624, - [SMALL_STATE(8104)] = 234656, - [SMALL_STATE(8105)] = 234688, - [SMALL_STATE(8106)] = 234720, - [SMALL_STATE(8107)] = 234752, - [SMALL_STATE(8108)] = 234784, - [SMALL_STATE(8109)] = 234816, - [SMALL_STATE(8110)] = 234848, - [SMALL_STATE(8111)] = 234880, - [SMALL_STATE(8112)] = 234912, - [SMALL_STATE(8113)] = 234944, - [SMALL_STATE(8114)] = 234976, - [SMALL_STATE(8115)] = 235008, - [SMALL_STATE(8116)] = 235040, - [SMALL_STATE(8117)] = 235072, - [SMALL_STATE(8118)] = 235104, - [SMALL_STATE(8119)] = 235136, - [SMALL_STATE(8120)] = 235168, - [SMALL_STATE(8121)] = 235200, - [SMALL_STATE(8122)] = 235232, - [SMALL_STATE(8123)] = 235264, - [SMALL_STATE(8124)] = 235296, - [SMALL_STATE(8125)] = 235328, - [SMALL_STATE(8126)] = 235360, - [SMALL_STATE(8127)] = 235392, - [SMALL_STATE(8128)] = 235424, - [SMALL_STATE(8129)] = 235456, - [SMALL_STATE(8130)] = 235488, - [SMALL_STATE(8131)] = 235520, - [SMALL_STATE(8132)] = 235552, - [SMALL_STATE(8133)] = 235584, - [SMALL_STATE(8134)] = 235616, - [SMALL_STATE(8135)] = 235648, - [SMALL_STATE(8136)] = 235680, - [SMALL_STATE(8137)] = 235712, - [SMALL_STATE(8138)] = 235744, - [SMALL_STATE(8139)] = 235776, - [SMALL_STATE(8140)] = 235808, - [SMALL_STATE(8141)] = 235840, - [SMALL_STATE(8142)] = 235872, - [SMALL_STATE(8143)] = 235904, - [SMALL_STATE(8144)] = 235936, - [SMALL_STATE(8145)] = 235968, - [SMALL_STATE(8146)] = 236000, - [SMALL_STATE(8147)] = 236032, - [SMALL_STATE(8148)] = 236064, - [SMALL_STATE(8149)] = 236096, - [SMALL_STATE(8150)] = 236128, - [SMALL_STATE(8151)] = 236160, - [SMALL_STATE(8152)] = 236192, - [SMALL_STATE(8153)] = 236224, - [SMALL_STATE(8154)] = 236256, - [SMALL_STATE(8155)] = 236288, - [SMALL_STATE(8156)] = 236320, - [SMALL_STATE(8157)] = 236352, - [SMALL_STATE(8158)] = 236384, - [SMALL_STATE(8159)] = 236416, - [SMALL_STATE(8160)] = 236448, - [SMALL_STATE(8161)] = 236480, - [SMALL_STATE(8162)] = 236512, - [SMALL_STATE(8163)] = 236544, - [SMALL_STATE(8164)] = 236576, - [SMALL_STATE(8165)] = 236608, - [SMALL_STATE(8166)] = 236640, - [SMALL_STATE(8167)] = 236672, - [SMALL_STATE(8168)] = 236704, - [SMALL_STATE(8169)] = 236736, - [SMALL_STATE(8170)] = 236768, - [SMALL_STATE(8171)] = 236800, - [SMALL_STATE(8172)] = 236832, - [SMALL_STATE(8173)] = 236864, - [SMALL_STATE(8174)] = 236896, - [SMALL_STATE(8175)] = 236928, - [SMALL_STATE(8176)] = 236960, - [SMALL_STATE(8177)] = 236992, - [SMALL_STATE(8178)] = 237024, - [SMALL_STATE(8179)] = 237056, - [SMALL_STATE(8180)] = 237088, - [SMALL_STATE(8181)] = 237120, - [SMALL_STATE(8182)] = 237152, - [SMALL_STATE(8183)] = 237184, - [SMALL_STATE(8184)] = 237216, - [SMALL_STATE(8185)] = 237248, - [SMALL_STATE(8186)] = 237280, - [SMALL_STATE(8187)] = 237312, - [SMALL_STATE(8188)] = 237344, - [SMALL_STATE(8189)] = 237376, - [SMALL_STATE(8190)] = 237408, - [SMALL_STATE(8191)] = 237440, - [SMALL_STATE(8192)] = 237472, - [SMALL_STATE(8193)] = 237504, - [SMALL_STATE(8194)] = 237536, - [SMALL_STATE(8195)] = 237568, - [SMALL_STATE(8196)] = 237600, - [SMALL_STATE(8197)] = 237632, - [SMALL_STATE(8198)] = 237664, - [SMALL_STATE(8199)] = 237696, - [SMALL_STATE(8200)] = 237728, - [SMALL_STATE(8201)] = 237760, - [SMALL_STATE(8202)] = 237792, - [SMALL_STATE(8203)] = 237824, - [SMALL_STATE(8204)] = 237856, - [SMALL_STATE(8205)] = 237888, - [SMALL_STATE(8206)] = 237920, - [SMALL_STATE(8207)] = 237952, - [SMALL_STATE(8208)] = 237984, - [SMALL_STATE(8209)] = 238016, - [SMALL_STATE(8210)] = 238048, - [SMALL_STATE(8211)] = 238080, - [SMALL_STATE(8212)] = 238112, - [SMALL_STATE(8213)] = 238144, - [SMALL_STATE(8214)] = 238176, - [SMALL_STATE(8215)] = 238208, - [SMALL_STATE(8216)] = 238240, - [SMALL_STATE(8217)] = 238272, - [SMALL_STATE(8218)] = 238304, - [SMALL_STATE(8219)] = 238336, - [SMALL_STATE(8220)] = 238368, - [SMALL_STATE(8221)] = 238400, - [SMALL_STATE(8222)] = 238432, - [SMALL_STATE(8223)] = 238464, - [SMALL_STATE(8224)] = 238494, - [SMALL_STATE(8225)] = 238526, - [SMALL_STATE(8226)] = 238558, - [SMALL_STATE(8227)] = 238590, - [SMALL_STATE(8228)] = 238622, - [SMALL_STATE(8229)] = 238654, - [SMALL_STATE(8230)] = 238686, - [SMALL_STATE(8231)] = 238718, - [SMALL_STATE(8232)] = 238750, - [SMALL_STATE(8233)] = 238782, - [SMALL_STATE(8234)] = 238814, - [SMALL_STATE(8235)] = 238846, - [SMALL_STATE(8236)] = 238878, - [SMALL_STATE(8237)] = 238910, - [SMALL_STATE(8238)] = 238942, - [SMALL_STATE(8239)] = 238974, - [SMALL_STATE(8240)] = 239006, - [SMALL_STATE(8241)] = 239038, - [SMALL_STATE(8242)] = 239070, - [SMALL_STATE(8243)] = 239102, - [SMALL_STATE(8244)] = 239134, - [SMALL_STATE(8245)] = 239166, - [SMALL_STATE(8246)] = 239198, - [SMALL_STATE(8247)] = 239230, - [SMALL_STATE(8248)] = 239262, - [SMALL_STATE(8249)] = 239294, - [SMALL_STATE(8250)] = 239326, - [SMALL_STATE(8251)] = 239358, - [SMALL_STATE(8252)] = 239390, - [SMALL_STATE(8253)] = 239422, - [SMALL_STATE(8254)] = 239454, - [SMALL_STATE(8255)] = 239458, - [SMALL_STATE(8256)] = 239462, - [SMALL_STATE(8257)] = 239466, - [SMALL_STATE(8258)] = 239470, - [SMALL_STATE(8259)] = 239474, - [SMALL_STATE(8260)] = 239478, + [SMALL_STATE(3204)] = 0, + [SMALL_STATE(3205)] = 132, + [SMALL_STATE(3206)] = 260, + [SMALL_STATE(3207)] = 386, + [SMALL_STATE(3208)] = 518, + [SMALL_STATE(3209)] = 644, + [SMALL_STATE(3210)] = 770, + [SMALL_STATE(3211)] = 896, + [SMALL_STATE(3212)] = 1022, + [SMALL_STATE(3213)] = 1148, + [SMALL_STATE(3214)] = 1274, + [SMALL_STATE(3215)] = 1400, + [SMALL_STATE(3216)] = 1526, + [SMALL_STATE(3217)] = 1652, + [SMALL_STATE(3218)] = 1778, + [SMALL_STATE(3219)] = 1904, + [SMALL_STATE(3220)] = 2030, + [SMALL_STATE(3221)] = 2156, + [SMALL_STATE(3222)] = 2282, + [SMALL_STATE(3223)] = 2408, + [SMALL_STATE(3224)] = 2514, + [SMALL_STATE(3225)] = 2619, + [SMALL_STATE(3226)] = 2724, + [SMALL_STATE(3227)] = 2828, + [SMALL_STATE(3228)] = 2932, + [SMALL_STATE(3229)] = 3032, + [SMALL_STATE(3230)] = 3131, + [SMALL_STATE(3231)] = 3230, + [SMALL_STATE(3232)] = 3328, + [SMALL_STATE(3233)] = 3426, + [SMALL_STATE(3234)] = 3517, + [SMALL_STATE(3235)] = 3589, + [SMALL_STATE(3236)] = 3675, + [SMALL_STATE(3237)] = 3759, + [SMALL_STATE(3238)] = 3833, + [SMALL_STATE(3239)] = 3919, + [SMALL_STATE(3240)] = 4005, + [SMALL_STATE(3241)] = 4091, + [SMALL_STATE(3242)] = 4177, + [SMALL_STATE(3243)] = 4261, + [SMALL_STATE(3244)] = 4347, + [SMALL_STATE(3245)] = 4419, + [SMALL_STATE(3246)] = 4505, + [SMALL_STATE(3247)] = 4591, + [SMALL_STATE(3248)] = 4665, + [SMALL_STATE(3249)] = 4739, + [SMALL_STATE(3250)] = 4813, + [SMALL_STATE(3251)] = 4886, + [SMALL_STATE(3252)] = 4959, + [SMALL_STATE(3253)] = 5054, + [SMALL_STATE(3254)] = 5139, + [SMALL_STATE(3255)] = 5212, + [SMALL_STATE(3256)] = 5281, + [SMALL_STATE(3257)] = 5350, + [SMALL_STATE(3258)] = 5421, + [SMALL_STATE(3259)] = 5494, + [SMALL_STATE(3260)] = 5563, + [SMALL_STATE(3261)] = 5632, + [SMALL_STATE(3262)] = 5703, + [SMALL_STATE(3263)] = 5771, + [SMALL_STATE(3264)] = 5841, + [SMALL_STATE(3265)] = 5967, + [SMALL_STATE(3266)] = 6037, + [SMALL_STATE(3267)] = 6109, + [SMALL_STATE(3268)] = 6179, + [SMALL_STATE(3269)] = 6305, + [SMALL_STATE(3270)] = 6373, + [SMALL_STATE(3271)] = 6499, + [SMALL_STATE(3272)] = 6569, + [SMALL_STATE(3273)] = 6695, + [SMALL_STATE(3274)] = 6763, + [SMALL_STATE(3275)] = 6831, + [SMALL_STATE(3276)] = 6957, + [SMALL_STATE(3277)] = 7029, + [SMALL_STATE(3278)] = 7155, + [SMALL_STATE(3279)] = 7247, + [SMALL_STATE(3280)] = 7314, + [SMALL_STATE(3281)] = 7381, + [SMALL_STATE(3282)] = 7450, + [SMALL_STATE(3283)] = 7517, + [SMALL_STATE(3284)] = 7610, + [SMALL_STATE(3285)] = 7677, + [SMALL_STATE(3286)] = 7744, + [SMALL_STATE(3287)] = 7811, + [SMALL_STATE(3288)] = 7904, + [SMALL_STATE(3289)] = 7971, + [SMALL_STATE(3290)] = 8038, + [SMALL_STATE(3291)] = 8131, + [SMALL_STATE(3292)] = 8198, + [SMALL_STATE(3293)] = 8265, + [SMALL_STATE(3294)] = 8332, + [SMALL_STATE(3295)] = 8399, + [SMALL_STATE(3296)] = 8466, + [SMALL_STATE(3297)] = 8533, + [SMALL_STATE(3298)] = 8600, + [SMALL_STATE(3299)] = 8693, + [SMALL_STATE(3300)] = 8760, + [SMALL_STATE(3301)] = 8827, + [SMALL_STATE(3302)] = 8922, + [SMALL_STATE(3303)] = 9015, + [SMALL_STATE(3304)] = 9108, + [SMALL_STATE(3305)] = 9177, + [SMALL_STATE(3306)] = 9244, + [SMALL_STATE(3307)] = 9363, + [SMALL_STATE(3308)] = 9430, + [SMALL_STATE(3309)] = 9497, + [SMALL_STATE(3310)] = 9564, + [SMALL_STATE(3311)] = 9633, + [SMALL_STATE(3312)] = 9700, + [SMALL_STATE(3313)] = 9768, + [SMALL_STATE(3314)] = 9838, + [SMALL_STATE(3315)] = 9908, + [SMALL_STATE(3316)] = 9976, + [SMALL_STATE(3317)] = 10042, + [SMALL_STATE(3318)] = 10160, + [SMALL_STATE(3319)] = 10226, + [SMALL_STATE(3320)] = 10346, + [SMALL_STATE(3321)] = 10414, + [SMALL_STATE(3322)] = 10534, + [SMALL_STATE(3323)] = 10602, + [SMALL_STATE(3324)] = 10672, + [SMALL_STATE(3325)] = 10743, + [SMALL_STATE(3326)] = 10860, + [SMALL_STATE(3327)] = 10963, + [SMALL_STATE(3328)] = 11032, + [SMALL_STATE(3329)] = 11101, + [SMALL_STATE(3330)] = 11218, + [SMALL_STATE(3331)] = 11321, + [SMALL_STATE(3332)] = 11388, + [SMALL_STATE(3333)] = 11455, + [SMALL_STATE(3334)] = 11572, + [SMALL_STATE(3335)] = 11641, + [SMALL_STATE(3336)] = 11706, + [SMALL_STATE(3337)] = 11795, + [SMALL_STATE(3338)] = 11862, + [SMALL_STATE(3339)] = 11965, + [SMALL_STATE(3340)] = 12034, + [SMALL_STATE(3341)] = 12099, + [SMALL_STATE(3342)] = 12216, + [SMALL_STATE(3343)] = 12281, + [SMALL_STATE(3344)] = 12398, + [SMALL_STATE(3345)] = 12501, + [SMALL_STATE(3346)] = 12568, + [SMALL_STATE(3347)] = 12639, + [SMALL_STATE(3348)] = 12704, + [SMALL_STATE(3349)] = 12807, + [SMALL_STATE(3350)] = 12924, + [SMALL_STATE(3351)] = 12991, + [SMALL_STATE(3352)] = 13056, + [SMALL_STATE(3353)] = 13159, + [SMALL_STATE(3354)] = 13226, + [SMALL_STATE(3355)] = 13329, + [SMALL_STATE(3356)] = 13446, + [SMALL_STATE(3357)] = 13563, + [SMALL_STATE(3358)] = 13632, + [SMALL_STATE(3359)] = 13735, + [SMALL_STATE(3360)] = 13838, + [SMALL_STATE(3361)] = 13907, + [SMALL_STATE(3362)] = 14010, + [SMALL_STATE(3363)] = 14081, + [SMALL_STATE(3364)] = 14152, + [SMALL_STATE(3365)] = 14255, + [SMALL_STATE(3366)] = 14326, + [SMALL_STATE(3367)] = 14395, + [SMALL_STATE(3368)] = 14466, + [SMALL_STATE(3369)] = 14569, + [SMALL_STATE(3370)] = 14672, + [SMALL_STATE(3371)] = 14743, + [SMALL_STATE(3372)] = 14814, + [SMALL_STATE(3373)] = 14885, + [SMALL_STATE(3374)] = 14956, + [SMALL_STATE(3375)] = 15027, + [SMALL_STATE(3376)] = 15098, + [SMALL_STATE(3377)] = 15165, + [SMALL_STATE(3378)] = 15232, + [SMALL_STATE(3379)] = 15335, + [SMALL_STATE(3380)] = 15399, + [SMALL_STATE(3381)] = 15463, + [SMALL_STATE(3382)] = 15577, + [SMALL_STATE(3383)] = 15677, + [SMALL_STATE(3384)] = 15777, + [SMALL_STATE(3385)] = 15841, + [SMALL_STATE(3386)] = 15905, + [SMALL_STATE(3387)] = 16003, + [SMALL_STATE(3388)] = 16117, + [SMALL_STATE(3389)] = 16185, + [SMALL_STATE(3390)] = 16253, + [SMALL_STATE(3391)] = 16317, + [SMALL_STATE(3392)] = 16383, + [SMALL_STATE(3393)] = 16483, + [SMALL_STATE(3394)] = 16549, + [SMALL_STATE(3395)] = 16617, + [SMALL_STATE(3396)] = 16681, + [SMALL_STATE(3397)] = 16747, + [SMALL_STATE(3398)] = 16811, + [SMALL_STATE(3399)] = 16875, + [SMALL_STATE(3400)] = 16939, + [SMALL_STATE(3401)] = 17005, + [SMALL_STATE(3402)] = 17069, + [SMALL_STATE(3403)] = 17133, + [SMALL_STATE(3404)] = 17233, + [SMALL_STATE(3405)] = 17297, + [SMALL_STATE(3406)] = 17361, + [SMALL_STATE(3407)] = 17425, + [SMALL_STATE(3408)] = 17489, + [SMALL_STATE(3409)] = 17553, + [SMALL_STATE(3410)] = 17667, + [SMALL_STATE(3411)] = 17731, + [SMALL_STATE(3412)] = 17795, + [SMALL_STATE(3413)] = 17863, + [SMALL_STATE(3414)] = 17927, + [SMALL_STATE(3415)] = 17991, + [SMALL_STATE(3416)] = 18091, + [SMALL_STATE(3417)] = 18155, + [SMALL_STATE(3418)] = 18223, + [SMALL_STATE(3419)] = 18287, + [SMALL_STATE(3420)] = 18351, + [SMALL_STATE(3421)] = 18415, + [SMALL_STATE(3422)] = 18479, + [SMALL_STATE(3423)] = 18543, + [SMALL_STATE(3424)] = 18607, + [SMALL_STATE(3425)] = 18671, + [SMALL_STATE(3426)] = 18735, + [SMALL_STATE(3427)] = 18849, + [SMALL_STATE(3428)] = 18913, + [SMALL_STATE(3429)] = 18977, + [SMALL_STATE(3430)] = 19041, + [SMALL_STATE(3431)] = 19105, + [SMALL_STATE(3432)] = 19169, + [SMALL_STATE(3433)] = 19233, + [SMALL_STATE(3434)] = 19299, + [SMALL_STATE(3435)] = 19363, + [SMALL_STATE(3436)] = 19427, + [SMALL_STATE(3437)] = 19493, + [SMALL_STATE(3438)] = 19593, + [SMALL_STATE(3439)] = 19657, + [SMALL_STATE(3440)] = 19725, + [SMALL_STATE(3441)] = 19789, + [SMALL_STATE(3442)] = 19889, + [SMALL_STATE(3443)] = 19955, + [SMALL_STATE(3444)] = 20021, + [SMALL_STATE(3445)] = 20089, + [SMALL_STATE(3446)] = 20157, + [SMALL_STATE(3447)] = 20221, + [SMALL_STATE(3448)] = 20285, + [SMALL_STATE(3449)] = 20351, + [SMALL_STATE(3450)] = 20417, + [SMALL_STATE(3451)] = 20481, + [SMALL_STATE(3452)] = 20549, + [SMALL_STATE(3453)] = 20613, + [SMALL_STATE(3454)] = 20681, + [SMALL_STATE(3455)] = 20745, + [SMALL_STATE(3456)] = 20810, + [SMALL_STATE(3457)] = 20873, + [SMALL_STATE(3458)] = 20936, + [SMALL_STATE(3459)] = 20999, + [SMALL_STATE(3460)] = 21062, + [SMALL_STATE(3461)] = 21125, + [SMALL_STATE(3462)] = 21188, + [SMALL_STATE(3463)] = 21251, + [SMALL_STATE(3464)] = 21314, + [SMALL_STATE(3465)] = 21377, + [SMALL_STATE(3466)] = 21440, + [SMALL_STATE(3467)] = 21503, + [SMALL_STATE(3468)] = 21566, + [SMALL_STATE(3469)] = 21629, + [SMALL_STATE(3470)] = 21692, + [SMALL_STATE(3471)] = 21755, + [SMALL_STATE(3472)] = 21818, + [SMALL_STATE(3473)] = 21881, + [SMALL_STATE(3474)] = 21944, + [SMALL_STATE(3475)] = 22007, + [SMALL_STATE(3476)] = 22070, + [SMALL_STATE(3477)] = 22133, + [SMALL_STATE(3478)] = 22196, + [SMALL_STATE(3479)] = 22259, + [SMALL_STATE(3480)] = 22322, + [SMALL_STATE(3481)] = 22385, + [SMALL_STATE(3482)] = 22448, + [SMALL_STATE(3483)] = 22511, + [SMALL_STATE(3484)] = 22588, + [SMALL_STATE(3485)] = 22651, + [SMALL_STATE(3486)] = 22714, + [SMALL_STATE(3487)] = 22777, + [SMALL_STATE(3488)] = 22840, + [SMALL_STATE(3489)] = 22903, + [SMALL_STATE(3490)] = 22966, + [SMALL_STATE(3491)] = 23029, + [SMALL_STATE(3492)] = 23092, + [SMALL_STATE(3493)] = 23155, + [SMALL_STATE(3494)] = 23218, + [SMALL_STATE(3495)] = 23281, + [SMALL_STATE(3496)] = 23344, + [SMALL_STATE(3497)] = 23407, + [SMALL_STATE(3498)] = 23470, + [SMALL_STATE(3499)] = 23533, + [SMALL_STATE(3500)] = 23596, + [SMALL_STATE(3501)] = 23659, + [SMALL_STATE(3502)] = 23722, + [SMALL_STATE(3503)] = 23785, + [SMALL_STATE(3504)] = 23852, + [SMALL_STATE(3505)] = 23915, + [SMALL_STATE(3506)] = 23978, + [SMALL_STATE(3507)] = 24041, + [SMALL_STATE(3508)] = 24104, + [SMALL_STATE(3509)] = 24167, + [SMALL_STATE(3510)] = 24230, + [SMALL_STATE(3511)] = 24293, + [SMALL_STATE(3512)] = 24356, + [SMALL_STATE(3513)] = 24419, + [SMALL_STATE(3514)] = 24482, + [SMALL_STATE(3515)] = 24545, + [SMALL_STATE(3516)] = 24608, + [SMALL_STATE(3517)] = 24671, + [SMALL_STATE(3518)] = 24734, + [SMALL_STATE(3519)] = 24845, + [SMALL_STATE(3520)] = 24908, + [SMALL_STATE(3521)] = 24971, + [SMALL_STATE(3522)] = 25082, + [SMALL_STATE(3523)] = 25145, + [SMALL_STATE(3524)] = 25208, + [SMALL_STATE(3525)] = 25273, + [SMALL_STATE(3526)] = 25336, + [SMALL_STATE(3527)] = 25399, + [SMALL_STATE(3528)] = 25466, + [SMALL_STATE(3529)] = 25531, + [SMALL_STATE(3530)] = 25642, + [SMALL_STATE(3531)] = 25709, + [SMALL_STATE(3532)] = 25774, + [SMALL_STATE(3533)] = 25837, + [SMALL_STATE(3534)] = 25900, + [SMALL_STATE(3535)] = 25963, + [SMALL_STATE(3536)] = 26040, + [SMALL_STATE(3537)] = 26103, + [SMALL_STATE(3538)] = 26166, + [SMALL_STATE(3539)] = 26229, + [SMALL_STATE(3540)] = 26292, + [SMALL_STATE(3541)] = 26355, + [SMALL_STATE(3542)] = 26422, + [SMALL_STATE(3543)] = 26489, + [SMALL_STATE(3544)] = 26556, + [SMALL_STATE(3545)] = 26619, + [SMALL_STATE(3546)] = 26682, + [SMALL_STATE(3547)] = 26749, + [SMALL_STATE(3548)] = 26812, + [SMALL_STATE(3549)] = 26875, + [SMALL_STATE(3550)] = 26940, + [SMALL_STATE(3551)] = 27017, + [SMALL_STATE(3552)] = 27080, + [SMALL_STATE(3553)] = 27143, + [SMALL_STATE(3554)] = 27206, + [SMALL_STATE(3555)] = 27269, + [SMALL_STATE(3556)] = 27334, + [SMALL_STATE(3557)] = 27397, + [SMALL_STATE(3558)] = 27460, + [SMALL_STATE(3559)] = 27523, + [SMALL_STATE(3560)] = 27586, + [SMALL_STATE(3561)] = 27649, + [SMALL_STATE(3562)] = 27711, + [SMALL_STATE(3563)] = 27773, + [SMALL_STATE(3564)] = 27835, + [SMALL_STATE(3565)] = 27897, + [SMALL_STATE(3566)] = 27959, + [SMALL_STATE(3567)] = 28021, + [SMALL_STATE(3568)] = 28083, + [SMALL_STATE(3569)] = 28145, + [SMALL_STATE(3570)] = 28207, + [SMALL_STATE(3571)] = 28269, + [SMALL_STATE(3572)] = 28331, + [SMALL_STATE(3573)] = 28393, + [SMALL_STATE(3574)] = 28455, + [SMALL_STATE(3575)] = 28517, + [SMALL_STATE(3576)] = 28579, + [SMALL_STATE(3577)] = 28641, + [SMALL_STATE(3578)] = 28703, + [SMALL_STATE(3579)] = 28765, + [SMALL_STATE(3580)] = 28827, + [SMALL_STATE(3581)] = 28889, + [SMALL_STATE(3582)] = 28951, + [SMALL_STATE(3583)] = 29013, + [SMALL_STATE(3584)] = 29075, + [SMALL_STATE(3585)] = 29137, + [SMALL_STATE(3586)] = 29201, + [SMALL_STATE(3587)] = 29263, + [SMALL_STATE(3588)] = 29325, + [SMALL_STATE(3589)] = 29387, + [SMALL_STATE(3590)] = 29449, + [SMALL_STATE(3591)] = 29511, + [SMALL_STATE(3592)] = 29573, + [SMALL_STATE(3593)] = 29635, + [SMALL_STATE(3594)] = 29697, + [SMALL_STATE(3595)] = 29759, + [SMALL_STATE(3596)] = 29821, + [SMALL_STATE(3597)] = 29883, + [SMALL_STATE(3598)] = 29945, + [SMALL_STATE(3599)] = 30007, + [SMALL_STATE(3600)] = 30069, + [SMALL_STATE(3601)] = 30163, + [SMALL_STATE(3602)] = 30225, + [SMALL_STATE(3603)] = 30287, + [SMALL_STATE(3604)] = 30349, + [SMALL_STATE(3605)] = 30411, + [SMALL_STATE(3606)] = 30473, + [SMALL_STATE(3607)] = 30535, + [SMALL_STATE(3608)] = 30597, + [SMALL_STATE(3609)] = 30659, + [SMALL_STATE(3610)] = 30721, + [SMALL_STATE(3611)] = 30783, + [SMALL_STATE(3612)] = 30845, + [SMALL_STATE(3613)] = 30907, + [SMALL_STATE(3614)] = 30969, + [SMALL_STATE(3615)] = 31031, + [SMALL_STATE(3616)] = 31093, + [SMALL_STATE(3617)] = 31155, + [SMALL_STATE(3618)] = 31217, + [SMALL_STATE(3619)] = 31279, + [SMALL_STATE(3620)] = 31341, + [SMALL_STATE(3621)] = 31403, + [SMALL_STATE(3622)] = 31465, + [SMALL_STATE(3623)] = 31527, + [SMALL_STATE(3624)] = 31589, + [SMALL_STATE(3625)] = 31651, + [SMALL_STATE(3626)] = 31713, + [SMALL_STATE(3627)] = 31775, + [SMALL_STATE(3628)] = 31837, + [SMALL_STATE(3629)] = 31899, + [SMALL_STATE(3630)] = 31961, + [SMALL_STATE(3631)] = 32023, + [SMALL_STATE(3632)] = 32085, + [SMALL_STATE(3633)] = 32147, + [SMALL_STATE(3634)] = 32209, + [SMALL_STATE(3635)] = 32271, + [SMALL_STATE(3636)] = 32333, + [SMALL_STATE(3637)] = 32395, + [SMALL_STATE(3638)] = 32457, + [SMALL_STATE(3639)] = 32519, + [SMALL_STATE(3640)] = 32581, + [SMALL_STATE(3641)] = 32643, + [SMALL_STATE(3642)] = 32705, + [SMALL_STATE(3643)] = 32767, + [SMALL_STATE(3644)] = 32829, + [SMALL_STATE(3645)] = 32891, + [SMALL_STATE(3646)] = 32953, + [SMALL_STATE(3647)] = 33015, + [SMALL_STATE(3648)] = 33077, + [SMALL_STATE(3649)] = 33139, + [SMALL_STATE(3650)] = 33201, + [SMALL_STATE(3651)] = 33263, + [SMALL_STATE(3652)] = 33325, + [SMALL_STATE(3653)] = 33387, + [SMALL_STATE(3654)] = 33449, + [SMALL_STATE(3655)] = 33511, + [SMALL_STATE(3656)] = 33592, + [SMALL_STATE(3657)] = 33672, + [SMALL_STATE(3658)] = 33734, + [SMALL_STATE(3659)] = 33810, + [SMALL_STATE(3660)] = 33886, + [SMALL_STATE(3661)] = 33962, + [SMALL_STATE(3662)] = 34028, + [SMALL_STATE(3663)] = 34104, + [SMALL_STATE(3664)] = 34168, + [SMALL_STATE(3665)] = 34232, + [SMALL_STATE(3666)] = 34306, + [SMALL_STATE(3667)] = 34380, + [SMALL_STATE(3668)] = 34442, + [SMALL_STATE(3669)] = 34517, + [SMALL_STATE(3670)] = 34590, + [SMALL_STATE(3671)] = 34649, + [SMALL_STATE(3672)] = 34736, + [SMALL_STATE(3673)] = 34801, + [SMALL_STATE(3674)] = 34860, + [SMALL_STATE(3675)] = 34919, + [SMALL_STATE(3676)] = 34982, + [SMALL_STATE(3677)] = 35041, + [SMALL_STATE(3678)] = 35102, + [SMALL_STATE(3679)] = 35177, + [SMALL_STATE(3680)] = 35236, + [SMALL_STATE(3681)] = 35295, + [SMALL_STATE(3682)] = 35356, + [SMALL_STATE(3683)] = 35431, + [SMALL_STATE(3684)] = 35506, + [SMALL_STATE(3685)] = 35579, + [SMALL_STATE(3686)] = 35654, + [SMALL_STATE(3687)] = 35729, + [SMALL_STATE(3688)] = 35788, + [SMALL_STATE(3689)] = 35847, + [SMALL_STATE(3690)] = 35910, + [SMALL_STATE(3691)] = 35985, + [SMALL_STATE(3692)] = 36060, + [SMALL_STATE(3693)] = 36135, + [SMALL_STATE(3694)] = 36198, + [SMALL_STATE(3695)] = 36261, + [SMALL_STATE(3696)] = 36320, + [SMALL_STATE(3697)] = 36382, + [SMALL_STATE(3698)] = 36444, + [SMALL_STATE(3699)] = 36518, + [SMALL_STATE(3700)] = 36578, + [SMALL_STATE(3701)] = 36636, + [SMALL_STATE(3702)] = 36722, + [SMALL_STATE(3703)] = 36780, + [SMALL_STATE(3704)] = 36854, + [SMALL_STATE(3705)] = 36912, + [SMALL_STATE(3706)] = 36984, + [SMALL_STATE(3707)] = 37058, + [SMALL_STATE(3708)] = 37130, + [SMALL_STATE(3709)] = 37192, + [SMALL_STATE(3710)] = 37266, + [SMALL_STATE(3711)] = 37368, + [SMALL_STATE(3712)] = 37428, + [SMALL_STATE(3713)] = 37502, + [SMALL_STATE(3714)] = 37562, + [SMALL_STATE(3715)] = 37624, + [SMALL_STATE(3716)] = 37682, + [SMALL_STATE(3717)] = 37784, + [SMALL_STATE(3718)] = 37844, + [SMALL_STATE(3719)] = 37946, + [SMALL_STATE(3720)] = 38048, + [SMALL_STATE(3721)] = 38105, + [SMALL_STATE(3722)] = 38184, + [SMALL_STATE(3723)] = 38241, + [SMALL_STATE(3724)] = 38320, + [SMALL_STATE(3725)] = 38399, + [SMALL_STATE(3726)] = 38456, + [SMALL_STATE(3727)] = 38535, + [SMALL_STATE(3728)] = 38614, + [SMALL_STATE(3729)] = 38693, + [SMALL_STATE(3730)] = 38774, + [SMALL_STATE(3731)] = 38831, + [SMALL_STATE(3732)] = 38910, + [SMALL_STATE(3733)] = 38989, + [SMALL_STATE(3734)] = 39050, + [SMALL_STATE(3735)] = 39129, + [SMALL_STATE(3736)] = 39188, + [SMALL_STATE(3737)] = 39267, + [SMALL_STATE(3738)] = 39326, + [SMALL_STATE(3739)] = 39405, + [SMALL_STATE(3740)] = 39462, + [SMALL_STATE(3741)] = 39519, + [SMALL_STATE(3742)] = 39580, + [SMALL_STATE(3743)] = 39639, + [SMALL_STATE(3744)] = 39710, + [SMALL_STATE(3745)] = 39781, + [SMALL_STATE(3746)] = 39860, + [SMALL_STATE(3747)] = 39939, + [SMALL_STATE(3748)] = 40018, + [SMALL_STATE(3749)] = 40075, + [SMALL_STATE(3750)] = 40132, + [SMALL_STATE(3751)] = 40189, + [SMALL_STATE(3752)] = 40246, + [SMALL_STATE(3753)] = 40325, + [SMALL_STATE(3754)] = 40382, + [SMALL_STATE(3755)] = 40461, + [SMALL_STATE(3756)] = 40518, + [SMALL_STATE(3757)] = 40575, + [SMALL_STATE(3758)] = 40632, + [SMALL_STATE(3759)] = 40711, + [SMALL_STATE(3760)] = 40772, + [SMALL_STATE(3761)] = 40857, + [SMALL_STATE(3762)] = 40939, + [SMALL_STATE(3763)] = 40997, + [SMALL_STATE(3764)] = 41053, + [SMALL_STATE(3765)] = 41109, + [SMALL_STATE(3766)] = 41191, + [SMALL_STATE(3767)] = 41247, + [SMALL_STATE(3768)] = 41329, + [SMALL_STATE(3769)] = 41425, + [SMALL_STATE(3770)] = 41481, + [SMALL_STATE(3771)] = 41577, + [SMALL_STATE(3772)] = 41635, + [SMALL_STATE(3773)] = 41691, + [SMALL_STATE(3774)] = 41773, + [SMALL_STATE(3775)] = 41829, + [SMALL_STATE(3776)] = 41885, + [SMALL_STATE(3777)] = 41941, + [SMALL_STATE(3778)] = 42017, + [SMALL_STATE(3779)] = 42073, + [SMALL_STATE(3780)] = 42129, + [SMALL_STATE(3781)] = 42185, + [SMALL_STATE(3782)] = 42241, + [SMALL_STATE(3783)] = 42297, + [SMALL_STATE(3784)] = 42353, + [SMALL_STATE(3785)] = 42449, + [SMALL_STATE(3786)] = 42531, + [SMALL_STATE(3787)] = 42627, + [SMALL_STATE(3788)] = 42723, + [SMALL_STATE(3789)] = 42805, + [SMALL_STATE(3790)] = 42887, + [SMALL_STATE(3791)] = 42969, + [SMALL_STATE(3792)] = 43051, + [SMALL_STATE(3793)] = 43147, + [SMALL_STATE(3794)] = 43243, + [SMALL_STATE(3795)] = 43339, + [SMALL_STATE(3796)] = 43421, + [SMALL_STATE(3797)] = 43491, + [SMALL_STATE(3798)] = 43573, + [SMALL_STATE(3799)] = 43669, + [SMALL_STATE(3800)] = 43751, + [SMALL_STATE(3801)] = 43833, + [SMALL_STATE(3802)] = 43915, + [SMALL_STATE(3803)] = 43991, + [SMALL_STATE(3804)] = 44073, + [SMALL_STATE(3805)] = 44169, + [SMALL_STATE(3806)] = 44265, + [SMALL_STATE(3807)] = 44361, + [SMALL_STATE(3808)] = 44457, + [SMALL_STATE(3809)] = 44553, + [SMALL_STATE(3810)] = 44649, + [SMALL_STATE(3811)] = 44731, + [SMALL_STATE(3812)] = 44827, + [SMALL_STATE(3813)] = 44884, + [SMALL_STATE(3814)] = 44957, + [SMALL_STATE(3815)] = 45030, + [SMALL_STATE(3816)] = 45103, + [SMALL_STATE(3817)] = 45176, + [SMALL_STATE(3818)] = 45269, + [SMALL_STATE(3819)] = 45342, + [SMALL_STATE(3820)] = 45415, + [SMALL_STATE(3821)] = 45488, + [SMALL_STATE(3822)] = 45561, + [SMALL_STATE(3823)] = 45634, + [SMALL_STATE(3824)] = 45707, + [SMALL_STATE(3825)] = 45762, + [SMALL_STATE(3826)] = 45835, + [SMALL_STATE(3827)] = 45908, + [SMALL_STATE(3828)] = 45981, + [SMALL_STATE(3829)] = 46054, + [SMALL_STATE(3830)] = 46127, + [SMALL_STATE(3831)] = 46200, + [SMALL_STATE(3832)] = 46259, + [SMALL_STATE(3833)] = 46332, + [SMALL_STATE(3834)] = 46405, + [SMALL_STATE(3835)] = 46478, + [SMALL_STATE(3836)] = 46551, + [SMALL_STATE(3837)] = 46624, + [SMALL_STATE(3838)] = 46697, + [SMALL_STATE(3839)] = 46770, + [SMALL_STATE(3840)] = 46843, + [SMALL_STATE(3841)] = 46936, + [SMALL_STATE(3842)] = 47009, + [SMALL_STATE(3843)] = 47082, + [SMALL_STATE(3844)] = 47155, + [SMALL_STATE(3845)] = 47228, + [SMALL_STATE(3846)] = 47301, + [SMALL_STATE(3847)] = 47374, + [SMALL_STATE(3848)] = 47447, + [SMALL_STATE(3849)] = 47520, + [SMALL_STATE(3850)] = 47593, + [SMALL_STATE(3851)] = 47666, + [SMALL_STATE(3852)] = 47739, + [SMALL_STATE(3853)] = 47812, + [SMALL_STATE(3854)] = 47905, + [SMALL_STATE(3855)] = 47976, + [SMALL_STATE(3856)] = 48069, + [SMALL_STATE(3857)] = 48124, + [SMALL_STATE(3858)] = 48197, + [SMALL_STATE(3859)] = 48258, + [SMALL_STATE(3860)] = 48331, + [SMALL_STATE(3861)] = 48404, + [SMALL_STATE(3862)] = 48477, + [SMALL_STATE(3863)] = 48550, + [SMALL_STATE(3864)] = 48623, + [SMALL_STATE(3865)] = 48696, + [SMALL_STATE(3866)] = 48769, + [SMALL_STATE(3867)] = 48842, + [SMALL_STATE(3868)] = 48915, + [SMALL_STATE(3869)] = 48988, + [SMALL_STATE(3870)] = 49043, + [SMALL_STATE(3871)] = 49116, + [SMALL_STATE(3872)] = 49189, + [SMALL_STATE(3873)] = 49282, + [SMALL_STATE(3874)] = 49355, + [SMALL_STATE(3875)] = 49412, + [SMALL_STATE(3876)] = 49483, + [SMALL_STATE(3877)] = 49554, + [SMALL_STATE(3878)] = 49627, + [SMALL_STATE(3879)] = 49682, + [SMALL_STATE(3880)] = 49741, + [SMALL_STATE(3881)] = 49812, + [SMALL_STATE(3882)] = 49883, + [SMALL_STATE(3883)] = 49956, + [SMALL_STATE(3884)] = 50013, + [SMALL_STATE(3885)] = 50086, + [SMALL_STATE(3886)] = 50179, + [SMALL_STATE(3887)] = 50272, + [SMALL_STATE(3888)] = 50345, + [SMALL_STATE(3889)] = 50418, + [SMALL_STATE(3890)] = 50491, + [SMALL_STATE(3891)] = 50564, + [SMALL_STATE(3892)] = 50637, + [SMALL_STATE(3893)] = 50710, + [SMALL_STATE(3894)] = 50783, + [SMALL_STATE(3895)] = 50856, + [SMALL_STATE(3896)] = 50929, + [SMALL_STATE(3897)] = 51022, + [SMALL_STATE(3898)] = 51081, + [SMALL_STATE(3899)] = 51154, + [SMALL_STATE(3900)] = 51225, + [SMALL_STATE(3901)] = 51296, + [SMALL_STATE(3902)] = 51369, + [SMALL_STATE(3903)] = 51440, + [SMALL_STATE(3904)] = 51513, + [SMALL_STATE(3905)] = 51586, + [SMALL_STATE(3906)] = 51659, + [SMALL_STATE(3907)] = 51732, + [SMALL_STATE(3908)] = 51805, + [SMALL_STATE(3909)] = 51878, + [SMALL_STATE(3910)] = 51951, + [SMALL_STATE(3911)] = 52024, + [SMALL_STATE(3912)] = 52097, + [SMALL_STATE(3913)] = 52170, + [SMALL_STATE(3914)] = 52243, + [SMALL_STATE(3915)] = 52316, + [SMALL_STATE(3916)] = 52389, + [SMALL_STATE(3917)] = 52462, + [SMALL_STATE(3918)] = 52535, + [SMALL_STATE(3919)] = 52608, + [SMALL_STATE(3920)] = 52681, + [SMALL_STATE(3921)] = 52740, + [SMALL_STATE(3922)] = 52813, + [SMALL_STATE(3923)] = 52886, + [SMALL_STATE(3924)] = 52959, + [SMALL_STATE(3925)] = 53032, + [SMALL_STATE(3926)] = 53105, + [SMALL_STATE(3927)] = 53178, + [SMALL_STATE(3928)] = 53251, + [SMALL_STATE(3929)] = 53324, + [SMALL_STATE(3930)] = 53397, + [SMALL_STATE(3931)] = 53470, + [SMALL_STATE(3932)] = 53543, + [SMALL_STATE(3933)] = 53616, + [SMALL_STATE(3934)] = 53689, + [SMALL_STATE(3935)] = 53762, + [SMALL_STATE(3936)] = 53835, + [SMALL_STATE(3937)] = 53908, + [SMALL_STATE(3938)] = 53981, + [SMALL_STATE(3939)] = 54054, + [SMALL_STATE(3940)] = 54127, + [SMALL_STATE(3941)] = 54200, + [SMALL_STATE(3942)] = 54273, + [SMALL_STATE(3943)] = 54346, + [SMALL_STATE(3944)] = 54419, + [SMALL_STATE(3945)] = 54492, + [SMALL_STATE(3946)] = 54565, + [SMALL_STATE(3947)] = 54638, + [SMALL_STATE(3948)] = 54711, + [SMALL_STATE(3949)] = 54784, + [SMALL_STATE(3950)] = 54857, + [SMALL_STATE(3951)] = 54930, + [SMALL_STATE(3952)] = 55003, + [SMALL_STATE(3953)] = 55076, + [SMALL_STATE(3954)] = 55149, + [SMALL_STATE(3955)] = 55222, + [SMALL_STATE(3956)] = 55295, + [SMALL_STATE(3957)] = 55368, + [SMALL_STATE(3958)] = 55441, + [SMALL_STATE(3959)] = 55514, + [SMALL_STATE(3960)] = 55587, + [SMALL_STATE(3961)] = 55660, + [SMALL_STATE(3962)] = 55733, + [SMALL_STATE(3963)] = 55806, + [SMALL_STATE(3964)] = 55879, + [SMALL_STATE(3965)] = 55952, + [SMALL_STATE(3966)] = 56025, + [SMALL_STATE(3967)] = 56098, + [SMALL_STATE(3968)] = 56171, + [SMALL_STATE(3969)] = 56244, + [SMALL_STATE(3970)] = 56317, + [SMALL_STATE(3971)] = 56390, + [SMALL_STATE(3972)] = 56463, + [SMALL_STATE(3973)] = 56536, + [SMALL_STATE(3974)] = 56609, + [SMALL_STATE(3975)] = 56682, + [SMALL_STATE(3976)] = 56755, + [SMALL_STATE(3977)] = 56828, + [SMALL_STATE(3978)] = 56901, + [SMALL_STATE(3979)] = 56974, + [SMALL_STATE(3980)] = 57047, + [SMALL_STATE(3981)] = 57120, + [SMALL_STATE(3982)] = 57193, + [SMALL_STATE(3983)] = 57284, + [SMALL_STATE(3984)] = 57357, + [SMALL_STATE(3985)] = 57430, + [SMALL_STATE(3986)] = 57503, + [SMALL_STATE(3987)] = 57576, + [SMALL_STATE(3988)] = 57649, + [SMALL_STATE(3989)] = 57722, + [SMALL_STATE(3990)] = 57795, + [SMALL_STATE(3991)] = 57868, + [SMALL_STATE(3992)] = 57961, + [SMALL_STATE(3993)] = 58034, + [SMALL_STATE(3994)] = 58107, + [SMALL_STATE(3995)] = 58180, + [SMALL_STATE(3996)] = 58253, + [SMALL_STATE(3997)] = 58326, + [SMALL_STATE(3998)] = 58399, + [SMALL_STATE(3999)] = 58472, + [SMALL_STATE(4000)] = 58545, + [SMALL_STATE(4001)] = 58618, + [SMALL_STATE(4002)] = 58691, + [SMALL_STATE(4003)] = 58764, + [SMALL_STATE(4004)] = 58857, + [SMALL_STATE(4005)] = 58930, + [SMALL_STATE(4006)] = 59003, + [SMALL_STATE(4007)] = 59076, + [SMALL_STATE(4008)] = 59149, + [SMALL_STATE(4009)] = 59222, + [SMALL_STATE(4010)] = 59295, + [SMALL_STATE(4011)] = 59368, + [SMALL_STATE(4012)] = 59427, + [SMALL_STATE(4013)] = 59500, + [SMALL_STATE(4014)] = 59573, + [SMALL_STATE(4015)] = 59646, + [SMALL_STATE(4016)] = 59701, + [SMALL_STATE(4017)] = 59774, + [SMALL_STATE(4018)] = 59847, + [SMALL_STATE(4019)] = 59920, + [SMALL_STATE(4020)] = 59993, + [SMALL_STATE(4021)] = 60066, + [SMALL_STATE(4022)] = 60139, + [SMALL_STATE(4023)] = 60212, + [SMALL_STATE(4024)] = 60285, + [SMALL_STATE(4025)] = 60358, + [SMALL_STATE(4026)] = 60431, + [SMALL_STATE(4027)] = 60504, + [SMALL_STATE(4028)] = 60577, + [SMALL_STATE(4029)] = 60650, + [SMALL_STATE(4030)] = 60723, + [SMALL_STATE(4031)] = 60780, + [SMALL_STATE(4032)] = 60853, + [SMALL_STATE(4033)] = 60926, + [SMALL_STATE(4034)] = 60999, + [SMALL_STATE(4035)] = 61072, + [SMALL_STATE(4036)] = 61145, + [SMALL_STATE(4037)] = 61218, + [SMALL_STATE(4038)] = 61291, + [SMALL_STATE(4039)] = 61364, + [SMALL_STATE(4040)] = 61437, + [SMALL_STATE(4041)] = 61510, + [SMALL_STATE(4042)] = 61583, + [SMALL_STATE(4043)] = 61656, + [SMALL_STATE(4044)] = 61729, + [SMALL_STATE(4045)] = 61822, + [SMALL_STATE(4046)] = 61895, + [SMALL_STATE(4047)] = 61988, + [SMALL_STATE(4048)] = 62061, + [SMALL_STATE(4049)] = 62134, + [SMALL_STATE(4050)] = 62193, + [SMALL_STATE(4051)] = 62266, + [SMALL_STATE(4052)] = 62339, + [SMALL_STATE(4053)] = 62412, + [SMALL_STATE(4054)] = 62485, + [SMALL_STATE(4055)] = 62558, + [SMALL_STATE(4056)] = 62631, + [SMALL_STATE(4057)] = 62704, + [SMALL_STATE(4058)] = 62777, + [SMALL_STATE(4059)] = 62850, + [SMALL_STATE(4060)] = 62923, + [SMALL_STATE(4061)] = 62996, + [SMALL_STATE(4062)] = 63069, + [SMALL_STATE(4063)] = 63142, + [SMALL_STATE(4064)] = 63215, + [SMALL_STATE(4065)] = 63308, + [SMALL_STATE(4066)] = 63381, + [SMALL_STATE(4067)] = 63454, + [SMALL_STATE(4068)] = 63527, + [SMALL_STATE(4069)] = 63600, + [SMALL_STATE(4070)] = 63673, + [SMALL_STATE(4071)] = 63746, + [SMALL_STATE(4072)] = 63819, + [SMALL_STATE(4073)] = 63892, + [SMALL_STATE(4074)] = 63965, + [SMALL_STATE(4075)] = 64038, + [SMALL_STATE(4076)] = 64111, + [SMALL_STATE(4077)] = 64204, + [SMALL_STATE(4078)] = 64263, + [SMALL_STATE(4079)] = 64336, + [SMALL_STATE(4080)] = 64409, + [SMALL_STATE(4081)] = 64464, + [SMALL_STATE(4082)] = 64537, + [SMALL_STATE(4083)] = 64610, + [SMALL_STATE(4084)] = 64683, + [SMALL_STATE(4085)] = 64756, + [SMALL_STATE(4086)] = 64829, + [SMALL_STATE(4087)] = 64902, + [SMALL_STATE(4088)] = 64975, + [SMALL_STATE(4089)] = 65048, + [SMALL_STATE(4090)] = 65121, + [SMALL_STATE(4091)] = 65194, + [SMALL_STATE(4092)] = 65267, + [SMALL_STATE(4093)] = 65340, + [SMALL_STATE(4094)] = 65413, + [SMALL_STATE(4095)] = 65486, + [SMALL_STATE(4096)] = 65559, + [SMALL_STATE(4097)] = 65614, + [SMALL_STATE(4098)] = 65687, + [SMALL_STATE(4099)] = 65760, + [SMALL_STATE(4100)] = 65833, + [SMALL_STATE(4101)] = 65906, + [SMALL_STATE(4102)] = 65979, + [SMALL_STATE(4103)] = 66052, + [SMALL_STATE(4104)] = 66135, + [SMALL_STATE(4105)] = 66208, + [SMALL_STATE(4106)] = 66281, + [SMALL_STATE(4107)] = 66354, + [SMALL_STATE(4108)] = 66427, + [SMALL_STATE(4109)] = 66500, + [SMALL_STATE(4110)] = 66573, + [SMALL_STATE(4111)] = 66646, + [SMALL_STATE(4112)] = 66719, + [SMALL_STATE(4113)] = 66792, + [SMALL_STATE(4114)] = 66865, + [SMALL_STATE(4115)] = 66938, + [SMALL_STATE(4116)] = 67011, + [SMALL_STATE(4117)] = 67066, + [SMALL_STATE(4118)] = 67139, + [SMALL_STATE(4119)] = 67198, + [SMALL_STATE(4120)] = 67271, + [SMALL_STATE(4121)] = 67344, + [SMALL_STATE(4122)] = 67417, + [SMALL_STATE(4123)] = 67490, + [SMALL_STATE(4124)] = 67545, + [SMALL_STATE(4125)] = 67618, + [SMALL_STATE(4126)] = 67691, + [SMALL_STATE(4127)] = 67764, + [SMALL_STATE(4128)] = 67837, + [SMALL_STATE(4129)] = 67910, + [SMALL_STATE(4130)] = 67983, + [SMALL_STATE(4131)] = 68056, + [SMALL_STATE(4132)] = 68129, + [SMALL_STATE(4133)] = 68222, + [SMALL_STATE(4134)] = 68295, + [SMALL_STATE(4135)] = 68368, + [SMALL_STATE(4136)] = 68441, + [SMALL_STATE(4137)] = 68514, + [SMALL_STATE(4138)] = 68587, + [SMALL_STATE(4139)] = 68660, + [SMALL_STATE(4140)] = 68733, + [SMALL_STATE(4141)] = 68806, + [SMALL_STATE(4142)] = 68879, + [SMALL_STATE(4143)] = 68952, + [SMALL_STATE(4144)] = 69025, + [SMALL_STATE(4145)] = 69098, + [SMALL_STATE(4146)] = 69171, + [SMALL_STATE(4147)] = 69244, + [SMALL_STATE(4148)] = 69317, + [SMALL_STATE(4149)] = 69390, + [SMALL_STATE(4150)] = 69463, + [SMALL_STATE(4151)] = 69536, + [SMALL_STATE(4152)] = 69609, + [SMALL_STATE(4153)] = 69682, + [SMALL_STATE(4154)] = 69775, + [SMALL_STATE(4155)] = 69848, + [SMALL_STATE(4156)] = 69921, + [SMALL_STATE(4157)] = 69994, + [SMALL_STATE(4158)] = 70067, + [SMALL_STATE(4159)] = 70140, + [SMALL_STATE(4160)] = 70213, + [SMALL_STATE(4161)] = 70286, + [SMALL_STATE(4162)] = 70359, + [SMALL_STATE(4163)] = 70432, + [SMALL_STATE(4164)] = 70505, + [SMALL_STATE(4165)] = 70598, + [SMALL_STATE(4166)] = 70671, + [SMALL_STATE(4167)] = 70744, + [SMALL_STATE(4168)] = 70837, + [SMALL_STATE(4169)] = 70930, + [SMALL_STATE(4170)] = 71003, + [SMALL_STATE(4171)] = 71096, + [SMALL_STATE(4172)] = 71169, + [SMALL_STATE(4173)] = 71242, + [SMALL_STATE(4174)] = 71315, + [SMALL_STATE(4175)] = 71388, + [SMALL_STATE(4176)] = 71461, + [SMALL_STATE(4177)] = 71534, + [SMALL_STATE(4178)] = 71607, + [SMALL_STATE(4179)] = 71680, + [SMALL_STATE(4180)] = 71753, + [SMALL_STATE(4181)] = 71823, + [SMALL_STATE(4182)] = 71891, + [SMALL_STATE(4183)] = 71951, + [SMALL_STATE(4184)] = 72041, + [SMALL_STATE(4185)] = 72131, + [SMALL_STATE(4186)] = 72199, + [SMALL_STATE(4187)] = 72267, + [SMALL_STATE(4188)] = 72327, + [SMALL_STATE(4189)] = 72381, + [SMALL_STATE(4190)] = 72439, + [SMALL_STATE(4191)] = 72509, + [SMALL_STATE(4192)] = 72563, + [SMALL_STATE(4193)] = 72633, + [SMALL_STATE(4194)] = 72687, + [SMALL_STATE(4195)] = 72743, + [SMALL_STATE(4196)] = 72799, + [SMALL_STATE(4197)] = 72857, + [SMALL_STATE(4198)] = 72915, + [SMALL_STATE(4199)] = 72983, + [SMALL_STATE(4200)] = 73041, + [SMALL_STATE(4201)] = 73115, + [SMALL_STATE(4202)] = 73175, + [SMALL_STATE(4203)] = 73245, + [SMALL_STATE(4204)] = 73315, + [SMALL_STATE(4205)] = 73385, + [SMALL_STATE(4206)] = 73455, + [SMALL_STATE(4207)] = 73525, + [SMALL_STATE(4208)] = 73579, + [SMALL_STATE(4209)] = 73637, + [SMALL_STATE(4210)] = 73727, + [SMALL_STATE(4211)] = 73785, + [SMALL_STATE(4212)] = 73853, + [SMALL_STATE(4213)] = 73923, + [SMALL_STATE(4214)] = 73993, + [SMALL_STATE(4215)] = 74049, + [SMALL_STATE(4216)] = 74107, + [SMALL_STATE(4217)] = 74197, + [SMALL_STATE(4218)] = 74279, + [SMALL_STATE(4219)] = 74337, + [SMALL_STATE(4220)] = 74391, + [SMALL_STATE(4221)] = 74447, + [SMALL_STATE(4222)] = 74515, + [SMALL_STATE(4223)] = 74584, + [SMALL_STATE(4224)] = 74637, + [SMALL_STATE(4225)] = 74690, + [SMALL_STATE(4226)] = 74743, + [SMALL_STATE(4227)] = 74796, + [SMALL_STATE(4228)] = 74849, + [SMALL_STATE(4229)] = 74906, + [SMALL_STATE(4230)] = 74965, + [SMALL_STATE(4231)] = 75034, + [SMALL_STATE(4232)] = 75091, + [SMALL_STATE(4233)] = 75160, + [SMALL_STATE(4234)] = 75227, + [SMALL_STATE(4235)] = 75314, + [SMALL_STATE(4236)] = 75371, + [SMALL_STATE(4237)] = 75426, + [SMALL_STATE(4238)] = 75479, + [SMALL_STATE(4239)] = 75534, + [SMALL_STATE(4240)] = 75603, + [SMALL_STATE(4241)] = 75656, + [SMALL_STATE(4242)] = 75709, + [SMALL_STATE(4243)] = 75778, + [SMALL_STATE(4244)] = 75847, + [SMALL_STATE(4245)] = 75906, + [SMALL_STATE(4246)] = 75959, + [SMALL_STATE(4247)] = 76012, + [SMALL_STATE(4248)] = 76081, + [SMALL_STATE(4249)] = 76134, + [SMALL_STATE(4250)] = 76191, + [SMALL_STATE(4251)] = 76244, + [SMALL_STATE(4252)] = 76297, + [SMALL_STATE(4253)] = 76366, + [SMALL_STATE(4254)] = 76453, + [SMALL_STATE(4255)] = 76520, + [SMALL_STATE(4256)] = 76577, + [SMALL_STATE(4257)] = 76630, + [SMALL_STATE(4258)] = 76683, + [SMALL_STATE(4259)] = 76738, + [SMALL_STATE(4260)] = 76793, + [SMALL_STATE(4261)] = 76846, + [SMALL_STATE(4262)] = 76899, + [SMALL_STATE(4263)] = 76956, + [SMALL_STATE(4264)] = 77009, + [SMALL_STATE(4265)] = 77062, + [SMALL_STATE(4266)] = 77115, + [SMALL_STATE(4267)] = 77172, + [SMALL_STATE(4268)] = 77225, + [SMALL_STATE(4269)] = 77278, + [SMALL_STATE(4270)] = 77335, + [SMALL_STATE(4271)] = 77388, + [SMALL_STATE(4272)] = 77441, + [SMALL_STATE(4273)] = 77496, + [SMALL_STATE(4274)] = 77549, + [SMALL_STATE(4275)] = 77606, + [SMALL_STATE(4276)] = 77693, + [SMALL_STATE(4277)] = 77746, + [SMALL_STATE(4278)] = 77799, + [SMALL_STATE(4279)] = 77854, + [SMALL_STATE(4280)] = 77907, + [SMALL_STATE(4281)] = 77976, + [SMALL_STATE(4282)] = 78029, + [SMALL_STATE(4283)] = 78082, + [SMALL_STATE(4284)] = 78139, + [SMALL_STATE(4285)] = 78192, + [SMALL_STATE(4286)] = 78245, + [SMALL_STATE(4287)] = 78312, + [SMALL_STATE(4288)] = 78389, + [SMALL_STATE(4289)] = 78442, + [SMALL_STATE(4290)] = 78495, + [SMALL_STATE(4291)] = 78548, + [SMALL_STATE(4292)] = 78601, + [SMALL_STATE(4293)] = 78654, + [SMALL_STATE(4294)] = 78707, + [SMALL_STATE(4295)] = 78794, + [SMALL_STATE(4296)] = 78847, + [SMALL_STATE(4297)] = 78900, + [SMALL_STATE(4298)] = 78967, + [SMALL_STATE(4299)] = 79020, + [SMALL_STATE(4300)] = 79073, + [SMALL_STATE(4301)] = 79160, + [SMALL_STATE(4302)] = 79213, + [SMALL_STATE(4303)] = 79266, + [SMALL_STATE(4304)] = 79335, + [SMALL_STATE(4305)] = 79388, + [SMALL_STATE(4306)] = 79441, + [SMALL_STATE(4307)] = 79494, + [SMALL_STATE(4308)] = 79547, + [SMALL_STATE(4309)] = 79600, + [SMALL_STATE(4310)] = 79653, + [SMALL_STATE(4311)] = 79708, + [SMALL_STATE(4312)] = 79761, + [SMALL_STATE(4313)] = 79813, + [SMALL_STATE(4314)] = 79867, + [SMALL_STATE(4315)] = 79921, + [SMALL_STATE(4316)] = 79989, + [SMALL_STATE(4317)] = 80043, + [SMALL_STATE(4318)] = 80121, + [SMALL_STATE(4319)] = 80175, + [SMALL_STATE(4320)] = 80253, + [SMALL_STATE(4321)] = 80329, + [SMALL_STATE(4322)] = 80397, + [SMALL_STATE(4323)] = 80465, + [SMALL_STATE(4324)] = 80517, + [SMALL_STATE(4325)] = 80571, + [SMALL_STATE(4326)] = 80627, + [SMALL_STATE(4327)] = 80681, + [SMALL_STATE(4328)] = 80733, + [SMALL_STATE(4329)] = 80787, + [SMALL_STATE(4330)] = 80841, + [SMALL_STATE(4331)] = 80893, + [SMALL_STATE(4332)] = 80945, + [SMALL_STATE(4333)] = 80997, + [SMALL_STATE(4334)] = 81049, + [SMALL_STATE(4335)] = 81101, + [SMALL_STATE(4336)] = 81153, + [SMALL_STATE(4337)] = 81207, + [SMALL_STATE(4338)] = 81259, + [SMALL_STATE(4339)] = 81311, + [SMALL_STATE(4340)] = 81365, + [SMALL_STATE(4341)] = 81419, + [SMALL_STATE(4342)] = 81475, + [SMALL_STATE(4343)] = 81531, + [SMALL_STATE(4344)] = 81583, + [SMALL_STATE(4345)] = 81635, + [SMALL_STATE(4346)] = 81687, + [SMALL_STATE(4347)] = 81739, + [SMALL_STATE(4348)] = 81791, + [SMALL_STATE(4349)] = 81843, + [SMALL_STATE(4350)] = 81897, + [SMALL_STATE(4351)] = 81949, + [SMALL_STATE(4352)] = 82001, + [SMALL_STATE(4353)] = 82053, + [SMALL_STATE(4354)] = 82105, + [SMALL_STATE(4355)] = 82159, + [SMALL_STATE(4356)] = 82237, + [SMALL_STATE(4357)] = 82315, + [SMALL_STATE(4358)] = 82367, + [SMALL_STATE(4359)] = 82435, + [SMALL_STATE(4360)] = 82489, + [SMALL_STATE(4361)] = 82541, + [SMALL_STATE(4362)] = 82593, + [SMALL_STATE(4363)] = 82647, + [SMALL_STATE(4364)] = 82703, + [SMALL_STATE(4365)] = 82771, + [SMALL_STATE(4366)] = 82823, + [SMALL_STATE(4367)] = 82875, + [SMALL_STATE(4368)] = 82929, + [SMALL_STATE(4369)] = 82997, + [SMALL_STATE(4370)] = 83051, + [SMALL_STATE(4371)] = 83103, + [SMALL_STATE(4372)] = 83155, + [SMALL_STATE(4373)] = 83207, + [SMALL_STATE(4374)] = 83285, + [SMALL_STATE(4375)] = 83353, + [SMALL_STATE(4376)] = 83409, + [SMALL_STATE(4377)] = 83487, + [SMALL_STATE(4378)] = 83555, + [SMALL_STATE(4379)] = 83607, + [SMALL_STATE(4380)] = 83663, + [SMALL_STATE(4381)] = 83717, + [SMALL_STATE(4382)] = 83785, + [SMALL_STATE(4383)] = 83839, + [SMALL_STATE(4384)] = 83891, + [SMALL_STATE(4385)] = 83943, + [SMALL_STATE(4386)] = 84011, + [SMALL_STATE(4387)] = 84063, + [SMALL_STATE(4388)] = 84115, + [SMALL_STATE(4389)] = 84167, + [SMALL_STATE(4390)] = 84218, + [SMALL_STATE(4391)] = 84271, + [SMALL_STATE(4392)] = 84322, + [SMALL_STATE(4393)] = 84373, + [SMALL_STATE(4394)] = 84424, + [SMALL_STATE(4395)] = 84475, + [SMALL_STATE(4396)] = 84526, + [SMALL_STATE(4397)] = 84577, + [SMALL_STATE(4398)] = 84628, + [SMALL_STATE(4399)] = 84679, + [SMALL_STATE(4400)] = 84730, + [SMALL_STATE(4401)] = 84781, + [SMALL_STATE(4402)] = 84832, + [SMALL_STATE(4403)] = 84883, + [SMALL_STATE(4404)] = 84934, + [SMALL_STATE(4405)] = 84985, + [SMALL_STATE(4406)] = 85036, + [SMALL_STATE(4407)] = 85087, + [SMALL_STATE(4408)] = 85140, + [SMALL_STATE(4409)] = 85191, + [SMALL_STATE(4410)] = 85242, + [SMALL_STATE(4411)] = 85321, + [SMALL_STATE(4412)] = 85384, + [SMALL_STATE(4413)] = 85435, + [SMALL_STATE(4414)] = 85486, + [SMALL_STATE(4415)] = 85537, + [SMALL_STATE(4416)] = 85588, + [SMALL_STATE(4417)] = 85639, + [SMALL_STATE(4418)] = 85690, + [SMALL_STATE(4419)] = 85741, + [SMALL_STATE(4420)] = 85792, + [SMALL_STATE(4421)] = 85869, + [SMALL_STATE(4422)] = 85920, + [SMALL_STATE(4423)] = 85971, + [SMALL_STATE(4424)] = 86022, + [SMALL_STATE(4425)] = 86073, + [SMALL_STATE(4426)] = 86144, + [SMALL_STATE(4427)] = 86195, + [SMALL_STATE(4428)] = 86246, + [SMALL_STATE(4429)] = 86297, + [SMALL_STATE(4430)] = 86348, + [SMALL_STATE(4431)] = 86399, + [SMALL_STATE(4432)] = 86450, + [SMALL_STATE(4433)] = 86501, + [SMALL_STATE(4434)] = 86552, + [SMALL_STATE(4435)] = 86603, + [SMALL_STATE(4436)] = 86654, + [SMALL_STATE(4437)] = 86709, + [SMALL_STATE(4438)] = 86760, + [SMALL_STATE(4439)] = 86811, + [SMALL_STATE(4440)] = 86890, + [SMALL_STATE(4441)] = 86967, + [SMALL_STATE(4442)] = 87018, + [SMALL_STATE(4443)] = 87071, + [SMALL_STATE(4444)] = 87122, + [SMALL_STATE(4445)] = 87185, + [SMALL_STATE(4446)] = 87262, + [SMALL_STATE(4447)] = 87313, + [SMALL_STATE(4448)] = 87364, + [SMALL_STATE(4449)] = 87431, + [SMALL_STATE(4450)] = 87486, + [SMALL_STATE(4451)] = 87557, + [SMALL_STATE(4452)] = 87608, + [SMALL_STATE(4453)] = 87659, + [SMALL_STATE(4454)] = 87710, + [SMALL_STATE(4455)] = 87761, + [SMALL_STATE(4456)] = 87812, + [SMALL_STATE(4457)] = 87863, + [SMALL_STATE(4458)] = 87914, + [SMALL_STATE(4459)] = 87981, + [SMALL_STATE(4460)] = 88034, + [SMALL_STATE(4461)] = 88087, + [SMALL_STATE(4462)] = 88140, + [SMALL_STATE(4463)] = 88217, + [SMALL_STATE(4464)] = 88270, + [SMALL_STATE(4465)] = 88323, + [SMALL_STATE(4466)] = 88374, + [SMALL_STATE(4467)] = 88427, + [SMALL_STATE(4468)] = 88480, + [SMALL_STATE(4469)] = 88531, + [SMALL_STATE(4470)] = 88582, + [SMALL_STATE(4471)] = 88649, + [SMALL_STATE(4472)] = 88716, + [SMALL_STATE(4473)] = 88769, + [SMALL_STATE(4474)] = 88822, + [SMALL_STATE(4475)] = 88875, + [SMALL_STATE(4476)] = 88926, + [SMALL_STATE(4477)] = 88977, + [SMALL_STATE(4478)] = 89028, + [SMALL_STATE(4479)] = 89079, + [SMALL_STATE(4480)] = 89132, + [SMALL_STATE(4481)] = 89183, + [SMALL_STATE(4482)] = 89234, + [SMALL_STATE(4483)] = 89287, + [SMALL_STATE(4484)] = 89338, + [SMALL_STATE(4485)] = 89389, + [SMALL_STATE(4486)] = 89440, + [SMALL_STATE(4487)] = 89491, + [SMALL_STATE(4488)] = 89542, + [SMALL_STATE(4489)] = 89593, + [SMALL_STATE(4490)] = 89644, + [SMALL_STATE(4491)] = 89710, + [SMALL_STATE(4492)] = 89764, + [SMALL_STATE(4493)] = 89816, + [SMALL_STATE(4494)] = 89882, + [SMALL_STATE(4495)] = 89932, + [SMALL_STATE(4496)] = 89986, + [SMALL_STATE(4497)] = 90036, + [SMALL_STATE(4498)] = 90086, + [SMALL_STATE(4499)] = 90136, + [SMALL_STATE(4500)] = 90186, + [SMALL_STATE(4501)] = 90236, + [SMALL_STATE(4502)] = 90286, + [SMALL_STATE(4503)] = 90336, + [SMALL_STATE(4504)] = 90414, + [SMALL_STATE(4505)] = 90464, + [SMALL_STATE(4506)] = 90514, + [SMALL_STATE(4507)] = 90568, + [SMALL_STATE(4508)] = 90618, + [SMALL_STATE(4509)] = 90668, + [SMALL_STATE(4510)] = 90720, + [SMALL_STATE(4511)] = 90770, + [SMALL_STATE(4512)] = 90820, + [SMALL_STATE(4513)] = 90870, + [SMALL_STATE(4514)] = 90920, + [SMALL_STATE(4515)] = 90970, + [SMALL_STATE(4516)] = 91020, + [SMALL_STATE(4517)] = 91070, + [SMALL_STATE(4518)] = 91120, + [SMALL_STATE(4519)] = 91170, + [SMALL_STATE(4520)] = 91220, + [SMALL_STATE(4521)] = 91272, + [SMALL_STATE(4522)] = 91338, + [SMALL_STATE(4523)] = 91392, + [SMALL_STATE(4524)] = 91458, + [SMALL_STATE(4525)] = 91508, + [SMALL_STATE(4526)] = 91558, + [SMALL_STATE(4527)] = 91608, + [SMALL_STATE(4528)] = 91658, + [SMALL_STATE(4529)] = 91708, + [SMALL_STATE(4530)] = 91758, + [SMALL_STATE(4531)] = 91808, + [SMALL_STATE(4532)] = 91874, + [SMALL_STATE(4533)] = 91928, + [SMALL_STATE(4534)] = 91978, + [SMALL_STATE(4535)] = 92028, + [SMALL_STATE(4536)] = 92078, + [SMALL_STATE(4537)] = 92144, + [SMALL_STATE(4538)] = 92210, + [SMALL_STATE(4539)] = 92260, + [SMALL_STATE(4540)] = 92338, + [SMALL_STATE(4541)] = 92388, + [SMALL_STATE(4542)] = 92438, + [SMALL_STATE(4543)] = 92488, + [SMALL_STATE(4544)] = 92538, + [SMALL_STATE(4545)] = 92604, + [SMALL_STATE(4546)] = 92654, + [SMALL_STATE(4547)] = 92704, + [SMALL_STATE(4548)] = 92754, + [SMALL_STATE(4549)] = 92804, + [SMALL_STATE(4550)] = 92854, + [SMALL_STATE(4551)] = 92908, + [SMALL_STATE(4552)] = 92978, + [SMALL_STATE(4553)] = 93028, + [SMALL_STATE(4554)] = 93098, + [SMALL_STATE(4555)] = 93152, + [SMALL_STATE(4556)] = 93218, + [SMALL_STATE(4557)] = 93284, + [SMALL_STATE(4558)] = 93354, + [SMALL_STATE(4559)] = 93420, + [SMALL_STATE(4560)] = 93474, + [SMALL_STATE(4561)] = 93540, + [SMALL_STATE(4562)] = 93590, + [SMALL_STATE(4563)] = 93640, + [SMALL_STATE(4564)] = 93706, + [SMALL_STATE(4565)] = 93756, + [SMALL_STATE(4566)] = 93806, + [SMALL_STATE(4567)] = 93872, + [SMALL_STATE(4568)] = 93938, + [SMALL_STATE(4569)] = 93988, + [SMALL_STATE(4570)] = 94040, + [SMALL_STATE(4571)] = 94090, + [SMALL_STATE(4572)] = 94140, + [SMALL_STATE(4573)] = 94206, + [SMALL_STATE(4574)] = 94259, + [SMALL_STATE(4575)] = 94312, + [SMALL_STATE(4576)] = 94377, + [SMALL_STATE(4577)] = 94428, + [SMALL_STATE(4578)] = 94493, + [SMALL_STATE(4579)] = 94558, + [SMALL_STATE(4580)] = 94611, + [SMALL_STATE(4581)] = 94662, + [SMALL_STATE(4582)] = 94713, + [SMALL_STATE(4583)] = 94778, + [SMALL_STATE(4584)] = 94831, + [SMALL_STATE(4585)] = 94882, + [SMALL_STATE(4586)] = 94935, + [SMALL_STATE(4587)] = 94986, + [SMALL_STATE(4588)] = 95051, + [SMALL_STATE(4589)] = 95116, + [SMALL_STATE(4590)] = 95171, + [SMALL_STATE(4591)] = 95222, + [SMALL_STATE(4592)] = 95271, + [SMALL_STATE(4593)] = 95336, + [SMALL_STATE(4594)] = 95401, + [SMALL_STATE(4595)] = 95466, + [SMALL_STATE(4596)] = 95531, + [SMALL_STATE(4597)] = 95594, + [SMALL_STATE(4598)] = 95647, + [SMALL_STATE(4599)] = 95698, + [SMALL_STATE(4600)] = 95751, + [SMALL_STATE(4601)] = 95800, + [SMALL_STATE(4602)] = 95865, + [SMALL_STATE(4603)] = 95930, + [SMALL_STATE(4604)] = 96005, + [SMALL_STATE(4605)] = 96070, + [SMALL_STATE(4606)] = 96135, + [SMALL_STATE(4607)] = 96188, + [SMALL_STATE(4608)] = 96253, + [SMALL_STATE(4609)] = 96306, + [SMALL_STATE(4610)] = 96357, + [SMALL_STATE(4611)] = 96420, + [SMALL_STATE(4612)] = 96469, + [SMALL_STATE(4613)] = 96518, + [SMALL_STATE(4614)] = 96571, + [SMALL_STATE(4615)] = 96624, + [SMALL_STATE(4616)] = 96699, + [SMALL_STATE(4617)] = 96774, + [SMALL_STATE(4618)] = 96827, + [SMALL_STATE(4619)] = 96880, + [SMALL_STATE(4620)] = 96955, + [SMALL_STATE(4621)] = 97030, + [SMALL_STATE(4622)] = 97083, + [SMALL_STATE(4623)] = 97134, + [SMALL_STATE(4624)] = 97199, + [SMALL_STATE(4625)] = 97264, + [SMALL_STATE(4626)] = 97313, + [SMALL_STATE(4627)] = 97366, + [SMALL_STATE(4628)] = 97417, + [SMALL_STATE(4629)] = 97470, + [SMALL_STATE(4630)] = 97525, + [SMALL_STATE(4631)] = 97574, + [SMALL_STATE(4632)] = 97623, + [SMALL_STATE(4633)] = 97688, + [SMALL_STATE(4634)] = 97743, + [SMALL_STATE(4635)] = 97796, + [SMALL_STATE(4636)] = 97859, + [SMALL_STATE(4637)] = 97934, + [SMALL_STATE(4638)] = 97999, + [SMALL_STATE(4639)] = 98062, + [SMALL_STATE(4640)] = 98137, + [SMALL_STATE(4641)] = 98186, + [SMALL_STATE(4642)] = 98251, + [SMALL_STATE(4643)] = 98316, + [SMALL_STATE(4644)] = 98381, + [SMALL_STATE(4645)] = 98456, + [SMALL_STATE(4646)] = 98509, + [SMALL_STATE(4647)] = 98574, + [SMALL_STATE(4648)] = 98626, + [SMALL_STATE(4649)] = 98674, + [SMALL_STATE(4650)] = 98726, + [SMALL_STATE(4651)] = 98778, + [SMALL_STATE(4652)] = 98846, + [SMALL_STATE(4653)] = 98898, + [SMALL_STATE(4654)] = 98950, + [SMALL_STATE(4655)] = 99002, + [SMALL_STATE(4656)] = 99050, + [SMALL_STATE(4657)] = 99100, + [SMALL_STATE(4658)] = 99154, + [SMALL_STATE(4659)] = 99204, + [SMALL_STATE(4660)] = 99256, + [SMALL_STATE(4661)] = 99306, + [SMALL_STATE(4662)] = 99356, + [SMALL_STATE(4663)] = 99406, + [SMALL_STATE(4664)] = 99456, + [SMALL_STATE(4665)] = 99508, + [SMALL_STATE(4666)] = 99558, + [SMALL_STATE(4667)] = 99610, + [SMALL_STATE(4668)] = 99662, + [SMALL_STATE(4669)] = 99710, + [SMALL_STATE(4670)] = 99760, + [SMALL_STATE(4671)] = 99808, + [SMALL_STATE(4672)] = 99858, + [SMALL_STATE(4673)] = 99910, + [SMALL_STATE(4674)] = 99960, + [SMALL_STATE(4675)] = 100008, + [SMALL_STATE(4676)] = 100056, + [SMALL_STATE(4677)] = 100106, + [SMALL_STATE(4678)] = 100156, + [SMALL_STATE(4679)] = 100220, + [SMALL_STATE(4680)] = 100272, + [SMALL_STATE(4681)] = 100320, + [SMALL_STATE(4682)] = 100368, + [SMALL_STATE(4683)] = 100418, + [SMALL_STATE(4684)] = 100470, + [SMALL_STATE(4685)] = 100534, + [SMALL_STATE(4686)] = 100582, + [SMALL_STATE(4687)] = 100634, + [SMALL_STATE(4688)] = 100682, + [SMALL_STATE(4689)] = 100730, + [SMALL_STATE(4690)] = 100778, + [SMALL_STATE(4691)] = 100826, + [SMALL_STATE(4692)] = 100874, + [SMALL_STATE(4693)] = 100946, + [SMALL_STATE(4694)] = 100996, + [SMALL_STATE(4695)] = 101060, + [SMALL_STATE(4696)] = 101110, + [SMALL_STATE(4697)] = 101162, + [SMALL_STATE(4698)] = 101210, + [SMALL_STATE(4699)] = 101258, + [SMALL_STATE(4700)] = 101306, + [SMALL_STATE(4701)] = 101354, + [SMALL_STATE(4702)] = 101402, + [SMALL_STATE(4703)] = 101452, + [SMALL_STATE(4704)] = 101500, + [SMALL_STATE(4705)] = 101548, + [SMALL_STATE(4706)] = 101596, + [SMALL_STATE(4707)] = 101644, + [SMALL_STATE(4708)] = 101692, + [SMALL_STATE(4709)] = 101742, + [SMALL_STATE(4710)] = 101790, + [SMALL_STATE(4711)] = 101858, + [SMALL_STATE(4712)] = 101906, + [SMALL_STATE(4713)] = 101954, + [SMALL_STATE(4714)] = 102005, + [SMALL_STATE(4715)] = 102056, + [SMALL_STATE(4716)] = 102103, + [SMALL_STATE(4717)] = 102150, + [SMALL_STATE(4718)] = 102219, + [SMALL_STATE(4719)] = 102266, + [SMALL_STATE(4720)] = 102335, + [SMALL_STATE(4721)] = 102382, + [SMALL_STATE(4722)] = 102429, + [SMALL_STATE(4723)] = 102498, + [SMALL_STATE(4724)] = 102545, + [SMALL_STATE(4725)] = 102592, + [SMALL_STATE(4726)] = 102661, + [SMALL_STATE(4727)] = 102708, + [SMALL_STATE(4728)] = 102755, + [SMALL_STATE(4729)] = 102802, + [SMALL_STATE(4730)] = 102849, + [SMALL_STATE(4731)] = 102898, + [SMALL_STATE(4732)] = 102945, + [SMALL_STATE(4733)] = 102994, + [SMALL_STATE(4734)] = 103041, + [SMALL_STATE(4735)] = 103088, + [SMALL_STATE(4736)] = 103137, + [SMALL_STATE(4737)] = 103184, + [SMALL_STATE(4738)] = 103231, + [SMALL_STATE(4739)] = 103280, + [SMALL_STATE(4740)] = 103327, + [SMALL_STATE(4741)] = 103374, + [SMALL_STATE(4742)] = 103421, + [SMALL_STATE(4743)] = 103468, + [SMALL_STATE(4744)] = 103515, + [SMALL_STATE(4745)] = 103562, + [SMALL_STATE(4746)] = 103609, + [SMALL_STATE(4747)] = 103656, + [SMALL_STATE(4748)] = 103703, + [SMALL_STATE(4749)] = 103750, + [SMALL_STATE(4750)] = 103797, + [SMALL_STATE(4751)] = 103846, + [SMALL_STATE(4752)] = 103913, + [SMALL_STATE(4753)] = 103960, + [SMALL_STATE(4754)] = 104007, + [SMALL_STATE(4755)] = 104054, + [SMALL_STATE(4756)] = 104101, + [SMALL_STATE(4757)] = 104148, + [SMALL_STATE(4758)] = 104195, + [SMALL_STATE(4759)] = 104244, + [SMALL_STATE(4760)] = 104293, + [SMALL_STATE(4761)] = 104340, + [SMALL_STATE(4762)] = 104391, + [SMALL_STATE(4763)] = 104438, + [SMALL_STATE(4764)] = 104485, + [SMALL_STATE(4765)] = 104532, + [SMALL_STATE(4766)] = 104583, + [SMALL_STATE(4767)] = 104630, + [SMALL_STATE(4768)] = 104679, + [SMALL_STATE(4769)] = 104726, + [SMALL_STATE(4770)] = 104773, + [SMALL_STATE(4771)] = 104820, + [SMALL_STATE(4772)] = 104869, + [SMALL_STATE(4773)] = 104916, + [SMALL_STATE(4774)] = 104961, + [SMALL_STATE(4775)] = 105008, + [SMALL_STATE(4776)] = 105055, + [SMALL_STATE(4777)] = 105102, + [SMALL_STATE(4778)] = 105153, + [SMALL_STATE(4779)] = 105202, + [SMALL_STATE(4780)] = 105251, + [SMALL_STATE(4781)] = 105298, + [SMALL_STATE(4782)] = 105347, + [SMALL_STATE(4783)] = 105396, + [SMALL_STATE(4784)] = 105443, + [SMALL_STATE(4785)] = 105492, + [SMALL_STATE(4786)] = 105539, + [SMALL_STATE(4787)] = 105586, + [SMALL_STATE(4788)] = 105635, + [SMALL_STATE(4789)] = 105682, + [SMALL_STATE(4790)] = 105729, + [SMALL_STATE(4791)] = 105780, + [SMALL_STATE(4792)] = 105825, + [SMALL_STATE(4793)] = 105876, + [SMALL_STATE(4794)] = 105927, + [SMALL_STATE(4795)] = 105976, + [SMALL_STATE(4796)] = 106023, + [SMALL_STATE(4797)] = 106072, + [SMALL_STATE(4798)] = 106130, + [SMALL_STATE(4799)] = 106176, + [SMALL_STATE(4800)] = 106234, + [SMALL_STATE(4801)] = 106280, + [SMALL_STATE(4802)] = 106326, + [SMALL_STATE(4803)] = 106372, + [SMALL_STATE(4804)] = 106418, + [SMALL_STATE(4805)] = 106464, + [SMALL_STATE(4806)] = 106510, + [SMALL_STATE(4807)] = 106556, + [SMALL_STATE(4808)] = 106604, + [SMALL_STATE(4809)] = 106650, + [SMALL_STATE(4810)] = 106696, + [SMALL_STATE(4811)] = 106742, + [SMALL_STATE(4812)] = 106800, + [SMALL_STATE(4813)] = 106858, + [SMALL_STATE(4814)] = 106916, + [SMALL_STATE(4815)] = 106962, + [SMALL_STATE(4816)] = 107020, + [SMALL_STATE(4817)] = 107066, + [SMALL_STATE(4818)] = 107112, + [SMALL_STATE(4819)] = 107170, + [SMALL_STATE(4820)] = 107216, + [SMALL_STATE(4821)] = 107262, + [SMALL_STATE(4822)] = 107320, + [SMALL_STATE(4823)] = 107366, + [SMALL_STATE(4824)] = 107412, + [SMALL_STATE(4825)] = 107470, + [SMALL_STATE(4826)] = 107516, + [SMALL_STATE(4827)] = 107564, + [SMALL_STATE(4828)] = 107610, + [SMALL_STATE(4829)] = 107658, + [SMALL_STATE(4830)] = 107704, + [SMALL_STATE(4831)] = 107750, + [SMALL_STATE(4832)] = 107796, + [SMALL_STATE(4833)] = 107842, + [SMALL_STATE(4834)] = 107888, + [SMALL_STATE(4835)] = 107934, + [SMALL_STATE(4836)] = 107992, + [SMALL_STATE(4837)] = 108050, + [SMALL_STATE(4838)] = 108108, + [SMALL_STATE(4839)] = 108154, + [SMALL_STATE(4840)] = 108212, + [SMALL_STATE(4841)] = 108270, + [SMALL_STATE(4842)] = 108328, + [SMALL_STATE(4843)] = 108374, + [SMALL_STATE(4844)] = 108420, + [SMALL_STATE(4845)] = 108468, + [SMALL_STATE(4846)] = 108514, + [SMALL_STATE(4847)] = 108572, + [SMALL_STATE(4848)] = 108630, + [SMALL_STATE(4849)] = 108676, + [SMALL_STATE(4850)] = 108724, + [SMALL_STATE(4851)] = 108770, + [SMALL_STATE(4852)] = 108816, + [SMALL_STATE(4853)] = 108862, + [SMALL_STATE(4854)] = 108910, + [SMALL_STATE(4855)] = 108968, + [SMALL_STATE(4856)] = 109014, + [SMALL_STATE(4857)] = 109070, + [SMALL_STATE(4858)] = 109116, + [SMALL_STATE(4859)] = 109162, + [SMALL_STATE(4860)] = 109220, + [SMALL_STATE(4861)] = 109278, + [SMALL_STATE(4862)] = 109324, + [SMALL_STATE(4863)] = 109370, + [SMALL_STATE(4864)] = 109428, + [SMALL_STATE(4865)] = 109474, + [SMALL_STATE(4866)] = 109520, + [SMALL_STATE(4867)] = 109578, + [SMALL_STATE(4868)] = 109636, + [SMALL_STATE(4869)] = 109680, + [SMALL_STATE(4870)] = 109726, + [SMALL_STATE(4871)] = 109784, + [SMALL_STATE(4872)] = 109842, + [SMALL_STATE(4873)] = 109888, + [SMALL_STATE(4874)] = 109950, + [SMALL_STATE(4875)] = 110008, + [SMALL_STATE(4876)] = 110056, + [SMALL_STATE(4877)] = 110102, + [SMALL_STATE(4878)] = 110150, + [SMALL_STATE(4879)] = 110208, + [SMALL_STATE(4880)] = 110254, + [SMALL_STATE(4881)] = 110300, + [SMALL_STATE(4882)] = 110346, + [SMALL_STATE(4883)] = 110392, + [SMALL_STATE(4884)] = 110450, + [SMALL_STATE(4885)] = 110512, + [SMALL_STATE(4886)] = 110570, + [SMALL_STATE(4887)] = 110616, + [SMALL_STATE(4888)] = 110674, + [SMALL_STATE(4889)] = 110720, + [SMALL_STATE(4890)] = 110766, + [SMALL_STATE(4891)] = 110814, + [SMALL_STATE(4892)] = 110872, + [SMALL_STATE(4893)] = 110918, + [SMALL_STATE(4894)] = 110976, + [SMALL_STATE(4895)] = 111022, + [SMALL_STATE(4896)] = 111066, + [SMALL_STATE(4897)] = 111124, + [SMALL_STATE(4898)] = 111170, + [SMALL_STATE(4899)] = 111216, + [SMALL_STATE(4900)] = 111260, + [SMALL_STATE(4901)] = 111306, + [SMALL_STATE(4902)] = 111368, + [SMALL_STATE(4903)] = 111426, + [SMALL_STATE(4904)] = 111472, + [SMALL_STATE(4905)] = 111530, + [SMALL_STATE(4906)] = 111588, + [SMALL_STATE(4907)] = 111634, + [SMALL_STATE(4908)] = 111678, + [SMALL_STATE(4909)] = 111724, + [SMALL_STATE(4910)] = 111786, + [SMALL_STATE(4911)] = 111844, + [SMALL_STATE(4912)] = 111890, + [SMALL_STATE(4913)] = 111936, + [SMALL_STATE(4914)] = 111982, + [SMALL_STATE(4915)] = 112030, + [SMALL_STATE(4916)] = 112076, + [SMALL_STATE(4917)] = 112120, + [SMALL_STATE(4918)] = 112166, + [SMALL_STATE(4919)] = 112212, + [SMALL_STATE(4920)] = 112258, + [SMALL_STATE(4921)] = 112316, + [SMALL_STATE(4922)] = 112374, + [SMALL_STATE(4923)] = 112420, + [SMALL_STATE(4924)] = 112478, + [SMALL_STATE(4925)] = 112524, + [SMALL_STATE(4926)] = 112574, + [SMALL_STATE(4927)] = 112620, + [SMALL_STATE(4928)] = 112666, + [SMALL_STATE(4929)] = 112712, + [SMALL_STATE(4930)] = 112770, + [SMALL_STATE(4931)] = 112828, + [SMALL_STATE(4932)] = 112874, + [SMALL_STATE(4933)] = 112920, + [SMALL_STATE(4934)] = 112966, + [SMALL_STATE(4935)] = 113012, + [SMALL_STATE(4936)] = 113058, + [SMALL_STATE(4937)] = 113104, + [SMALL_STATE(4938)] = 113152, + [SMALL_STATE(4939)] = 113198, + [SMALL_STATE(4940)] = 113244, + [SMALL_STATE(4941)] = 113302, + [SMALL_STATE(4942)] = 113348, + [SMALL_STATE(4943)] = 113406, + [SMALL_STATE(4944)] = 113452, + [SMALL_STATE(4945)] = 113498, + [SMALL_STATE(4946)] = 113544, + [SMALL_STATE(4947)] = 113590, + [SMALL_STATE(4948)] = 113648, + [SMALL_STATE(4949)] = 113706, + [SMALL_STATE(4950)] = 113754, + [SMALL_STATE(4951)] = 113819, + [SMALL_STATE(4952)] = 113884, + [SMALL_STATE(4953)] = 113929, + [SMALL_STATE(4954)] = 113972, + [SMALL_STATE(4955)] = 114017, + [SMALL_STATE(4956)] = 114060, + [SMALL_STATE(4957)] = 114105, + [SMALL_STATE(4958)] = 114160, + [SMALL_STATE(4959)] = 114205, + [SMALL_STATE(4960)] = 114260, + [SMALL_STATE(4961)] = 114305, + [SMALL_STATE(4962)] = 114348, + [SMALL_STATE(4963)] = 114403, + [SMALL_STATE(4964)] = 114446, + [SMALL_STATE(4965)] = 114493, + [SMALL_STATE(4966)] = 114536, + [SMALL_STATE(4967)] = 114579, + [SMALL_STATE(4968)] = 114626, + [SMALL_STATE(4969)] = 114669, + [SMALL_STATE(4970)] = 114712, + [SMALL_STATE(4971)] = 114767, + [SMALL_STATE(4972)] = 114822, + [SMALL_STATE(4973)] = 114867, + [SMALL_STATE(4974)] = 114932, + [SMALL_STATE(4975)] = 114977, + [SMALL_STATE(4976)] = 115020, + [SMALL_STATE(4977)] = 115063, + [SMALL_STATE(4978)] = 115118, + [SMALL_STATE(4979)] = 115173, + [SMALL_STATE(4980)] = 115238, + [SMALL_STATE(4981)] = 115303, + [SMALL_STATE(4982)] = 115348, + [SMALL_STATE(4983)] = 115413, + [SMALL_STATE(4984)] = 115468, + [SMALL_STATE(4985)] = 115513, + [SMALL_STATE(4986)] = 115558, + [SMALL_STATE(4987)] = 115603, + [SMALL_STATE(4988)] = 115668, + [SMALL_STATE(4989)] = 115711, + [SMALL_STATE(4990)] = 115766, + [SMALL_STATE(4991)] = 115809, + [SMALL_STATE(4992)] = 115864, + [SMALL_STATE(4993)] = 115907, + [SMALL_STATE(4994)] = 115950, + [SMALL_STATE(4995)] = 116005, + [SMALL_STATE(4996)] = 116050, + [SMALL_STATE(4997)] = 116093, + [SMALL_STATE(4998)] = 116148, + [SMALL_STATE(4999)] = 116191, + [SMALL_STATE(5000)] = 116246, + [SMALL_STATE(5001)] = 116291, + [SMALL_STATE(5002)] = 116336, + [SMALL_STATE(5003)] = 116391, + [SMALL_STATE(5004)] = 116436, + [SMALL_STATE(5005)] = 116501, + [SMALL_STATE(5006)] = 116556, + [SMALL_STATE(5007)] = 116621, + [SMALL_STATE(5008)] = 116666, + [SMALL_STATE(5009)] = 116709, + [SMALL_STATE(5010)] = 116752, + [SMALL_STATE(5011)] = 116807, + [SMALL_STATE(5012)] = 116872, + [SMALL_STATE(5013)] = 116917, + [SMALL_STATE(5014)] = 116962, + [SMALL_STATE(5015)] = 117005, + [SMALL_STATE(5016)] = 117050, + [SMALL_STATE(5017)] = 117093, + [SMALL_STATE(5018)] = 117138, + [SMALL_STATE(5019)] = 117203, + [SMALL_STATE(5020)] = 117248, + [SMALL_STATE(5021)] = 117303, + [SMALL_STATE(5022)] = 117358, + [SMALL_STATE(5023)] = 117423, + [SMALL_STATE(5024)] = 117470, + [SMALL_STATE(5025)] = 117513, + [SMALL_STATE(5026)] = 117556, + [SMALL_STATE(5027)] = 117601, + [SMALL_STATE(5028)] = 117656, + [SMALL_STATE(5029)] = 117711, + [SMALL_STATE(5030)] = 117756, + [SMALL_STATE(5031)] = 117801, + [SMALL_STATE(5032)] = 117866, + [SMALL_STATE(5033)] = 117913, + [SMALL_STATE(5034)] = 117956, + [SMALL_STATE(5035)] = 118001, + [SMALL_STATE(5036)] = 118046, + [SMALL_STATE(5037)] = 118091, + [SMALL_STATE(5038)] = 118136, + [SMALL_STATE(5039)] = 118181, + [SMALL_STATE(5040)] = 118226, + [SMALL_STATE(5041)] = 118269, + [SMALL_STATE(5042)] = 118312, + [SMALL_STATE(5043)] = 118367, + [SMALL_STATE(5044)] = 118412, + [SMALL_STATE(5045)] = 118457, + [SMALL_STATE(5046)] = 118502, + [SMALL_STATE(5047)] = 118547, + [SMALL_STATE(5048)] = 118592, + [SMALL_STATE(5049)] = 118635, + [SMALL_STATE(5050)] = 118690, + [SMALL_STATE(5051)] = 118735, + [SMALL_STATE(5052)] = 118790, + [SMALL_STATE(5053)] = 118835, + [SMALL_STATE(5054)] = 118878, + [SMALL_STATE(5055)] = 118923, + [SMALL_STATE(5056)] = 118968, + [SMALL_STATE(5057)] = 119023, + [SMALL_STATE(5058)] = 119066, + [SMALL_STATE(5059)] = 119109, + [SMALL_STATE(5060)] = 119154, + [SMALL_STATE(5061)] = 119199, + [SMALL_STATE(5062)] = 119242, + [SMALL_STATE(5063)] = 119285, + [SMALL_STATE(5064)] = 119340, + [SMALL_STATE(5065)] = 119383, + [SMALL_STATE(5066)] = 119438, + [SMALL_STATE(5067)] = 119493, + [SMALL_STATE(5068)] = 119558, + [SMALL_STATE(5069)] = 119601, + [SMALL_STATE(5070)] = 119644, + [SMALL_STATE(5071)] = 119689, + [SMALL_STATE(5072)] = 119732, + [SMALL_STATE(5073)] = 119777, + [SMALL_STATE(5074)] = 119822, + [SMALL_STATE(5075)] = 119877, + [SMALL_STATE(5076)] = 119932, + [SMALL_STATE(5077)] = 119987, + [SMALL_STATE(5078)] = 120042, + [SMALL_STATE(5079)] = 120097, + [SMALL_STATE(5080)] = 120142, + [SMALL_STATE(5081)] = 120185, + [SMALL_STATE(5082)] = 120240, + [SMALL_STATE(5083)] = 120285, + [SMALL_STATE(5084)] = 120330, + [SMALL_STATE(5085)] = 120385, + [SMALL_STATE(5086)] = 120428, + [SMALL_STATE(5087)] = 120483, + [SMALL_STATE(5088)] = 120548, + [SMALL_STATE(5089)] = 120591, + [SMALL_STATE(5090)] = 120636, + [SMALL_STATE(5091)] = 120679, + [SMALL_STATE(5092)] = 120722, + [SMALL_STATE(5093)] = 120775, + [SMALL_STATE(5094)] = 120818, + [SMALL_STATE(5095)] = 120861, + [SMALL_STATE(5096)] = 120904, + [SMALL_STATE(5097)] = 120959, + [SMALL_STATE(5098)] = 121004, + [SMALL_STATE(5099)] = 121059, + [SMALL_STATE(5100)] = 121108, + [SMALL_STATE(5101)] = 121151, + [SMALL_STATE(5102)] = 121196, + [SMALL_STATE(5103)] = 121261, + [SMALL_STATE(5104)] = 121304, + [SMALL_STATE(5105)] = 121349, + [SMALL_STATE(5106)] = 121394, + [SMALL_STATE(5107)] = 121437, + [SMALL_STATE(5108)] = 121480, + [SMALL_STATE(5109)] = 121523, + [SMALL_STATE(5110)] = 121568, + [SMALL_STATE(5111)] = 121613, + [SMALL_STATE(5112)] = 121678, + [SMALL_STATE(5113)] = 121723, + [SMALL_STATE(5114)] = 121768, + [SMALL_STATE(5115)] = 121811, + [SMALL_STATE(5116)] = 121856, + [SMALL_STATE(5117)] = 121911, + [SMALL_STATE(5118)] = 121956, + [SMALL_STATE(5119)] = 122001, + [SMALL_STATE(5120)] = 122056, + [SMALL_STATE(5121)] = 122099, + [SMALL_STATE(5122)] = 122144, + [SMALL_STATE(5123)] = 122189, + [SMALL_STATE(5124)] = 122232, + [SMALL_STATE(5125)] = 122287, + [SMALL_STATE(5126)] = 122342, + [SMALL_STATE(5127)] = 122387, + [SMALL_STATE(5128)] = 122430, + [SMALL_STATE(5129)] = 122473, + [SMALL_STATE(5130)] = 122528, + [SMALL_STATE(5131)] = 122571, + [SMALL_STATE(5132)] = 122626, + [SMALL_STATE(5133)] = 122669, + [SMALL_STATE(5134)] = 122724, + [SMALL_STATE(5135)] = 122767, + [SMALL_STATE(5136)] = 122832, + [SMALL_STATE(5137)] = 122887, + [SMALL_STATE(5138)] = 122932, + [SMALL_STATE(5139)] = 122977, + [SMALL_STATE(5140)] = 123020, + [SMALL_STATE(5141)] = 123065, + [SMALL_STATE(5142)] = 123110, + [SMALL_STATE(5143)] = 123155, + [SMALL_STATE(5144)] = 123200, + [SMALL_STATE(5145)] = 123245, + [SMALL_STATE(5146)] = 123288, + [SMALL_STATE(5147)] = 123353, + [SMALL_STATE(5148)] = 123396, + [SMALL_STATE(5149)] = 123441, + [SMALL_STATE(5150)] = 123506, + [SMALL_STATE(5151)] = 123561, + [SMALL_STATE(5152)] = 123604, + [SMALL_STATE(5153)] = 123649, + [SMALL_STATE(5154)] = 123691, + [SMALL_STATE(5155)] = 123737, + [SMALL_STATE(5156)] = 123779, + [SMALL_STATE(5157)] = 123821, + [SMALL_STATE(5158)] = 123863, + [SMALL_STATE(5159)] = 123905, + [SMALL_STATE(5160)] = 123947, + [SMALL_STATE(5161)] = 123989, + [SMALL_STATE(5162)] = 124035, + [SMALL_STATE(5163)] = 124077, + [SMALL_STATE(5164)] = 124119, + [SMALL_STATE(5165)] = 124161, + [SMALL_STATE(5166)] = 124203, + [SMALL_STATE(5167)] = 124245, + [SMALL_STATE(5168)] = 124287, + [SMALL_STATE(5169)] = 124329, + [SMALL_STATE(5170)] = 124371, + [SMALL_STATE(5171)] = 124413, + [SMALL_STATE(5172)] = 124455, + [SMALL_STATE(5173)] = 124497, + [SMALL_STATE(5174)] = 124539, + [SMALL_STATE(5175)] = 124581, + [SMALL_STATE(5176)] = 124623, + [SMALL_STATE(5177)] = 124675, + [SMALL_STATE(5178)] = 124717, + [SMALL_STATE(5179)] = 124777, + [SMALL_STATE(5180)] = 124829, + [SMALL_STATE(5181)] = 124891, + [SMALL_STATE(5182)] = 124933, + [SMALL_STATE(5183)] = 124975, + [SMALL_STATE(5184)] = 125017, + [SMALL_STATE(5185)] = 125059, + [SMALL_STATE(5186)] = 125101, + [SMALL_STATE(5187)] = 125143, + [SMALL_STATE(5188)] = 125185, + [SMALL_STATE(5189)] = 125227, + [SMALL_STATE(5190)] = 125273, + [SMALL_STATE(5191)] = 125315, + [SMALL_STATE(5192)] = 125357, + [SMALL_STATE(5193)] = 125399, + [SMALL_STATE(5194)] = 125441, + [SMALL_STATE(5195)] = 125483, + [SMALL_STATE(5196)] = 125543, + [SMALL_STATE(5197)] = 125591, + [SMALL_STATE(5198)] = 125643, + [SMALL_STATE(5199)] = 125685, + [SMALL_STATE(5200)] = 125735, + [SMALL_STATE(5201)] = 125781, + [SMALL_STATE(5202)] = 125823, + [SMALL_STATE(5203)] = 125865, + [SMALL_STATE(5204)] = 125907, + [SMALL_STATE(5205)] = 125949, + [SMALL_STATE(5206)] = 125991, + [SMALL_STATE(5207)] = 126033, + [SMALL_STATE(5208)] = 126093, + [SMALL_STATE(5209)] = 126135, + [SMALL_STATE(5210)] = 126177, + [SMALL_STATE(5211)] = 126219, + [SMALL_STATE(5212)] = 126261, + [SMALL_STATE(5213)] = 126321, + [SMALL_STATE(5214)] = 126363, + [SMALL_STATE(5215)] = 126405, + [SMALL_STATE(5216)] = 126447, + [SMALL_STATE(5217)] = 126495, + [SMALL_STATE(5218)] = 126537, + [SMALL_STATE(5219)] = 126579, + [SMALL_STATE(5220)] = 126621, + [SMALL_STATE(5221)] = 126669, + [SMALL_STATE(5222)] = 126719, + [SMALL_STATE(5223)] = 126765, + [SMALL_STATE(5224)] = 126807, + [SMALL_STATE(5225)] = 126855, + [SMALL_STATE(5226)] = 126897, + [SMALL_STATE(5227)] = 126939, + [SMALL_STATE(5228)] = 126981, + [SMALL_STATE(5229)] = 127023, + [SMALL_STATE(5230)] = 127065, + [SMALL_STATE(5231)] = 127107, + [SMALL_STATE(5232)] = 127149, + [SMALL_STATE(5233)] = 127201, + [SMALL_STATE(5234)] = 127243, + [SMALL_STATE(5235)] = 127285, + [SMALL_STATE(5236)] = 127344, + [SMALL_STATE(5237)] = 127401, + [SMALL_STATE(5238)] = 127448, + [SMALL_STATE(5239)] = 127493, + [SMALL_STATE(5240)] = 127538, + [SMALL_STATE(5241)] = 127597, + [SMALL_STATE(5242)] = 127656, + [SMALL_STATE(5243)] = 127699, + [SMALL_STATE(5244)] = 127756, + [SMALL_STATE(5245)] = 127815, + [SMALL_STATE(5246)] = 127862, + [SMALL_STATE(5247)] = 127913, + [SMALL_STATE(5248)] = 127970, + [SMALL_STATE(5249)] = 128027, + [SMALL_STATE(5250)] = 128086, + [SMALL_STATE(5251)] = 128129, + [SMALL_STATE(5252)] = 128172, + [SMALL_STATE(5253)] = 128223, + [SMALL_STATE(5254)] = 128282, + [SMALL_STATE(5255)] = 128325, + [SMALL_STATE(5256)] = 128382, + [SMALL_STATE(5257)] = 128433, + [SMALL_STATE(5258)] = 128484, + [SMALL_STATE(5259)] = 128535, + [SMALL_STATE(5260)] = 128592, + [SMALL_STATE(5261)] = 128651, + [SMALL_STATE(5262)] = 128708, + [SMALL_STATE(5263)] = 128767, + [SMALL_STATE(5264)] = 128818, + [SMALL_STATE(5265)] = 128875, + [SMALL_STATE(5266)] = 128932, + [SMALL_STATE(5267)] = 128983, + [SMALL_STATE(5268)] = 129040, + [SMALL_STATE(5269)] = 129097, + [SMALL_STATE(5270)] = 129156, + [SMALL_STATE(5271)] = 129207, + [SMALL_STATE(5272)] = 129254, + [SMALL_STATE(5273)] = 129313, + [SMALL_STATE(5274)] = 129364, + [SMALL_STATE(5275)] = 129423, + [SMALL_STATE(5276)] = 129474, + [SMALL_STATE(5277)] = 129525, + [SMALL_STATE(5278)] = 129584, + [SMALL_STATE(5279)] = 129631, + [SMALL_STATE(5280)] = 129690, + [SMALL_STATE(5281)] = 129749, + [SMALL_STATE(5282)] = 129800, + [SMALL_STATE(5283)] = 129851, + [SMALL_STATE(5284)] = 129908, + [SMALL_STATE(5285)] = 129967, + [SMALL_STATE(5286)] = 130018, + [SMALL_STATE(5287)] = 130075, + [SMALL_STATE(5288)] = 130134, + [SMALL_STATE(5289)] = 130193, + [SMALL_STATE(5290)] = 130250, + [SMALL_STATE(5291)] = 130301, + [SMALL_STATE(5292)] = 130358, + [SMALL_STATE(5293)] = 130409, + [SMALL_STATE(5294)] = 130456, + [SMALL_STATE(5295)] = 130515, + [SMALL_STATE(5296)] = 130572, + [SMALL_STATE(5297)] = 130623, + [SMALL_STATE(5298)] = 130674, + [SMALL_STATE(5299)] = 130731, + [SMALL_STATE(5300)] = 130778, + [SMALL_STATE(5301)] = 130829, + [SMALL_STATE(5302)] = 130880, + [SMALL_STATE(5303)] = 130925, + [SMALL_STATE(5304)] = 130984, + [SMALL_STATE(5305)] = 131043, + [SMALL_STATE(5306)] = 131088, + [SMALL_STATE(5307)] = 131135, + [SMALL_STATE(5308)] = 131194, + [SMALL_STATE(5309)] = 131241, + [SMALL_STATE(5310)] = 131298, + [SMALL_STATE(5311)] = 131355, + [SMALL_STATE(5312)] = 131406, + [SMALL_STATE(5313)] = 131465, + [SMALL_STATE(5314)] = 131516, + [SMALL_STATE(5315)] = 131575, + [SMALL_STATE(5316)] = 131632, + [SMALL_STATE(5317)] = 131689, + [SMALL_STATE(5318)] = 131748, + [SMALL_STATE(5319)] = 131791, + [SMALL_STATE(5320)] = 131850, + [SMALL_STATE(5321)] = 131907, + [SMALL_STATE(5322)] = 131966, + [SMALL_STATE(5323)] = 132023, + [SMALL_STATE(5324)] = 132080, + [SMALL_STATE(5325)] = 132139, + [SMALL_STATE(5326)] = 132198, + [SMALL_STATE(5327)] = 132249, + [SMALL_STATE(5328)] = 132308, + [SMALL_STATE(5329)] = 132365, + [SMALL_STATE(5330)] = 132424, + [SMALL_STATE(5331)] = 132483, + [SMALL_STATE(5332)] = 132540, + [SMALL_STATE(5333)] = 132587, + [SMALL_STATE(5334)] = 132638, + [SMALL_STATE(5335)] = 132695, + [SMALL_STATE(5336)] = 132752, + [SMALL_STATE(5337)] = 132809, + [SMALL_STATE(5338)] = 132868, + [SMALL_STATE(5339)] = 132911, + [SMALL_STATE(5340)] = 132968, + [SMALL_STATE(5341)] = 133019, + [SMALL_STATE(5342)] = 133070, + [SMALL_STATE(5343)] = 133127, + [SMALL_STATE(5344)] = 133184, + [SMALL_STATE(5345)] = 133243, + [SMALL_STATE(5346)] = 133302, + [SMALL_STATE(5347)] = 133359, + [SMALL_STATE(5348)] = 133410, + [SMALL_STATE(5349)] = 133461, + [SMALL_STATE(5350)] = 133518, + [SMALL_STATE(5351)] = 133565, + [SMALL_STATE(5352)] = 133622, + [SMALL_STATE(5353)] = 133673, + [SMALL_STATE(5354)] = 133732, + [SMALL_STATE(5355)] = 133789, + [SMALL_STATE(5356)] = 133834, + [SMALL_STATE(5357)] = 133893, + [SMALL_STATE(5358)] = 133952, + [SMALL_STATE(5359)] = 134011, + [SMALL_STATE(5360)] = 134068, + [SMALL_STATE(5361)] = 134125, + [SMALL_STATE(5362)] = 134168, + [SMALL_STATE(5363)] = 134215, + [SMALL_STATE(5364)] = 134272, + [SMALL_STATE(5365)] = 134319, + [SMALL_STATE(5366)] = 134376, + [SMALL_STATE(5367)] = 134423, + [SMALL_STATE(5368)] = 134480, + [SMALL_STATE(5369)] = 134531, + [SMALL_STATE(5370)] = 134590, + [SMALL_STATE(5371)] = 134641, + [SMALL_STATE(5372)] = 134686, + [SMALL_STATE(5373)] = 134743, + [SMALL_STATE(5374)] = 134800, + [SMALL_STATE(5375)] = 134859, + [SMALL_STATE(5376)] = 134918, + [SMALL_STATE(5377)] = 134969, + [SMALL_STATE(5378)] = 135012, + [SMALL_STATE(5379)] = 135071, + [SMALL_STATE(5380)] = 135122, + [SMALL_STATE(5381)] = 135179, + [SMALL_STATE(5382)] = 135238, + [SMALL_STATE(5383)] = 135295, + [SMALL_STATE(5384)] = 135352, + [SMALL_STATE(5385)] = 135401, + [SMALL_STATE(5386)] = 135452, + [SMALL_STATE(5387)] = 135497, + [SMALL_STATE(5388)] = 135554, + [SMALL_STATE(5389)] = 135613, + [SMALL_STATE(5390)] = 135658, + [SMALL_STATE(5391)] = 135715, + [SMALL_STATE(5392)] = 135772, + [SMALL_STATE(5393)] = 135823, + [SMALL_STATE(5394)] = 135882, + [SMALL_STATE(5395)] = 135941, + [SMALL_STATE(5396)] = 136000, + [SMALL_STATE(5397)] = 136059, + [SMALL_STATE(5398)] = 136116, + [SMALL_STATE(5399)] = 136175, + [SMALL_STATE(5400)] = 136232, + [SMALL_STATE(5401)] = 136275, + [SMALL_STATE(5402)] = 136332, + [SMALL_STATE(5403)] = 136383, + [SMALL_STATE(5404)] = 136440, + [SMALL_STATE(5405)] = 136499, + [SMALL_STATE(5406)] = 136550, + [SMALL_STATE(5407)] = 136609, + [SMALL_STATE(5408)] = 136668, + [SMALL_STATE(5409)] = 136719, + [SMALL_STATE(5410)] = 136776, + [SMALL_STATE(5411)] = 136819, + [SMALL_STATE(5412)] = 136876, + [SMALL_STATE(5413)] = 136935, + [SMALL_STATE(5414)] = 136992, + [SMALL_STATE(5415)] = 137051, + [SMALL_STATE(5416)] = 137110, + [SMALL_STATE(5417)] = 137161, + [SMALL_STATE(5418)] = 137208, + [SMALL_STATE(5419)] = 137259, + [SMALL_STATE(5420)] = 137318, + [SMALL_STATE(5421)] = 137377, + [SMALL_STATE(5422)] = 137436, + [SMALL_STATE(5423)] = 137493, + [SMALL_STATE(5424)] = 137544, + [SMALL_STATE(5425)] = 137589, + [SMALL_STATE(5426)] = 137648, + [SMALL_STATE(5427)] = 137707, + [SMALL_STATE(5428)] = 137766, + [SMALL_STATE(5429)] = 137825, + [SMALL_STATE(5430)] = 137882, + [SMALL_STATE(5431)] = 137933, + [SMALL_STATE(5432)] = 137992, + [SMALL_STATE(5433)] = 138051, + [SMALL_STATE(5434)] = 138110, + [SMALL_STATE(5435)] = 138169, + [SMALL_STATE(5436)] = 138226, + [SMALL_STATE(5437)] = 138285, + [SMALL_STATE(5438)] = 138344, + [SMALL_STATE(5439)] = 138403, + [SMALL_STATE(5440)] = 138462, + [SMALL_STATE(5441)] = 138521, + [SMALL_STATE(5442)] = 138572, + [SMALL_STATE(5443)] = 138623, + [SMALL_STATE(5444)] = 138674, + [SMALL_STATE(5445)] = 138733, + [SMALL_STATE(5446)] = 138776, + [SMALL_STATE(5447)] = 138835, + [SMALL_STATE(5448)] = 138886, + [SMALL_STATE(5449)] = 138945, + [SMALL_STATE(5450)] = 139004, + [SMALL_STATE(5451)] = 139058, + [SMALL_STATE(5452)] = 139114, + [SMALL_STATE(5453)] = 139170, + [SMALL_STATE(5454)] = 139226, + [SMALL_STATE(5455)] = 139282, + [SMALL_STATE(5456)] = 139324, + [SMALL_STATE(5457)] = 139370, + [SMALL_STATE(5458)] = 139414, + [SMALL_STATE(5459)] = 139470, + [SMALL_STATE(5460)] = 139526, + [SMALL_STATE(5461)] = 139568, + [SMALL_STATE(5462)] = 139616, + [SMALL_STATE(5463)] = 139660, + [SMALL_STATE(5464)] = 139716, + [SMALL_STATE(5465)] = 139772, + [SMALL_STATE(5466)] = 139828, + [SMALL_STATE(5467)] = 139874, + [SMALL_STATE(5468)] = 139916, + [SMALL_STATE(5469)] = 139972, + [SMALL_STATE(5470)] = 140018, + [SMALL_STATE(5471)] = 140062, + [SMALL_STATE(5472)] = 140108, + [SMALL_STATE(5473)] = 140162, + [SMALL_STATE(5474)] = 140204, + [SMALL_STATE(5475)] = 140260, + [SMALL_STATE(5476)] = 140316, + [SMALL_STATE(5477)] = 140364, + [SMALL_STATE(5478)] = 140420, + [SMALL_STATE(5479)] = 140476, + [SMALL_STATE(5480)] = 140532, + [SMALL_STATE(5481)] = 140588, + [SMALL_STATE(5482)] = 140644, + [SMALL_STATE(5483)] = 140686, + [SMALL_STATE(5484)] = 140742, + [SMALL_STATE(5485)] = 140798, + [SMALL_STATE(5486)] = 140854, + [SMALL_STATE(5487)] = 140910, + [SMALL_STATE(5488)] = 140952, + [SMALL_STATE(5489)] = 141008, + [SMALL_STATE(5490)] = 141064, + [SMALL_STATE(5491)] = 141120, + [SMALL_STATE(5492)] = 141176, + [SMALL_STATE(5493)] = 141232, + [SMALL_STATE(5494)] = 141288, + [SMALL_STATE(5495)] = 141344, + [SMALL_STATE(5496)] = 141390, + [SMALL_STATE(5497)] = 141446, + [SMALL_STATE(5498)] = 141502, + [SMALL_STATE(5499)] = 141544, + [SMALL_STATE(5500)] = 141600, + [SMALL_STATE(5501)] = 141646, + [SMALL_STATE(5502)] = 141690, + [SMALL_STATE(5503)] = 141746, + [SMALL_STATE(5504)] = 141800, + [SMALL_STATE(5505)] = 141842, + [SMALL_STATE(5506)] = 141898, + [SMALL_STATE(5507)] = 141954, + [SMALL_STATE(5508)] = 141998, + [SMALL_STATE(5509)] = 142054, + [SMALL_STATE(5510)] = 142110, + [SMALL_STATE(5511)] = 142152, + [SMALL_STATE(5512)] = 142208, + [SMALL_STATE(5513)] = 142264, + [SMALL_STATE(5514)] = 142320, + [SMALL_STATE(5515)] = 142368, + [SMALL_STATE(5516)] = 142424, + [SMALL_STATE(5517)] = 142470, + [SMALL_STATE(5518)] = 142526, + [SMALL_STATE(5519)] = 142570, + [SMALL_STATE(5520)] = 142626, + [SMALL_STATE(5521)] = 142682, + [SMALL_STATE(5522)] = 142738, + [SMALL_STATE(5523)] = 142786, + [SMALL_STATE(5524)] = 142842, + [SMALL_STATE(5525)] = 142898, + [SMALL_STATE(5526)] = 142954, + [SMALL_STATE(5527)] = 143010, + [SMALL_STATE(5528)] = 143052, + [SMALL_STATE(5529)] = 143108, + [SMALL_STATE(5530)] = 143164, + [SMALL_STATE(5531)] = 143220, + [SMALL_STATE(5532)] = 143276, + [SMALL_STATE(5533)] = 143332, + [SMALL_STATE(5534)] = 143388, + [SMALL_STATE(5535)] = 143432, + [SMALL_STATE(5536)] = 143474, + [SMALL_STATE(5537)] = 143520, + [SMALL_STATE(5538)] = 143576, + [SMALL_STATE(5539)] = 143618, + [SMALL_STATE(5540)] = 143666, + [SMALL_STATE(5541)] = 143722, + [SMALL_STATE(5542)] = 143778, + [SMALL_STATE(5543)] = 143834, + [SMALL_STATE(5544)] = 143890, + [SMALL_STATE(5545)] = 143946, + [SMALL_STATE(5546)] = 144002, + [SMALL_STATE(5547)] = 144058, + [SMALL_STATE(5548)] = 144114, + [SMALL_STATE(5549)] = 144170, + [SMALL_STATE(5550)] = 144226, + [SMALL_STATE(5551)] = 144282, + [SMALL_STATE(5552)] = 144338, + [SMALL_STATE(5553)] = 144394, + [SMALL_STATE(5554)] = 144450, + [SMALL_STATE(5555)] = 144506, + [SMALL_STATE(5556)] = 144562, + [SMALL_STATE(5557)] = 144618, + [SMALL_STATE(5558)] = 144674, + [SMALL_STATE(5559)] = 144730, + [SMALL_STATE(5560)] = 144786, + [SMALL_STATE(5561)] = 144842, + [SMALL_STATE(5562)] = 144898, + [SMALL_STATE(5563)] = 144954, + [SMALL_STATE(5564)] = 145010, + [SMALL_STATE(5565)] = 145066, + [SMALL_STATE(5566)] = 145122, + [SMALL_STATE(5567)] = 145164, + [SMALL_STATE(5568)] = 145208, + [SMALL_STATE(5569)] = 145264, + [SMALL_STATE(5570)] = 145308, + [SMALL_STATE(5571)] = 145350, + [SMALL_STATE(5572)] = 145398, + [SMALL_STATE(5573)] = 145442, + [SMALL_STATE(5574)] = 145498, + [SMALL_STATE(5575)] = 145538, + [SMALL_STATE(5576)] = 145582, + [SMALL_STATE(5577)] = 145622, + [SMALL_STATE(5578)] = 145662, + [SMALL_STATE(5579)] = 145706, + [SMALL_STATE(5580)] = 145762, + [SMALL_STATE(5581)] = 145806, + [SMALL_STATE(5582)] = 145850, + [SMALL_STATE(5583)] = 145906, + [SMALL_STATE(5584)] = 145950, + [SMALL_STATE(5585)] = 146004, + [SMALL_STATE(5586)] = 146060, + [SMALL_STATE(5587)] = 146100, + [SMALL_STATE(5588)] = 146156, + [SMALL_STATE(5589)] = 146212, + [SMALL_STATE(5590)] = 146256, + [SMALL_STATE(5591)] = 146302, + [SMALL_STATE(5592)] = 146356, + [SMALL_STATE(5593)] = 146412, + [SMALL_STATE(5594)] = 146468, + [SMALL_STATE(5595)] = 146524, + [SMALL_STATE(5596)] = 146580, + [SMALL_STATE(5597)] = 146622, + [SMALL_STATE(5598)] = 146678, + [SMALL_STATE(5599)] = 146734, + [SMALL_STATE(5600)] = 146788, + [SMALL_STATE(5601)] = 146844, + [SMALL_STATE(5602)] = 146888, + [SMALL_STATE(5603)] = 146944, + [SMALL_STATE(5604)] = 146984, + [SMALL_STATE(5605)] = 147040, + [SMALL_STATE(5606)] = 147096, + [SMALL_STATE(5607)] = 147152, + [SMALL_STATE(5608)] = 147208, + [SMALL_STATE(5609)] = 147264, + [SMALL_STATE(5610)] = 147308, + [SMALL_STATE(5611)] = 147364, + [SMALL_STATE(5612)] = 147418, + [SMALL_STATE(5613)] = 147474, + [SMALL_STATE(5614)] = 147520, + [SMALL_STATE(5615)] = 147564, + [SMALL_STATE(5616)] = 147604, + [SMALL_STATE(5617)] = 147660, + [SMALL_STATE(5618)] = 147704, + [SMALL_STATE(5619)] = 147746, + [SMALL_STATE(5620)] = 147792, + [SMALL_STATE(5621)] = 147836, + [SMALL_STATE(5622)] = 147880, + [SMALL_STATE(5623)] = 147934, + [SMALL_STATE(5624)] = 147978, + [SMALL_STATE(5625)] = 148032, + [SMALL_STATE(5626)] = 148078, + [SMALL_STATE(5627)] = 148134, + [SMALL_STATE(5628)] = 148174, + [SMALL_STATE(5629)] = 148216, + [SMALL_STATE(5630)] = 148272, + [SMALL_STATE(5631)] = 148328, + [SMALL_STATE(5632)] = 148384, + [SMALL_STATE(5633)] = 148440, + [SMALL_STATE(5634)] = 148494, + [SMALL_STATE(5635)] = 148550, + [SMALL_STATE(5636)] = 148606, + [SMALL_STATE(5637)] = 148650, + [SMALL_STATE(5638)] = 148706, + [SMALL_STATE(5639)] = 148750, + [SMALL_STATE(5640)] = 148794, + [SMALL_STATE(5641)] = 148838, + [SMALL_STATE(5642)] = 148886, + [SMALL_STATE(5643)] = 148942, + [SMALL_STATE(5644)] = 148986, + [SMALL_STATE(5645)] = 149030, + [SMALL_STATE(5646)] = 149086, + [SMALL_STATE(5647)] = 149132, + [SMALL_STATE(5648)] = 149176, + [SMALL_STATE(5649)] = 149232, + [SMALL_STATE(5650)] = 149288, + [SMALL_STATE(5651)] = 149332, + [SMALL_STATE(5652)] = 149376, + [SMALL_STATE(5653)] = 149432, + [SMALL_STATE(5654)] = 149488, + [SMALL_STATE(5655)] = 149544, + [SMALL_STATE(5656)] = 149600, + [SMALL_STATE(5657)] = 149656, + [SMALL_STATE(5658)] = 149712, + [SMALL_STATE(5659)] = 149753, + [SMALL_STATE(5660)] = 149806, + [SMALL_STATE(5661)] = 149859, + [SMALL_STATE(5662)] = 149900, + [SMALL_STATE(5663)] = 149951, + [SMALL_STATE(5664)] = 149992, + [SMALL_STATE(5665)] = 150033, + [SMALL_STATE(5666)] = 150086, + [SMALL_STATE(5667)] = 150127, + [SMALL_STATE(5668)] = 150176, + [SMALL_STATE(5669)] = 150227, + [SMALL_STATE(5670)] = 150268, + [SMALL_STATE(5671)] = 150309, + [SMALL_STATE(5672)] = 150348, + [SMALL_STATE(5673)] = 150401, + [SMALL_STATE(5674)] = 150454, + [SMALL_STATE(5675)] = 150505, + [SMALL_STATE(5676)] = 150544, + [SMALL_STATE(5677)] = 150595, + [SMALL_STATE(5678)] = 150638, + [SMALL_STATE(5679)] = 150681, + [SMALL_STATE(5680)] = 150724, + [SMALL_STATE(5681)] = 150777, + [SMALL_STATE(5682)] = 150830, + [SMALL_STATE(5683)] = 150883, + [SMALL_STATE(5684)] = 150936, + [SMALL_STATE(5685)] = 150989, + [SMALL_STATE(5686)] = 151042, + [SMALL_STATE(5687)] = 151095, + [SMALL_STATE(5688)] = 151140, + [SMALL_STATE(5689)] = 151193, + [SMALL_STATE(5690)] = 151246, + [SMALL_STATE(5691)] = 151299, + [SMALL_STATE(5692)] = 151352, + [SMALL_STATE(5693)] = 151393, + [SMALL_STATE(5694)] = 151446, + [SMALL_STATE(5695)] = 151499, + [SMALL_STATE(5696)] = 151552, + [SMALL_STATE(5697)] = 151605, + [SMALL_STATE(5698)] = 151648, + [SMALL_STATE(5699)] = 151701, + [SMALL_STATE(5700)] = 151742, + [SMALL_STATE(5701)] = 151787, + [SMALL_STATE(5702)] = 151830, + [SMALL_STATE(5703)] = 151883, + [SMALL_STATE(5704)] = 151926, + [SMALL_STATE(5705)] = 151969, + [SMALL_STATE(5706)] = 152012, + [SMALL_STATE(5707)] = 152065, + [SMALL_STATE(5708)] = 152118, + [SMALL_STATE(5709)] = 152171, + [SMALL_STATE(5710)] = 152212, + [SMALL_STATE(5711)] = 152253, + [SMALL_STATE(5712)] = 152306, + [SMALL_STATE(5713)] = 152359, + [SMALL_STATE(5714)] = 152400, + [SMALL_STATE(5715)] = 152453, + [SMALL_STATE(5716)] = 152506, + [SMALL_STATE(5717)] = 152549, + [SMALL_STATE(5718)] = 152592, + [SMALL_STATE(5719)] = 152635, + [SMALL_STATE(5720)] = 152688, + [SMALL_STATE(5721)] = 152739, + [SMALL_STATE(5722)] = 152792, + [SMALL_STATE(5723)] = 152845, + [SMALL_STATE(5724)] = 152886, + [SMALL_STATE(5725)] = 152929, + [SMALL_STATE(5726)] = 152978, + [SMALL_STATE(5727)] = 153029, + [SMALL_STATE(5728)] = 153082, + [SMALL_STATE(5729)] = 153125, + [SMALL_STATE(5730)] = 153166, + [SMALL_STATE(5731)] = 153207, + [SMALL_STATE(5732)] = 153260, + [SMALL_STATE(5733)] = 153303, + [SMALL_STATE(5734)] = 153342, + [SMALL_STATE(5735)] = 153395, + [SMALL_STATE(5736)] = 153436, + [SMALL_STATE(5737)] = 153487, + [SMALL_STATE(5738)] = 153540, + [SMALL_STATE(5739)] = 153593, + [SMALL_STATE(5740)] = 153634, + [SMALL_STATE(5741)] = 153687, + [SMALL_STATE(5742)] = 153732, + [SMALL_STATE(5743)] = 153773, + [SMALL_STATE(5744)] = 153814, + [SMALL_STATE(5745)] = 153867, + [SMALL_STATE(5746)] = 153918, + [SMALL_STATE(5747)] = 153959, + [SMALL_STATE(5748)] = 154000, + [SMALL_STATE(5749)] = 154041, + [SMALL_STATE(5750)] = 154094, + [SMALL_STATE(5751)] = 154145, + [SMALL_STATE(5752)] = 154196, + [SMALL_STATE(5753)] = 154249, + [SMALL_STATE(5754)] = 154300, + [SMALL_STATE(5755)] = 154353, + [SMALL_STATE(5756)] = 154406, + [SMALL_STATE(5757)] = 154459, + [SMALL_STATE(5758)] = 154512, + [SMALL_STATE(5759)] = 154553, + [SMALL_STATE(5760)] = 154594, + [SMALL_STATE(5761)] = 154637, + [SMALL_STATE(5762)] = 154678, + [SMALL_STATE(5763)] = 154719, + [SMALL_STATE(5764)] = 154762, + [SMALL_STATE(5765)] = 154803, + [SMALL_STATE(5766)] = 154844, + [SMALL_STATE(5767)] = 154885, + [SMALL_STATE(5768)] = 154926, + [SMALL_STATE(5769)] = 154967, + [SMALL_STATE(5770)] = 155008, + [SMALL_STATE(5771)] = 155049, + [SMALL_STATE(5772)] = 155090, + [SMALL_STATE(5773)] = 155131, + [SMALL_STATE(5774)] = 155172, + [SMALL_STATE(5775)] = 155213, + [SMALL_STATE(5776)] = 155254, + [SMALL_STATE(5777)] = 155295, + [SMALL_STATE(5778)] = 155336, + [SMALL_STATE(5779)] = 155377, + [SMALL_STATE(5780)] = 155418, + [SMALL_STATE(5781)] = 155459, + [SMALL_STATE(5782)] = 155500, + [SMALL_STATE(5783)] = 155541, + [SMALL_STATE(5784)] = 155582, + [SMALL_STATE(5785)] = 155623, + [SMALL_STATE(5786)] = 155676, + [SMALL_STATE(5787)] = 155717, + [SMALL_STATE(5788)] = 155758, + [SMALL_STATE(5789)] = 155811, + [SMALL_STATE(5790)] = 155852, + [SMALL_STATE(5791)] = 155893, + [SMALL_STATE(5792)] = 155934, + [SMALL_STATE(5793)] = 155975, + [SMALL_STATE(5794)] = 156016, + [SMALL_STATE(5795)] = 156069, + [SMALL_STATE(5796)] = 156122, + [SMALL_STATE(5797)] = 156163, + [SMALL_STATE(5798)] = 156203, + [SMALL_STATE(5799)] = 156243, + [SMALL_STATE(5800)] = 156283, + [SMALL_STATE(5801)] = 156323, + [SMALL_STATE(5802)] = 156363, + [SMALL_STATE(5803)] = 156403, + [SMALL_STATE(5804)] = 156453, + [SMALL_STATE(5805)] = 156503, + [SMALL_STATE(5806)] = 156551, + [SMALL_STATE(5807)] = 156591, + [SMALL_STATE(5808)] = 156631, + [SMALL_STATE(5809)] = 156671, + [SMALL_STATE(5810)] = 156711, + [SMALL_STATE(5811)] = 156751, + [SMALL_STATE(5812)] = 156791, + [SMALL_STATE(5813)] = 156839, + [SMALL_STATE(5814)] = 156887, + [SMALL_STATE(5815)] = 156927, + [SMALL_STATE(5816)] = 156967, + [SMALL_STATE(5817)] = 157017, + [SMALL_STATE(5818)] = 157065, + [SMALL_STATE(5819)] = 157115, + [SMALL_STATE(5820)] = 157155, + [SMALL_STATE(5821)] = 157205, + [SMALL_STATE(5822)] = 157245, + [SMALL_STATE(5823)] = 157285, + [SMALL_STATE(5824)] = 157333, + [SMALL_STATE(5825)] = 157373, + [SMALL_STATE(5826)] = 157413, + [SMALL_STATE(5827)] = 157463, + [SMALL_STATE(5828)] = 157503, + [SMALL_STATE(5829)] = 157543, + [SMALL_STATE(5830)] = 157583, + [SMALL_STATE(5831)] = 157633, + [SMALL_STATE(5832)] = 157673, + [SMALL_STATE(5833)] = 157723, + [SMALL_STATE(5834)] = 157771, + [SMALL_STATE(5835)] = 157819, + [SMALL_STATE(5836)] = 157869, + [SMALL_STATE(5837)] = 157919, + [SMALL_STATE(5838)] = 157959, + [SMALL_STATE(5839)] = 158009, + [SMALL_STATE(5840)] = 158059, + [SMALL_STATE(5841)] = 158109, + [SMALL_STATE(5842)] = 158147, + [SMALL_STATE(5843)] = 158187, + [SMALL_STATE(5844)] = 158227, + [SMALL_STATE(5845)] = 158277, + [SMALL_STATE(5846)] = 158325, + [SMALL_STATE(5847)] = 158375, + [SMALL_STATE(5848)] = 158417, + [SMALL_STATE(5849)] = 158457, + [SMALL_STATE(5850)] = 158497, + [SMALL_STATE(5851)] = 158547, + [SMALL_STATE(5852)] = 158597, + [SMALL_STATE(5853)] = 158637, + [SMALL_STATE(5854)] = 158687, + [SMALL_STATE(5855)] = 158737, + [SMALL_STATE(5856)] = 158787, + [SMALL_STATE(5857)] = 158825, + [SMALL_STATE(5858)] = 158873, + [SMALL_STATE(5859)] = 158913, + [SMALL_STATE(5860)] = 158953, + [SMALL_STATE(5861)] = 158993, + [SMALL_STATE(5862)] = 159041, + [SMALL_STATE(5863)] = 159081, + [SMALL_STATE(5864)] = 159119, + [SMALL_STATE(5865)] = 159161, + [SMALL_STATE(5866)] = 159211, + [SMALL_STATE(5867)] = 159261, + [SMALL_STATE(5868)] = 159301, + [SMALL_STATE(5869)] = 159341, + [SMALL_STATE(5870)] = 159381, + [SMALL_STATE(5871)] = 159431, + [SMALL_STATE(5872)] = 159479, + [SMALL_STATE(5873)] = 159529, + [SMALL_STATE(5874)] = 159577, + [SMALL_STATE(5875)] = 159627, + [SMALL_STATE(5876)] = 159667, + [SMALL_STATE(5877)] = 159717, + [SMALL_STATE(5878)] = 159765, + [SMALL_STATE(5879)] = 159815, + [SMALL_STATE(5880)] = 159855, + [SMALL_STATE(5881)] = 159905, + [SMALL_STATE(5882)] = 159953, + [SMALL_STATE(5883)] = 159993, + [SMALL_STATE(5884)] = 160043, + [SMALL_STATE(5885)] = 160083, + [SMALL_STATE(5886)] = 160133, + [SMALL_STATE(5887)] = 160183, + [SMALL_STATE(5888)] = 160223, + [SMALL_STATE(5889)] = 160273, + [SMALL_STATE(5890)] = 160315, + [SMALL_STATE(5891)] = 160355, + [SMALL_STATE(5892)] = 160395, + [SMALL_STATE(5893)] = 160445, + [SMALL_STATE(5894)] = 160495, + [SMALL_STATE(5895)] = 160539, + [SMALL_STATE(5896)] = 160589, + [SMALL_STATE(5897)] = 160639, + [SMALL_STATE(5898)] = 160689, + [SMALL_STATE(5899)] = 160739, + [SMALL_STATE(5900)] = 160789, + [SMALL_STATE(5901)] = 160839, + [SMALL_STATE(5902)] = 160887, + [SMALL_STATE(5903)] = 160927, + [SMALL_STATE(5904)] = 160975, + [SMALL_STATE(5905)] = 161025, + [SMALL_STATE(5906)] = 161065, + [SMALL_STATE(5907)] = 161105, + [SMALL_STATE(5908)] = 161155, + [SMALL_STATE(5909)] = 161205, + [SMALL_STATE(5910)] = 161245, + [SMALL_STATE(5911)] = 161295, + [SMALL_STATE(5912)] = 161335, + [SMALL_STATE(5913)] = 161385, + [SMALL_STATE(5914)] = 161425, + [SMALL_STATE(5915)] = 161465, + [SMALL_STATE(5916)] = 161513, + [SMALL_STATE(5917)] = 161561, + [SMALL_STATE(5918)] = 161605, + [SMALL_STATE(5919)] = 161655, + [SMALL_STATE(5920)] = 161695, + [SMALL_STATE(5921)] = 161732, + [SMALL_STATE(5922)] = 161773, + [SMALL_STATE(5923)] = 161816, + [SMALL_STATE(5924)] = 161853, + [SMALL_STATE(5925)] = 161890, + [SMALL_STATE(5926)] = 161937, + [SMALL_STATE(5927)] = 161984, + [SMALL_STATE(5928)] = 162028, + [SMALL_STATE(5929)] = 162072, + [SMALL_STATE(5930)] = 162116, + [SMALL_STATE(5931)] = 162160, + [SMALL_STATE(5932)] = 162204, + [SMALL_STATE(5933)] = 162248, + [SMALL_STATE(5934)] = 162290, + [SMALL_STATE(5935)] = 162334, + [SMALL_STATE(5936)] = 162376, + [SMALL_STATE(5937)] = 162420, + [SMALL_STATE(5938)] = 162462, + [SMALL_STATE(5939)] = 162506, + [SMALL_STATE(5940)] = 162550, + [SMALL_STATE(5941)] = 162594, + [SMALL_STATE(5942)] = 162638, + [SMALL_STATE(5943)] = 162682, + [SMALL_STATE(5944)] = 162724, + [SMALL_STATE(5945)] = 162768, + [SMALL_STATE(5946)] = 162812, + [SMALL_STATE(5947)] = 162854, + [SMALL_STATE(5948)] = 162896, + [SMALL_STATE(5949)] = 162938, + [SMALL_STATE(5950)] = 162980, + [SMALL_STATE(5951)] = 163024, + [SMALL_STATE(5952)] = 163068, + [SMALL_STATE(5953)] = 163112, + [SMALL_STATE(5954)] = 163156, + [SMALL_STATE(5955)] = 163200, + [SMALL_STATE(5956)] = 163238, + [SMALL_STATE(5957)] = 163282, + [SMALL_STATE(5958)] = 163326, + [SMALL_STATE(5959)] = 163368, + [SMALL_STATE(5960)] = 163412, + [SMALL_STATE(5961)] = 163456, + [SMALL_STATE(5962)] = 163492, + [SMALL_STATE(5963)] = 163536, + [SMALL_STATE(5964)] = 163580, + [SMALL_STATE(5965)] = 163624, + [SMALL_STATE(5966)] = 163660, + [SMALL_STATE(5967)] = 163702, + [SMALL_STATE(5968)] = 163744, + [SMALL_STATE(5969)] = 163788, + [SMALL_STATE(5970)] = 163832, + [SMALL_STATE(5971)] = 163876, + [SMALL_STATE(5972)] = 163920, + [SMALL_STATE(5973)] = 163964, + [SMALL_STATE(5974)] = 164008, + [SMALL_STATE(5975)] = 164050, + [SMALL_STATE(5976)] = 164094, + [SMALL_STATE(5977)] = 164138, + [SMALL_STATE(5978)] = 164182, + [SMALL_STATE(5979)] = 164226, + [SMALL_STATE(5980)] = 164270, + [SMALL_STATE(5981)] = 164312, + [SMALL_STATE(5982)] = 164354, + [SMALL_STATE(5983)] = 164392, + [SMALL_STATE(5984)] = 164436, + [SMALL_STATE(5985)] = 164480, + [SMALL_STATE(5986)] = 164524, + [SMALL_STATE(5987)] = 164568, + [SMALL_STATE(5988)] = 164612, + [SMALL_STATE(5989)] = 164656, + [SMALL_STATE(5990)] = 164698, + [SMALL_STATE(5991)] = 164734, + [SMALL_STATE(5992)] = 164770, + [SMALL_STATE(5993)] = 164812, + [SMALL_STATE(5994)] = 164856, + [SMALL_STATE(5995)] = 164900, + [SMALL_STATE(5996)] = 164944, + [SMALL_STATE(5997)] = 164988, + [SMALL_STATE(5998)] = 165032, + [SMALL_STATE(5999)] = 165076, + [SMALL_STATE(6000)] = 165120, + [SMALL_STATE(6001)] = 165164, + [SMALL_STATE(6002)] = 165208, + [SMALL_STATE(6003)] = 165252, + [SMALL_STATE(6004)] = 165296, + [SMALL_STATE(6005)] = 165338, + [SMALL_STATE(6006)] = 165380, + [SMALL_STATE(6007)] = 165424, + [SMALL_STATE(6008)] = 165468, + [SMALL_STATE(6009)] = 165512, + [SMALL_STATE(6010)] = 165556, + [SMALL_STATE(6011)] = 165600, + [SMALL_STATE(6012)] = 165642, + [SMALL_STATE(6013)] = 165684, + [SMALL_STATE(6014)] = 165728, + [SMALL_STATE(6015)] = 165772, + [SMALL_STATE(6016)] = 165816, + [SMALL_STATE(6017)] = 165858, + [SMALL_STATE(6018)] = 165902, + [SMALL_STATE(6019)] = 165946, + [SMALL_STATE(6020)] = 165990, + [SMALL_STATE(6021)] = 166032, + [SMALL_STATE(6022)] = 166076, + [SMALL_STATE(6023)] = 166120, + [SMALL_STATE(6024)] = 166162, + [SMALL_STATE(6025)] = 166206, + [SMALL_STATE(6026)] = 166250, + [SMALL_STATE(6027)] = 166294, + [SMALL_STATE(6028)] = 166336, + [SMALL_STATE(6029)] = 166378, + [SMALL_STATE(6030)] = 166422, + [SMALL_STATE(6031)] = 166466, + [SMALL_STATE(6032)] = 166510, + [SMALL_STATE(6033)] = 166552, + [SMALL_STATE(6034)] = 166588, + [SMALL_STATE(6035)] = 166632, + [SMALL_STATE(6036)] = 166676, + [SMALL_STATE(6037)] = 166720, + [SMALL_STATE(6038)] = 166764, + [SMALL_STATE(6039)] = 166808, + [SMALL_STATE(6040)] = 166850, + [SMALL_STATE(6041)] = 166892, + [SMALL_STATE(6042)] = 166934, + [SMALL_STATE(6043)] = 166978, + [SMALL_STATE(6044)] = 167020, + [SMALL_STATE(6045)] = 167064, + [SMALL_STATE(6046)] = 167106, + [SMALL_STATE(6047)] = 167150, + [SMALL_STATE(6048)] = 167194, + [SMALL_STATE(6049)] = 167238, + [SMALL_STATE(6050)] = 167282, + [SMALL_STATE(6051)] = 167326, + [SMALL_STATE(6052)] = 167362, + [SMALL_STATE(6053)] = 167406, + [SMALL_STATE(6054)] = 167448, + [SMALL_STATE(6055)] = 167492, + [SMALL_STATE(6056)] = 167536, + [SMALL_STATE(6057)] = 167580, + [SMALL_STATE(6058)] = 167622, + [SMALL_STATE(6059)] = 167664, + [SMALL_STATE(6060)] = 167708, + [SMALL_STATE(6061)] = 167752, + [SMALL_STATE(6062)] = 167787, + [SMALL_STATE(6063)] = 167822, + [SMALL_STATE(6064)] = 167857, + [SMALL_STATE(6065)] = 167892, + [SMALL_STATE(6066)] = 167933, + [SMALL_STATE(6067)] = 167968, + [SMALL_STATE(6068)] = 168003, + [SMALL_STATE(6069)] = 168044, + [SMALL_STATE(6070)] = 168079, + [SMALL_STATE(6071)] = 168114, + [SMALL_STATE(6072)] = 168153, + [SMALL_STATE(6073)] = 168188, + [SMALL_STATE(6074)] = 168229, + [SMALL_STATE(6075)] = 168264, + [SMALL_STATE(6076)] = 168305, + [SMALL_STATE(6077)] = 168340, + [SMALL_STATE(6078)] = 168375, + [SMALL_STATE(6079)] = 168410, + [SMALL_STATE(6080)] = 168451, + [SMALL_STATE(6081)] = 168486, + [SMALL_STATE(6082)] = 168527, + [SMALL_STATE(6083)] = 168568, + [SMALL_STATE(6084)] = 168603, + [SMALL_STATE(6085)] = 168644, + [SMALL_STATE(6086)] = 168679, + [SMALL_STATE(6087)] = 168714, + [SMALL_STATE(6088)] = 168749, + [SMALL_STATE(6089)] = 168788, + [SMALL_STATE(6090)] = 168829, + [SMALL_STATE(6091)] = 168870, + [SMALL_STATE(6092)] = 168905, + [SMALL_STATE(6093)] = 168946, + [SMALL_STATE(6094)] = 168987, + [SMALL_STATE(6095)] = 169022, + [SMALL_STATE(6096)] = 169063, + [SMALL_STATE(6097)] = 169104, + [SMALL_STATE(6098)] = 169145, + [SMALL_STATE(6099)] = 169186, + [SMALL_STATE(6100)] = 169221, + [SMALL_STATE(6101)] = 169262, + [SMALL_STATE(6102)] = 169303, + [SMALL_STATE(6103)] = 169338, + [SMALL_STATE(6104)] = 169373, + [SMALL_STATE(6105)] = 169408, + [SMALL_STATE(6106)] = 169449, + [SMALL_STATE(6107)] = 169490, + [SMALL_STATE(6108)] = 169525, + [SMALL_STATE(6109)] = 169560, + [SMALL_STATE(6110)] = 169595, + [SMALL_STATE(6111)] = 169630, + [SMALL_STATE(6112)] = 169671, + [SMALL_STATE(6113)] = 169712, + [SMALL_STATE(6114)] = 169747, + [SMALL_STATE(6115)] = 169782, + [SMALL_STATE(6116)] = 169817, + [SMALL_STATE(6117)] = 169852, + [SMALL_STATE(6118)] = 169893, + [SMALL_STATE(6119)] = 169928, + [SMALL_STATE(6120)] = 169969, + [SMALL_STATE(6121)] = 170004, + [SMALL_STATE(6122)] = 170045, + [SMALL_STATE(6123)] = 170080, + [SMALL_STATE(6124)] = 170119, + [SMALL_STATE(6125)] = 170154, + [SMALL_STATE(6126)] = 170189, + [SMALL_STATE(6127)] = 170224, + [SMALL_STATE(6128)] = 170265, + [SMALL_STATE(6129)] = 170300, + [SMALL_STATE(6130)] = 170335, + [SMALL_STATE(6131)] = 170376, + [SMALL_STATE(6132)] = 170411, + [SMALL_STATE(6133)] = 170446, + [SMALL_STATE(6134)] = 170485, + [SMALL_STATE(6135)] = 170526, + [SMALL_STATE(6136)] = 170567, + [SMALL_STATE(6137)] = 170608, + [SMALL_STATE(6138)] = 170649, + [SMALL_STATE(6139)] = 170684, + [SMALL_STATE(6140)] = 170725, + [SMALL_STATE(6141)] = 170766, + [SMALL_STATE(6142)] = 170807, + [SMALL_STATE(6143)] = 170848, + [SMALL_STATE(6144)] = 170889, + [SMALL_STATE(6145)] = 170930, + [SMALL_STATE(6146)] = 170971, + [SMALL_STATE(6147)] = 171010, + [SMALL_STATE(6148)] = 171051, + [SMALL_STATE(6149)] = 171086, + [SMALL_STATE(6150)] = 171121, + [SMALL_STATE(6151)] = 171156, + [SMALL_STATE(6152)] = 171197, + [SMALL_STATE(6153)] = 171238, + [SMALL_STATE(6154)] = 171279, + [SMALL_STATE(6155)] = 171320, + [SMALL_STATE(6156)] = 171361, + [SMALL_STATE(6157)] = 171402, + [SMALL_STATE(6158)] = 171441, + [SMALL_STATE(6159)] = 171482, + [SMALL_STATE(6160)] = 171523, + [SMALL_STATE(6161)] = 171564, + [SMALL_STATE(6162)] = 171599, + [SMALL_STATE(6163)] = 171640, + [SMALL_STATE(6164)] = 171681, + [SMALL_STATE(6165)] = 171716, + [SMALL_STATE(6166)] = 171757, + [SMALL_STATE(6167)] = 171798, + [SMALL_STATE(6168)] = 171833, + [SMALL_STATE(6169)] = 171872, + [SMALL_STATE(6170)] = 171913, + [SMALL_STATE(6171)] = 171954, + [SMALL_STATE(6172)] = 171995, + [SMALL_STATE(6173)] = 172036, + [SMALL_STATE(6174)] = 172077, + [SMALL_STATE(6175)] = 172118, + [SMALL_STATE(6176)] = 172159, + [SMALL_STATE(6177)] = 172200, + [SMALL_STATE(6178)] = 172241, + [SMALL_STATE(6179)] = 172280, + [SMALL_STATE(6180)] = 172317, + [SMALL_STATE(6181)] = 172358, + [SMALL_STATE(6182)] = 172399, + [SMALL_STATE(6183)] = 172434, + [SMALL_STATE(6184)] = 172469, + [SMALL_STATE(6185)] = 172510, + [SMALL_STATE(6186)] = 172546, + [SMALL_STATE(6187)] = 172582, + [SMALL_STATE(6188)] = 172620, + [SMALL_STATE(6189)] = 172654, + [SMALL_STATE(6190)] = 172688, + [SMALL_STATE(6191)] = 172724, + [SMALL_STATE(6192)] = 172762, + [SMALL_STATE(6193)] = 172800, + [SMALL_STATE(6194)] = 172838, + [SMALL_STATE(6195)] = 172876, + [SMALL_STATE(6196)] = 172914, + [SMALL_STATE(6197)] = 172950, + [SMALL_STATE(6198)] = 172988, + [SMALL_STATE(6199)] = 173024, + [SMALL_STATE(6200)] = 173058, + [SMALL_STATE(6201)] = 173096, + [SMALL_STATE(6202)] = 173132, + [SMALL_STATE(6203)] = 173170, + [SMALL_STATE(6204)] = 173208, + [SMALL_STATE(6205)] = 173246, + [SMALL_STATE(6206)] = 173284, + [SMALL_STATE(6207)] = 173322, + [SMALL_STATE(6208)] = 173360, + [SMALL_STATE(6209)] = 173398, + [SMALL_STATE(6210)] = 173436, + [SMALL_STATE(6211)] = 173472, + [SMALL_STATE(6212)] = 173510, + [SMALL_STATE(6213)] = 173548, + [SMALL_STATE(6214)] = 173586, + [SMALL_STATE(6215)] = 173624, + [SMALL_STATE(6216)] = 173662, + [SMALL_STATE(6217)] = 173696, + [SMALL_STATE(6218)] = 173732, + [SMALL_STATE(6219)] = 173768, + [SMALL_STATE(6220)] = 173806, + [SMALL_STATE(6221)] = 173842, + [SMALL_STATE(6222)] = 173876, + [SMALL_STATE(6223)] = 173914, + [SMALL_STATE(6224)] = 173952, + [SMALL_STATE(6225)] = 173986, + [SMALL_STATE(6226)] = 174020, + [SMALL_STATE(6227)] = 174056, + [SMALL_STATE(6228)] = 174092, + [SMALL_STATE(6229)] = 174128, + [SMALL_STATE(6230)] = 174166, + [SMALL_STATE(6231)] = 174204, + [SMALL_STATE(6232)] = 174240, + [SMALL_STATE(6233)] = 174276, + [SMALL_STATE(6234)] = 174314, + [SMALL_STATE(6235)] = 174352, + [SMALL_STATE(6236)] = 174390, + [SMALL_STATE(6237)] = 174428, + [SMALL_STATE(6238)] = 174462, + [SMALL_STATE(6239)] = 174500, + [SMALL_STATE(6240)] = 174534, + [SMALL_STATE(6241)] = 174572, + [SMALL_STATE(6242)] = 174606, + [SMALL_STATE(6243)] = 174642, + [SMALL_STATE(6244)] = 174680, + [SMALL_STATE(6245)] = 174716, + [SMALL_STATE(6246)] = 174752, + [SMALL_STATE(6247)] = 174786, + [SMALL_STATE(6248)] = 174824, + [SMALL_STATE(6249)] = 174862, + [SMALL_STATE(6250)] = 174896, + [SMALL_STATE(6251)] = 174934, + [SMALL_STATE(6252)] = 174972, + [SMALL_STATE(6253)] = 175006, + [SMALL_STATE(6254)] = 175040, + [SMALL_STATE(6255)] = 175076, + [SMALL_STATE(6256)] = 175114, + [SMALL_STATE(6257)] = 175148, + [SMALL_STATE(6258)] = 175186, + [SMALL_STATE(6259)] = 175224, + [SMALL_STATE(6260)] = 175262, + [SMALL_STATE(6261)] = 175298, + [SMALL_STATE(6262)] = 175336, + [SMALL_STATE(6263)] = 175370, + [SMALL_STATE(6264)] = 175408, + [SMALL_STATE(6265)] = 175442, + [SMALL_STATE(6266)] = 175476, + [SMALL_STATE(6267)] = 175512, + [SMALL_STATE(6268)] = 175550, + [SMALL_STATE(6269)] = 175588, + [SMALL_STATE(6270)] = 175626, + [SMALL_STATE(6271)] = 175660, + [SMALL_STATE(6272)] = 175698, + [SMALL_STATE(6273)] = 175732, + [SMALL_STATE(6274)] = 175770, + [SMALL_STATE(6275)] = 175808, + [SMALL_STATE(6276)] = 175842, + [SMALL_STATE(6277)] = 175880, + [SMALL_STATE(6278)] = 175918, + [SMALL_STATE(6279)] = 175956, + [SMALL_STATE(6280)] = 175994, + [SMALL_STATE(6281)] = 176032, + [SMALL_STATE(6282)] = 176068, + [SMALL_STATE(6283)] = 176106, + [SMALL_STATE(6284)] = 176144, + [SMALL_STATE(6285)] = 176180, + [SMALL_STATE(6286)] = 176214, + [SMALL_STATE(6287)] = 176252, + [SMALL_STATE(6288)] = 176290, + [SMALL_STATE(6289)] = 176328, + [SMALL_STATE(6290)] = 176362, + [SMALL_STATE(6291)] = 176400, + [SMALL_STATE(6292)] = 176438, + [SMALL_STATE(6293)] = 176472, + [SMALL_STATE(6294)] = 176510, + [SMALL_STATE(6295)] = 176546, + [SMALL_STATE(6296)] = 176584, + [SMALL_STATE(6297)] = 176622, + [SMALL_STATE(6298)] = 176660, + [SMALL_STATE(6299)] = 176698, + [SMALL_STATE(6300)] = 176734, + [SMALL_STATE(6301)] = 176768, + [SMALL_STATE(6302)] = 176806, + [SMALL_STATE(6303)] = 176842, + [SMALL_STATE(6304)] = 176880, + [SMALL_STATE(6305)] = 176918, + [SMALL_STATE(6306)] = 176956, + [SMALL_STATE(6307)] = 176992, + [SMALL_STATE(6308)] = 177030, + [SMALL_STATE(6309)] = 177068, + [SMALL_STATE(6310)] = 177106, + [SMALL_STATE(6311)] = 177142, + [SMALL_STATE(6312)] = 177180, + [SMALL_STATE(6313)] = 177214, + [SMALL_STATE(6314)] = 177252, + [SMALL_STATE(6315)] = 177290, + [SMALL_STATE(6316)] = 177328, + [SMALL_STATE(6317)] = 177364, + [SMALL_STATE(6318)] = 177402, + [SMALL_STATE(6319)] = 177436, + [SMALL_STATE(6320)] = 177474, + [SMALL_STATE(6321)] = 177512, + [SMALL_STATE(6322)] = 177548, + [SMALL_STATE(6323)] = 177586, + [SMALL_STATE(6324)] = 177624, + [SMALL_STATE(6325)] = 177662, + [SMALL_STATE(6326)] = 177700, + [SMALL_STATE(6327)] = 177738, + [SMALL_STATE(6328)] = 177772, + [SMALL_STATE(6329)] = 177810, + [SMALL_STATE(6330)] = 177846, + [SMALL_STATE(6331)] = 177884, + [SMALL_STATE(6332)] = 177920, + [SMALL_STATE(6333)] = 177958, + [SMALL_STATE(6334)] = 177996, + [SMALL_STATE(6335)] = 178032, + [SMALL_STATE(6336)] = 178070, + [SMALL_STATE(6337)] = 178108, + [SMALL_STATE(6338)] = 178146, + [SMALL_STATE(6339)] = 178184, + [SMALL_STATE(6340)] = 178222, + [SMALL_STATE(6341)] = 178258, + [SMALL_STATE(6342)] = 178296, + [SMALL_STATE(6343)] = 178334, + [SMALL_STATE(6344)] = 178372, + [SMALL_STATE(6345)] = 178410, + [SMALL_STATE(6346)] = 178448, + [SMALL_STATE(6347)] = 178486, + [SMALL_STATE(6348)] = 178524, + [SMALL_STATE(6349)] = 178562, + [SMALL_STATE(6350)] = 178598, + [SMALL_STATE(6351)] = 178636, + [SMALL_STATE(6352)] = 178674, + [SMALL_STATE(6353)] = 178712, + [SMALL_STATE(6354)] = 178750, + [SMALL_STATE(6355)] = 178786, + [SMALL_STATE(6356)] = 178824, + [SMALL_STATE(6357)] = 178858, + [SMALL_STATE(6358)] = 178896, + [SMALL_STATE(6359)] = 178934, + [SMALL_STATE(6360)] = 178970, + [SMALL_STATE(6361)] = 179008, + [SMALL_STATE(6362)] = 179044, + [SMALL_STATE(6363)] = 179080, + [SMALL_STATE(6364)] = 179118, + [SMALL_STATE(6365)] = 179156, + [SMALL_STATE(6366)] = 179194, + [SMALL_STATE(6367)] = 179232, + [SMALL_STATE(6368)] = 179270, + [SMALL_STATE(6369)] = 179306, + [SMALL_STATE(6370)] = 179344, + [SMALL_STATE(6371)] = 179382, + [SMALL_STATE(6372)] = 179418, + [SMALL_STATE(6373)] = 179452, + [SMALL_STATE(6374)] = 179490, + [SMALL_STATE(6375)] = 179528, + [SMALL_STATE(6376)] = 179566, + [SMALL_STATE(6377)] = 179604, + [SMALL_STATE(6378)] = 179642, + [SMALL_STATE(6379)] = 179680, + [SMALL_STATE(6380)] = 179718, + [SMALL_STATE(6381)] = 179756, + [SMALL_STATE(6382)] = 179792, + [SMALL_STATE(6383)] = 179828, + [SMALL_STATE(6384)] = 179866, + [SMALL_STATE(6385)] = 179904, + [SMALL_STATE(6386)] = 179940, + [SMALL_STATE(6387)] = 179978, + [SMALL_STATE(6388)] = 180016, + [SMALL_STATE(6389)] = 180054, + [SMALL_STATE(6390)] = 180090, + [SMALL_STATE(6391)] = 180128, + [SMALL_STATE(6392)] = 180166, + [SMALL_STATE(6393)] = 180204, + [SMALL_STATE(6394)] = 180242, + [SMALL_STATE(6395)] = 180280, + [SMALL_STATE(6396)] = 180318, + [SMALL_STATE(6397)] = 180354, + [SMALL_STATE(6398)] = 180392, + [SMALL_STATE(6399)] = 180430, + [SMALL_STATE(6400)] = 180468, + [SMALL_STATE(6401)] = 180506, + [SMALL_STATE(6402)] = 180540, + [SMALL_STATE(6403)] = 180578, + [SMALL_STATE(6404)] = 180616, + [SMALL_STATE(6405)] = 180654, + [SMALL_STATE(6406)] = 180690, + [SMALL_STATE(6407)] = 180728, + [SMALL_STATE(6408)] = 180766, + [SMALL_STATE(6409)] = 180802, + [SMALL_STATE(6410)] = 180840, + [SMALL_STATE(6411)] = 180878, + [SMALL_STATE(6412)] = 180916, + [SMALL_STATE(6413)] = 180952, + [SMALL_STATE(6414)] = 180990, + [SMALL_STATE(6415)] = 181028, + [SMALL_STATE(6416)] = 181066, + [SMALL_STATE(6417)] = 181104, + [SMALL_STATE(6418)] = 181142, + [SMALL_STATE(6419)] = 181180, + [SMALL_STATE(6420)] = 181216, + [SMALL_STATE(6421)] = 181254, + [SMALL_STATE(6422)] = 181292, + [SMALL_STATE(6423)] = 181330, + [SMALL_STATE(6424)] = 181368, + [SMALL_STATE(6425)] = 181406, + [SMALL_STATE(6426)] = 181444, + [SMALL_STATE(6427)] = 181480, + [SMALL_STATE(6428)] = 181518, + [SMALL_STATE(6429)] = 181556, + [SMALL_STATE(6430)] = 181594, + [SMALL_STATE(6431)] = 181632, + [SMALL_STATE(6432)] = 181670, + [SMALL_STATE(6433)] = 181708, + [SMALL_STATE(6434)] = 181746, + [SMALL_STATE(6435)] = 181784, + [SMALL_STATE(6436)] = 181822, + [SMALL_STATE(6437)] = 181860, + [SMALL_STATE(6438)] = 181896, + [SMALL_STATE(6439)] = 181934, + [SMALL_STATE(6440)] = 181972, + [SMALL_STATE(6441)] = 182007, + [SMALL_STATE(6442)] = 182042, + [SMALL_STATE(6443)] = 182077, + [SMALL_STATE(6444)] = 182112, + [SMALL_STATE(6445)] = 182147, + [SMALL_STATE(6446)] = 182182, + [SMALL_STATE(6447)] = 182217, + [SMALL_STATE(6448)] = 182252, + [SMALL_STATE(6449)] = 182287, + [SMALL_STATE(6450)] = 182322, + [SMALL_STATE(6451)] = 182357, + [SMALL_STATE(6452)] = 182392, + [SMALL_STATE(6453)] = 182427, + [SMALL_STATE(6454)] = 182462, + [SMALL_STATE(6455)] = 182497, + [SMALL_STATE(6456)] = 182530, + [SMALL_STATE(6457)] = 182565, + [SMALL_STATE(6458)] = 182600, + [SMALL_STATE(6459)] = 182635, + [SMALL_STATE(6460)] = 182670, + [SMALL_STATE(6461)] = 182705, + [SMALL_STATE(6462)] = 182740, + [SMALL_STATE(6463)] = 182773, + [SMALL_STATE(6464)] = 182808, + [SMALL_STATE(6465)] = 182843, + [SMALL_STATE(6466)] = 182878, + [SMALL_STATE(6467)] = 182913, + [SMALL_STATE(6468)] = 182948, + [SMALL_STATE(6469)] = 182983, + [SMALL_STATE(6470)] = 183018, + [SMALL_STATE(6471)] = 183055, + [SMALL_STATE(6472)] = 183090, + [SMALL_STATE(6473)] = 183125, + [SMALL_STATE(6474)] = 183160, + [SMALL_STATE(6475)] = 183195, + [SMALL_STATE(6476)] = 183230, + [SMALL_STATE(6477)] = 183265, + [SMALL_STATE(6478)] = 183300, + [SMALL_STATE(6479)] = 183335, + [SMALL_STATE(6480)] = 183370, + [SMALL_STATE(6481)] = 183405, + [SMALL_STATE(6482)] = 183440, + [SMALL_STATE(6483)] = 183475, + [SMALL_STATE(6484)] = 183510, + [SMALL_STATE(6485)] = 183545, + [SMALL_STATE(6486)] = 183580, + [SMALL_STATE(6487)] = 183615, + [SMALL_STATE(6488)] = 183650, + [SMALL_STATE(6489)] = 183685, + [SMALL_STATE(6490)] = 183720, + [SMALL_STATE(6491)] = 183755, + [SMALL_STATE(6492)] = 183790, + [SMALL_STATE(6493)] = 183825, + [SMALL_STATE(6494)] = 183860, + [SMALL_STATE(6495)] = 183895, + [SMALL_STATE(6496)] = 183930, + [SMALL_STATE(6497)] = 183965, + [SMALL_STATE(6498)] = 184000, + [SMALL_STATE(6499)] = 184035, + [SMALL_STATE(6500)] = 184070, + [SMALL_STATE(6501)] = 184105, + [SMALL_STATE(6502)] = 184140, + [SMALL_STATE(6503)] = 184175, + [SMALL_STATE(6504)] = 184210, + [SMALL_STATE(6505)] = 184245, + [SMALL_STATE(6506)] = 184280, + [SMALL_STATE(6507)] = 184315, + [SMALL_STATE(6508)] = 184350, + [SMALL_STATE(6509)] = 184385, + [SMALL_STATE(6510)] = 184420, + [SMALL_STATE(6511)] = 184457, + [SMALL_STATE(6512)] = 184492, + [SMALL_STATE(6513)] = 184525, + [SMALL_STATE(6514)] = 184560, + [SMALL_STATE(6515)] = 184593, + [SMALL_STATE(6516)] = 184626, + [SMALL_STATE(6517)] = 184659, + [SMALL_STATE(6518)] = 184694, + [SMALL_STATE(6519)] = 184729, + [SMALL_STATE(6520)] = 184764, + [SMALL_STATE(6521)] = 184799, + [SMALL_STATE(6522)] = 184834, + [SMALL_STATE(6523)] = 184869, + [SMALL_STATE(6524)] = 184906, + [SMALL_STATE(6525)] = 184941, + [SMALL_STATE(6526)] = 184976, + [SMALL_STATE(6527)] = 185011, + [SMALL_STATE(6528)] = 185046, + [SMALL_STATE(6529)] = 185081, + [SMALL_STATE(6530)] = 185116, + [SMALL_STATE(6531)] = 185151, + [SMALL_STATE(6532)] = 185186, + [SMALL_STATE(6533)] = 185221, + [SMALL_STATE(6534)] = 185256, + [SMALL_STATE(6535)] = 185291, + [SMALL_STATE(6536)] = 185326, + [SMALL_STATE(6537)] = 185361, + [SMALL_STATE(6538)] = 185396, + [SMALL_STATE(6539)] = 185431, + [SMALL_STATE(6540)] = 185466, + [SMALL_STATE(6541)] = 185501, + [SMALL_STATE(6542)] = 185536, + [SMALL_STATE(6543)] = 185571, + [SMALL_STATE(6544)] = 185606, + [SMALL_STATE(6545)] = 185641, + [SMALL_STATE(6546)] = 185676, + [SMALL_STATE(6547)] = 185711, + [SMALL_STATE(6548)] = 185746, + [SMALL_STATE(6549)] = 185781, + [SMALL_STATE(6550)] = 185814, + [SMALL_STATE(6551)] = 185847, + [SMALL_STATE(6552)] = 185880, + [SMALL_STATE(6553)] = 185915, + [SMALL_STATE(6554)] = 185948, + [SMALL_STATE(6555)] = 185983, + [SMALL_STATE(6556)] = 186018, + [SMALL_STATE(6557)] = 186053, + [SMALL_STATE(6558)] = 186088, + [SMALL_STATE(6559)] = 186123, + [SMALL_STATE(6560)] = 186158, + [SMALL_STATE(6561)] = 186193, + [SMALL_STATE(6562)] = 186228, + [SMALL_STATE(6563)] = 186263, + [SMALL_STATE(6564)] = 186298, + [SMALL_STATE(6565)] = 186333, + [SMALL_STATE(6566)] = 186368, + [SMALL_STATE(6567)] = 186403, + [SMALL_STATE(6568)] = 186438, + [SMALL_STATE(6569)] = 186473, + [SMALL_STATE(6570)] = 186508, + [SMALL_STATE(6571)] = 186541, + [SMALL_STATE(6572)] = 186576, + [SMALL_STATE(6573)] = 186611, + [SMALL_STATE(6574)] = 186646, + [SMALL_STATE(6575)] = 186679, + [SMALL_STATE(6576)] = 186714, + [SMALL_STATE(6577)] = 186751, + [SMALL_STATE(6578)] = 186786, + [SMALL_STATE(6579)] = 186821, + [SMALL_STATE(6580)] = 186854, + [SMALL_STATE(6581)] = 186889, + [SMALL_STATE(6582)] = 186924, + [SMALL_STATE(6583)] = 186959, + [SMALL_STATE(6584)] = 186994, + [SMALL_STATE(6585)] = 187029, + [SMALL_STATE(6586)] = 187064, + [SMALL_STATE(6587)] = 187099, + [SMALL_STATE(6588)] = 187134, + [SMALL_STATE(6589)] = 187169, + [SMALL_STATE(6590)] = 187204, + [SMALL_STATE(6591)] = 187239, + [SMALL_STATE(6592)] = 187274, + [SMALL_STATE(6593)] = 187309, + [SMALL_STATE(6594)] = 187344, + [SMALL_STATE(6595)] = 187379, + [SMALL_STATE(6596)] = 187414, + [SMALL_STATE(6597)] = 187449, + [SMALL_STATE(6598)] = 187484, + [SMALL_STATE(6599)] = 187519, + [SMALL_STATE(6600)] = 187554, + [SMALL_STATE(6601)] = 187589, + [SMALL_STATE(6602)] = 187624, + [SMALL_STATE(6603)] = 187659, + [SMALL_STATE(6604)] = 187694, + [SMALL_STATE(6605)] = 187729, + [SMALL_STATE(6606)] = 187764, + [SMALL_STATE(6607)] = 187799, + [SMALL_STATE(6608)] = 187834, + [SMALL_STATE(6609)] = 187869, + [SMALL_STATE(6610)] = 187904, + [SMALL_STATE(6611)] = 187939, + [SMALL_STATE(6612)] = 187974, + [SMALL_STATE(6613)] = 188009, + [SMALL_STATE(6614)] = 188044, + [SMALL_STATE(6615)] = 188079, + [SMALL_STATE(6616)] = 188114, + [SMALL_STATE(6617)] = 188149, + [SMALL_STATE(6618)] = 188184, + [SMALL_STATE(6619)] = 188219, + [SMALL_STATE(6620)] = 188254, + [SMALL_STATE(6621)] = 188289, + [SMALL_STATE(6622)] = 188324, + [SMALL_STATE(6623)] = 188359, + [SMALL_STATE(6624)] = 188394, + [SMALL_STATE(6625)] = 188427, + [SMALL_STATE(6626)] = 188462, + [SMALL_STATE(6627)] = 188497, + [SMALL_STATE(6628)] = 188532, + [SMALL_STATE(6629)] = 188567, + [SMALL_STATE(6630)] = 188600, + [SMALL_STATE(6631)] = 188635, + [SMALL_STATE(6632)] = 188670, + [SMALL_STATE(6633)] = 188705, + [SMALL_STATE(6634)] = 188740, + [SMALL_STATE(6635)] = 188775, + [SMALL_STATE(6636)] = 188810, + [SMALL_STATE(6637)] = 188845, + [SMALL_STATE(6638)] = 188880, + [SMALL_STATE(6639)] = 188915, + [SMALL_STATE(6640)] = 188950, + [SMALL_STATE(6641)] = 188985, + [SMALL_STATE(6642)] = 189020, + [SMALL_STATE(6643)] = 189055, + [SMALL_STATE(6644)] = 189090, + [SMALL_STATE(6645)] = 189125, + [SMALL_STATE(6646)] = 189160, + [SMALL_STATE(6647)] = 189195, + [SMALL_STATE(6648)] = 189230, + [SMALL_STATE(6649)] = 189265, + [SMALL_STATE(6650)] = 189300, + [SMALL_STATE(6651)] = 189335, + [SMALL_STATE(6652)] = 189370, + [SMALL_STATE(6653)] = 189405, + [SMALL_STATE(6654)] = 189440, + [SMALL_STATE(6655)] = 189473, + [SMALL_STATE(6656)] = 189508, + [SMALL_STATE(6657)] = 189541, + [SMALL_STATE(6658)] = 189576, + [SMALL_STATE(6659)] = 189609, + [SMALL_STATE(6660)] = 189646, + [SMALL_STATE(6661)] = 189681, + [SMALL_STATE(6662)] = 189716, + [SMALL_STATE(6663)] = 189751, + [SMALL_STATE(6664)] = 189786, + [SMALL_STATE(6665)] = 189821, + [SMALL_STATE(6666)] = 189856, + [SMALL_STATE(6667)] = 189891, + [SMALL_STATE(6668)] = 189926, + [SMALL_STATE(6669)] = 189963, + [SMALL_STATE(6670)] = 189996, + [SMALL_STATE(6671)] = 190031, + [SMALL_STATE(6672)] = 190064, + [SMALL_STATE(6673)] = 190099, + [SMALL_STATE(6674)] = 190134, + [SMALL_STATE(6675)] = 190169, + [SMALL_STATE(6676)] = 190204, + [SMALL_STATE(6677)] = 190237, + [SMALL_STATE(6678)] = 190272, + [SMALL_STATE(6679)] = 190307, + [SMALL_STATE(6680)] = 190340, + [SMALL_STATE(6681)] = 190373, + [SMALL_STATE(6682)] = 190406, + [SMALL_STATE(6683)] = 190441, + [SMALL_STATE(6684)] = 190476, + [SMALL_STATE(6685)] = 190511, + [SMALL_STATE(6686)] = 190546, + [SMALL_STATE(6687)] = 190581, + [SMALL_STATE(6688)] = 190616, + [SMALL_STATE(6689)] = 190651, + [SMALL_STATE(6690)] = 190686, + [SMALL_STATE(6691)] = 190721, + [SMALL_STATE(6692)] = 190756, + [SMALL_STATE(6693)] = 190791, + [SMALL_STATE(6694)] = 190826, + [SMALL_STATE(6695)] = 190861, + [SMALL_STATE(6696)] = 190896, + [SMALL_STATE(6697)] = 190931, + [SMALL_STATE(6698)] = 190966, + [SMALL_STATE(6699)] = 191001, + [SMALL_STATE(6700)] = 191038, + [SMALL_STATE(6701)] = 191073, + [SMALL_STATE(6702)] = 191108, + [SMALL_STATE(6703)] = 191143, + [SMALL_STATE(6704)] = 191178, + [SMALL_STATE(6705)] = 191211, + [SMALL_STATE(6706)] = 191244, + [SMALL_STATE(6707)] = 191279, + [SMALL_STATE(6708)] = 191314, + [SMALL_STATE(6709)] = 191349, + [SMALL_STATE(6710)] = 191384, + [SMALL_STATE(6711)] = 191419, + [SMALL_STATE(6712)] = 191454, + [SMALL_STATE(6713)] = 191489, + [SMALL_STATE(6714)] = 191524, + [SMALL_STATE(6715)] = 191559, + [SMALL_STATE(6716)] = 191594, + [SMALL_STATE(6717)] = 191629, + [SMALL_STATE(6718)] = 191664, + [SMALL_STATE(6719)] = 191699, + [SMALL_STATE(6720)] = 191734, + [SMALL_STATE(6721)] = 191769, + [SMALL_STATE(6722)] = 191804, + [SMALL_STATE(6723)] = 191839, + [SMALL_STATE(6724)] = 191874, + [SMALL_STATE(6725)] = 191909, + [SMALL_STATE(6726)] = 191942, + [SMALL_STATE(6727)] = 191977, + [SMALL_STATE(6728)] = 192012, + [SMALL_STATE(6729)] = 192047, + [SMALL_STATE(6730)] = 192082, + [SMALL_STATE(6731)] = 192117, + [SMALL_STATE(6732)] = 192150, + [SMALL_STATE(6733)] = 192185, + [SMALL_STATE(6734)] = 192218, + [SMALL_STATE(6735)] = 192253, + [SMALL_STATE(6736)] = 192288, + [SMALL_STATE(6737)] = 192323, + [SMALL_STATE(6738)] = 192356, + [SMALL_STATE(6739)] = 192391, + [SMALL_STATE(6740)] = 192426, + [SMALL_STATE(6741)] = 192461, + [SMALL_STATE(6742)] = 192496, + [SMALL_STATE(6743)] = 192531, + [SMALL_STATE(6744)] = 192566, + [SMALL_STATE(6745)] = 192601, + [SMALL_STATE(6746)] = 192636, + [SMALL_STATE(6747)] = 192671, + [SMALL_STATE(6748)] = 192706, + [SMALL_STATE(6749)] = 192741, + [SMALL_STATE(6750)] = 192776, + [SMALL_STATE(6751)] = 192811, + [SMALL_STATE(6752)] = 192846, + [SMALL_STATE(6753)] = 192881, + [SMALL_STATE(6754)] = 192914, + [SMALL_STATE(6755)] = 192947, + [SMALL_STATE(6756)] = 192982, + [SMALL_STATE(6757)] = 193017, + [SMALL_STATE(6758)] = 193052, + [SMALL_STATE(6759)] = 193087, + [SMALL_STATE(6760)] = 193122, + [SMALL_STATE(6761)] = 193157, + [SMALL_STATE(6762)] = 193192, + [SMALL_STATE(6763)] = 193225, + [SMALL_STATE(6764)] = 193258, + [SMALL_STATE(6765)] = 193291, + [SMALL_STATE(6766)] = 193326, + [SMALL_STATE(6767)] = 193361, + [SMALL_STATE(6768)] = 193394, + [SMALL_STATE(6769)] = 193429, + [SMALL_STATE(6770)] = 193464, + [SMALL_STATE(6771)] = 193499, + [SMALL_STATE(6772)] = 193534, + [SMALL_STATE(6773)] = 193569, + [SMALL_STATE(6774)] = 193604, + [SMALL_STATE(6775)] = 193637, + [SMALL_STATE(6776)] = 193672, + [SMALL_STATE(6777)] = 193705, + [SMALL_STATE(6778)] = 193740, + [SMALL_STATE(6779)] = 193773, + [SMALL_STATE(6780)] = 193806, + [SMALL_STATE(6781)] = 193839, + [SMALL_STATE(6782)] = 193872, + [SMALL_STATE(6783)] = 193907, + [SMALL_STATE(6784)] = 193940, + [SMALL_STATE(6785)] = 193973, + [SMALL_STATE(6786)] = 194008, + [SMALL_STATE(6787)] = 194043, + [SMALL_STATE(6788)] = 194076, + [SMALL_STATE(6789)] = 194111, + [SMALL_STATE(6790)] = 194146, + [SMALL_STATE(6791)] = 194179, + [SMALL_STATE(6792)] = 194214, + [SMALL_STATE(6793)] = 194249, + [SMALL_STATE(6794)] = 194284, + [SMALL_STATE(6795)] = 194317, + [SMALL_STATE(6796)] = 194352, + [SMALL_STATE(6797)] = 194385, + [SMALL_STATE(6798)] = 194420, + [SMALL_STATE(6799)] = 194455, + [SMALL_STATE(6800)] = 194488, + [SMALL_STATE(6801)] = 194523, + [SMALL_STATE(6802)] = 194556, + [SMALL_STATE(6803)] = 194589, + [SMALL_STATE(6804)] = 194624, + [SMALL_STATE(6805)] = 194657, + [SMALL_STATE(6806)] = 194692, + [SMALL_STATE(6807)] = 194727, + [SMALL_STATE(6808)] = 194760, + [SMALL_STATE(6809)] = 194795, + [SMALL_STATE(6810)] = 194828, + [SMALL_STATE(6811)] = 194861, + [SMALL_STATE(6812)] = 194894, + [SMALL_STATE(6813)] = 194927, + [SMALL_STATE(6814)] = 194960, + [SMALL_STATE(6815)] = 194995, + [SMALL_STATE(6816)] = 195028, + [SMALL_STATE(6817)] = 195063, + [SMALL_STATE(6818)] = 195096, + [SMALL_STATE(6819)] = 195129, + [SMALL_STATE(6820)] = 195164, + [SMALL_STATE(6821)] = 195199, + [SMALL_STATE(6822)] = 195234, + [SMALL_STATE(6823)] = 195269, + [SMALL_STATE(6824)] = 195302, + [SMALL_STATE(6825)] = 195337, + [SMALL_STATE(6826)] = 195370, + [SMALL_STATE(6827)] = 195403, + [SMALL_STATE(6828)] = 195436, + [SMALL_STATE(6829)] = 195471, + [SMALL_STATE(6830)] = 195506, + [SMALL_STATE(6831)] = 195539, + [SMALL_STATE(6832)] = 195574, + [SMALL_STATE(6833)] = 195609, + [SMALL_STATE(6834)] = 195644, + [SMALL_STATE(6835)] = 195681, + [SMALL_STATE(6836)] = 195714, + [SMALL_STATE(6837)] = 195749, + [SMALL_STATE(6838)] = 195784, + [SMALL_STATE(6839)] = 195819, + [SMALL_STATE(6840)] = 195854, + [SMALL_STATE(6841)] = 195887, + [SMALL_STATE(6842)] = 195920, + [SMALL_STATE(6843)] = 195953, + [SMALL_STATE(6844)] = 195988, + [SMALL_STATE(6845)] = 196023, + [SMALL_STATE(6846)] = 196058, + [SMALL_STATE(6847)] = 196093, + [SMALL_STATE(6848)] = 196128, + [SMALL_STATE(6849)] = 196163, + [SMALL_STATE(6850)] = 196198, + [SMALL_STATE(6851)] = 196233, + [SMALL_STATE(6852)] = 196268, + [SMALL_STATE(6853)] = 196303, + [SMALL_STATE(6854)] = 196338, + [SMALL_STATE(6855)] = 196373, + [SMALL_STATE(6856)] = 196408, + [SMALL_STATE(6857)] = 196443, + [SMALL_STATE(6858)] = 196480, + [SMALL_STATE(6859)] = 196515, + [SMALL_STATE(6860)] = 196550, + [SMALL_STATE(6861)] = 196585, + [SMALL_STATE(6862)] = 196620, + [SMALL_STATE(6863)] = 196655, + [SMALL_STATE(6864)] = 196690, + [SMALL_STATE(6865)] = 196723, + [SMALL_STATE(6866)] = 196758, + [SMALL_STATE(6867)] = 196791, + [SMALL_STATE(6868)] = 196826, + [SMALL_STATE(6869)] = 196861, + [SMALL_STATE(6870)] = 196896, + [SMALL_STATE(6871)] = 196931, + [SMALL_STATE(6872)] = 196966, + [SMALL_STATE(6873)] = 197001, + [SMALL_STATE(6874)] = 197036, + [SMALL_STATE(6875)] = 197071, + [SMALL_STATE(6876)] = 197106, + [SMALL_STATE(6877)] = 197141, + [SMALL_STATE(6878)] = 197176, + [SMALL_STATE(6879)] = 197211, + [SMALL_STATE(6880)] = 197246, + [SMALL_STATE(6881)] = 197281, + [SMALL_STATE(6882)] = 197316, + [SMALL_STATE(6883)] = 197351, + [SMALL_STATE(6884)] = 197386, + [SMALL_STATE(6885)] = 197421, + [SMALL_STATE(6886)] = 197456, + [SMALL_STATE(6887)] = 197491, + [SMALL_STATE(6888)] = 197524, + [SMALL_STATE(6889)] = 197559, + [SMALL_STATE(6890)] = 197592, + [SMALL_STATE(6891)] = 197627, + [SMALL_STATE(6892)] = 197660, + [SMALL_STATE(6893)] = 197695, + [SMALL_STATE(6894)] = 197730, + [SMALL_STATE(6895)] = 197765, + [SMALL_STATE(6896)] = 197800, + [SMALL_STATE(6897)] = 197835, + [SMALL_STATE(6898)] = 197868, + [SMALL_STATE(6899)] = 197903, + [SMALL_STATE(6900)] = 197938, + [SMALL_STATE(6901)] = 197973, + [SMALL_STATE(6902)] = 198008, + [SMALL_STATE(6903)] = 198043, + [SMALL_STATE(6904)] = 198076, + [SMALL_STATE(6905)] = 198109, + [SMALL_STATE(6906)] = 198144, + [SMALL_STATE(6907)] = 198179, + [SMALL_STATE(6908)] = 198212, + [SMALL_STATE(6909)] = 198247, + [SMALL_STATE(6910)] = 198282, + [SMALL_STATE(6911)] = 198317, + [SMALL_STATE(6912)] = 198352, + [SMALL_STATE(6913)] = 198387, + [SMALL_STATE(6914)] = 198422, + [SMALL_STATE(6915)] = 198455, + [SMALL_STATE(6916)] = 198490, + [SMALL_STATE(6917)] = 198525, + [SMALL_STATE(6918)] = 198560, + [SMALL_STATE(6919)] = 198595, + [SMALL_STATE(6920)] = 198630, + [SMALL_STATE(6921)] = 198665, + [SMALL_STATE(6922)] = 198700, + [SMALL_STATE(6923)] = 198735, + [SMALL_STATE(6924)] = 198772, + [SMALL_STATE(6925)] = 198805, + [SMALL_STATE(6926)] = 198840, + [SMALL_STATE(6927)] = 198875, + [SMALL_STATE(6928)] = 198910, + [SMALL_STATE(6929)] = 198945, + [SMALL_STATE(6930)] = 198978, + [SMALL_STATE(6931)] = 199013, + [SMALL_STATE(6932)] = 199048, + [SMALL_STATE(6933)] = 199083, + [SMALL_STATE(6934)] = 199118, + [SMALL_STATE(6935)] = 199153, + [SMALL_STATE(6936)] = 199188, + [SMALL_STATE(6937)] = 199223, + [SMALL_STATE(6938)] = 199258, + [SMALL_STATE(6939)] = 199293, + [SMALL_STATE(6940)] = 199328, + [SMALL_STATE(6941)] = 199363, + [SMALL_STATE(6942)] = 199398, + [SMALL_STATE(6943)] = 199433, + [SMALL_STATE(6944)] = 199466, + [SMALL_STATE(6945)] = 199499, + [SMALL_STATE(6946)] = 199532, + [SMALL_STATE(6947)] = 199567, + [SMALL_STATE(6948)] = 199602, + [SMALL_STATE(6949)] = 199637, + [SMALL_STATE(6950)] = 199670, + [SMALL_STATE(6951)] = 199705, + [SMALL_STATE(6952)] = 199738, + [SMALL_STATE(6953)] = 199773, + [SMALL_STATE(6954)] = 199808, + [SMALL_STATE(6955)] = 199843, + [SMALL_STATE(6956)] = 199876, + [SMALL_STATE(6957)] = 199911, + [SMALL_STATE(6958)] = 199946, + [SMALL_STATE(6959)] = 199981, + [SMALL_STATE(6960)] = 200016, + [SMALL_STATE(6961)] = 200051, + [SMALL_STATE(6962)] = 200084, + [SMALL_STATE(6963)] = 200119, + [SMALL_STATE(6964)] = 200154, + [SMALL_STATE(6965)] = 200189, + [SMALL_STATE(6966)] = 200224, + [SMALL_STATE(6967)] = 200259, + [SMALL_STATE(6968)] = 200294, + [SMALL_STATE(6969)] = 200329, + [SMALL_STATE(6970)] = 200364, + [SMALL_STATE(6971)] = 200399, + [SMALL_STATE(6972)] = 200432, + [SMALL_STATE(6973)] = 200467, + [SMALL_STATE(6974)] = 200502, + [SMALL_STATE(6975)] = 200537, + [SMALL_STATE(6976)] = 200572, + [SMALL_STATE(6977)] = 200607, + [SMALL_STATE(6978)] = 200642, + [SMALL_STATE(6979)] = 200677, + [SMALL_STATE(6980)] = 200712, + [SMALL_STATE(6981)] = 200747, + [SMALL_STATE(6982)] = 200782, + [SMALL_STATE(6983)] = 200817, + [SMALL_STATE(6984)] = 200852, + [SMALL_STATE(6985)] = 200887, + [SMALL_STATE(6986)] = 200922, + [SMALL_STATE(6987)] = 200957, + [SMALL_STATE(6988)] = 200992, + [SMALL_STATE(6989)] = 201027, + [SMALL_STATE(6990)] = 201062, + [SMALL_STATE(6991)] = 201097, + [SMALL_STATE(6992)] = 201132, + [SMALL_STATE(6993)] = 201167, + [SMALL_STATE(6994)] = 201202, + [SMALL_STATE(6995)] = 201237, + [SMALL_STATE(6996)] = 201272, + [SMALL_STATE(6997)] = 201307, + [SMALL_STATE(6998)] = 201342, + [SMALL_STATE(6999)] = 201377, + [SMALL_STATE(7000)] = 201412, + [SMALL_STATE(7001)] = 201447, + [SMALL_STATE(7002)] = 201482, + [SMALL_STATE(7003)] = 201517, + [SMALL_STATE(7004)] = 201552, + [SMALL_STATE(7005)] = 201587, + [SMALL_STATE(7006)] = 201622, + [SMALL_STATE(7007)] = 201657, + [SMALL_STATE(7008)] = 201692, + [SMALL_STATE(7009)] = 201727, + [SMALL_STATE(7010)] = 201762, + [SMALL_STATE(7011)] = 201797, + [SMALL_STATE(7012)] = 201832, + [SMALL_STATE(7013)] = 201867, + [SMALL_STATE(7014)] = 201902, + [SMALL_STATE(7015)] = 201937, + [SMALL_STATE(7016)] = 201972, + [SMALL_STATE(7017)] = 202007, + [SMALL_STATE(7018)] = 202042, + [SMALL_STATE(7019)] = 202077, + [SMALL_STATE(7020)] = 202112, + [SMALL_STATE(7021)] = 202147, + [SMALL_STATE(7022)] = 202182, + [SMALL_STATE(7023)] = 202217, + [SMALL_STATE(7024)] = 202252, + [SMALL_STATE(7025)] = 202287, + [SMALL_STATE(7026)] = 202322, + [SMALL_STATE(7027)] = 202357, + [SMALL_STATE(7028)] = 202392, + [SMALL_STATE(7029)] = 202427, + [SMALL_STATE(7030)] = 202462, + [SMALL_STATE(7031)] = 202497, + [SMALL_STATE(7032)] = 202532, + [SMALL_STATE(7033)] = 202564, + [SMALL_STATE(7034)] = 202596, + [SMALL_STATE(7035)] = 202628, + [SMALL_STATE(7036)] = 202660, + [SMALL_STATE(7037)] = 202692, + [SMALL_STATE(7038)] = 202724, + [SMALL_STATE(7039)] = 202756, + [SMALL_STATE(7040)] = 202788, + [SMALL_STATE(7041)] = 202820, + [SMALL_STATE(7042)] = 202852, + [SMALL_STATE(7043)] = 202884, + [SMALL_STATE(7044)] = 202916, + [SMALL_STATE(7045)] = 202948, + [SMALL_STATE(7046)] = 202980, + [SMALL_STATE(7047)] = 203012, + [SMALL_STATE(7048)] = 203044, + [SMALL_STATE(7049)] = 203076, + [SMALL_STATE(7050)] = 203108, + [SMALL_STATE(7051)] = 203140, + [SMALL_STATE(7052)] = 203172, + [SMALL_STATE(7053)] = 203204, + [SMALL_STATE(7054)] = 203236, + [SMALL_STATE(7055)] = 203268, + [SMALL_STATE(7056)] = 203300, + [SMALL_STATE(7057)] = 203332, + [SMALL_STATE(7058)] = 203364, + [SMALL_STATE(7059)] = 203396, + [SMALL_STATE(7060)] = 203428, + [SMALL_STATE(7061)] = 203460, + [SMALL_STATE(7062)] = 203492, + [SMALL_STATE(7063)] = 203524, + [SMALL_STATE(7064)] = 203556, + [SMALL_STATE(7065)] = 203588, + [SMALL_STATE(7066)] = 203620, + [SMALL_STATE(7067)] = 203652, + [SMALL_STATE(7068)] = 203684, + [SMALL_STATE(7069)] = 203716, + [SMALL_STATE(7070)] = 203748, + [SMALL_STATE(7071)] = 203780, + [SMALL_STATE(7072)] = 203812, + [SMALL_STATE(7073)] = 203844, + [SMALL_STATE(7074)] = 203876, + [SMALL_STATE(7075)] = 203908, + [SMALL_STATE(7076)] = 203940, + [SMALL_STATE(7077)] = 203972, + [SMALL_STATE(7078)] = 204004, + [SMALL_STATE(7079)] = 204036, + [SMALL_STATE(7080)] = 204068, + [SMALL_STATE(7081)] = 204100, + [SMALL_STATE(7082)] = 204132, + [SMALL_STATE(7083)] = 204164, + [SMALL_STATE(7084)] = 204196, + [SMALL_STATE(7085)] = 204228, + [SMALL_STATE(7086)] = 204260, + [SMALL_STATE(7087)] = 204292, + [SMALL_STATE(7088)] = 204324, + [SMALL_STATE(7089)] = 204356, + [SMALL_STATE(7090)] = 204388, + [SMALL_STATE(7091)] = 204420, + [SMALL_STATE(7092)] = 204452, + [SMALL_STATE(7093)] = 204484, + [SMALL_STATE(7094)] = 204516, + [SMALL_STATE(7095)] = 204548, + [SMALL_STATE(7096)] = 204580, + [SMALL_STATE(7097)] = 204612, + [SMALL_STATE(7098)] = 204644, + [SMALL_STATE(7099)] = 204676, + [SMALL_STATE(7100)] = 204708, + [SMALL_STATE(7101)] = 204740, + [SMALL_STATE(7102)] = 204772, + [SMALL_STATE(7103)] = 204804, + [SMALL_STATE(7104)] = 204836, + [SMALL_STATE(7105)] = 204868, + [SMALL_STATE(7106)] = 204900, + [SMALL_STATE(7107)] = 204932, + [SMALL_STATE(7108)] = 204964, + [SMALL_STATE(7109)] = 204996, + [SMALL_STATE(7110)] = 205028, + [SMALL_STATE(7111)] = 205060, + [SMALL_STATE(7112)] = 205092, + [SMALL_STATE(7113)] = 205124, + [SMALL_STATE(7114)] = 205156, + [SMALL_STATE(7115)] = 205188, + [SMALL_STATE(7116)] = 205220, + [SMALL_STATE(7117)] = 205252, + [SMALL_STATE(7118)] = 205284, + [SMALL_STATE(7119)] = 205316, + [SMALL_STATE(7120)] = 205348, + [SMALL_STATE(7121)] = 205380, + [SMALL_STATE(7122)] = 205412, + [SMALL_STATE(7123)] = 205444, + [SMALL_STATE(7124)] = 205476, + [SMALL_STATE(7125)] = 205508, + [SMALL_STATE(7126)] = 205540, + [SMALL_STATE(7127)] = 205572, + [SMALL_STATE(7128)] = 205604, + [SMALL_STATE(7129)] = 205636, + [SMALL_STATE(7130)] = 205668, + [SMALL_STATE(7131)] = 205700, + [SMALL_STATE(7132)] = 205732, + [SMALL_STATE(7133)] = 205764, + [SMALL_STATE(7134)] = 205796, + [SMALL_STATE(7135)] = 205828, + [SMALL_STATE(7136)] = 205860, + [SMALL_STATE(7137)] = 205892, + [SMALL_STATE(7138)] = 205924, + [SMALL_STATE(7139)] = 205956, + [SMALL_STATE(7140)] = 205988, + [SMALL_STATE(7141)] = 206020, + [SMALL_STATE(7142)] = 206052, + [SMALL_STATE(7143)] = 206084, + [SMALL_STATE(7144)] = 206116, + [SMALL_STATE(7145)] = 206148, + [SMALL_STATE(7146)] = 206180, + [SMALL_STATE(7147)] = 206212, + [SMALL_STATE(7148)] = 206244, + [SMALL_STATE(7149)] = 206276, + [SMALL_STATE(7150)] = 206308, + [SMALL_STATE(7151)] = 206340, + [SMALL_STATE(7152)] = 206372, + [SMALL_STATE(7153)] = 206404, + [SMALL_STATE(7154)] = 206436, + [SMALL_STATE(7155)] = 206468, + [SMALL_STATE(7156)] = 206500, + [SMALL_STATE(7157)] = 206532, + [SMALL_STATE(7158)] = 206564, + [SMALL_STATE(7159)] = 206596, + [SMALL_STATE(7160)] = 206628, + [SMALL_STATE(7161)] = 206660, + [SMALL_STATE(7162)] = 206692, + [SMALL_STATE(7163)] = 206724, + [SMALL_STATE(7164)] = 206756, + [SMALL_STATE(7165)] = 206788, + [SMALL_STATE(7166)] = 206820, + [SMALL_STATE(7167)] = 206852, + [SMALL_STATE(7168)] = 206884, + [SMALL_STATE(7169)] = 206916, + [SMALL_STATE(7170)] = 206948, + [SMALL_STATE(7171)] = 206980, + [SMALL_STATE(7172)] = 207012, + [SMALL_STATE(7173)] = 207044, + [SMALL_STATE(7174)] = 207076, + [SMALL_STATE(7175)] = 207108, + [SMALL_STATE(7176)] = 207140, + [SMALL_STATE(7177)] = 207172, + [SMALL_STATE(7178)] = 207204, + [SMALL_STATE(7179)] = 207236, + [SMALL_STATE(7180)] = 207268, + [SMALL_STATE(7181)] = 207298, + [SMALL_STATE(7182)] = 207330, + [SMALL_STATE(7183)] = 207362, + [SMALL_STATE(7184)] = 207394, + [SMALL_STATE(7185)] = 207426, + [SMALL_STATE(7186)] = 207458, + [SMALL_STATE(7187)] = 207490, + [SMALL_STATE(7188)] = 207522, + [SMALL_STATE(7189)] = 207554, + [SMALL_STATE(7190)] = 207586, + [SMALL_STATE(7191)] = 207618, + [SMALL_STATE(7192)] = 207650, + [SMALL_STATE(7193)] = 207682, + [SMALL_STATE(7194)] = 207714, + [SMALL_STATE(7195)] = 207746, + [SMALL_STATE(7196)] = 207778, + [SMALL_STATE(7197)] = 207810, + [SMALL_STATE(7198)] = 207842, + [SMALL_STATE(7199)] = 207874, + [SMALL_STATE(7200)] = 207906, + [SMALL_STATE(7201)] = 207938, + [SMALL_STATE(7202)] = 207970, + [SMALL_STATE(7203)] = 208002, + [SMALL_STATE(7204)] = 208034, + [SMALL_STATE(7205)] = 208066, + [SMALL_STATE(7206)] = 208098, + [SMALL_STATE(7207)] = 208130, + [SMALL_STATE(7208)] = 208162, + [SMALL_STATE(7209)] = 208194, + [SMALL_STATE(7210)] = 208226, + [SMALL_STATE(7211)] = 208258, + [SMALL_STATE(7212)] = 208290, + [SMALL_STATE(7213)] = 208322, + [SMALL_STATE(7214)] = 208354, + [SMALL_STATE(7215)] = 208386, + [SMALL_STATE(7216)] = 208418, + [SMALL_STATE(7217)] = 208450, + [SMALL_STATE(7218)] = 208482, + [SMALL_STATE(7219)] = 208514, + [SMALL_STATE(7220)] = 208546, + [SMALL_STATE(7221)] = 208578, + [SMALL_STATE(7222)] = 208610, + [SMALL_STATE(7223)] = 208642, + [SMALL_STATE(7224)] = 208674, + [SMALL_STATE(7225)] = 208706, + [SMALL_STATE(7226)] = 208738, + [SMALL_STATE(7227)] = 208770, + [SMALL_STATE(7228)] = 208802, + [SMALL_STATE(7229)] = 208834, + [SMALL_STATE(7230)] = 208866, + [SMALL_STATE(7231)] = 208898, + [SMALL_STATE(7232)] = 208930, + [SMALL_STATE(7233)] = 208962, + [SMALL_STATE(7234)] = 208994, + [SMALL_STATE(7235)] = 209026, + [SMALL_STATE(7236)] = 209058, + [SMALL_STATE(7237)] = 209090, + [SMALL_STATE(7238)] = 209122, + [SMALL_STATE(7239)] = 209154, + [SMALL_STATE(7240)] = 209186, + [SMALL_STATE(7241)] = 209218, + [SMALL_STATE(7242)] = 209250, + [SMALL_STATE(7243)] = 209282, + [SMALL_STATE(7244)] = 209314, + [SMALL_STATE(7245)] = 209346, + [SMALL_STATE(7246)] = 209378, + [SMALL_STATE(7247)] = 209410, + [SMALL_STATE(7248)] = 209442, + [SMALL_STATE(7249)] = 209474, + [SMALL_STATE(7250)] = 209506, + [SMALL_STATE(7251)] = 209536, + [SMALL_STATE(7252)] = 209568, + [SMALL_STATE(7253)] = 209600, + [SMALL_STATE(7254)] = 209632, + [SMALL_STATE(7255)] = 209664, + [SMALL_STATE(7256)] = 209696, + [SMALL_STATE(7257)] = 209728, + [SMALL_STATE(7258)] = 209760, + [SMALL_STATE(7259)] = 209792, + [SMALL_STATE(7260)] = 209824, + [SMALL_STATE(7261)] = 209856, + [SMALL_STATE(7262)] = 209888, + [SMALL_STATE(7263)] = 209920, + [SMALL_STATE(7264)] = 209952, + [SMALL_STATE(7265)] = 209984, + [SMALL_STATE(7266)] = 210016, + [SMALL_STATE(7267)] = 210048, + [SMALL_STATE(7268)] = 210080, + [SMALL_STATE(7269)] = 210110, + [SMALL_STATE(7270)] = 210142, + [SMALL_STATE(7271)] = 210174, + [SMALL_STATE(7272)] = 210206, + [SMALL_STATE(7273)] = 210238, + [SMALL_STATE(7274)] = 210270, + [SMALL_STATE(7275)] = 210302, + [SMALL_STATE(7276)] = 210334, + [SMALL_STATE(7277)] = 210366, + [SMALL_STATE(7278)] = 210398, + [SMALL_STATE(7279)] = 210430, + [SMALL_STATE(7280)] = 210462, + [SMALL_STATE(7281)] = 210494, + [SMALL_STATE(7282)] = 210526, + [SMALL_STATE(7283)] = 210558, + [SMALL_STATE(7284)] = 210590, + [SMALL_STATE(7285)] = 210622, + [SMALL_STATE(7286)] = 210654, + [SMALL_STATE(7287)] = 210686, + [SMALL_STATE(7288)] = 210718, + [SMALL_STATE(7289)] = 210750, + [SMALL_STATE(7290)] = 210782, + [SMALL_STATE(7291)] = 210814, + [SMALL_STATE(7292)] = 210846, + [SMALL_STATE(7293)] = 210878, + [SMALL_STATE(7294)] = 210910, + [SMALL_STATE(7295)] = 210942, + [SMALL_STATE(7296)] = 210974, + [SMALL_STATE(7297)] = 211006, + [SMALL_STATE(7298)] = 211038, + [SMALL_STATE(7299)] = 211070, + [SMALL_STATE(7300)] = 211102, + [SMALL_STATE(7301)] = 211134, + [SMALL_STATE(7302)] = 211166, + [SMALL_STATE(7303)] = 211198, + [SMALL_STATE(7304)] = 211230, + [SMALL_STATE(7305)] = 211262, + [SMALL_STATE(7306)] = 211294, + [SMALL_STATE(7307)] = 211326, + [SMALL_STATE(7308)] = 211358, + [SMALL_STATE(7309)] = 211390, + [SMALL_STATE(7310)] = 211422, + [SMALL_STATE(7311)] = 211454, + [SMALL_STATE(7312)] = 211486, + [SMALL_STATE(7313)] = 211518, + [SMALL_STATE(7314)] = 211550, + [SMALL_STATE(7315)] = 211582, + [SMALL_STATE(7316)] = 211614, + [SMALL_STATE(7317)] = 211646, + [SMALL_STATE(7318)] = 211678, + [SMALL_STATE(7319)] = 211710, + [SMALL_STATE(7320)] = 211742, + [SMALL_STATE(7321)] = 211774, + [SMALL_STATE(7322)] = 211806, + [SMALL_STATE(7323)] = 211838, + [SMALL_STATE(7324)] = 211870, + [SMALL_STATE(7325)] = 211902, + [SMALL_STATE(7326)] = 211934, + [SMALL_STATE(7327)] = 211966, + [SMALL_STATE(7328)] = 211998, + [SMALL_STATE(7329)] = 212030, + [SMALL_STATE(7330)] = 212062, + [SMALL_STATE(7331)] = 212094, + [SMALL_STATE(7332)] = 212126, + [SMALL_STATE(7333)] = 212158, + [SMALL_STATE(7334)] = 212190, + [SMALL_STATE(7335)] = 212222, + [SMALL_STATE(7336)] = 212254, + [SMALL_STATE(7337)] = 212286, + [SMALL_STATE(7338)] = 212318, + [SMALL_STATE(7339)] = 212350, + [SMALL_STATE(7340)] = 212382, + [SMALL_STATE(7341)] = 212414, + [SMALL_STATE(7342)] = 212446, + [SMALL_STATE(7343)] = 212478, + [SMALL_STATE(7344)] = 212510, + [SMALL_STATE(7345)] = 212542, + [SMALL_STATE(7346)] = 212574, + [SMALL_STATE(7347)] = 212606, + [SMALL_STATE(7348)] = 212638, + [SMALL_STATE(7349)] = 212670, + [SMALL_STATE(7350)] = 212702, + [SMALL_STATE(7351)] = 212734, + [SMALL_STATE(7352)] = 212766, + [SMALL_STATE(7353)] = 212798, + [SMALL_STATE(7354)] = 212830, + [SMALL_STATE(7355)] = 212862, + [SMALL_STATE(7356)] = 212894, + [SMALL_STATE(7357)] = 212926, + [SMALL_STATE(7358)] = 212958, + [SMALL_STATE(7359)] = 212990, + [SMALL_STATE(7360)] = 213022, + [SMALL_STATE(7361)] = 213054, + [SMALL_STATE(7362)] = 213086, + [SMALL_STATE(7363)] = 213118, + [SMALL_STATE(7364)] = 213150, + [SMALL_STATE(7365)] = 213182, + [SMALL_STATE(7366)] = 213214, + [SMALL_STATE(7367)] = 213246, + [SMALL_STATE(7368)] = 213278, + [SMALL_STATE(7369)] = 213310, + [SMALL_STATE(7370)] = 213342, + [SMALL_STATE(7371)] = 213374, + [SMALL_STATE(7372)] = 213406, + [SMALL_STATE(7373)] = 213438, + [SMALL_STATE(7374)] = 213470, + [SMALL_STATE(7375)] = 213502, + [SMALL_STATE(7376)] = 213534, + [SMALL_STATE(7377)] = 213566, + [SMALL_STATE(7378)] = 213598, + [SMALL_STATE(7379)] = 213630, + [SMALL_STATE(7380)] = 213662, + [SMALL_STATE(7381)] = 213694, + [SMALL_STATE(7382)] = 213726, + [SMALL_STATE(7383)] = 213758, + [SMALL_STATE(7384)] = 213790, + [SMALL_STATE(7385)] = 213822, + [SMALL_STATE(7386)] = 213854, + [SMALL_STATE(7387)] = 213886, + [SMALL_STATE(7388)] = 213918, + [SMALL_STATE(7389)] = 213950, + [SMALL_STATE(7390)] = 213982, + [SMALL_STATE(7391)] = 214014, + [SMALL_STATE(7392)] = 214046, + [SMALL_STATE(7393)] = 214078, + [SMALL_STATE(7394)] = 214110, + [SMALL_STATE(7395)] = 214142, + [SMALL_STATE(7396)] = 214174, + [SMALL_STATE(7397)] = 214206, + [SMALL_STATE(7398)] = 214238, + [SMALL_STATE(7399)] = 214270, + [SMALL_STATE(7400)] = 214302, + [SMALL_STATE(7401)] = 214334, + [SMALL_STATE(7402)] = 214366, + [SMALL_STATE(7403)] = 214398, + [SMALL_STATE(7404)] = 214430, + [SMALL_STATE(7405)] = 214462, + [SMALL_STATE(7406)] = 214494, + [SMALL_STATE(7407)] = 214526, + [SMALL_STATE(7408)] = 214558, + [SMALL_STATE(7409)] = 214590, + [SMALL_STATE(7410)] = 214622, + [SMALL_STATE(7411)] = 214654, + [SMALL_STATE(7412)] = 214686, + [SMALL_STATE(7413)] = 214718, + [SMALL_STATE(7414)] = 214750, + [SMALL_STATE(7415)] = 214782, + [SMALL_STATE(7416)] = 214814, + [SMALL_STATE(7417)] = 214846, + [SMALL_STATE(7418)] = 214878, + [SMALL_STATE(7419)] = 214910, + [SMALL_STATE(7420)] = 214942, + [SMALL_STATE(7421)] = 214974, + [SMALL_STATE(7422)] = 215006, + [SMALL_STATE(7423)] = 215038, + [SMALL_STATE(7424)] = 215070, + [SMALL_STATE(7425)] = 215102, + [SMALL_STATE(7426)] = 215134, + [SMALL_STATE(7427)] = 215166, + [SMALL_STATE(7428)] = 215198, + [SMALL_STATE(7429)] = 215230, + [SMALL_STATE(7430)] = 215262, + [SMALL_STATE(7431)] = 215294, + [SMALL_STATE(7432)] = 215326, + [SMALL_STATE(7433)] = 215358, + [SMALL_STATE(7434)] = 215390, + [SMALL_STATE(7435)] = 215422, + [SMALL_STATE(7436)] = 215454, + [SMALL_STATE(7437)] = 215486, + [SMALL_STATE(7438)] = 215518, + [SMALL_STATE(7439)] = 215550, + [SMALL_STATE(7440)] = 215582, + [SMALL_STATE(7441)] = 215614, + [SMALL_STATE(7442)] = 215646, + [SMALL_STATE(7443)] = 215678, + [SMALL_STATE(7444)] = 215710, + [SMALL_STATE(7445)] = 215742, + [SMALL_STATE(7446)] = 215774, + [SMALL_STATE(7447)] = 215806, + [SMALL_STATE(7448)] = 215838, + [SMALL_STATE(7449)] = 215870, + [SMALL_STATE(7450)] = 215902, + [SMALL_STATE(7451)] = 215934, + [SMALL_STATE(7452)] = 215966, + [SMALL_STATE(7453)] = 215998, + [SMALL_STATE(7454)] = 216030, + [SMALL_STATE(7455)] = 216062, + [SMALL_STATE(7456)] = 216094, + [SMALL_STATE(7457)] = 216126, + [SMALL_STATE(7458)] = 216158, + [SMALL_STATE(7459)] = 216190, + [SMALL_STATE(7460)] = 216222, + [SMALL_STATE(7461)] = 216254, + [SMALL_STATE(7462)] = 216286, + [SMALL_STATE(7463)] = 216318, + [SMALL_STATE(7464)] = 216350, + [SMALL_STATE(7465)] = 216382, + [SMALL_STATE(7466)] = 216414, + [SMALL_STATE(7467)] = 216446, + [SMALL_STATE(7468)] = 216478, + [SMALL_STATE(7469)] = 216510, + [SMALL_STATE(7470)] = 216542, + [SMALL_STATE(7471)] = 216574, + [SMALL_STATE(7472)] = 216606, + [SMALL_STATE(7473)] = 216638, + [SMALL_STATE(7474)] = 216670, + [SMALL_STATE(7475)] = 216702, + [SMALL_STATE(7476)] = 216734, + [SMALL_STATE(7477)] = 216766, + [SMALL_STATE(7478)] = 216798, + [SMALL_STATE(7479)] = 216830, + [SMALL_STATE(7480)] = 216862, + [SMALL_STATE(7481)] = 216894, + [SMALL_STATE(7482)] = 216926, + [SMALL_STATE(7483)] = 216958, + [SMALL_STATE(7484)] = 216990, + [SMALL_STATE(7485)] = 217022, + [SMALL_STATE(7486)] = 217054, + [SMALL_STATE(7487)] = 217086, + [SMALL_STATE(7488)] = 217118, + [SMALL_STATE(7489)] = 217150, + [SMALL_STATE(7490)] = 217182, + [SMALL_STATE(7491)] = 217214, + [SMALL_STATE(7492)] = 217246, + [SMALL_STATE(7493)] = 217278, + [SMALL_STATE(7494)] = 217310, + [SMALL_STATE(7495)] = 217342, + [SMALL_STATE(7496)] = 217374, + [SMALL_STATE(7497)] = 217406, + [SMALL_STATE(7498)] = 217438, + [SMALL_STATE(7499)] = 217470, + [SMALL_STATE(7500)] = 217502, + [SMALL_STATE(7501)] = 217534, + [SMALL_STATE(7502)] = 217566, + [SMALL_STATE(7503)] = 217598, + [SMALL_STATE(7504)] = 217630, + [SMALL_STATE(7505)] = 217662, + [SMALL_STATE(7506)] = 217694, + [SMALL_STATE(7507)] = 217726, + [SMALL_STATE(7508)] = 217758, + [SMALL_STATE(7509)] = 217790, + [SMALL_STATE(7510)] = 217822, + [SMALL_STATE(7511)] = 217854, + [SMALL_STATE(7512)] = 217886, + [SMALL_STATE(7513)] = 217918, + [SMALL_STATE(7514)] = 217950, + [SMALL_STATE(7515)] = 217982, + [SMALL_STATE(7516)] = 218014, + [SMALL_STATE(7517)] = 218046, + [SMALL_STATE(7518)] = 218078, + [SMALL_STATE(7519)] = 218110, + [SMALL_STATE(7520)] = 218142, + [SMALL_STATE(7521)] = 218174, + [SMALL_STATE(7522)] = 218206, + [SMALL_STATE(7523)] = 218238, + [SMALL_STATE(7524)] = 218270, + [SMALL_STATE(7525)] = 218302, + [SMALL_STATE(7526)] = 218334, + [SMALL_STATE(7527)] = 218366, + [SMALL_STATE(7528)] = 218398, + [SMALL_STATE(7529)] = 218430, + [SMALL_STATE(7530)] = 218462, + [SMALL_STATE(7531)] = 218494, + [SMALL_STATE(7532)] = 218526, + [SMALL_STATE(7533)] = 218558, + [SMALL_STATE(7534)] = 218590, + [SMALL_STATE(7535)] = 218622, + [SMALL_STATE(7536)] = 218654, + [SMALL_STATE(7537)] = 218686, + [SMALL_STATE(7538)] = 218718, + [SMALL_STATE(7539)] = 218750, + [SMALL_STATE(7540)] = 218782, + [SMALL_STATE(7541)] = 218814, + [SMALL_STATE(7542)] = 218846, + [SMALL_STATE(7543)] = 218878, + [SMALL_STATE(7544)] = 218910, + [SMALL_STATE(7545)] = 218942, + [SMALL_STATE(7546)] = 218974, + [SMALL_STATE(7547)] = 219006, + [SMALL_STATE(7548)] = 219038, + [SMALL_STATE(7549)] = 219070, + [SMALL_STATE(7550)] = 219102, + [SMALL_STATE(7551)] = 219134, + [SMALL_STATE(7552)] = 219166, + [SMALL_STATE(7553)] = 219198, + [SMALL_STATE(7554)] = 219230, + [SMALL_STATE(7555)] = 219262, + [SMALL_STATE(7556)] = 219294, + [SMALL_STATE(7557)] = 219326, + [SMALL_STATE(7558)] = 219358, + [SMALL_STATE(7559)] = 219390, + [SMALL_STATE(7560)] = 219422, + [SMALL_STATE(7561)] = 219454, + [SMALL_STATE(7562)] = 219486, + [SMALL_STATE(7563)] = 219518, + [SMALL_STATE(7564)] = 219550, + [SMALL_STATE(7565)] = 219582, + [SMALL_STATE(7566)] = 219614, + [SMALL_STATE(7567)] = 219646, + [SMALL_STATE(7568)] = 219678, + [SMALL_STATE(7569)] = 219710, + [SMALL_STATE(7570)] = 219742, + [SMALL_STATE(7571)] = 219774, + [SMALL_STATE(7572)] = 219806, + [SMALL_STATE(7573)] = 219838, + [SMALL_STATE(7574)] = 219870, + [SMALL_STATE(7575)] = 219902, + [SMALL_STATE(7576)] = 219934, + [SMALL_STATE(7577)] = 219966, + [SMALL_STATE(7578)] = 219998, + [SMALL_STATE(7579)] = 220030, + [SMALL_STATE(7580)] = 220062, + [SMALL_STATE(7581)] = 220094, + [SMALL_STATE(7582)] = 220126, + [SMALL_STATE(7583)] = 220158, + [SMALL_STATE(7584)] = 220190, + [SMALL_STATE(7585)] = 220222, + [SMALL_STATE(7586)] = 220254, + [SMALL_STATE(7587)] = 220286, + [SMALL_STATE(7588)] = 220318, + [SMALL_STATE(7589)] = 220350, + [SMALL_STATE(7590)] = 220382, + [SMALL_STATE(7591)] = 220414, + [SMALL_STATE(7592)] = 220446, + [SMALL_STATE(7593)] = 220478, + [SMALL_STATE(7594)] = 220510, + [SMALL_STATE(7595)] = 220542, + [SMALL_STATE(7596)] = 220574, + [SMALL_STATE(7597)] = 220606, + [SMALL_STATE(7598)] = 220638, + [SMALL_STATE(7599)] = 220670, + [SMALL_STATE(7600)] = 220702, + [SMALL_STATE(7601)] = 220734, + [SMALL_STATE(7602)] = 220766, + [SMALL_STATE(7603)] = 220798, + [SMALL_STATE(7604)] = 220830, + [SMALL_STATE(7605)] = 220862, + [SMALL_STATE(7606)] = 220894, + [SMALL_STATE(7607)] = 220926, + [SMALL_STATE(7608)] = 220958, + [SMALL_STATE(7609)] = 220990, + [SMALL_STATE(7610)] = 221022, + [SMALL_STATE(7611)] = 221054, + [SMALL_STATE(7612)] = 221086, + [SMALL_STATE(7613)] = 221118, + [SMALL_STATE(7614)] = 221150, + [SMALL_STATE(7615)] = 221182, + [SMALL_STATE(7616)] = 221214, + [SMALL_STATE(7617)] = 221244, + [SMALL_STATE(7618)] = 221276, + [SMALL_STATE(7619)] = 221308, + [SMALL_STATE(7620)] = 221340, + [SMALL_STATE(7621)] = 221372, + [SMALL_STATE(7622)] = 221404, + [SMALL_STATE(7623)] = 221436, + [SMALL_STATE(7624)] = 221468, + [SMALL_STATE(7625)] = 221500, + [SMALL_STATE(7626)] = 221532, + [SMALL_STATE(7627)] = 221564, + [SMALL_STATE(7628)] = 221596, + [SMALL_STATE(7629)] = 221628, + [SMALL_STATE(7630)] = 221660, + [SMALL_STATE(7631)] = 221692, + [SMALL_STATE(7632)] = 221724, + [SMALL_STATE(7633)] = 221756, + [SMALL_STATE(7634)] = 221788, + [SMALL_STATE(7635)] = 221820, + [SMALL_STATE(7636)] = 221852, + [SMALL_STATE(7637)] = 221884, + [SMALL_STATE(7638)] = 221916, + [SMALL_STATE(7639)] = 221948, + [SMALL_STATE(7640)] = 221980, + [SMALL_STATE(7641)] = 222012, + [SMALL_STATE(7642)] = 222044, + [SMALL_STATE(7643)] = 222076, + [SMALL_STATE(7644)] = 222108, + [SMALL_STATE(7645)] = 222140, + [SMALL_STATE(7646)] = 222172, + [SMALL_STATE(7647)] = 222204, + [SMALL_STATE(7648)] = 222236, + [SMALL_STATE(7649)] = 222268, + [SMALL_STATE(7650)] = 222300, + [SMALL_STATE(7651)] = 222332, + [SMALL_STATE(7652)] = 222364, + [SMALL_STATE(7653)] = 222396, + [SMALL_STATE(7654)] = 222428, + [SMALL_STATE(7655)] = 222460, + [SMALL_STATE(7656)] = 222492, + [SMALL_STATE(7657)] = 222524, + [SMALL_STATE(7658)] = 222556, + [SMALL_STATE(7659)] = 222588, + [SMALL_STATE(7660)] = 222620, + [SMALL_STATE(7661)] = 222652, + [SMALL_STATE(7662)] = 222684, + [SMALL_STATE(7663)] = 222716, + [SMALL_STATE(7664)] = 222748, + [SMALL_STATE(7665)] = 222780, + [SMALL_STATE(7666)] = 222812, + [SMALL_STATE(7667)] = 222844, + [SMALL_STATE(7668)] = 222876, + [SMALL_STATE(7669)] = 222908, + [SMALL_STATE(7670)] = 222940, + [SMALL_STATE(7671)] = 222972, + [SMALL_STATE(7672)] = 223004, + [SMALL_STATE(7673)] = 223036, + [SMALL_STATE(7674)] = 223068, + [SMALL_STATE(7675)] = 223100, + [SMALL_STATE(7676)] = 223132, + [SMALL_STATE(7677)] = 223164, + [SMALL_STATE(7678)] = 223196, + [SMALL_STATE(7679)] = 223228, + [SMALL_STATE(7680)] = 223260, + [SMALL_STATE(7681)] = 223292, + [SMALL_STATE(7682)] = 223324, + [SMALL_STATE(7683)] = 223356, + [SMALL_STATE(7684)] = 223388, + [SMALL_STATE(7685)] = 223420, + [SMALL_STATE(7686)] = 223452, + [SMALL_STATE(7687)] = 223484, + [SMALL_STATE(7688)] = 223516, + [SMALL_STATE(7689)] = 223548, + [SMALL_STATE(7690)] = 223580, + [SMALL_STATE(7691)] = 223612, + [SMALL_STATE(7692)] = 223644, + [SMALL_STATE(7693)] = 223676, + [SMALL_STATE(7694)] = 223708, + [SMALL_STATE(7695)] = 223740, + [SMALL_STATE(7696)] = 223772, + [SMALL_STATE(7697)] = 223804, + [SMALL_STATE(7698)] = 223836, + [SMALL_STATE(7699)] = 223868, + [SMALL_STATE(7700)] = 223900, + [SMALL_STATE(7701)] = 223932, + [SMALL_STATE(7702)] = 223964, + [SMALL_STATE(7703)] = 223996, + [SMALL_STATE(7704)] = 224028, + [SMALL_STATE(7705)] = 224060, + [SMALL_STATE(7706)] = 224092, + [SMALL_STATE(7707)] = 224124, + [SMALL_STATE(7708)] = 224156, + [SMALL_STATE(7709)] = 224188, + [SMALL_STATE(7710)] = 224220, + [SMALL_STATE(7711)] = 224252, + [SMALL_STATE(7712)] = 224284, + [SMALL_STATE(7713)] = 224316, + [SMALL_STATE(7714)] = 224348, + [SMALL_STATE(7715)] = 224380, + [SMALL_STATE(7716)] = 224412, + [SMALL_STATE(7717)] = 224444, + [SMALL_STATE(7718)] = 224476, + [SMALL_STATE(7719)] = 224508, + [SMALL_STATE(7720)] = 224540, + [SMALL_STATE(7721)] = 224572, + [SMALL_STATE(7722)] = 224604, + [SMALL_STATE(7723)] = 224636, + [SMALL_STATE(7724)] = 224668, + [SMALL_STATE(7725)] = 224700, + [SMALL_STATE(7726)] = 224732, + [SMALL_STATE(7727)] = 224764, + [SMALL_STATE(7728)] = 224796, + [SMALL_STATE(7729)] = 224828, + [SMALL_STATE(7730)] = 224860, + [SMALL_STATE(7731)] = 224892, + [SMALL_STATE(7732)] = 224924, + [SMALL_STATE(7733)] = 224956, + [SMALL_STATE(7734)] = 224988, + [SMALL_STATE(7735)] = 225020, + [SMALL_STATE(7736)] = 225052, + [SMALL_STATE(7737)] = 225084, + [SMALL_STATE(7738)] = 225116, + [SMALL_STATE(7739)] = 225148, + [SMALL_STATE(7740)] = 225180, + [SMALL_STATE(7741)] = 225212, + [SMALL_STATE(7742)] = 225244, + [SMALL_STATE(7743)] = 225276, + [SMALL_STATE(7744)] = 225308, + [SMALL_STATE(7745)] = 225340, + [SMALL_STATE(7746)] = 225372, + [SMALL_STATE(7747)] = 225404, + [SMALL_STATE(7748)] = 225436, + [SMALL_STATE(7749)] = 225468, + [SMALL_STATE(7750)] = 225500, + [SMALL_STATE(7751)] = 225532, + [SMALL_STATE(7752)] = 225564, + [SMALL_STATE(7753)] = 225596, + [SMALL_STATE(7754)] = 225628, + [SMALL_STATE(7755)] = 225660, + [SMALL_STATE(7756)] = 225692, + [SMALL_STATE(7757)] = 225724, + [SMALL_STATE(7758)] = 225756, + [SMALL_STATE(7759)] = 225788, + [SMALL_STATE(7760)] = 225820, + [SMALL_STATE(7761)] = 225852, + [SMALL_STATE(7762)] = 225884, + [SMALL_STATE(7763)] = 225916, + [SMALL_STATE(7764)] = 225948, + [SMALL_STATE(7765)] = 225980, + [SMALL_STATE(7766)] = 226012, + [SMALL_STATE(7767)] = 226044, + [SMALL_STATE(7768)] = 226076, + [SMALL_STATE(7769)] = 226108, + [SMALL_STATE(7770)] = 226140, + [SMALL_STATE(7771)] = 226172, + [SMALL_STATE(7772)] = 226204, + [SMALL_STATE(7773)] = 226236, + [SMALL_STATE(7774)] = 226268, + [SMALL_STATE(7775)] = 226300, + [SMALL_STATE(7776)] = 226332, + [SMALL_STATE(7777)] = 226364, + [SMALL_STATE(7778)] = 226396, + [SMALL_STATE(7779)] = 226428, + [SMALL_STATE(7780)] = 226460, + [SMALL_STATE(7781)] = 226492, + [SMALL_STATE(7782)] = 226524, + [SMALL_STATE(7783)] = 226556, + [SMALL_STATE(7784)] = 226588, + [SMALL_STATE(7785)] = 226620, + [SMALL_STATE(7786)] = 226652, + [SMALL_STATE(7787)] = 226684, + [SMALL_STATE(7788)] = 226716, + [SMALL_STATE(7789)] = 226748, + [SMALL_STATE(7790)] = 226780, + [SMALL_STATE(7791)] = 226812, + [SMALL_STATE(7792)] = 226844, + [SMALL_STATE(7793)] = 226876, + [SMALL_STATE(7794)] = 226908, + [SMALL_STATE(7795)] = 226940, + [SMALL_STATE(7796)] = 226972, + [SMALL_STATE(7797)] = 227004, + [SMALL_STATE(7798)] = 227036, + [SMALL_STATE(7799)] = 227068, + [SMALL_STATE(7800)] = 227100, + [SMALL_STATE(7801)] = 227132, + [SMALL_STATE(7802)] = 227164, + [SMALL_STATE(7803)] = 227196, + [SMALL_STATE(7804)] = 227228, + [SMALL_STATE(7805)] = 227260, + [SMALL_STATE(7806)] = 227292, + [SMALL_STATE(7807)] = 227324, + [SMALL_STATE(7808)] = 227356, + [SMALL_STATE(7809)] = 227388, + [SMALL_STATE(7810)] = 227420, + [SMALL_STATE(7811)] = 227452, + [SMALL_STATE(7812)] = 227484, + [SMALL_STATE(7813)] = 227516, + [SMALL_STATE(7814)] = 227548, + [SMALL_STATE(7815)] = 227580, + [SMALL_STATE(7816)] = 227612, + [SMALL_STATE(7817)] = 227644, + [SMALL_STATE(7818)] = 227676, + [SMALL_STATE(7819)] = 227708, + [SMALL_STATE(7820)] = 227740, + [SMALL_STATE(7821)] = 227772, + [SMALL_STATE(7822)] = 227804, + [SMALL_STATE(7823)] = 227836, + [SMALL_STATE(7824)] = 227868, + [SMALL_STATE(7825)] = 227900, + [SMALL_STATE(7826)] = 227932, + [SMALL_STATE(7827)] = 227964, + [SMALL_STATE(7828)] = 227996, + [SMALL_STATE(7829)] = 228028, + [SMALL_STATE(7830)] = 228060, + [SMALL_STATE(7831)] = 228092, + [SMALL_STATE(7832)] = 228124, + [SMALL_STATE(7833)] = 228156, + [SMALL_STATE(7834)] = 228188, + [SMALL_STATE(7835)] = 228220, + [SMALL_STATE(7836)] = 228252, + [SMALL_STATE(7837)] = 228284, + [SMALL_STATE(7838)] = 228316, + [SMALL_STATE(7839)] = 228348, + [SMALL_STATE(7840)] = 228380, + [SMALL_STATE(7841)] = 228412, + [SMALL_STATE(7842)] = 228444, + [SMALL_STATE(7843)] = 228476, + [SMALL_STATE(7844)] = 228508, + [SMALL_STATE(7845)] = 228540, + [SMALL_STATE(7846)] = 228572, + [SMALL_STATE(7847)] = 228604, + [SMALL_STATE(7848)] = 228636, + [SMALL_STATE(7849)] = 228668, + [SMALL_STATE(7850)] = 228700, + [SMALL_STATE(7851)] = 228732, + [SMALL_STATE(7852)] = 228764, + [SMALL_STATE(7853)] = 228796, + [SMALL_STATE(7854)] = 228828, + [SMALL_STATE(7855)] = 228860, + [SMALL_STATE(7856)] = 228892, + [SMALL_STATE(7857)] = 228924, + [SMALL_STATE(7858)] = 228956, + [SMALL_STATE(7859)] = 228988, + [SMALL_STATE(7860)] = 229020, + [SMALL_STATE(7861)] = 229052, + [SMALL_STATE(7862)] = 229084, + [SMALL_STATE(7863)] = 229116, + [SMALL_STATE(7864)] = 229148, + [SMALL_STATE(7865)] = 229180, + [SMALL_STATE(7866)] = 229212, + [SMALL_STATE(7867)] = 229244, + [SMALL_STATE(7868)] = 229276, + [SMALL_STATE(7869)] = 229308, + [SMALL_STATE(7870)] = 229340, + [SMALL_STATE(7871)] = 229372, + [SMALL_STATE(7872)] = 229404, + [SMALL_STATE(7873)] = 229436, + [SMALL_STATE(7874)] = 229468, + [SMALL_STATE(7875)] = 229500, + [SMALL_STATE(7876)] = 229532, + [SMALL_STATE(7877)] = 229564, + [SMALL_STATE(7878)] = 229596, + [SMALL_STATE(7879)] = 229628, + [SMALL_STATE(7880)] = 229660, + [SMALL_STATE(7881)] = 229692, + [SMALL_STATE(7882)] = 229724, + [SMALL_STATE(7883)] = 229756, + [SMALL_STATE(7884)] = 229788, + [SMALL_STATE(7885)] = 229820, + [SMALL_STATE(7886)] = 229852, + [SMALL_STATE(7887)] = 229884, + [SMALL_STATE(7888)] = 229916, + [SMALL_STATE(7889)] = 229948, + [SMALL_STATE(7890)] = 229980, + [SMALL_STATE(7891)] = 230012, + [SMALL_STATE(7892)] = 230044, + [SMALL_STATE(7893)] = 230076, + [SMALL_STATE(7894)] = 230108, + [SMALL_STATE(7895)] = 230140, + [SMALL_STATE(7896)] = 230172, + [SMALL_STATE(7897)] = 230204, + [SMALL_STATE(7898)] = 230236, + [SMALL_STATE(7899)] = 230268, + [SMALL_STATE(7900)] = 230300, + [SMALL_STATE(7901)] = 230332, + [SMALL_STATE(7902)] = 230364, + [SMALL_STATE(7903)] = 230396, + [SMALL_STATE(7904)] = 230428, + [SMALL_STATE(7905)] = 230460, + [SMALL_STATE(7906)] = 230492, + [SMALL_STATE(7907)] = 230524, + [SMALL_STATE(7908)] = 230556, + [SMALL_STATE(7909)] = 230588, + [SMALL_STATE(7910)] = 230620, + [SMALL_STATE(7911)] = 230652, + [SMALL_STATE(7912)] = 230684, + [SMALL_STATE(7913)] = 230716, + [SMALL_STATE(7914)] = 230748, + [SMALL_STATE(7915)] = 230780, + [SMALL_STATE(7916)] = 230812, + [SMALL_STATE(7917)] = 230844, + [SMALL_STATE(7918)] = 230876, + [SMALL_STATE(7919)] = 230908, + [SMALL_STATE(7920)] = 230940, + [SMALL_STATE(7921)] = 230972, + [SMALL_STATE(7922)] = 231004, + [SMALL_STATE(7923)] = 231036, + [SMALL_STATE(7924)] = 231068, + [SMALL_STATE(7925)] = 231100, + [SMALL_STATE(7926)] = 231132, + [SMALL_STATE(7927)] = 231164, + [SMALL_STATE(7928)] = 231196, + [SMALL_STATE(7929)] = 231228, + [SMALL_STATE(7930)] = 231260, + [SMALL_STATE(7931)] = 231292, + [SMALL_STATE(7932)] = 231324, + [SMALL_STATE(7933)] = 231356, + [SMALL_STATE(7934)] = 231388, + [SMALL_STATE(7935)] = 231420, + [SMALL_STATE(7936)] = 231452, + [SMALL_STATE(7937)] = 231484, + [SMALL_STATE(7938)] = 231516, + [SMALL_STATE(7939)] = 231548, + [SMALL_STATE(7940)] = 231580, + [SMALL_STATE(7941)] = 231612, + [SMALL_STATE(7942)] = 231644, + [SMALL_STATE(7943)] = 231676, + [SMALL_STATE(7944)] = 231708, + [SMALL_STATE(7945)] = 231740, + [SMALL_STATE(7946)] = 231772, + [SMALL_STATE(7947)] = 231804, + [SMALL_STATE(7948)] = 231836, + [SMALL_STATE(7949)] = 231868, + [SMALL_STATE(7950)] = 231900, + [SMALL_STATE(7951)] = 231932, + [SMALL_STATE(7952)] = 231964, + [SMALL_STATE(7953)] = 231996, + [SMALL_STATE(7954)] = 232028, + [SMALL_STATE(7955)] = 232060, + [SMALL_STATE(7956)] = 232092, + [SMALL_STATE(7957)] = 232124, + [SMALL_STATE(7958)] = 232156, + [SMALL_STATE(7959)] = 232188, + [SMALL_STATE(7960)] = 232220, + [SMALL_STATE(7961)] = 232252, + [SMALL_STATE(7962)] = 232284, + [SMALL_STATE(7963)] = 232316, + [SMALL_STATE(7964)] = 232348, + [SMALL_STATE(7965)] = 232380, + [SMALL_STATE(7966)] = 232412, + [SMALL_STATE(7967)] = 232444, + [SMALL_STATE(7968)] = 232476, + [SMALL_STATE(7969)] = 232508, + [SMALL_STATE(7970)] = 232540, + [SMALL_STATE(7971)] = 232572, + [SMALL_STATE(7972)] = 232604, + [SMALL_STATE(7973)] = 232636, + [SMALL_STATE(7974)] = 232668, + [SMALL_STATE(7975)] = 232700, + [SMALL_STATE(7976)] = 232732, + [SMALL_STATE(7977)] = 232764, + [SMALL_STATE(7978)] = 232796, + [SMALL_STATE(7979)] = 232828, + [SMALL_STATE(7980)] = 232860, + [SMALL_STATE(7981)] = 232892, + [SMALL_STATE(7982)] = 232924, + [SMALL_STATE(7983)] = 232956, + [SMALL_STATE(7984)] = 232988, + [SMALL_STATE(7985)] = 233020, + [SMALL_STATE(7986)] = 233052, + [SMALL_STATE(7987)] = 233084, + [SMALL_STATE(7988)] = 233116, + [SMALL_STATE(7989)] = 233148, + [SMALL_STATE(7990)] = 233180, + [SMALL_STATE(7991)] = 233212, + [SMALL_STATE(7992)] = 233244, + [SMALL_STATE(7993)] = 233276, + [SMALL_STATE(7994)] = 233308, + [SMALL_STATE(7995)] = 233340, + [SMALL_STATE(7996)] = 233372, + [SMALL_STATE(7997)] = 233404, + [SMALL_STATE(7998)] = 233436, + [SMALL_STATE(7999)] = 233468, + [SMALL_STATE(8000)] = 233500, + [SMALL_STATE(8001)] = 233532, + [SMALL_STATE(8002)] = 233564, + [SMALL_STATE(8003)] = 233596, + [SMALL_STATE(8004)] = 233628, + [SMALL_STATE(8005)] = 233660, + [SMALL_STATE(8006)] = 233692, + [SMALL_STATE(8007)] = 233724, + [SMALL_STATE(8008)] = 233756, + [SMALL_STATE(8009)] = 233788, + [SMALL_STATE(8010)] = 233820, + [SMALL_STATE(8011)] = 233852, + [SMALL_STATE(8012)] = 233884, + [SMALL_STATE(8013)] = 233916, + [SMALL_STATE(8014)] = 233948, + [SMALL_STATE(8015)] = 233980, + [SMALL_STATE(8016)] = 234012, + [SMALL_STATE(8017)] = 234044, + [SMALL_STATE(8018)] = 234076, + [SMALL_STATE(8019)] = 234108, + [SMALL_STATE(8020)] = 234140, + [SMALL_STATE(8021)] = 234172, + [SMALL_STATE(8022)] = 234204, + [SMALL_STATE(8023)] = 234236, + [SMALL_STATE(8024)] = 234268, + [SMALL_STATE(8025)] = 234300, + [SMALL_STATE(8026)] = 234332, + [SMALL_STATE(8027)] = 234364, + [SMALL_STATE(8028)] = 234396, + [SMALL_STATE(8029)] = 234428, + [SMALL_STATE(8030)] = 234460, + [SMALL_STATE(8031)] = 234492, + [SMALL_STATE(8032)] = 234524, + [SMALL_STATE(8033)] = 234556, + [SMALL_STATE(8034)] = 234588, + [SMALL_STATE(8035)] = 234620, + [SMALL_STATE(8036)] = 234652, + [SMALL_STATE(8037)] = 234684, + [SMALL_STATE(8038)] = 234716, + [SMALL_STATE(8039)] = 234748, + [SMALL_STATE(8040)] = 234780, + [SMALL_STATE(8041)] = 234812, + [SMALL_STATE(8042)] = 234844, + [SMALL_STATE(8043)] = 234876, + [SMALL_STATE(8044)] = 234908, + [SMALL_STATE(8045)] = 234940, + [SMALL_STATE(8046)] = 234972, + [SMALL_STATE(8047)] = 235004, + [SMALL_STATE(8048)] = 235036, + [SMALL_STATE(8049)] = 235068, + [SMALL_STATE(8050)] = 235100, + [SMALL_STATE(8051)] = 235132, + [SMALL_STATE(8052)] = 235164, + [SMALL_STATE(8053)] = 235196, + [SMALL_STATE(8054)] = 235228, + [SMALL_STATE(8055)] = 235260, + [SMALL_STATE(8056)] = 235292, + [SMALL_STATE(8057)] = 235324, + [SMALL_STATE(8058)] = 235356, + [SMALL_STATE(8059)] = 235388, + [SMALL_STATE(8060)] = 235420, + [SMALL_STATE(8061)] = 235452, + [SMALL_STATE(8062)] = 235484, + [SMALL_STATE(8063)] = 235516, + [SMALL_STATE(8064)] = 235548, + [SMALL_STATE(8065)] = 235580, + [SMALL_STATE(8066)] = 235612, + [SMALL_STATE(8067)] = 235644, + [SMALL_STATE(8068)] = 235676, + [SMALL_STATE(8069)] = 235708, + [SMALL_STATE(8070)] = 235740, + [SMALL_STATE(8071)] = 235772, + [SMALL_STATE(8072)] = 235804, + [SMALL_STATE(8073)] = 235836, + [SMALL_STATE(8074)] = 235868, + [SMALL_STATE(8075)] = 235900, + [SMALL_STATE(8076)] = 235932, + [SMALL_STATE(8077)] = 235964, + [SMALL_STATE(8078)] = 235996, + [SMALL_STATE(8079)] = 236028, + [SMALL_STATE(8080)] = 236060, + [SMALL_STATE(8081)] = 236092, + [SMALL_STATE(8082)] = 236124, + [SMALL_STATE(8083)] = 236156, + [SMALL_STATE(8084)] = 236188, + [SMALL_STATE(8085)] = 236220, + [SMALL_STATE(8086)] = 236252, + [SMALL_STATE(8087)] = 236284, + [SMALL_STATE(8088)] = 236316, + [SMALL_STATE(8089)] = 236348, + [SMALL_STATE(8090)] = 236380, + [SMALL_STATE(8091)] = 236412, + [SMALL_STATE(8092)] = 236444, + [SMALL_STATE(8093)] = 236474, + [SMALL_STATE(8094)] = 236506, + [SMALL_STATE(8095)] = 236538, + [SMALL_STATE(8096)] = 236570, + [SMALL_STATE(8097)] = 236602, + [SMALL_STATE(8098)] = 236634, + [SMALL_STATE(8099)] = 236666, + [SMALL_STATE(8100)] = 236698, + [SMALL_STATE(8101)] = 236730, + [SMALL_STATE(8102)] = 236762, + [SMALL_STATE(8103)] = 236794, + [SMALL_STATE(8104)] = 236826, + [SMALL_STATE(8105)] = 236858, + [SMALL_STATE(8106)] = 236890, + [SMALL_STATE(8107)] = 236922, + [SMALL_STATE(8108)] = 236954, + [SMALL_STATE(8109)] = 236986, + [SMALL_STATE(8110)] = 237018, + [SMALL_STATE(8111)] = 237050, + [SMALL_STATE(8112)] = 237082, + [SMALL_STATE(8113)] = 237114, + [SMALL_STATE(8114)] = 237146, + [SMALL_STATE(8115)] = 237178, + [SMALL_STATE(8116)] = 237210, + [SMALL_STATE(8117)] = 237242, + [SMALL_STATE(8118)] = 237274, + [SMALL_STATE(8119)] = 237306, + [SMALL_STATE(8120)] = 237338, + [SMALL_STATE(8121)] = 237370, + [SMALL_STATE(8122)] = 237402, + [SMALL_STATE(8123)] = 237434, + [SMALL_STATE(8124)] = 237466, + [SMALL_STATE(8125)] = 237498, + [SMALL_STATE(8126)] = 237530, + [SMALL_STATE(8127)] = 237562, + [SMALL_STATE(8128)] = 237594, + [SMALL_STATE(8129)] = 237626, + [SMALL_STATE(8130)] = 237658, + [SMALL_STATE(8131)] = 237690, + [SMALL_STATE(8132)] = 237722, + [SMALL_STATE(8133)] = 237754, + [SMALL_STATE(8134)] = 237786, + [SMALL_STATE(8135)] = 237818, + [SMALL_STATE(8136)] = 237850, + [SMALL_STATE(8137)] = 237882, + [SMALL_STATE(8138)] = 237914, + [SMALL_STATE(8139)] = 237946, + [SMALL_STATE(8140)] = 237978, + [SMALL_STATE(8141)] = 238010, + [SMALL_STATE(8142)] = 238042, + [SMALL_STATE(8143)] = 238074, + [SMALL_STATE(8144)] = 238106, + [SMALL_STATE(8145)] = 238138, + [SMALL_STATE(8146)] = 238170, + [SMALL_STATE(8147)] = 238202, + [SMALL_STATE(8148)] = 238234, + [SMALL_STATE(8149)] = 238266, + [SMALL_STATE(8150)] = 238298, + [SMALL_STATE(8151)] = 238330, + [SMALL_STATE(8152)] = 238362, + [SMALL_STATE(8153)] = 238394, + [SMALL_STATE(8154)] = 238426, + [SMALL_STATE(8155)] = 238458, + [SMALL_STATE(8156)] = 238490, + [SMALL_STATE(8157)] = 238522, + [SMALL_STATE(8158)] = 238554, + [SMALL_STATE(8159)] = 238586, + [SMALL_STATE(8160)] = 238618, + [SMALL_STATE(8161)] = 238650, + [SMALL_STATE(8162)] = 238682, + [SMALL_STATE(8163)] = 238714, + [SMALL_STATE(8164)] = 238746, + [SMALL_STATE(8165)] = 238778, + [SMALL_STATE(8166)] = 238810, + [SMALL_STATE(8167)] = 238842, + [SMALL_STATE(8168)] = 238874, + [SMALL_STATE(8169)] = 238906, + [SMALL_STATE(8170)] = 238938, + [SMALL_STATE(8171)] = 238970, + [SMALL_STATE(8172)] = 239002, + [SMALL_STATE(8173)] = 239034, + [SMALL_STATE(8174)] = 239066, + [SMALL_STATE(8175)] = 239098, + [SMALL_STATE(8176)] = 239130, + [SMALL_STATE(8177)] = 239162, + [SMALL_STATE(8178)] = 239194, + [SMALL_STATE(8179)] = 239226, + [SMALL_STATE(8180)] = 239258, + [SMALL_STATE(8181)] = 239290, + [SMALL_STATE(8182)] = 239322, + [SMALL_STATE(8183)] = 239354, + [SMALL_STATE(8184)] = 239386, + [SMALL_STATE(8185)] = 239418, + [SMALL_STATE(8186)] = 239450, + [SMALL_STATE(8187)] = 239482, + [SMALL_STATE(8188)] = 239514, + [SMALL_STATE(8189)] = 239546, + [SMALL_STATE(8190)] = 239578, + [SMALL_STATE(8191)] = 239610, + [SMALL_STATE(8192)] = 239642, + [SMALL_STATE(8193)] = 239674, + [SMALL_STATE(8194)] = 239706, + [SMALL_STATE(8195)] = 239738, + [SMALL_STATE(8196)] = 239770, + [SMALL_STATE(8197)] = 239802, + [SMALL_STATE(8198)] = 239834, + [SMALL_STATE(8199)] = 239866, + [SMALL_STATE(8200)] = 239898, + [SMALL_STATE(8201)] = 239930, + [SMALL_STATE(8202)] = 239962, + [SMALL_STATE(8203)] = 239994, + [SMALL_STATE(8204)] = 240026, + [SMALL_STATE(8205)] = 240058, + [SMALL_STATE(8206)] = 240090, + [SMALL_STATE(8207)] = 240122, + [SMALL_STATE(8208)] = 240154, + [SMALL_STATE(8209)] = 240186, + [SMALL_STATE(8210)] = 240218, + [SMALL_STATE(8211)] = 240250, + [SMALL_STATE(8212)] = 240282, + [SMALL_STATE(8213)] = 240314, + [SMALL_STATE(8214)] = 240346, + [SMALL_STATE(8215)] = 240378, + [SMALL_STATE(8216)] = 240410, + [SMALL_STATE(8217)] = 240442, + [SMALL_STATE(8218)] = 240474, + [SMALL_STATE(8219)] = 240506, + [SMALL_STATE(8220)] = 240538, + [SMALL_STATE(8221)] = 240570, + [SMALL_STATE(8222)] = 240602, + [SMALL_STATE(8223)] = 240634, + [SMALL_STATE(8224)] = 240666, + [SMALL_STATE(8225)] = 240698, + [SMALL_STATE(8226)] = 240730, + [SMALL_STATE(8227)] = 240762, + [SMALL_STATE(8228)] = 240794, + [SMALL_STATE(8229)] = 240826, + [SMALL_STATE(8230)] = 240858, + [SMALL_STATE(8231)] = 240890, + [SMALL_STATE(8232)] = 240922, + [SMALL_STATE(8233)] = 240954, + [SMALL_STATE(8234)] = 240986, + [SMALL_STATE(8235)] = 241018, + [SMALL_STATE(8236)] = 241050, + [SMALL_STATE(8237)] = 241082, + [SMALL_STATE(8238)] = 241114, + [SMALL_STATE(8239)] = 241146, + [SMALL_STATE(8240)] = 241178, + [SMALL_STATE(8241)] = 241210, + [SMALL_STATE(8242)] = 241242, + [SMALL_STATE(8243)] = 241274, + [SMALL_STATE(8244)] = 241306, + [SMALL_STATE(8245)] = 241338, + [SMALL_STATE(8246)] = 241370, + [SMALL_STATE(8247)] = 241402, + [SMALL_STATE(8248)] = 241434, + [SMALL_STATE(8249)] = 241466, + [SMALL_STATE(8250)] = 241498, + [SMALL_STATE(8251)] = 241530, + [SMALL_STATE(8252)] = 241562, + [SMALL_STATE(8253)] = 241594, + [SMALL_STATE(8254)] = 241626, + [SMALL_STATE(8255)] = 241658, + [SMALL_STATE(8256)] = 241690, + [SMALL_STATE(8257)] = 241722, + [SMALL_STATE(8258)] = 241754, + [SMALL_STATE(8259)] = 241786, + [SMALL_STATE(8260)] = 241818, + [SMALL_STATE(8261)] = 241850, + [SMALL_STATE(8262)] = 241882, + [SMALL_STATE(8263)] = 241914, + [SMALL_STATE(8264)] = 241946, + [SMALL_STATE(8265)] = 241978, + [SMALL_STATE(8266)] = 242010, + [SMALL_STATE(8267)] = 242042, + [SMALL_STATE(8268)] = 242074, + [SMALL_STATE(8269)] = 242106, + [SMALL_STATE(8270)] = 242138, + [SMALL_STATE(8271)] = 242170, + [SMALL_STATE(8272)] = 242202, + [SMALL_STATE(8273)] = 242234, + [SMALL_STATE(8274)] = 242266, + [SMALL_STATE(8275)] = 242298, + [SMALL_STATE(8276)] = 242330, + [SMALL_STATE(8277)] = 242362, + [SMALL_STATE(8278)] = 242394, + [SMALL_STATE(8279)] = 242426, + [SMALL_STATE(8280)] = 242458, + [SMALL_STATE(8281)] = 242490, + [SMALL_STATE(8282)] = 242522, + [SMALL_STATE(8283)] = 242554, + [SMALL_STATE(8284)] = 242586, + [SMALL_STATE(8285)] = 242618, + [SMALL_STATE(8286)] = 242650, + [SMALL_STATE(8287)] = 242682, + [SMALL_STATE(8288)] = 242714, + [SMALL_STATE(8289)] = 242746, + [SMALL_STATE(8290)] = 242778, + [SMALL_STATE(8291)] = 242810, + [SMALL_STATE(8292)] = 242842, + [SMALL_STATE(8293)] = 242874, + [SMALL_STATE(8294)] = 242906, + [SMALL_STATE(8295)] = 242938, + [SMALL_STATE(8296)] = 242970, + [SMALL_STATE(8297)] = 243002, + [SMALL_STATE(8298)] = 243034, + [SMALL_STATE(8299)] = 243066, + [SMALL_STATE(8300)] = 243098, + [SMALL_STATE(8301)] = 243130, + [SMALL_STATE(8302)] = 243162, + [SMALL_STATE(8303)] = 243194, + [SMALL_STATE(8304)] = 243226, + [SMALL_STATE(8305)] = 243258, + [SMALL_STATE(8306)] = 243290, + [SMALL_STATE(8307)] = 243322, + [SMALL_STATE(8308)] = 243354, + [SMALL_STATE(8309)] = 243386, + [SMALL_STATE(8310)] = 243418, + [SMALL_STATE(8311)] = 243450, + [SMALL_STATE(8312)] = 243482, + [SMALL_STATE(8313)] = 243514, + [SMALL_STATE(8314)] = 243546, + [SMALL_STATE(8315)] = 243578, + [SMALL_STATE(8316)] = 243610, + [SMALL_STATE(8317)] = 243642, + [SMALL_STATE(8318)] = 243674, + [SMALL_STATE(8319)] = 243706, + [SMALL_STATE(8320)] = 243738, + [SMALL_STATE(8321)] = 243770, + [SMALL_STATE(8322)] = 243802, + [SMALL_STATE(8323)] = 243834, + [SMALL_STATE(8324)] = 243866, + [SMALL_STATE(8325)] = 243898, + [SMALL_STATE(8326)] = 243930, + [SMALL_STATE(8327)] = 243962, + [SMALL_STATE(8328)] = 243994, + [SMALL_STATE(8329)] = 244026, + [SMALL_STATE(8330)] = 244058, + [SMALL_STATE(8331)] = 244090, + [SMALL_STATE(8332)] = 244122, + [SMALL_STATE(8333)] = 244154, + [SMALL_STATE(8334)] = 244186, + [SMALL_STATE(8335)] = 244218, + [SMALL_STATE(8336)] = 244250, + [SMALL_STATE(8337)] = 244282, + [SMALL_STATE(8338)] = 244314, + [SMALL_STATE(8339)] = 244346, + [SMALL_STATE(8340)] = 244378, + [SMALL_STATE(8341)] = 244410, + [SMALL_STATE(8342)] = 244442, + [SMALL_STATE(8343)] = 244474, + [SMALL_STATE(8344)] = 244506, + [SMALL_STATE(8345)] = 244538, + [SMALL_STATE(8346)] = 244570, + [SMALL_STATE(8347)] = 244602, + [SMALL_STATE(8348)] = 244634, + [SMALL_STATE(8349)] = 244666, + [SMALL_STATE(8350)] = 244698, + [SMALL_STATE(8351)] = 244730, + [SMALL_STATE(8352)] = 244762, + [SMALL_STATE(8353)] = 244794, + [SMALL_STATE(8354)] = 244826, + [SMALL_STATE(8355)] = 244858, + [SMALL_STATE(8356)] = 244890, + [SMALL_STATE(8357)] = 244922, + [SMALL_STATE(8358)] = 244954, + [SMALL_STATE(8359)] = 244986, + [SMALL_STATE(8360)] = 245018, + [SMALL_STATE(8361)] = 245050, + [SMALL_STATE(8362)] = 245082, + [SMALL_STATE(8363)] = 245114, + [SMALL_STATE(8364)] = 245146, + [SMALL_STATE(8365)] = 245178, + [SMALL_STATE(8366)] = 245210, + [SMALL_STATE(8367)] = 245242, + [SMALL_STATE(8368)] = 245274, + [SMALL_STATE(8369)] = 245306, + [SMALL_STATE(8370)] = 245338, + [SMALL_STATE(8371)] = 245370, + [SMALL_STATE(8372)] = 245402, + [SMALL_STATE(8373)] = 245434, + [SMALL_STATE(8374)] = 245466, + [SMALL_STATE(8375)] = 245498, + [SMALL_STATE(8376)] = 245530, + [SMALL_STATE(8377)] = 245562, + [SMALL_STATE(8378)] = 245594, + [SMALL_STATE(8379)] = 245626, + [SMALL_STATE(8380)] = 245656, + [SMALL_STATE(8381)] = 245688, + [SMALL_STATE(8382)] = 245720, + [SMALL_STATE(8383)] = 245752, + [SMALL_STATE(8384)] = 245784, + [SMALL_STATE(8385)] = 245816, + [SMALL_STATE(8386)] = 245848, + [SMALL_STATE(8387)] = 245880, + [SMALL_STATE(8388)] = 245912, + [SMALL_STATE(8389)] = 245944, + [SMALL_STATE(8390)] = 245976, + [SMALL_STATE(8391)] = 246008, + [SMALL_STATE(8392)] = 246040, + [SMALL_STATE(8393)] = 246070, + [SMALL_STATE(8394)] = 246102, + [SMALL_STATE(8395)] = 246134, + [SMALL_STATE(8396)] = 246166, + [SMALL_STATE(8397)] = 246198, + [SMALL_STATE(8398)] = 246230, + [SMALL_STATE(8399)] = 246262, + [SMALL_STATE(8400)] = 246294, + [SMALL_STATE(8401)] = 246326, + [SMALL_STATE(8402)] = 246358, + [SMALL_STATE(8403)] = 246390, + [SMALL_STATE(8404)] = 246422, + [SMALL_STATE(8405)] = 246454, + [SMALL_STATE(8406)] = 246486, + [SMALL_STATE(8407)] = 246518, + [SMALL_STATE(8408)] = 246550, + [SMALL_STATE(8409)] = 246582, + [SMALL_STATE(8410)] = 246614, + [SMALL_STATE(8411)] = 246646, + [SMALL_STATE(8412)] = 246678, + [SMALL_STATE(8413)] = 246710, + [SMALL_STATE(8414)] = 246742, + [SMALL_STATE(8415)] = 246774, + [SMALL_STATE(8416)] = 246806, + [SMALL_STATE(8417)] = 246838, + [SMALL_STATE(8418)] = 246870, + [SMALL_STATE(8419)] = 246902, + [SMALL_STATE(8420)] = 246906, + [SMALL_STATE(8421)] = 246910, + [SMALL_STATE(8422)] = 246914, + [SMALL_STATE(8423)] = 246918, + [SMALL_STATE(8424)] = 246922, + [SMALL_STATE(8425)] = 246926, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 0, 0, 0), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8409), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8407), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2, 0, 0), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2, 0, 0), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2, 0, 0), + [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2, 0, 0), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 0, 7), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, 0, 7), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 1, 0, 0), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 1, 0, 0), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 17), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 17), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, 0, 0), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, 0, 19), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, 0, 19), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, 0, 43), - [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, 0, 43), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, 0, 43), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, 0, 43), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 0, 7), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, 0, 7), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 1, 0, 0), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 1, 0, 0), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 17), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 17), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, 0, 19), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, 0, 19), [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__low_prec_app, 2, 0, 0), [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__low_prec_app, 2, 0, 0), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(6936), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(403), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_construction, 2, 0, 0), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(7483), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(6893), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7895), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1, 0, 0), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(2999), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2, 0, 0), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_body, 1, 0, 0), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 17), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 0), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 26), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 41), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, 0, 40), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7574), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_parameter_value, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 17), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_construction, 2, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(7108), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(403), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(3029), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(6889), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), SHIFT(6943), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_construction, 2, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1, 0, 0), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8316), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 17), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2, 0, 0), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 0), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1, 0, 0), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_body, 1, 0, 0), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_parameter_value, 2, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 26), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 41), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, 0, 40), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_construction, 2, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 17), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8292), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(958), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6248), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6383), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3317), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(684), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3761), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6384), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2592), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2592), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6385), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1084), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3181), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6362), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6360), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8249), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(648), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(650), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8247), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3931), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(684), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2894), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(673), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6402), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3194), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6403), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(689), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(689), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8243), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7889), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7889), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6404), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8238), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6408), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1177), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(4809), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(5003), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(5373), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8236), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8235), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8234), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1069), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3181), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3184), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3185), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(807), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(811), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6906), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8233), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 1), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 1), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 9), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 9), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 1), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 1), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 0), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 1), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 1), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 1), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 1), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1008), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6400), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6446), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3287), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(672), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3765), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6447), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2572), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2572), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6448), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1196), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3199), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6433), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6424), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8414), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(546), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(547), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8413), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3941), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(672), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2876), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(548), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6450), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3221), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6451), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(549), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(549), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8410), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7993), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7993), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6452), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8407), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6454), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1049), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(4815), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8405), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8404), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1067), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1067), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8403), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1079), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3199), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3198), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3203), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(807), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(811), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(6975), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8402), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 9), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 9), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 0), [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 4, 0, 9), [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 4, 0, 9), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, 0, 1), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, 0, 10), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, 0, 1), [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, 0, 10), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(597), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3930), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(597), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8242), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8242), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(543), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(3835), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(543), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8409), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8409), [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(809), [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(812), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, 0, 31), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 5, 0, 31), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, 0, 1), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, 0, 10), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_construction, 1, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_construction, 1, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1, 0, 0), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6886), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2545), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2545), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6795), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6299), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6305), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8154), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8155), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3193), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6521), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7958), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8028), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8028), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6886), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8157), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4819), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5021), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5243), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7572), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7573), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7561), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7994), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6579), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6705), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6230), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6231), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8178), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8179), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6472), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8077), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8077), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6579), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8181), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2415), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4917), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4985), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7626), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8046), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, 0, 1), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, 0, 31), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 5, 0, 31), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_construction, 1, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_construction, 1, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1, 0, 0), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6673), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6869), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6223), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6222), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8292), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8293), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6450), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3219), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6575), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8064), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8137), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8137), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6673), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8295), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4883), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5049), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5416), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7641), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3203), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8101), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6880), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6771), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6276), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6277), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8320), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8321), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6541), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8154), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6880), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8323), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4929), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4977), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7712), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7713), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8156), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 27), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_parameter_value, 1, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_parameter_value, 1, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 27), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const, 1, 0, 0), [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const, 1, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3, 0, 0), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3, 0, 0), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrained_type, 3, 0, 0), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flexible_type, 2, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flexible_type, 2, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4045), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 20), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 20), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6122), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_type, 2, 0, 0), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_type, 2, 0, 0), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8084), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7908), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), - [3007] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7908), - [3011] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8084), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2, 0, 0), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2, 0, 0), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 20), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 20), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4279), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1, 0, 0), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6346), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6122), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 3, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2, 0, 0), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2, 0, 0), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_type, 1, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_type, 1, 0, 0), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type_identifier, 2, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type_identifier, 2, 0, 0), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1, 0, 0), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_type, 2, 0, 0), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_type, 2, 0, 0), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_type, 2, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_type, 2, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6614), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_type, 3, 0, 0), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_type, 3, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 0), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6547), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3, 0, 16), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, 0, 16), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6, 0, 0), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2, 0, 0), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 6), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 6), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1, 0, 0), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(6977), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7234), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 5, 0, 45), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, 0, 45), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2, 0, 0), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7234), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7234), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(6977), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flexible_type, 2, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flexible_type, 2, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrained_type, 3, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2, 0, 0), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2, 0, 0), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2, 0, 0), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2, 0, 0), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7861), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 20), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 20), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1, 0, 0), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6426), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6426), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), + [3003] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7861), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 20), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 20), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_type, 2, 0, 0), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_type, 2, 0, 0), + [3017] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7915), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7915), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6371), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 0), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type_identifier, 2, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type_identifier, 2, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_type, 2, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_type, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_type, 2, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_type, 2, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_type, 3, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_type, 3, 0, 0), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 3, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 3, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_type, 1, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_type, 1, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_type, 5, 0, 28), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_type, 5, 0, 28), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6604), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6608), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3, 0, 16), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, 0, 16), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3, 0, 0), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7045), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 6), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 6), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2, 0, 0), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7045), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 5, 0, 45), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, 0, 45), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7307), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7307), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_expression, 4, 0, 63), [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_expression, 4, 0, 63), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_expression, 4, 0, 63), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), - [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), - [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7234), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(6977), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [3260] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8099), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7600), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5, 0, 62), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5, 0, 62), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), - [3287] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7127), - [3291] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7254), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3301] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7600), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6214), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3, 0, 42), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3, 0, 42), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7254), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6214), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2, 0, 0), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2, 0, 0), - [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7127), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6289), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6289), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 6, 0, 55), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 6, 0, 55), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2, 0, 0), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2, 0, 0), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2, 0, 0), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 7, 0, 57), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 7, 0, 57), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2, 0, 0), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2, 0, 0), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, 0, 51), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, 0, 51), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 56), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 56), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, 0, 50), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, 0, 50), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, 0, 0), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__high_prec_app, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__high_prec_app, 2, 0, 0), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 49), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 49), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, 0, 48), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, 0, 48), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 30), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 30), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 46), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 46), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6126), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 5, 0, 28), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 5, 0, 28), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 0), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 1, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 1, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5, 0, 0), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5, 0, 0), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 0), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 0), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, 0, 28), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, 0, 28), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 28), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 28), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6206), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6533), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 33), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 33), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__high_prec_app, 4, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__high_prec_app, 4, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 32), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 32), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 30), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 30), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 28), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 28), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4, 0, 0), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3, 0, 0), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3, 0, 0), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3, 0, 0), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3, 0, 0), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2, 0, 0), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2, 0, 0), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3, 0, 0), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3, 0, 0), - [3657] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7197), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3, 0, 0), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7307), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1, 0, 0), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7045), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2, 0, 0), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7307), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3, 0, 42), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3, 0, 42), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7339), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6254), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5, 0, 62), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5, 0, 62), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [3310] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7339), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3338] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7209), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6254), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6412), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [3352] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7121), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4, 0, 0), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8291), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7209), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7121), + [3377] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8291), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2, 0, 0), + [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6412), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 4, 0, 15), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 4, 0, 15), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 28), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 28), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 30), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 30), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 6, 0, 55), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 6, 0, 55), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 32), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 32), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, 0, 51), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, 0, 51), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__high_prec_app, 4, 0, 0), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__high_prec_app, 4, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 33), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 33), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__high_prec_app, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__high_prec_app, 2, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 1, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3, 0, 0), + [3463] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7282), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 28), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 28), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, 0, 28), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, 0, 28), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5, 0, 0), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 5, 0, 44), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 5, 0, 44), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 5, 0, 28), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 5, 0, 28), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 46), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 46), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 30), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 30), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, 0, 48), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, 0, 48), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 49), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 49), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 1, 0, 0), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 1, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3, 0, 0), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, 0, 50), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, 0, 50), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 56), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 56), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2, 0, 0), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 7, 0, 57), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 7, 0, 57), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 3, 0, 15), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 3, 0, 15), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2, 0, 0), [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_expression, 3, 0, 18), [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_expression, 3, 0, 18), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 4, 0, 15), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 4, 0, 15), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2, 0, 0), - [3685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6126), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 3, 0, 15), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 3, 0, 15), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 1, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3, 0, 0), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 5, 0, 44), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 5, 0, 44), - [3737] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7131), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7197), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6461), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6206), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6125), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6478), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7474), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), - [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6256), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6133), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6213), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7135), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [3810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7006), - [3814] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7444), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4200), - [3821] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7084), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [3832] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7135), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6213), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7084), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6133), - [3847] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7474), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6513), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6173), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6492), - [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7444), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7006), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7291), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7291), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7291), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2806), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7291), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6469), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7569), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6569), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7569), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6501), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6524), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7569), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7569), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7476), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7336), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2756), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [3993] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7336), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7476), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7080), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8244), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8189), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7476), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [4030] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8244), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7515), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7396), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7396), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7396), - [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7515), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7515), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7515), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4076] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7080), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7061), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7552), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7437), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7437), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [4122] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7136), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7437), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7153), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [4144] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7372), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7061), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7437), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7552), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7061), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7153), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [4179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8058), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7552), - [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7552), - [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7345), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7345), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7372), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7345), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7345), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7153), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), - [4225] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7174), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7136), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7165), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [4267] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7093), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7446), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7316), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7093), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4310] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7165), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4316] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7400), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7400), - [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4343] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7316), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4349] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7446), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2, 0, 0), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2, 0, 0), + [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6334), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2, 0, 0), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7214), + [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6593), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [3708] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7214), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6334), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3, 0, 0), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2, 0, 0), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2, 0, 0), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6281), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6517), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7282), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6281), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), + [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6542), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6260), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6340), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [3781] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7206), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [3789] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7178), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), + [3798] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7219), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6548), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7577), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6218), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6329), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6260), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6218), + [3836] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7542), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6302), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7206), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7542), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7178), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6302), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6565), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), SHIFT(6329), + [3886] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7577), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7650), + [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6581), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6653), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7650), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6529), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6626), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7365), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7365), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7365), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6554), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7365), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7650), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7650), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7594), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7472), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7554), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7554), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7594), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7554), + [4007] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8239), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7594), + [4017] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7164), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7472), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8239), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7164), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7472), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7594), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7472), + [4080] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7435), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [4087] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7461), + [4091] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8183), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7420), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7514), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7132), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7254), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7632), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7225), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7225), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7132), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [4170] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7223), + [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7225), + [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7132), + [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), + [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), + [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7420), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7514), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(7632), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8183), + [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7514), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7632), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7225), + [4224] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7254), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), + [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(7420), + [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(7514), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7707), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [4270] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7707), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7496), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [4285] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7241), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6331), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8103), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7241), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7406), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [4322] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(7496), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7406), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4351] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(8103), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1, 0, 0), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2, 0, 0), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7748), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1, 0, 0), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1, 0, 0), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2, 0, 0), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2, 0, 0), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5398), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), - [4539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5487), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5368), - [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5969), - [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6035), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2, 0, 0), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2, 0, 0), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4, 0, 0), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4, 0, 0), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5, 0, 0), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5, 0, 0), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6, 0, 0), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6, 0, 0), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1, 0, 0), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7, 0, 0), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7, 0, 0), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7584), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8, 0, 0), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2, 0, 0), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2, 0, 0), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1, 0, 0), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7863), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5628), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5011), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5436), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2, 0, 0), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2, 0, 0), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2, 0, 0), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1, 0, 0), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2, 0, 0), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4, 0, 0), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3, 0, 0), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3289), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), - [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2841), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), - [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6270), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4841), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7367), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7368), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), - [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7062), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), - [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3207), - [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 2, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 2, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 6, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 6, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, 0, 23), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, 0, 23), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), - [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2612), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 4, 0, 0), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 4, 0, 0), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, 0, 13), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, 0, 13), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3, 0, 0), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2, 0, 0), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2, 0, 0), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 3, 0, 60), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 3, 0, 60), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, 0, 35), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, 0, 35), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, 0, 36), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, 0, 36), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, 0, 12), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, 0, 12), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 4), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 4), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2, 0, 0), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, 0, 65), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, 0, 65), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, 0, 66), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, 0, 66), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1, 0, 0), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1, 0, 0), - [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 8, 0, 0), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 8, 0, 0), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 4, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 4, 0, 0), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5, 0, 0), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5, 0, 0), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 6, 0, 0), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 6, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 2, 0, 0), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 2, 0, 0), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2610), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, 0, 23), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, 0, 23), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, 0, 13), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, 0, 13), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6434), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6436), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6414), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5063), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), + [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7443), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(7158), + [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3390), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 3, 0, 60), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 3, 0, 60), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2, 0, 0), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2, 0, 0), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, 0, 12), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, 0, 12), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 4), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 4), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, 0, 36), + [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, 0, 36), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, 0, 35), + [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, 0, 35), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7, 0, 0), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, 0, 65), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, 0, 65), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, 0, 66), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, 0, 66), [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 8, 0, 0), [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 8, 0, 0), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, 0, 4), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, 0, 4), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 25), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 25), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 54), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 54), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 5, 0, 47), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 5, 0, 47), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 4, 0, 29), - [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 4, 0, 29), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 0), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, 0, 0), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, 0, 0), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2, 0, 0), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1, 0, 0), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1, 0, 0), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), - [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, 0, 28), - [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, 0, 28), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6152), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6242), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, 0, 37), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, 0, 37), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7818), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 7, 0, 50), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 7, 0, 50), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 8, 0, 0), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 8, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 25), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 25), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, 0, 4), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, 0, 4), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 54), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 54), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 5, 0, 47), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 5, 0, 47), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 4, 0, 29), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 4, 0, 29), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [5183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 0), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2, 0, 0), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2, 0, 0), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1, 0, 0), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1, 0, 0), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7673), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, 0, 28), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, 0, 28), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, 0, 37), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, 0, 37), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [5240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6389), + [5243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6310), [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_defn, 7, 0, 50), [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_defn, 7, 0, 50), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, 0, 28), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, 0, 28), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 8, 0, 57), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 8, 0, 57), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, 0, 71), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, 0, 71), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1, 0, 0), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1, 0, 0), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, 0, 51), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, 0, 51), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, 0, 51), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, 0, 51), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, 0, 51), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, 0, 51), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, 0, 70), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, 0, 70), - [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, 0, 50), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, 0, 50), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7128), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, 0, 51), - [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, 0, 51), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 11, 0, 72), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 11, 0, 72), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6139), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 7, 0, 67), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 7, 0, 67), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, 0, 58), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, 0, 58), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2, 0, 0), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2, 0, 0), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, 0, 59), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, 0, 59), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1, 0, 0), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1, 0, 0), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 7, 0, 64), - [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 7, 0, 64), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), - [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, 0, 51), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, 0, 51), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 56), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 56), - [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, 0, 50), - [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, 0, 50), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, 0, 57), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, 0, 57), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, 0, 50), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, 0, 50), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, 0, 68), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, 0, 68), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 7, 0, 57), - [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 7, 0, 57), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 30), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 30), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 3, 0, 8), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 3, 0, 8), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6260), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2, 0, 0), - [5430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2, 0, 0), - [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7107), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7122), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4224), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2608), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [5609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2600), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2604), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2616), - [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1, 0, 0), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1, 0, 0), - [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), - [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__infix_or_prefix_op, 1, 0, 0), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__infix_or_prefix_op, 1, 0, 0), - [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1, 0, 0), - [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1, 0, 0), - [5653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3780), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), - [5658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), - [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4027), - [5664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6274), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6243), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), - [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(5046), - [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(5230), - [5685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(7260), - [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), - [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), - [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3282), - [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7595), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1, 0, 0), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1, 0, 0), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2, 0, 0), + [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2, 0, 0), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, 0, 50), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, 0, 50), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7899), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, 0, 28), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, 0, 28), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, 0, 51), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, 0, 51), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, 0, 59), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, 0, 59), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, 0, 51), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, 0, 51), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, 0, 71), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, 0, 71), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, 0, 51), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, 0, 51), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, 0, 51), + [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, 0, 51), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, 0, 51), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, 0, 51), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6321), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 7, 0, 64), + [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 7, 0, 64), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, 0, 58), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, 0, 58), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 7, 0, 50), + [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 7, 0, 50), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, 0, 70), + [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, 0, 70), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 8, 0, 57), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 8, 0, 57), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 11, 0, 72), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 11, 0, 72), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 7, 0, 67), + [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 7, 0, 67), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, 0, 68), + [5489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, 0, 68), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 30), + [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 30), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, 0, 50), + [5497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, 0, 50), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2, 0, 0), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2, 0, 0), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, 0, 57), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, 0, 57), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, 0, 50), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, 0, 50), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 56), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 56), + [5520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6381), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 7, 0, 57), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 7, 0, 57), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 3, 0, 8), + [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 3, 0, 8), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7142), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2627), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2620), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2619), + [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2618), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1, 0, 0), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1, 0, 0), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__infix_or_prefix_op, 1, 0, 0), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__infix_or_prefix_op, 1, 0, 0), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1, 0, 0), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4118), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), + [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4237), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6345), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(6214), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4290), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), + [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(5078), + [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(7332), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(7333), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), + [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), + [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), + [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8245), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3, 0, 0), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3, 0, 0), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3, 0, 0), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 4, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4, 0, 0), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), - [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6153), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7106), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2, 0, 0), - [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7105), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), - [6003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2561), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2561), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5398), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4933), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6052), - [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7735), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7736), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), - [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7878), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 2, 0, 0), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6683), - [6112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2553), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2553), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), - [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5038), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5302), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5877), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7800), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7801), - [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 1, 0, 0), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7827), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1, 0, 0), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1, 0, 0), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [6260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6218), - [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7385), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 2, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2, 0, 0), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 3, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7213), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1, 0, 0), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1, 0, 0), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2, 0, 0), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2, 0, 0), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 5, 0, 0), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5, 0, 0), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 6, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6, 0, 0), - [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 8, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8, 0, 0), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 9, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2, 0, 0), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2, 0, 0), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [6408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3, 0, 0), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3, 0, 0), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), - [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3, 0, 0), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3, 0, 0), - [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3, 0, 0), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3, 0, 0), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 0), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 0), - [6439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(5601), - [6442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3335), - [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), - [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), - [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(7482), - [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(7957), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4, 0, 0), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4, 0, 0), - [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4, 0, 39), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4, 0, 39), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 3), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 3), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, 0, 0), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, 0, 0), - [6480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, 0, 24), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 24), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 24), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 24), - [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, 0, 0), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, 0, 0), - [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2, 0, 0), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2, 0, 0), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), - [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3, 0, 0), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3, 0, 0), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4, 0, 0), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4, 0, 0), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6219), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1, 0, 0), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1, 0, 0), - [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7079), - [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, 0, 52), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, 0, 52), - [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6228), - [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8188), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), - [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), - [6665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), - [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), - [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6052), - [6674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4195), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7076), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4282), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [6703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), - [6711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), - [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), - [6717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5302), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5877), - [6723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1, 0, 0), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1, 0, 0), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_set, 3, 0, 0), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_set, 3, 0, 0), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6207), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7842), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [6883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1, 0, 0), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1, 0, 0), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [6927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6244), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [6935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5398), - [6938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [6941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), - [6944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [6947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), - [6950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), - [6953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), - [6956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6084), - [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), - [6961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_set, 4, 0, 0), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_set, 4, 0, 0), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7166), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [7002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6227), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [7007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7154), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3, 0, 0), - [7040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3, 0, 0), - [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4, 0, 0), - [7044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4, 0, 0), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1, 0, 0), - [7050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1, 0, 0), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3, 0, 0), - [7056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3, 0, 0), - [7058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [7225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1, 0, 0), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1, 0, 0), - [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [7287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7082), - [7290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2603), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3, 0, 0), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3, 0, 0), - [7299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), - [7302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2611), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), - [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4923), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), - [7342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5887), - [7345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6032), - [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [7351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5481), - [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5100), - [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5280), - [7360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5990), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6110), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 30), - [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 30), - [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1, 0, 0), - [7409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 1, 0, 0), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 46), - [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 46), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 6, 0, 56), - [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 6, 0, 56), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1, 0, 0), - [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1, 0, 0), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 4, 0, 30), - [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 4, 0, 30), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 4, 0, 28), - [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 4, 0, 28), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1, 0, 0), - [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_body_inner, 1, 0, 0), - [7457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6232), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6084), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2, 0, 0), - [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 2, 0, 0), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3, 0, 0), - [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 3, 0, 0), - [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2836), - [7513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5412), - [7516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4994), - [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), - [7522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5886), - [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6020), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 5, 0, 69), - [7530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 5, 0, 69), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6181), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6199), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [7587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 22), - [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 22), - [7604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6196), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [7616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7151), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7143), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 11), - [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 11), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8004), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 2), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, 0, 2), - [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6188), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [7684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6366), - [7687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6335), - [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7682), - [7693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2, 0, 0), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7087), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7092), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2, 0, 0), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), - [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1, 0, 0), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2, 0, 0), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3, 0, 0), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6235), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), - [7846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8131), - [7849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4119), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1, 0, 0), - [7859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), - [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(5854), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2615), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5449), - [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5449), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), - [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 22), - [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 22), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 34), - [7943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 34), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2607), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2602), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 11), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 11), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 2), - [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 2), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2606), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [8338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5488), - [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), - [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), - [8435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), - [8438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [8480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7227), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 1, 0, 0), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1, 0, 0), - [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 3, 0, 0), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [8565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), - [8589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), - [8592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), - [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2, 0, 0), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1, 0, 0), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1, 0, 0), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6265), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3, 0, 0), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3335), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2, 0, 0), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, 0, 0), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 0), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), - [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 0), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6, 0, 0), - [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5800), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [8923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2857), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6157), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3, 0, 0), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2, 0, 0), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_char, 1, 0, 0), - [9034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_char, 1, 0, 0), - [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1, 0, 0), - [9038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1, 0, 0), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), - [9048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4, 0, 0), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5, 0, 0), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), - [9110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3, 0, 0), - [9130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3, 0, 0), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [9152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5853), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [9182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3747), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [9303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2840), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 0), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3, 0, 0), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2, 0, 0), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), - [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [9426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), - [9430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [9480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4155), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [9485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, 0, 1), - [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, 0, 1), - [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [9492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, 0, 36), - [9494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, 0, 36), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), - [9738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5996), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, 0, 37), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [9791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [9806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [9809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(7717), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, 0, 37), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(5464), - [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), - [9897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), - [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_set_repeat1, 2, 0, 0), - [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_set_repeat1, 2, 0, 0), SHIFT_REPEAT(3334), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1, 0, 0), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_body, 2, 0, 0), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), SHIFT_REPEAT(4242), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3464), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1, 0, 0), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1, 0, 0), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1, 0, 0), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), - [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), SHIFT_REPEAT(6323), - [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2, 0, 0), - [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), - [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2, 0, 0), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [10044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(6746), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), - [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3, 0, 0), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [10174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2, 0, 0), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3, 0, 0), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1, 0, 0), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [10231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5, 0, 0), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2, 0, 0), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2, 0, 0), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [10288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2, 0, 0), - [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2, 0, 0), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1, 0, 0), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3, 0, 0), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [10326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 0), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [10347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7580), - [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 0), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2, 0, 0), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4, 0, 0), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2, 0, 0), - [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1, 0, 0), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 14), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [10525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2, 0, 0), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 0), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_parameter, 1, 0, 0), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3, 0, 0), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3, 0, 0), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [10585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_call, 1, 0, 0), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [10603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 15), - [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 15), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4, 0, 0), - [10619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4, 0, 0), - [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 3, 0, 38), - [10623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(6284), - [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_static_parameter, 3, 0, 0), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5, 0, 0), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [10738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 4, 0, 53), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3, 0, 0), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 5, 0, 61), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [11462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6, 0, 0), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [11604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, 0, 51), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_call, 3, 0, 0), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [11958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_as_reference, 2, 0, 0), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1, 0, 0), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [13164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_branch, 2, 0, 5), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [13284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_target, 1, 0, 0), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [13316] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [13360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 2, 0, 0), - [13362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [13364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 3, 0, 8), - [13366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), - [13368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 21), - [13370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3, 0, 0), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), + [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3, 0, 0), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3, 0, 0), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 4, 0, 0), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4, 0, 0), + [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6186), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2, 0, 0), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7190), + [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6603), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5628), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5612), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), + [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6143), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7837), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7838), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6881), + [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5481), + [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), + [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5438), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), + [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7903), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [6134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 1, 0, 0), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 2, 0, 0), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8140), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1, 0, 0), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1, 0, 0), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7940), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), + [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(5152), + [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(7716), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(8241), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3873), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(7621), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6385), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 2, 0, 0), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2, 0, 0), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 3, 0, 0), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3, 0, 0), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), + [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5916), + [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7127), + [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7293), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 5, 0, 0), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5, 0, 0), + [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2, 0, 0), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2, 0, 0), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 6, 0, 0), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6, 0, 0), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 8, 0, 0), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8, 0, 0), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 9, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1, 0, 0), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1, 0, 0), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2, 0, 0), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2, 0, 0), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2, 0, 0), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2, 0, 0), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3, 0, 0), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3, 0, 0), + [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), + [6470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), + [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3, 0, 0), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3, 0, 0), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3, 0, 0), + [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2, 0, 0), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2, 0, 0), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4, 0, 0), + [6499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4, 0, 39), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4, 0, 39), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4, 0, 0), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4, 0, 0), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [6509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 24), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 24), + [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 0), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 0), + [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, 0, 24), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 24), + [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, 0, 0), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, 0, 0), + [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3, 0, 0), + [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, 0, 0), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 3), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 3), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, 0, 52), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, 0, 52), + [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), + [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1, 0, 0), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1, 0, 0), + [6615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6242), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), + [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5612), + [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5022), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6143), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [6665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7161), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [6744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [6777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5481), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5006), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5438), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), + [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1, 0, 0), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1, 0, 0), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6266), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_set, 3, 0, 0), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_set, 3, 0, 0), + [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_set, 4, 0, 0), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_set, 4, 0, 0), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [7117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5628), + [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2881), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), + [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4951), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5303), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5983), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(6159), + [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 2, 0, 0), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [7180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6396), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [7212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1, 0, 0), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1, 0, 0), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1, 0, 0), + [7262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1, 0, 0), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4, 0, 0), + [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4, 0, 0), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7032), + [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6419), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3, 0, 0), + [7280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3, 0, 0), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3, 0, 0), + [7298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3, 0, 0), + [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), + [7339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1, 0, 0), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1, 0, 0), + [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7175), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3, 0, 0), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3, 0, 0), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2616), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), + [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7364), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), + [7391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5592), + [7394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5284), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5951), + [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), + [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [7447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5494), + [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5067), + [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5406), + [7459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6036), + [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6153), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2626), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1, 0, 0), + [7478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2879), + [7481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), + [7484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5102), + [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5294), + [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5976), + [7493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6136), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2, 0, 0), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1, 0, 0), + [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 1, 0, 0), + [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1, 0, 0), + [7514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_body_inner, 1, 0, 0), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [7518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6408), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2, 0, 0), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 2, 0, 0), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3, 0, 0), + [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 3, 0, 0), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2881), + [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), + [7551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4951), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5303), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(5983), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(6159), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 6, 0, 56), + [7573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 6, 0, 56), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 30), + [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 30), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 46), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, 0, 46), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 4, 0, 28), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 4, 0, 28), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 4, 0, 30), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 4, 0, 30), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 5, 0, 69), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 5, 0, 69), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7530), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [7622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6362), + [7625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6198), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [7660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6368), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [7675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6294), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [7680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6382), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6437), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 11), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 11), + [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8117), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7236), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [7715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6306), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), + [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7699), + [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 22), + [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 22), + [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 2), + [7736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, 0, 2), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7515), + [7779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7185), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2, 0, 0), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7187), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), + [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1, 0, 0), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2, 0, 0), + [7814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6361), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), + [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3, 0, 0), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1, 0, 0), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3937), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2, 0, 0), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6354), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8264), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2607), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 34), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 34), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 22), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 22), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [7999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2629), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 11), + [8038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 11), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2622), + [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), + [8059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), + [8062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [8065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), + [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 2), + [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 2), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [8189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 23), SHIFT_REPEAT(2617), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [8411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [8414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5627), + [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [8507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7318), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_defn_repeat1, 1, 0, 0), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1, 0, 0), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), + [8548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), + [8551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), + [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), + [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5901), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2, 0, 0), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1, 0, 0), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6, 0, 0), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5873), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3, 0, 0), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, 0, 0), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 3, 0, 0), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 0), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1, 0, 0), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [8892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5856), + [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), + [8898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 0), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6405), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2, 0, 0), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), + [9030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5920), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3, 0, 0), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2, 0, 0), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3303), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [9134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), + [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5, 0, 0), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), + [9216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), + [9218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), + [9220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1, 0, 0), + [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1, 0, 0), + [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_char, 1, 0, 0), + [9238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_char, 1, 0, 0), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3, 0, 0), + [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3, 0, 0), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2914), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [9321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), + [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5871), + [9327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4, 0, 0), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [9355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [9425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3, 0, 0), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2, 0, 0), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 0), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [9526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, 0, 1), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, 0, 1), + [9558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, 0, 36), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, 0, 36), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [9805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), + [9807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), SHIFT_REPEAT(6127), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, 0, 37), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2764), + [9945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(8020), + [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, 0, 37), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3, 0, 0), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2, 0, 0), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [9985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_body_repeat1, 2, 0, 0), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5, 0, 0), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [9993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4, 0, 0), + [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1, 0, 0), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2, 0, 0), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2, 0, 0), + [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [10041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(5483), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_body, 2, 0, 0), + [10050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(5915), + [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), SHIFT_REPEAT(6297), + [10063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), + [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(6730), + [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [10080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), + [10085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3, 0, 0), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), + [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3, 0, 0), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1, 0, 0), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2, 0, 0), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2, 0, 0), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1, 0, 0), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2, 0, 0), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(7778), + [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 0), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2, 0, 0), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2, 0, 0), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2, 0, 0), + [10269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1, 0, 0), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1, 0, 0), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_set_repeat1, 2, 0, 0), + [10293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_set_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1, 0, 0), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [10332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1, 0, 0), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7964), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [10582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2, 0, 0), + [10584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 14), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 0), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_parameter, 1, 0, 0), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3, 0, 0), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [10630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3, 0, 0), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_call, 1, 0, 0), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [10648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 15), + [10650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, 0, 15), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4, 0, 0), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4, 0, 0), + [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 3, 0, 38), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [10704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(6309), + [10707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_static_parameter, 3, 0, 0), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7895), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5, 0, 0), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 4, 0, 53), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3, 0, 0), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 5, 0, 61), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6, 0, 0), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, 0, 51), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_call, 3, 0, 0), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [12345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_as_reference, 2, 0, 0), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [12453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1, 0, 0), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [13467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_branch, 2, 0, 5), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [13577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_target, 1, 0, 0), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [13601] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [13631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 2, 0, 0), + [13633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [13635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 3, 0, 8), + [13637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), + [13639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 21), + [13641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -556597,14 +564197,14 @@ static const bool ts_external_scanner_states[29][EXTERNAL_TOKEN_COUNT] = { }, [4] = { [ts_external_token__newline] = true, + [ts_external_token__dedent] = true, [ts_external_token_POUNDif] = true, - [ts_external_token_POUNDelse] = true, - [ts_external_token_POUNDendif] = true, }, [5] = { [ts_external_token__newline] = true, - [ts_external_token__dedent] = true, [ts_external_token_POUNDif] = true, + [ts_external_token_POUNDelse] = true, + [ts_external_token_POUNDendif] = true, }, [6] = { [ts_external_token__newline] = true, @@ -556673,14 +564273,14 @@ static const bool ts_external_scanner_states[29][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inside_string_marker] = true, }, [20] = { - [ts_external_token__newline_not_aligned] = true, - }, - [21] = { [ts_external_token__indent] = true, [ts_external_token_class] = true, [ts_external_token__struct_begin] = true, [ts_external_token__interface_begin] = true, }, + [21] = { + [ts_external_token__newline_not_aligned] = true, + }, [22] = { [ts_external_token__indent] = true, [ts_external_token_class] = true, @@ -556694,10 +564294,10 @@ static const bool ts_external_scanner_states[29][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__indent] = true, }, [25] = { - [ts_external_token_then] = true, + [ts_external_token_end] = true, }, [26] = { - [ts_external_token_end] = true, + [ts_external_token_then] = true, }, [27] = { [ts_external_token__triple_quoted_content] = true, diff --git a/test/corpus/expr.txt b/test/corpus/expr.txt index af160eb..af62561 100644 --- a/test/corpus/expr.txt +++ b/test/corpus/expr.txt @@ -3280,3 +3280,45 @@ let f services = (long_identifier_or_op (identifier))) (unit))))) + +================================================================================ +function application with explicit type +================================================================================ + +f() + +-------------------------------------------------------------------------------- + +(file + (application_expression + (typed_expression + (long_identifier_or_op + (identifier)) + (types + (simple_type + (long_identifier + (identifier))))) + (unit))) + +================================================================================ +function application with explicit anonymous type +================================================================================ + +f<{|x: string|}>() + +-------------------------------------------------------------------------------- + +(file + (application_expression + (typed_expression + (long_identifier_or_op + (identifier)) + (types + (anon_record_type + (record_fields + (record_field + (identifier) + (simple_type + (long_identifier + (identifier)))))))) + (unit))) diff --git a/test/corpus/type_defn.txt b/test/corpus/type_defn.txt index 676214a..19d2c79 100644 --- a/test/corpus/type_defn.txt +++ b/test/corpus/type_defn.txt @@ -833,6 +833,34 @@ type T = (long_identifier (identifier)))))))) +================================================================================ +anonymous record definition +================================================================================ + +type T = + {| A: int + B: int |} + +-------------------------------------------------------------------------------- + +(file + (type_definition + (type_abbrev_defn + (type_name + (identifier)) + (anon_record_type + (record_fields + (record_field + (identifier) + (simple_type + (long_identifier + (identifier)))) + (record_field + (identifier) + (simple_type + (long_identifier + (identifier))))))))) + ================================================================================ Type extension ================================================================================ diff --git a/test/highlight/type_definitions.fsx b/test/highlight/type_definitions.fsx index 4a48e83..8bc5b6c 100644 --- a/test/highlight/type_definitions.fsx +++ b/test/highlight/type_definitions.fsx @@ -5,3 +5,33 @@ type A() = //^ keyword.function // ^ variable.parameter.builtin // ^ function.method + +let x = ResizeArray() +//<- keyword.function +// ^ variable +// ^ function.call +// ^ operator +// ^ type.builtin +// ^ operator +// ^ variable +// ^ variable + +let x = ResizeArray() +//<- keyword.function +// ^ variable +// ^ function.call +// ^ operator +// ^ type +// ^ operator +// ^ variable +// ^ variable + +let x = ResizeArray<{|word: string |}>() +//<- keyword.function +// ^ variable +// ^ function.call +// ^ operator +// ^ punctuation.bracket +// ^ punctuation.bracket +// ^ property +// ^ type.builtin